.chat-popup {
  position: fixed;
  bottom: 5px;
  right: 20px;
  width: 250px;
  height: 60px;
  margin-right: 15px;
  margin-bottom: 5px;
  z-index: 999999;
}

.chat-icon-holder{
  cursor: pointer;
  float: right;
  position: absolute;
  bottom: 0;
  right: 0;
}

.chat-icon-holder .chat-icon{
  max-width: 60px;
}
.chat-message {
  background: rgb(74,186,177);
  background: linear-gradient(90deg, rgba(74,186,177,1) 0%, rgba(51,204,153,1) 100%);
  border-radius: 30px 0 0 30px;
  cursor: pointer;
  overflow: hidden;
  padding: 10px 20px;
  position: absolute;
  bottom: 15px;
  right: 11px;
  z-index: -1;
  width:0;
  max-height: 40px;
  text-align: center;
  transition: width: 1000ms ease;
}

.chat-message p {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
    transform: translateY(50px);
    width: 100%;
}
.chat-message p:hover {

  animation-play-state: paused;
  -webkit-animation-play-state: paused;

}

.chat-close {
  cursor: pointer;
  display: block;
  position: absolute;
  bottom: 55px;
  right: 275px;
  opacity: 0;
  transition: opacity 400ms ease;
}
.chat-close .chat-close-icon {
  max-width: 20px;
  height: auto;
}
.hide{
  opacity: 0 !important ;
  transition: 1s;
}

/*Slide Animation*/

.slide-in {
  opacity: 1 !important;
  animation-delay: 2s;
  transition: 1.5s;
  transform: translateY(0) !important;
}
.slide-out {
  opacity: 0 !important;
  animation-delay: 2s;
  transition: 1s;
  transform: translateY(50px) !important;
}

.chat-message.close {
right: 11px !important;
width:0 !important;
transition: 1s;
}
