/* ToolTip по клику*/
.tooltip {
	font-size: 1rem;
	font-weight: 600;
	display: none;
	padding: 10px 15px;
	position: absolute;
	background: #333;
	border-radius: 2rem;
	color: #fff;
	z-index: 200;
}
/* ToolTip по клику*/

/* ToolTip по наведению*/
.invite__tooltip {
	cursor: help;
}

.invite__tooltip::after {
	background: rgba(0, 0, 0, 0.8);
	border-radius: 8px 8px 8px 0px;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
	color: #fff;
	content: attr(data-tooltip); /* Главная часть кода, определяющая содержимое всплывающей подсказки */
	margin-top: -24px;
	opacity: 0; /* Наш элемент прозрачен... */
	padding: 3px 7px;
	position: absolute;
	visibility: hidden; /* ...и скрыт. */
	transition: all 0.4s ease-in-out; /* Добавить плавности по вкусу */
	top: 0.5rem;
	left: 2.5rem;
	text-shadow: none;
}

.invite__tooltip:hover::after {
	opacity: 1; /* Показываем его */
	visibility: visible;
}
/* ToolTip по наведению*/

/* SUCCESS MODAL */
.success__modal {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: 0.4s;
	z-index: 9999;
}

.success__modal-content {
	position: relative;
	padding: 2rem 1rem 1rem 1rem;
	border-radius: 12px;
	width: 20rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

	background: rgba(30, 30, 30, 0.9);
	color: #f0f0f0;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(37, 117, 252, 0.5);
	/* transform: scale(0.9);
	opacity: 0; */
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success__modal-title,
.success__modal-description {
	text-align: center;
}

.success__modal-title {
	font-size: 1.2rem;
	/* color: #1a1a1a; */
	margin-bottom: 1rem;
	line-height: 1;
}

.success__modal-description {
	color: #fff;
	font-size: 0.9rem;
	font-weight: 400;
	margin-bottom: 1rem;
}

.margin__btn {
	margin-top: 0.5rem;
}

.btn__gray {
	background-color: #f4f3f0;
	color: #413936;
	width: 100%;
}

.btn__gray:hover {
	background-color: #e8e7e4;
}

.active-modal-success {
	opacity: 1;
	visibility: visible;
}
/* SUCCESS MODAL */

/* CHECK PASS MODAL */
.check__pass__input {
	font-size: 0.9rem;
	font-weight: 600;
	font-size: 0.9rem;
	font-weight: 400;
	border-radius: 8px;
	color: rgb(24, 26, 27);
	padding: 0.5rem;
	border: 1px solid #e0e0e0; /* Очень светлая, чистая рамка */
	appearance: none;
	margin: 0.5rem;
	outline: none;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
	width: 95%;
	transition: all 0.3s ease-in-out;
}

.check__pass__input:focus {
	outline: none;
	border-color: #2575fc; /* Яркий голубой */
	box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.3); /* Мягкий голубой ореол */
}

/* .btn__green {
	background: #00a36b;
	width: 95%;
}

.btn__green:hover {
	background: #009663;
} */

.check__error {
	font-size: 0.7rem;
	font-weight: 600;
	color: red;
	display: none;
}
/* CHECK PASS MODAL */

/* INVITE BLOCK */
.invite__block {
	text-align: center;
	margin-top: 1rem;
}

.invite__arrow {
	animation-name: moveUpDown; /* Имя вашей анимации */
	animation-duration: 2s; /* Длительность одного цикла анимации */
	animation-iteration-count: infinite; /* Повторять анимацию бесконечно */
	animation-timing-function: ease-in-out; /* Функция плавности (можно использовать и другие) */
}

/* стиль уведомления что лайк поставлен*/
.custom-notification-backdrop {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	z-index: 10000;
	/* display: flex; */
	justify-content: center;
	align-items: center;
}

.custom-notification {
	width: 350px;
	padding: 20px;
	border-radius: 12px;
	background: rgba(30, 30, 30, 0.9);
	color: #f0f0f0;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(37, 117, 252, 0.5);
	transform: scale(0.9);
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Класс, который JS добавляет при показе */
.custom-notification-backdrop.show .custom-notification {
	transform: scale(1);
	opacity: 1;
}

/* ========================================= */
/* 3. КОНТЕНТ */
/* ========================================= */
.notification-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.notification-title {
	font-size: 1.1rem;
	font-weight: 700;
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.notification-message {
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 20px;
}

/* Кнопка "ОК" (CTA) */
.notification-btn-ok {
	float: right;
	cursor: pointer;
	background: linear-gradient(90deg, #6a11cb, #2575fc);
	color: #fff;
	border: none;
	border-radius: 25px;
	padding: 8px 20px;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(106, 17, 203, 0.6);
	transition: all 0.2s ease;
}

.notification-btn-ok:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(106, 17, 203, 0.8);
}
/* стиль уведомления что лайк уже поставлен */

/* УВЕДОМЛЕНИЯ О ДЕЙСТВИЯХ */
/* ========================================= */
/* 1. КОНТЕЙНЕР УВЕДОМЛЕНИЯ */
/* ========================================= */
.toast-notification {
	/* Позиционирование */
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%) translateY(100px); /* Скрываем его за пределами экрана */
	background: #1a202c;
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: 600;
	box-shadow: 0 0 15px rgba(255, 255, 0, 0.7);
	z-index: 9999;
	opacity: 0;
	width: 15rem;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.35); /* Эффект "выпрыгивания" */
}

/* ========================================= */
/* 2. АКТИВНОЕ СОСТОЯНИЕ */
/* ========================================= */
.toast-notification.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0); /* Выезжает на экран */
}

/* ========================================= */
/* 3. ИКОНКА УСПЕХА */
/* ========================================= */
.toast-icon {
	font-size: 1.2rem;
	font-weight: 900;
	margin-left: 10px;
	color: #ffff00;
	text-shadow: 0 0 5px rgba(255, 255, 0, 0.9);
}
/* УВЕДОМЛЕНИЯ О ДЕЙСТВИЯХ */

@keyframes moveUpDown {
	0% {
		transform: translateY(0); /* Начальное положение */
	}
	50% {
		transform: translateY(-16px); /* Блок поднимается на 20 пикселей */
	}
	100% {
		transform: translateY(0); /* Блок возвращается в начальное положение */
	}
}
/* INVITE BLOCK */
