.footerComment {
	position: fixed;
	right: 30px;
	bottom: 15%;
	cursor: pointer;
	z-index: 99;
}

.footerComment svg {
	width: 50px;
	height: 50px;
}

.callUs {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 102;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	opacity: 0;
	visibility: hidden;
	display: flex;
	font-size: 16px;
}

.callUs.footBack{
	position: unset;
	background-color: transparent;
	opacity: 1;
	visibility: visible;
}

.callUs.open {
	opacity: 1;
	visibility: visible;
}

.callUs h3 {
	margin: 0;
	font-size: 24px;
	color: #333;
	padding-bottom: 10px;
}

.footBack h3,.footBack p{
	color: #333;
}

.callUsItem {
	width: 600px;
	background-color: #fff;
	color: #565656;
	border-radius: 6px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	padding: 15px;
	max-width: 95%;
}

.footBack .callUsItem{
	background-color: transparent;
	border: none;
	width: 100%;
	transform: unset;
	position: unset;
	max-width: 100%;
	padding: 15px 0;
}

.callUsItem .stars {
	width: 100%;
	margin-top: 10px;
}

.callUsItem .stars svg {
	width: 30px;
	height: 30px;
}

.callUsItem p {
	margin: 0;
}

.callUsItem input {
	width: 100%;
	padding: 12px;
	box-sizing: border-box;
	border: 1px solid #565656;
	margin: 15px 0;
}

.call-img-list #image {
	display: none;
}

.upImg {
	width: 80px;
	height: 80px;
}

.call-img-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin: 10px 0;
}

.call-img-list img {
	width: 80px;
	height: 80px;
	cursor: pointer;
	object-fit: cover;
}

.callUsItem input[type="text"]:focus,
.callUsItem textarea:focus {
	outline: none;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.socail-item ul {
	display: flex;
	font-size: 20px;
	margin: 0;
	align-items: center;
	color: #1a73e8;
	padding: 0;
}

.controlItem {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.noneError {
	border: 2px solid #ff0000 !important;
}

.noneError:focus {
	box-shadow: inset 0 1px 1px #ff1c1c07, 0 0 8px #ff1c1c60 !important;
}

.error-message {
	color: #ff1c1c;
	font-size: 14px;
	margin-bottom: 5px;
}

.callUsItem textarea {
	width: 100%;
	height: 100px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857;
	box-sizing: border-box;
	background-color: rgb(255, 255, 255);
	border: 1px solid #565656;
}

.callUsItem button {
	margin-top: 10px 0 5px;
}

.messageBox {
	position: fixed;
	top: 60px;
	right: 20px;
	padding: 5px 20px;
	background-color: #4CAF50;
	color: white;
	border-radius: 4px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	display: none;
}

#sendBtn {
	background-color: #1a73e8;
	color: #fff;
	padding: 8px 10px;
	border-radius: 5px;
	font-weight: bold;
	border: none;
	margin-left: auto;
	display: block;
	cursor: pointer;
}

.footBack #sendBtn{
	background-color: #1a73e8;
	color:#fff;
}

.main-mask{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00000060;
	display: none;
	z-index: 100;
}

.main-mask.open{
	display: block;
}

@media screen and (max-width:768px) {
	.footBack .callUsItem{
		padding: 15px 10px;
	}
}