.chat-form {
	display: none;
}

.contact-page-wrapper.chat-open .chat-form {
	display: block;
}

.chat-form {
	position: fixed;
	bottom: 150px;
	right: 20px;
	width: 330px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 25px rgba(0,0,0,0.15);
	z-index: 9999;
}

.chat-form .header {
	background-color: #004a8c;
	color: white;
	padding: 10px 15px;
	display: flex;
	align-items: center;
	font-weight: 500;
	font-size: 1.1rem;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.form-content {
	padding: 15px;
}

#supportForm label.lable-text {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 5px;
}

#supportForm input.form-control {
	border-radius: 333px;
	outline: none;
}

#supportForm textarea.form-control {
	min-height: calc(1.5em + .75rem + 2px);
	border-radius: 15px;
	outline: none;
}

button.btn.btn-send {
	border: #d9d9d9 1px solid;
	margin: 0 5px;
	background: linear-gradient(30deg, #de9f17 2%, #cf9a15 31%, #fff68a 68%, #ffcf45 96%);
	color: #000;
	font-size: 16px;
	border-radius: 50px;
	padding: 6px 30px 8px;
	font-weight: 400;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.header-icon {
	width: 40px;
	height: 40px;
	padding: 5px;
	background: #fff;
	border-radius: 33px;
	overflow: hidden;
}

.onclock-button {
	position: fixed;
	bottom: 85px;
	right: 20px;
	z-index: 9999;
}

.support-btn {
	width: 55px;
	height: 55px;
	background: #2c75b9;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	text-decoration: none;
}

.support-btn i.fa {
	color: #fff;
}

#supportForm .error {
	color: red;
	font-size: 13px;
	font-weight: 400;
}

.support-success {
	padding: 15px 0 10px;
}

.support-success .success-icon {
	margin-bottom: 26px;
}

.success-icon img {
	width: 65px;
}

.support-success h5 {
	font-weight: 400;
	margin-bottom: 8px;
	color: green;
	font-size: 14px;
}

.support-success p {
	font-size: 15px;
	color: #333;
	margin: 0;
}

#supportForm .btn-send {
	position: relative;
}

#supportForm .btn-send.loading {
	pointer-events: none;
	opacity: 0.8;
}