.cookie-notification {
		background: #fff;
		padding: 15px;
		position: fixed;
		z-index: 1234123123;
		bottom: 10px;
		left: 10px;
		right: 10px;
		box-shadow: 0 0 10px rgba(0, 0, 0, .05);
	}

	.cookie-notification__wrapper {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
	}

	.cookie-notification__text {
		margin: 0;
		max-width: 75%;
		font-size: 14px !important;
	}

	.cookie-notification a {
		text-decoration: underline;
		font-weight: 500;
		color: #e80606;
	}

	.cookie-notification button {
		background: linear-gradient(0deg, #c20000 1%, #e80606 100%);
		width: 120px;
		color: #ffffff;
		height: 36px;
		border-radius: 3px;
		font-size: 14px;
		text-transform: none;
		border: 0;
	}

	@media (max-width: 992px) {
		.cookie-notification__wrapper {
			flex-wrap: wrap;
		}

		.cookie-notification__text {
			max-width: none;
			width: 100%;
		}
	}