#getaquotebar {
	position: fixed;
	left: 0;
	bottom: 0;
	height: 290px;
	margin-left: -3px;
	margin-bottom: 30px;
	z-index: 9999;
}

#getaquotebar-form {
	float: left;
	width: 300px;
	height: 85%;
	z-index: 1000;
	padding : 15px;
	background-clip: 'padding-box';
	background-color: #ffffff;
	border: 1px solid #0068a6;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
	box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

#getaquotebar-tab {
	float: right;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	text-align: center;
	width: 110px;
	height: 35px;
	background-color: #0068a6;
	margin-top: 60px;
	margin-left: -42px;
	padding-top: 4px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

#getaquotebar-tab:hover {
	background-color: #0068a6;
}

#getaquotebar-form textarea {
	resize: none;
}

#click{
  display: none;
}
label.click{
  position: fixed;
  right: 7px;
  bottom: 5px;
  height: 55px;
  width: 55px;
  background: -webkit-linear-gradient(left, #0068a6, #0068b6);
  text-align: center;
  line-height: 55px;
  border-radius: 50px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 99999;
}
label.click i{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
label.click i.fas{
  opacity: 0;
  pointer-events: none;
}
#click:checked ~ label.click i.fas{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) rotate(180deg);
}
#click:checked ~ label.click i.fab{
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(180deg);
}
.contactwrapper{
  position: fixed;
  right: 65px;
  bottom: 0px;
  max-width: 400px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 15px 20px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
  z-index: 10000;
}
#click:checked ~ .contactwrapper{
  opacity: 1;
  bottom: 20px;
  pointer-events: auto;
}
.contactwrapper .head-text{
  line-height: 60px;
  color: #fff;
  border-radius: 15px 15px 0 0;
  padding: 0 20px;
  font-weight: 500;
  font-size: 14px;
  background: -webkit-linear-gradient(left, #0068a6, #0068b6);
}
.contactwrapper .chat-box{
  padding: 20px;
  width: 100%;
}
.chat-box .desc-text{
  color: #515365;
  text-align: center;
  line-height: 25px;
  font-size: 12px;
  font-weight: 500;
}
.chat-box form{
  padding: 10px 15px;
  margin: 20px 0;
  border-radius: 25px;
  border: 1px solid lightgrey;
}
.chat-box form .field{
  height: 50px;
  width: 100%;
  margin-top: 20px;
}
.chat-box form .field:last-child{
  margin-bottom: 15px;
}
form .field input,
form .field button,
form .textarea textarea{
  width: 100%;
  height: 100%;
  padding-left: 20px;
  border: 1px solid lightgrey;
  outline: none;
  border-radius: 25px;
  font-size: 12px;
  transition: all 0.3s ease;
}
form .field input:focus,
form .textarea textarea:focus{
  border-color: #fc83bb;
}
form .field input::placeholder,
form .textarea textarea::placeholder{
  color: silver;
  transition: all 0.3s ease;
}
form .field input:focus::placeholder,
form .textarea textarea:focus::placeholder{
  color: lightgrey;
}
.chat-box form .textarea{
  height: 70px;
  width: 100%;
}
.chat-box form .textarea textarea{
  height: 100%;
  border-radius: 50px;
  resize: none;
  padding: 15px 20px;
  font-size: 12px;
}

.chat-box form .field button{
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  background: -webkit-linear-gradient(left, #0068a6, #0068b6);
  transition: all 0.3s ease;
}
.chat-box form .field button:active{
  transform: scale(0.97);
}
.chkboxfield{
	padding-left:15px;
	padding-top:15px;
}