div.freshchat-fc-form-outer {
  position: fixed;
  z-index: 9999999999;
  bottom: 20px;
  right: 20px;
  width: 90%;
  max-width: 300px;
  border-radius: 5px;
  color: #fff;
  font-family: sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, .16)
}
@media screen and (max-width: 640px) {
  div.freshchat-fc-form-outer {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 640px;
    font-size: 16px;
  }
}
.freshchat-fc-form-outer p.header {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #0096D6;
  display: block;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 700;
  margin: 0px !important;
  color: #fff;
}
.freshchat-fc-form-outer p.header .minimize {
  display: block;
  float: right;
  margin-right: 3px;
  cursor: pointer;
}
.freshchat-fc-form-outer div.form {
  margin: 2px;
  background-color: #fff;
  color: #333;
  padding: 20px;
  overflow: auto
}
.freshchat-fc-form-outer div.form p {
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: lighter;
  margin-top: 0px !important;
}
.freshchat-fc-form-outer div.form ul {
  margin: 0;
  padding: 0
}
.freshchat-fc-form-outer div.form ul li {
  list-style: none;
  position: relative;
  margin-bottom: 10px
}
.freshchat-fc-form-outer div.form ul li input {
  padding: 8px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 3px;
  float:none;
  height: 32px;
}
.freshchat-fc-form-outer div.form form.submitted ul li input:invalid {
  border-color: red
}
.freshchat-fc-form-outer div.form ul li input:focus {
  box-shadow: inset 0 2px 4px -1px #ddd;
  outline: 0
}
.freshchat-fc-form-outer div.form ul li label {
  /* position: absolute;
  top: -10px; */
  font-weight: lighter;
  margin-left: 8px;
  margin-right: 8px;
  padding: 0 3px;
  background-color: #fff;
}
.freshchat-fc-form-outer div.form ul li label span {
  color: red
}
.freshchat-fc-form-outer div.form a.fc-button {
  display: block;
  /* width: 100%; */
  background-color: #0096D6;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  padding: 8px
}
.freshchat-fc-form-outer div.form a.fc-button.submitted {
  animation-duration: 1s;
  animation-name: pulse;
  animation-iteration-count: infinite;
  animation-direction: alternate
}
@keyframes pulse {
  from {
      opacity: 1
  }
  to {
      opacity: .5
  }
}
.pre-fc-error {
  text-align: center;
  font-size: 13px;
  color: red
}
.fc-hide {
  display: none
}
.custom_fc_frame {
  visibility: hidden
}