.chat-widget-wrapper {
  display: block;
  width: 300px;
  height: 62px;
  position: fixed;
  bottom: 20px;
  right: 0;
  padding: 10px;
  cursor: pointer;
  animation: all 2s linear;
  z-index: 11;
}
.chat-widget-container {
  position: relative;
  padding: 10px;
  background-color: #eee;
  border-radius: 4px;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
}
.chat-widget-container.open {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.chat-widget-text p {
  margin: 0 auto;
  color: #808080;
}
.chat-widget-text p.heading {
  color: #288dbb;
  font-weight: 600;
}
.chat-widget-avatar {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -11px;
  right: 30px;
  border: 4px solid #eee;
  border-radius: 50%;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
  overflow:hidden;
  display:block;
}
.chat-widget-avatar img {
  width: 80px;
  margin-top: -8px;
  transition: opacity 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  margin-left: -3px;
}
.chat-box-container {
  position: absolute;
  width: 280px;
  bottom: 10px;
  height: 0;
  background-color: #f1f1f1;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  overflow: hidden;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  z-index: -1;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
}
.chat-box-container.show {
  bottom: 52px;
  height: 300px;
}
.chat-box-nav {
  background-color: #288dbb;
  color: white;
  width: 100%;
  height: 38px;
  padding: 10px 0px 10px 20px;
}
.chat-hide {
  margin: -2px 12px 0 -50px;
  float: right;
  font-weight:bold;
  font-family: Verdana, Geneva, sans-serif;
}
.chat-box-content {
  max-height: 260px;
  overflow-y: scroll;
}
.chat-bubble {
  margin: 14px;
  border: 1px solid #aaa;
  background-color: #ddd;
  padding: 8px;
  width: 220px;
  border-radius: 15px 15px 15px 0;
  max-width: calc(100% - 48px);
  font-size: 0.85em;
}
.chat-name {
  font-size: 0.75em;
  font-weight: bold;
  color: grey;
  margin: 0 0 4px;
}
.chat-other {
  border-radius: 15px 15px 0 15px;
  margin-left: calc(100% - 240px);
  background-color: #82d1ef;
  border-color: #00aeef;
  margin-left: 36px;
}
.chat-box-content form {
  position: relative;
  bottom: 0px;
  left: 10px;
  width: calc(100% - 20px);
  padding-bottom: 20px;
}
.chat-box-content input[type="text"] {
  width: calc(100% - 50px);
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid grey;
}
.chat-box-content input[type="submit"] {
  width: 50px;
  position: absolute;
  box-sizing: border-box;
  padding: 11px !important;
  margin: 0 !important;
  border: 1px solid grey;
  cursor: pointer;
}
.chat-box-content input[type="submit"]:hover {
  background-color: #82d1ef;
  border-color: #00aeef;
}
#chat-write-your-name-here {
  margin: 10px 0 0;
}
