.no-scroll {
	overflow: hidden!important
}

.modal-overlay {
	display: block;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.65);
	-webkit-transition: all .4s ease 0s;
	-moz-transition: all .4s ease 0s;
	-o-transition: all .4s ease 0s;
	-ms-transition: all .4s ease 0s;
	transition: all .4s ease 0s
}

.cookie-consent-container button {
	-webkit-transition: all .2s ease 0s;
	-moz-transition: all .2s ease 0s;
	-o-transition: all .2s ease 0s;
	-ms-transition: all .2s ease 0s;
	transition: all .2s ease 0s
}

body .cookie-consent-banner-open {
	z-index: 9998;
	position: fixed;
	left: 10px;
	bottom: 10px;
	opacity: .7;
	padding: 8px 15px;
	display: flex;
	background: var(--g44-primary-color)!important;
	border: 2px solid var(--g44-primary-color)!important;
	color: var(--g44-secondary-color);
	border-radius: 50px;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-appearance: none;
	-webkit-transition: all .2s ease 0s;
	-moz-transition: all .2s ease 0s;
	-o-transition: all .2s ease 0s;
	-ms-transition: all .2s ease 0s;
	transition: all .2s ease 0s
}

body .cookie-consent-banner-open:hover {
	opacity: 1
}

.cookie-consent-banner-open.hidden {
	transform: translateX(-50px);
	opacity: 0!important
}

.cookie-consent-banner-close {
	border: 0;
	border-radius: 10px;
	background: 0 0!important;
	line-height: 45px;
	height: 45px;
	width: 45px;
	font-size: 32px;
	text-align: center;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	padding: 0;
	color: var(--g44-black-color)
}

.cookie-consent-banner-close:hover {
	opacity: .5
}

.cookie-consent-banner-close.hidden {
	display: none
}

.cookie-consent-banner {
	position: fixed;
	left: 50%;
	bottom: 10%;
	transform: translate(-50%,0);
	opacity: 1;
	visibility: visible;
	display: flex;
	padding: 25px;
	flex-direction: column;
	box-sizing: border-box;
	width: calc(100% - 40px);
	max-width: 800px;
	max-height: calc(100% - 40px);
	height: auto;
	overflow: scroll;
	background-color: #fff;
	box-shadow: 0 40px 80px rgba(0,0,0,.4);
	border-radius: 15px;
	font-family: inherit;
	color: var(--g44-black-color);
	z-index: 9999999;
	-webkit-transition: transform .4s ease 0s,opacity .4s ease 0s,visibility .4s ease 0s;
	-moz-transition: transform .4s ease 0s,opacity .4s ease 0s,visibility .4s ease 0s;
	-o-transition: transform .4s ease 0s,opacity .4s ease 0s,visibility .4s ease 0s;
	-ms-transition: transform .4s ease 0s,opacity .4s ease 0s,visibility .4s ease 0s;
	transition: transform .4s ease 0s,opacity .4s ease 0s,visibility .4s ease 0s
}

.cookie-consent-container.hidden .cookie-consent-banner {
	transform: translate(-50%,200px);
	opacity: 0;
	visibility: hidden
}

.cookie-consent-container .modal-overlay {
	z-index: 9999998
}

.cookie-consent-container .modal-overlay:not(.cookie-consent-container.hidden .modal-overlay) {
	opacity: 1;
	visibility: visible
}

.cookie-consent-banner h3 {
	text-align: left;
	width: 100%;
	font-size: 1.5em;
	margin-bottom: 1rem;
	padding: 0
}

.cookie-consent-banner p {
	text-align: justify;
	text-wrap: unset;
	margin: 0 0 .5em
}

.cookie-consent-time {
	font-size: .75em;
	background-color: #eee;
	padding: 5px;
	border-radius: 5px
}

.cookie-consent-banner label {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	flex-grow: 1;
	padding: 20px 10px;
	font-size: .9em;
	font-weight: 500;
	margin: 0;
	border-right: 1px solid #ccc
}

.cookie-consent-banner label:last-child {
	border-right: 0 solid #ccc
}

.cookie-consent-banner label input {
	margin-right: 7px
}

.toggle input[type=checkbox] {
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	display: inline-block;
	box-sizing: content-box;
	font-size: 12px;
	width: 4.5em;
	height: 2em;
	padding: .2em;
	border: none;
	cursor: pointer;
	border-radius: 1.5em;
	overflow: hidden;
	background-color: #707070;
	transition: background ease .3s,box-shadow ease .3s
}

.toggle input[type=checkbox]:hover {
	background-color: #559360;
	box-shadow: inset 0 0 15px rgb(0 0 0/55%)
}

.toggle input[type=checkbox]:after {
	font-family: bootstrap-icons!important;
	font-style: normal;
	font-weight: 400!important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	content: "\F26E \F62A";
	display: block;
	position: absolute;
	z-index: 1;
	width: 2.3em;
	height: 1em;
	font-size: 2em;
	letter-spacing: .25em;
	white-space: nowrap;
	color: #fff
}

.toggle input[type=checkbox]:before {
	content: "";
	display: block;
	position: absolute;
	z-index: 2;
	width: 2em;
	height: 2em;
	background: #fff;
	border-radius: 1.5em;
	transition: transform cubic-bezier(.3,1.5,.7,1).3s
}

.toggle input[type=checkbox]:checked {
	background-color: #4cd964
}

.toggle input[type=checkbox]:checked:hover {
	box-shadow: inset 0 0 15px rgb(0 0 0/15%)
}

.toggle input[type=checkbox]:checked:before {
	transform: translateX(2.5em)
}

.toggle input[type=checkbox]:disabled {
	background-color: #7da083;
	box-shadow: none
}

.cookie-consent-banner .cookie-consent-options {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: stretch;
	align-items: center;
	margin-top: 1em;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px
}

.cookie-consent-banner .cookie-consent-buttons {
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	justify-content: stretch;
	align-items: center;
	margin-top: 25px;
	gap: 10px
}

.cookie-consent-banner .cookie-consent-buttons button {
	padding: 15px;
	flex-grow: 1;
	font-size: 1.05em;
	cursor: pointer;
	border: 0
}

@media(max-width: 781px) {
	.cookie-consent-banner {
		padding:20px;
		bottom: 0;
		width: 100%;
		transform: translate(-50%,0);
		-webkit-border-bottom-right-radius: 0;
		-webkit-border-bottom-left-radius: 0;
		-moz-border-radius-bottomright: 0;
		-moz-border-radius-bottomleft: 0;
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0
	}

	.cookie-consent-banner h3 {
		font-size: 1.1em;
		margin-bottom: .8em
	}

	.cookie-consent-banner p {
		font-size: .7em
	}

	.toggle input[type=checkbox] {
		font-size: 9px
	}

	.cookie-consent-banner .cookie-consent-buttons button {
		padding: 10px
	}
}

@media(max-width: 680px) {
	.cookie-consent-banner .cookie-consent-options {
		padding:5px;
		box-sizing: border-box;
		margin-top: .5em
	}

	.cookie-consent-banner label {
		gap: 5px;
		padding: 5px;
		font-size: .75em;
		border-right: 0;
		flex-basis: 20%
	}

	.cookie-consent-banner .cookie-consent-buttons button {
		flex-basis: 40%;
		font-size: 1em
	}

	.cookie-consent-banner .cookie-consent-buttons {
		flex-direction: row;
		margin-top: .8em
	}

	.mobile-scroll {
		max-height: 120px;
		overflow-x: scroll
	}
}

@media(max-height: 500px) {
	.cookie-consent-banner {
		padding:15px;
		width: calc(100% - 20px);
		max-height: calc(100% - 20px)
	}

	.cookie-consent-banner .cookie-consent-options {
		padding: 5px;
		box-sizing: border-box
	}

	.cookie-consent-banner label {
		gap: 5px;
		padding: 5px;
		font-size: .75em;
		border-right: 0
	}

	.cookie-consent-banner .cookie-consent-buttons {
		margin-top: 15px
	}
}

@media(max-width: 480px) {
	.cookie-consent-banner .cookie-consent-buttons button {
		flex-basis:100%
	}

	#cookie-consent-btn-accept-all {
		padding: 12px
	}

	#cookie-consent-btn-reject-all {
		flex-basis: 15%
	}

	#cookie-consent-btn-accept-some {
		flex-basis: 40%
	}
}

@media(max-width: 360px) {
	.cookie-consent-banner label {
		font-size:.6em
	}

	.toggle input[type=checkbox] {
		font-size: 8px
	}
}
