#consent-modal {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(90% - 26px);
	margin: 0 13px;
	background: linear-gradient(45deg, #ff7e5f, #feb47b);
	color: #fff;
	padding: 15px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 9999;
	border-radius: 4px;
}
@media (min-width: 768px) {
	#consent-modal {
		flex-direction: row;
		justify-content: space-between;
		max-width: 600px;
	}
}