.chatting-Box {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 999;
  height: 100%;
}
.chatting-Box .chat-header {
  background: #001CA8;
  padding: 20px;
  position: relative;
  height: 80px;
}
.chatting-Box .chat-header .chat-logo-n {
  width: 100%;
  height: 52px;
  background: url("/../verbatim-assets/images/svgs/Verbatim-EUMEA-Logo-RGB-Red-White.svg") no-repeat center;
  display: block;
  margin-bottom: 10px;
}
.chatting-Box .chat-header .close-btn, .chatting-Box .chat-header .close-btn:hover {
  width: 20px;
  height: 20px;
  line-height: 22px;
  background: #fff;
  color: #001CA8;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  position: absolute;
  top: -7px;
  right: -7px;
  cursor: pointer;
}
.chatting-Box .chat-header h1 {
  color: #fff;
  font-size: 20px;
}
.chatting-Box .chat-header h1 span {
  font-size: 14px;
  display: block;
}
.chatting-Box .chat-header button#disconnect_chat {
  font-family: "HelveticaNeue-Bold", Helvetica, Arial, sans-serif;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 31px;
  color: #000;
  background: #fff;
  font-size: 14px;
  font-weigth: bold;
  outline: none !important;
  border-radius: 4px;
  padding: 7px;
  border: 1px solid #fff;
  cursor: pointer;
}
.chatting-Box .chat-body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #333333;
}
.chatting-Box .chat-body #wrapper {
  position: absolute;
  display: block;
  top: 80px;
  right: 0;
  bottom: 5px;
  left: 0;
}
.chatting-Box .chat-body .unavailable-txt {
  padding: 20px;
  text-align: center;
}
.chatting-Box .chat-body ul#chat {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 50px;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 20px;
  overflow-y: scroll;
}
.chatting-Box .chat-body ul#chat li {
  padding: 10px;
}
.chatting-Box .chat-body ul#chat li > span {
  margin-right: 0;
}
.chatting-Box .chat-body ul#chat li:not(.info) > span {
  color: #777777;
}
.chatting-Box .chat-body ul#chat li.info > span {
  color: #cccccc;
}
.chatting-Box .chat-body ul#chat li.status {
  color: #777777;
  font-style: italic;
}
.chatting-Box .chat-body ul#chat li.info {
  background: #aaaaaa;
  border-radius: 5px;
  padding: 10px;
  color: #ffffff;
  margin-bottom: 10px;
  clear: both;
}
.chatting-Box .chat-body ul#chat li.verbatim {
  color: #4D4D4D;
  background: #E6F7FB;
  border-radius: 20px;
  margin-bottom: 15px;
  display: block;
  float: left;
  clear: both;
}
.chatting-Box .chat-body ul#chat li.verbatim span.rtime {
  font-size: 12px;
}
.chatting-Box .chat-body ul#chat li.userc {
  color: #4D4D4D;
  background: #DDEDE4;
  border-radius: 20px;
  margin-bottom: 15px;
  display: block;
  float: right;
  clear: both;
  text-align: right;
}
.chatting-Box .chat-body ul#chat li.userc span.rtime {
  font-size: 12px;
}
.chatting-Box .chat-body div#input {
  position: absolute;
  display: block;
  right: 100px;
  bottom: 0;
  left: 0;
  height: 50px;
}
.chatting-Box .chat-body div#input > textarea {
  font-family: "HelveticaNeue-Bold", Helvetica, Arial, sans-serif;
  font-size: 16px;
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  resize: none;
  padding: 5px;
  outline: none;
}
.chatting-Box .chat-body div#submit {
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
  height: 50px;
  width: 100px;
}
.chatting-Box .chat-body div#submit > button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  color: #fff;
  background: #00b8e4;
  font-size: 18px;
  font-weigth: bold;
  outline: none !important;
}
.chatting-Box .chat-footer {
  height: 100px;
}

@media screen and (max-width: 575px) {
  .chatting-Box {
    z-index: 99999999;
  }
}
