.cookies-alert {
	position: fixed;
	right: 40px;
	bottom: 40px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 40px;
	padding: 20px;
	border-radius: 24px;
	background-color: rgba(0, 0, 0, 0.6);
	color: $color-white;
	z-index: 9999;
	transition:
		bottom 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
		opacity 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
		visibility 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);

	&:not(.visible) {
		bottom: -40px;
		opacity: 0;
		visibility: hidden;
	}

	@include mobile {
		inset: 8px;
		top: unset;
		flex-flow: column;
		gap: 14px;
		align-items: stretch;
	}

	@include supportBlur {
		backdrop-filter: blur(30px);
	}
}

.cookies-alert__main {
	display: flex;
	flex-flow: column;
	gap: 10px;

	b {
		font-size: 20px;
		font-weight: 700;
		letter-spacing: -0.03em;
	}

	p {
		font-size: 16px;
		line-height: 18px;
	}
}

.cookies-alert__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0px 20px;
	border-radius: 16px;
	background-color: $color-white;
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	color: $color-black;
}
