.callback-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	align-items: center;
	z-index: 1000;
	cursor: pointer;
	opacity: 1;
	visibility: visible;
}

.callback-btn.hidden {
	opacity: 0;
	visibility: hidden;
}

.callback-text {
	background-color: hsl(24, 100%, 50%);
	color: white;
	padding: 10px 45px 10px 15px;
	border-radius: 30px;
	font-size: 16px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.callback-icon {
	width: 60px;
	height: 60px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: hue-rotate(290deg) saturate(2);
	animation: pulse 2s infinite;
	margin-left: -35px;
}

@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.2); }
	100% { transform: scale(1); }
}

.callback-widget {
	position: fixed;
	bottom: 20px; /* Совпадает с кнопкой */
	right: 20px;
	width: 300px;
	background-color: white;
	color: black;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
}

.callback-widget.visible {
	opacity: 1;
	visibility: visible;
}

.callback-header {
	background-color: hsl(24, 100%, 50%);
	color: white;
	padding: 0px 10px;
	border-radius: 10px 10px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
}

#close-widget {
	width: 0.4in; /* Фиксированная ширина */
	height: 0.4in; /* Для квадратной формы */
	background: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.callback-widget form {
	padding: 15px;
}

.callback-widget input,
.callback-widget select,
.callback-widget textarea,
.callback-widget button {
	width: 100%;
	margin: 5px 0;
	padding: 10px;
	font-size: 16px;
	box-sizing: border-box;
}

.callback-widget textarea {
	height: 60px;
	resize: none;
}

.callback-widget .consent p {
	margin: 5px 0;
	font-size: 10px;
	line-height: 12px;
	color: #666;
}

.callback-widget .consent input {
	margin-right: 5px;
	width: auto;
	vertical-align: middle;
}

.callback-notification {
	position: fixed;
	bottom: 20px; /* Совпадает с кнопкой */
	right: 20px;
	width: 300px;
	padding: 15px;
	background-color: white;
	color: black;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	z-index: 1000;
	text-align: center;
	opacity: 0;
	visibility: hidden;
}

.callback-notification.visible {
	opacity: 1;
	visibility: visible;
}

.callback-notification.success {
	background-color: #e6ffe6;
	color: #006600;
}

.callback-notification.error {
	background-color: #ffe6e6;
	color: #660000;
}
