:root {
	--black: #6f6f6f;
	--white: #000000;
	--blue: #ffd511;
}
/* куки */
#cookie_note{
	bottom: 40px;
	position: fixed;
	right: 24px;
	transform: translateX(-85px);
	width: 325px;
	z-index: 1000;
	background-color: var(--black);
	border-radius: 20px;
	box-sizing: border-box;
	color: #f5f7fa;
	flex-direction: column;
	padding: 10px 20px 20px 20px;
}
.cookie-title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .4px;
	line-height: 24px;
}
#cookie_note p {
	margin: 0;
	font-size: 12px;
	line-height: 16px;
	font-weight: 400;
	letter-spacing: .2px;
	margin: 5px 0 0;
}
#cookie_note a {
	color:#f5f7fa;
	text-decoration: underline;
}
.cookie_accept {
   background: var(--blue);
	color: var(--white);
	width: 100%;
	cursor: pointer;
	border-radius: 8px;
	padding: 10px 16px;
	font-weight: 700;
	margin-top: 16px;
	border: none;
}
.cookie_accept:hover {
	color: #000;
	background-color: #fbe167;
}
#cookie_note p {
    text-align: justify;
}
/* Responsive */
@media (min-width: 576px){
	#cookie_note {
		display: flex;
	}
}
@media (max-width: 575px){
	#cookie_note {
		display: block;
		text-align: left;
	}
}
@media (max-width: 450px){
	#cookie_note {
		width: 90%;
        right: 20px;
		transform: translateX(0px);
	}
	.online-chat-root-TalkMe #supportTrigger {
		right: 5px !important;
	}
}