.cookie-banner {
	position: fixed;
	bottom: 20px;
	left: 20px;
	max-width: 360px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 12px 16px;
	font-family: sans-serif;
	font-size: 14px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	z-index: 1000;
}

.cookie-banner__title {
	font-weight: bold;
	margin-bottom: 4px;
	font-size: 15px;
}

.cookie-banner__desc {
	margin-bottom: 10px;
	color: #555;
}

.cookie-banner__settings label {
	margin-bottom: 6px;
}

.cookie-banner__settings input {
	margin-right: 6px;
}

.cookie-banner__buttons {
	display: flex;
	justify-content: flex-end;
	gap: 6px;
	margin-top: 10px;
}

.cookie-banner__btn {
	color: #ff0001;
	background: #ffdfdf;
	padding: 6px 12px;
	font-size: 13px;
	cursor: pointer;
	border-radius: 4px;
	transition: 0.5s;
	box-shadow: none;
	outline: none;
	border: none;
	text-decoration: none !important;
}

.cookie-banner__btn--primary {
	background-color: #ff0001;
	color: #fff;
}

.cookie-banner__toggle {
	display: flex;
	align-items: center;
	cursor: pointer;
	margin: 10px 0;
}

.cookie-banner__toggle input {
	display: none;
}

.cookie-banner__toggle-slider {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 24px;
	background: #ccc;
	border-radius: 24px;
	margin-right: 10px;
	transition: .4s;
}

.cookie-banner__toggle-slider:before {
	content: "";
	position: absolute;
	height: 16px;
	width: 16px;
	left: 4px;
	bottom: 4px;
	background: white;
	border-radius: 50%;
	transition: .4s;
}

.cookie-banner__btn:hover,
.cookie-banner__btn--primary:hover {
	background: #D90001;
	color: #fff;
}

input:checked + .cookie-banner__toggle-slider {
	background: #0070f6;
}

input:checked + .cookie-banner__toggle-slider:before {
	transform: translateX(26px);
}

.cookie-banner__btn span.banner__btn__mobile {
	display: none;
}

@media (max-width: 768px) {
	.cookie-banner {
		display: flex;
		justify-content: space-between;
		width: 100%;
		max-width: 100vw;
		bottom: 67px;
		box-shadow: 0 -8px 8px rgba(0,0,0,0.1);
		border: none;
		border-top: 1px solid #ccc;
		border-radius: 0px;
		left: 0;
		min-height: 132px;
	}

	.cookie-banner__btn {
		padding: 6px 10px;
		text-align: center;
	}

	.cookie-banner__more,
	.cookie-banner__title {
		display: none;
	}

	.cookie-banner__btn span.cookie-banner__btn__mobile {
		display: inline-block;
	}

	.cookie-banner__btn span.cookie-banner__btn__desktop {
		display: none;
	}

	.cookie-banner__buttons {
		position: absolute;
	    right: 10px;
	    bottom: 12px;
	    display: flex;
		justify-content: space-between;
		width: 100%;
		padding: 0 20px;
	}

	.cookie-banner__desc {
		display: inline-block;
		margin: 0;
		width: calc(100% - 30px);
		position: absolute;
		font-size: 14px;
    	left: 16px;
    	top: 16px;
	}

	.cookie-banner__settings {
		margin: 14px 0 47px 0;
	}
}

@media (max-width: 576px) {
	.cookie-banner {
		bottom: 51px;
		min-height: 154px;
	}
}

@media (max-width: 390px) {
	.cookie-banner {
		min-height: 166px;
	}
}

@media (max-width: 355px) {
	.cookie-banner {
		min-height: 212px;
	}
}