/* Cookie Consent Banner - Worldsmith Capital */

#cookie-consent-banner {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	background-color: #1b1d27;
	color: #ffffff;
	padding: 1em 1.5em;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.35);
	font-family: "Source Sans Pro", Helvetica, sans-serif;
}

#cookie-consent-banner.is-visible {
	display: block;
}

#cookie-consent-banner .cookie-consent-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
}

#cookie-consent-banner p {
	margin: 0;
	font-size: 0.85em;
	line-height: 1.6em;
	color: rgba(255, 255, 255, 0.85);
	flex: 1 1 480px;
}

#cookie-consent-banner a {
	color: #ffffff;
	text-decoration: underline;
}

#cookie-consent-banner a:hover {
	color: rgba(255, 255, 255, 0.75);
}

#cookie-consent-accept {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	flex: 0 0 auto;
	background-color: #4c5c96;
	border: 0;
	border-radius: 5px;
	color: #ffffff;
	cursor: pointer;
	font-family: Raleway, Helvetica, sans-serif;
	font-size: 0.8em;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.85em 1.75em;
	white-space: nowrap;
	transition: background-color 0.2s ease-in-out;
}

#cookie-consent-accept:hover {
	background-color: #53639e;
}

#cookie-consent-accept:active {
	background-color: #44507f;
}

@media screen and (max-width: 736px) {

	#cookie-consent-banner .cookie-consent-inner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	#cookie-consent-accept {
		width: 100%;
	}

}
