﻿#cookieConsent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: #111;
	color: white;
	padding: 25px;
	z-index: 999999;
	display: none;
	box-shadow: 0 -2px 10px rgba(0,0,0,.4);
}

.cookie-content {
	max-width: 1100px;
	margin: auto;
}

.cookie-buttons {
	margin-top: 20px;
}

.btnCookie {
	background: #185A8B;
	color: white;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	margin-right: 10px;
	border-radius: 4px;
}

	.btnCookie:hover {
		background: #e65c00;
	}


#cookiePreferences {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.65);
	z-index: 9999999;
}


	#cookiePreferences .cookie-content {
		width: 900px;
		max-width: 90%;
		margin: 40px auto;
		background: #111;
		color: #fff;
		border-radius: 8px;
		padding: 35px;
		/* Add Scroll */
		max-height: 90vh;
		overflow-y: auto;
		overflow-x: hidden;
		box-sizing: border-box;
	}

	#cookiePreferences h3 {
		margin: 0 0 15px;
		font-size: 36px;
		color: #fff;
	}

	#cookiePreferences hr {
		border: none;
		border-top: 1px solid #555;
		margin: 20px 0;
	}

.cookie-option {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 18px 0;
	border-bottom: 1px solid #444;
}

	.cookie-option:last-child {
		border-bottom: none;
	}

	.cookie-option h4 {
		margin: 0;
		color: #fff;
		font-size: 22px;
	}

	.cookie-option p {
		margin: 5px 0 0;
		color: #ccc;
		font-size: 15px;
		line-height: 22px;
	}

	.cookie-option input[type=checkbox] {
		width: 20px;
		height: 20px;
		accent-color: #185A8B;
	}

.cookie-footer {
	margin-top: 30px;
	text-align: right;
}

	.cookie-footer button {
		margin-left: 10px;
	}

.btnCookie {
	background: #185A8B;
	color: #fff;
	border: none;
	padding: 12px 25px;
	border-radius: 4px;
	cursor: pointer;
}

	.btnCookie:hover {
		background: #9d3330;
	}

.btnOutline {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
	padding: 12px 25px;
	border-radius: 4px;
	cursor: pointer;
}

#cookiePreferences .cookie-content::-webkit-scrollbar {
	width: 8px;
}

#cookiePreferences .cookie-content::-webkit-scrollbar-track {
	background: #333;
	border-radius: 10px;
}

#cookiePreferences .cookie-content::-webkit-scrollbar-thumb {
	background: #185A8B;
	border-radius: 10px;
}

	#cookiePreferences .cookie-content::-webkit-scrollbar-thumb:hover {
		background: #9d3330;
	}

@media (max-width: 768px) {

	#cookiePreferences .cookie-content {
		width: 100%;
		max-width: 100%;
		margin: 10px auto;
		padding: 20px;
		max-height: calc(100vh - 20px);
		overflow-y: auto;
	}

	.cookie-option {
		flex-direction: column;
		align-items: flex-start;
	}

		.cookie-option input[type=checkbox] {
			margin-top: 15px;
		}

	.cookie-footer {
		text-align: center;
	}

		.cookie-footer button {
			width: 100%;
			margin: 8px 0;
		}

	#cookiePreferences h3 {
		font-size: 28px;
	}
}
