/******** Cookies ******/




.js-cookie-bar {
	position: fixed;
	z-index: 99999;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50%);
	max-width: 100%;
	width: 900px;
	background: #fff;
	box-shadow: 0 32px 68px rgba(0,0,0,.3);
	border-radius: 8px;
}

.js-cookie-bar .body,
.js-cookie-bar .foot {
	padding: 22px;
}

.js-cookie-bar .body {
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.js-cookie-bar .foot {
	display: flex;
	align-items: center;
	column-gap: 15px;
	justify-content: space-between;
}

.js-cookie-bar .foot a {
	flex: 1 1 auto;
}

.js-cookie-bar .head .tab-menu {
	display: flex;
	height: 100%;

}

.js-cookie-bar .head .tab-menu a {
	flex: 1 1 auto;
	display: block;
	text-align: center;
	border-bottom: 3px solid transparent;
	color: #121212;
	font-weight: 900;
	font-size: 15px;
	padding: 22px 16px;
}

.js-cookie-bar .head .tab-menu .js-tab-opener.opened {
	border-color: var(--second-color);
	color: var(--second-color);
}

.js-cookie-bar p {
	color: #777;
	font-size: 14px;
}

.js-cookie-bar .title {
	font-weight: 600;
	font-size: 16px;
	display: block;
	margin-bottom: 15px;
}

.js-cookie-bar .foot a {
	display: flex;
	padding: 15px;
	font-weight: 900;
	letter-spacing: 0.1px;
	font-size: 14px;
	background: #515AF5;
	color: #fff;
	align-items: center;
	justify-content: center;
}

.js-cookie-bar * {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.js-cookie-bar .switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 25px;
}

.js-cookie-bar .switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.js-cookie-bar .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.js-cookie-bar .slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

.js-cookie-bar input:disabled + .slider {
	opacity: 0.4;
	cursor: not-allowed;
}

.js-cookie-bar input:checked + .slider {
	background-color: #aec71e;
}

.js-cookie-bar input:focus + .slider {
	box-shadow: 0 0 1px #aec71e;
}

.js-cookie-bar input:checked + .slider:before {
	-webkit-transform: translateX(23px);
	-ms-transform: translateX(23px);
	transform: translateX(23px);
}

/* Rounded sliders */
.js-cookie-bar .slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}



.js-cookie-bar .cookcat-item .cookcat-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}

.js-cookie-bar .cookcat-item {
	border-bottom: 1px solid #f1f1f1;
	margin-bottom: 15px;
}

.js-cookie-bar .cookcat-item .cookcat-title {
	font-weight: 700;
	font-size: 16px;

}

.js-cookie-bar .top-head {
	padding: 12px;
	display: flex;
	align-items: center;
	filter: grayscale(100%);
	font-size: 10px;
	column-gap: 10px;
	font-weight: 500;
	color: #555;
	justify-content: flex-end;
	border-bottom: 1px solid #f1f1f1;
}

.js-cookie-bar .top-head img {
	width: 90px;
	opacity: 0.7;
}

.js-cookie-bar .js-tab-content {
	display: none;
}

.js-cookie-bar .js-tab-content.opened {
	display: block;
}

.js-cookie-bar .js-tab-content.scroll {
	height: 320px;
	overflow-y: auto;
	padding-right: 25px;
}

.js-cookie-bar .js-tab-content.scroll::-webkit-scrollbar {
	width: 5px;
}

/* Track */
.js-cookie-bar .js-tab-content.scroll::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 4px;
}

/* Handle */
.js-cookie-bar .js-tab-content.scroll::-webkit-scrollbar-thumb {
	background: #000;
	border-radius: 4px;
}

/* Handle on hover */
.js-cookie-bar .js-tab-content.scroll::-webkit-scrollbar-thumb:hover {
	background: #999;
	border-radius: 4px;
}


@media (max-width: 767.98px) {
	.js-cookie-bar .foot {
		flex-wrap: wrap;
		row-gap: 10px;

	}

	.js-cookie-bar {
		max-width: calc(100% - 20px);
	}

	.js-cookie-bar .foot a {
		width: 100%;
		font-size: 12px;
		padding: 10px;
	}


	.js-cookie-bar .top-head img {
		width: 60px;
		opacity: 0.7;
	}

	.js-cookie-bar .top-head {
		padding-top: 0;
	}


	.js-cookie-bar .js-tab-content {
		height: 150px !important;
		overflow-y: auto;
		padding-right: 15px;
	}

	.js-cookie-bar .js-tab-content::-webkit-scrollbar {
		width: 5px;
	}

	/* Track */
	.js-cookie-bar .js-tab-content::-webkit-scrollbar-track {
		background: #f1f1f1;
		border-radius: 4px;
	}

	/* Handle */
	.js-cookie-bar .js-tab-content::-webkit-scrollbar-thumb {
		background: #000;
		border-radius: 4px;
	}

	/* Handle on hover */
	.js-cookie-bar .js-tab-content::-webkit-scrollbar-thumb:hover {
		background: #999;
		border-radius: 4px;
	}


	body.cookie-on {
		height: 100%;
		overflow: hidden;
		position: relative;

	}

	body.cookie-on:after {
		content: '';
		background: rgba(0,0,0,0.5);
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 100%;
		z-index: 9999;
	}


}
