.cookies_noty {
	position: fixed;
	z-index: 9999;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%) translateY(18px);
	display: none;
	width: calc(100% - 30px);
	max-width: 355px;
	padding: 25px;
	overflow: hidden;
	flex-direction: column;
	font-weight: 600;

	border: 1px solid rgba(199, 192, 255, 0.12);
	border-radius: 16px;
	box-shadow: 0 6px 18px rgb(37 31 33 / 46%);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease, transform .2s ease;
}

.cookies_noty.is-visible {
	display: flex;
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.cookies_noty i {
	position: absolute;
	right: -30px;
	bottom: -10px;
	font-size: 116px;
	transform: rotate(259deg);
	background: -webkit-linear-gradient(#4fea9f, #5b5b5b05);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	pointer-events: none;
}

.cookies_noty span {
	position: relative;
	z-index: 1;
	margin-bottom: 5px;
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
}

.cookies_noty p {
	position: relative;
	z-index: 1;
	margin: 0 0 10px;
	color: #a39ec7;
	font-size: 11px;
	line-height: 15px;
}

.cookies_btn_flex {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 7px;
}

.btn_cookie,
.btn_cookie_yes {
	transition: opacity .2s ease, color .2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 112px;
	height: 40px;
	padding: 0 19px;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	font-size: 9.5px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
}

.btn_cookie {
	color: #c7c0ff;
	background: radial-gradient(100% 100% at 50% 0, #7d76b2 0, #36334d 250%);
}

.btn_cookie_yes {
	color: #fff;
	background: var(--GLOBAL, radial-gradient(100% 100% at 50% 0, #4fea9f 0, #4fea9f 100%));
	text-shadow: #000000a1 1px 0 10px;
}

.btn_cookie:hover,
.btn_cookie:focus,
.btn_cookie_yes:hover,
.btn_cookie_yes:focus {
	opacity: .7;
	text-decoration: none;
}

.btn_cookie:hover,
.btn_cookie:focus {
	color: #bbbbbb;
}


.cookie_policy_modal .modal-body {
	color: #c8c3e6;
	/* font-size: 13px; */
	line-height: 1.6;
}

.cookie_policy_modal .modal-body p {
	margin: 0 0 12px;
}

.cookie_policy_modal .modal-body p:last-child {
	margin-bottom: 0;
}

.cookie_policy_modal .modal-footer {
	border-top: 1px solid rgba(199, 192, 255, 0.1);
}

@media (max-width: 420px) {
	.cookies_noty {
		bottom: 15px;
		padding: 20px;
	}

	.cookies_btn_flex {
		flex-direction: column;
	}

	.btn_cookie,
	.btn_cookie_yes {
		width: 100%;
	}
}
