.livechat-box {
  position: fixed !important;
  height: 620px !important;
  width: 320px !important;
  bottom: 0px !important;
  right: 0px !important;
  margin: 16px !important;
  padding: 0px !important;
  /* padding: 16px !important; */
  /* border: 1px solid black; */
  border: 0 !important;
  opacity: 1 !important;
  display: block !important;
  transition:  width 0.4s, height 0.325s, opacity 0.2s ease !important;
  z-index: 2147483647 !important;
}
.livechat-detail {
  height: 100% !important;
  width: 100% !important;
  position: relative !important;
  border: 1px solid #BFBFBF !important;
  border-radius: 10px !important;
  background: rgb(246, 246, 247) !important;
  /* background-color: rgb(42, 42, 84); */
  /* animation: myAnim 0.8s ease 0s 1 normal forwards !important */
}

.i-position {
  position: absolute !important;
  top: 10px !important;
  right: 13.1px !important;
  background: transparent !important;
  border: 0 !important;
  cursor: pointer !important;
}
.hidden-livechat-box {
  width: 0 !important;
  height: 0 !important;
  /* display: none !important; */
  opacity: 0.5 !important;
}
.open-chat {
  position: fixed !important;
  right: 6px !important;
  bottom: 6px !important;
  width: 100px !important;
  height: 100px !important;
  /* border-radius: 50% !important; */
  /* background-size: cover !important;
  background-repeat: no-repeat !important; */
  /* color: #000 !important; */
  /* border: 1px solid #2A2A54 !important; */
  /* box-shadow: 0px 0px 10px 4px rgba(83, 83, 201, 0.2) !important; */
  /* cursor: pointer !important; */
  padding: 0 !important;
  animation: animbutton 0.5s ease 0s 1 normal forwards !important
}
.display-iframe{
  display: block;
  animation: myAnim 0.5s ease 0s 1 normal forwards !important
}
.image-icon {
  width: 100% !important;
  height: 100% !important;
}
.openchat-box {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}
.unread-count {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  width: auto !important;
  height: 20px !important;
  border: 1px solid red !important;
  background-color: red !important;
  color: white !important;
  padding: 3px 8px !important;
  line-height: 1.5 !important;
  border-radius: 50px !important;
  margin-top: -15px !important;
}
.hide-button {
  display: none;
}

@keyframes myAnim {
  0% {
    opacity: 0;    
  }
  80%{
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animbutton {
  0% {
    transform: translateX(120px); 
  }
  80% {
    transform: translateX(120px); 
  }
  100% {
    transform: translateX(0);
  }
}



