
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
width:64px;
  border: none;
  cursor: pointer;
  position: fixed;
  bottom: 183px;
  right: 17px;
}
.padtop{
padding-top:20px;
}
/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  width:40%;
  height:50%;
  position: fixed;
  background-color:#FFF;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #f1f1f1;
  border-radius:20px;
  z-index: 9;
  background-image:url(formbg.png);
  background-position:center;
  background-size:cover;
}

/* Add styles to the form container */
.form-container {
  margin: 3%;
}

/* Full-width textarea */
.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
  resize: none;
  min-height: 200px;
}

/* When the textarea gets focus, do something */
.form-container textarea:focus {
  background-color: #ddd;
  outline: none;
}
.txthdlinepop
{
font-size:28px;
color:#FFF;
}
/* Set a style for the submit/send button */
.form-container .btn {
  background-color: #C50111;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8; 
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}
.padtop3
{
padding-top:10px;
}
.poptxtbx
{
width:100%;
height:40px;
margin-top:10px;
border:1px solid #CCCCCC;
font-size:16px;
padding:2px 4px;
}
/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}
@media screen and (max-width: 690px) {

.chat-popup {
  display: none;
  width:90%;
  height:60%;
  position: fixed;
  background-color:#FFF;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #f1f1f1;
  border-radius:20px;
  z-index: 9;
  background-image:url(formbg.png);
  background-position:center;
  background-size:cover;
}
}