#click{
  display: none;
}
.lab{
  z-index: 100;
  position: fixed;
  right: 30px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  background: -webkit-linear-gradient(left, #232b5d, #1e3c72);
  text-align: center;
  line-height: 55px;
  border-radius: 50px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
.lab i{
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.lab i.fas{
  opacity: 0;
  pointer-events: none;
}
#click:checked ~ .lab i.fas{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) rotate(180deg);
}
#click:checked ~ .lab i.fab{
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(180deg);
}
.wrap{
  
  z-index: 100;
  position: fixed;
  right: 30px;
  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);
}
#click:checked ~ .wrap{
  opacity: 1;
  bottom: 85px;
  pointer-events: auto;
}
.wrap .head-text{
  line-height: 60px;
  color: #fff;
  border-radius: 15px 15px 0 0;
  padding: 0 20px;
  font-weight: 500;
  font-size: 20px;
  background: -webkit-linear-gradient(left, #232b5d, #1e3c72);
}
.wrap .chat-box{
  padding: 20px;
}
.chat-box .desc-text{
  color: #515365;
  text-align: center;
  line-height: 25px;
  font-size: 17px;
  font-weight: 500;
}
.chat-box form{
  padding: 10px 15px;
  margin: 20px 0;
  border-radius: 25px;
  border: 1px solid lightgrey;
}
.chat-box form .fiel[contenteditable="true"]{
  height: 20px;
  width: 100%;
  margin-top: 20px;
  overflow-wrap: normal;
  
}
    .Support{
    color: #1aff00;
  }
.chat-box form .fiel:last-child{
  margin-bottom: 15px;
}

 .fiel input,
 .fiel button,
 .textarea input{
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  border: 1px solid lightgrey;
  outline: none;
  border-radius: 25px;
  font-size: 16px;
  transition: all 0.3s ease;
}
 .fiel input:focus,
 .textarea input:focus{
  border-color: #fc83bb;
}
 .fiel input::placeholder,
 .textarea input::placeholder{
  color: silver;
  transition: all 0.3s ease;
}
 .fiel input:focus::placeholder,
 .textarea input:focus::placeholder{
  color: lightgrey;
}
.chat-box  .textarea{
margin-top: 20px;
  height: 50px;
  width: 100%;
}
.chat-box .textarea input[contenteditable="true"]{
    overflow-y: auto;
  border-radius: 50px;
  resize: none;
  padding: 15px 20px;
  font-size: 16px;
}
.chat-box .fiel button{
    margin-top: 20px;
    height: 50px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  background: -webkit-linear-gradient(left, #232b5d, #1e3c72);
  transition: all 0.3s ease;
}
.chat-box .fiel button:active{
  transform: scale(0.97);
}
.fiel .bot{
    padding-left: 50px;
}
.formchat{
    min-height: 200px;
    overflow-y: auto;
    max-height: 400px;
}
