#support-bubble {
	position: fixed;
	left: 50px;
	bottom: 50px;
	z-index: 9999;
	width: 58px;
	height: 58px;
	padding: 0;
	margin: 0;
	border-radius: 50%;
	font-size: 24px;
	line-height: 1;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
	transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

#support-bubble i {
	font-size: 22px;
	line-height: 1;
}

.support-panel {
	position: fixed;
	left: 50px;
	bottom: 118px;
	z-index: 9998;
	width: 420px;
	max-width: calc(100vw - 100px);
	pointer-events: none;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.support-panel.is-open {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.support-panel-content {
	border: 0;
	border-radius: 18px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
	overflow: hidden;
	background: #fff;
}

.support-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	border-bottom: 0;
	background: rgb(201, 212, 0);
}

.support-panel-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	flex: 1;
	text-align: center;
	padding-left: 20px;
	color: #fff;
}

.support-panel-close {
	display: flex;
	align-items: center;
	justify-content: center;
	appearance: none;
	border: 0;
	background: transparent;
	width: 34px;
	height: 34px;
	cursor: pointer;
	color: #fff;
	flex: 0 0 34px;
}

.support-panel-close-icon {
	display: block;
	font-size: 24px;
	line-height: 1;
	font-weight: 300;
	transform: translateY(-1px);
}

.support-panel-body {
	padding: 24px 20px 26px;
	min-height: 160px;
	background: #fff;
}

.support-panel-form .form-group {
	margin-bottom: 12px;
}

.support-panel-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #1b1b1b;
}

.support-panel-form textarea.form-control {
	min-height: 110px;
	resize: vertical;
}

.support-panel-form .button {
	margin: 8px 0 0;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 600;
}

.support-panel-result {
	margin-top: 12px;
	border-radius: 8px;
	background: #f7f7f7;
	padding: 10px 12px;
	max-height: 180px;
	overflow: auto;
	font-size: 12px;
	line-height: 1.35;
	color: #242424;
}

.support-panel-result:empty {
	display: none;
}

.support-panel-result pre {
	margin: 0;
	white-space: pre-wrap;
	word-break: break-word;
	font-family: Consolas, monospace;
}

@media (max-width: 767px) {
	.support-panel {
		left: 14px;
		right: 14px;
		bottom: 104px;
		width: auto;
		max-width: none;
	}

	.support-panel-title {
		padding-left: 0;
		font-size: 17px;
	}
}

#support-bubble:hover {
	filter: brightness(1.12);
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

@media (max-width: 767px) {
	#support-bubble {
		left: 50px;
		bottom: 50px;
		width: 52px;
		height: 52px;
		font-size: 22px;
	}

	#support-bubble i {
		font-size: 20px;
	}
}
