html {
	font-size: 14px;
}

@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
	box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
	position: relative;
	min-height: 100%;
}

body {
	margin-bottom: 60px;
}

#cookieConsentdiv {
	z-index: 1000;
	position: fixed;
	width: 380px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(250, 250, 250, 0.9);
	padding: 20px 30px 20px 30px;
	font-family: 'Century Gothic', sans-serif;
	box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.4);
	text-align: center;
	border-radius: 30px 30px 0 0;
}

	#cookieConsentdiv button {
		display: block;
		margin-left: auto;
		margin-right: auto;
		border: none;
		border-radius: 5px;
		background-color: green;
		padding: 10px 50px;
		margin-top: -5px;
		color: white;
		transition: all ease 0.5s;
	}

		#cookieConsentdiv button:hover {
			background-color: darkgreen;
		}

	#cookieConsentdiv h3 {
		color: gray;
		font-size: 22px;
	}

	#cookieConsentdiv p {
		color: gray;
		font-size: 13px;
	}

	#cookieConsentdiv a {
		color: gray;
		text-decoration: underline;
	}
