.live-chat {
  display: flex;
  position: fixed;
  background-color: #0094f2;
  box-sizing: border-box;
  padding: 5px 20px 5px 10px;
  width: auto;
  bottom: 9px;
  right: 20px;
  height: auto;
  border-radius: 100px;
  border: 0;
  box-shadow: none;
}
.live-chat a {
  text-decoration: none;
}
.live-chat .icon {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  background-image: url("../images/imageDist/icon-icr.png");
  background-size: cover;
  background-position: center center;
}
.live-chat::after {
  content: "";
  position: absolute;
  background-color: #0094f2;
  bottom: -4px;
  right: 25px;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.live-chat a {
  text-shadow: none;
  background: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.live-chat a:before {
  display: none;
}
.live-chat a p {
  position: relative;
  font-size: 12px;
  top: 0;
  bottom: 0;
  color: #fff;
  margin: 0;
  padding: 0;
}


@media only screen and (max-width: 900px) {
  .live-chat {
    width: 100%;
    padding: 14px 20px;
    border-radius: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.51);
  }
  .live-chat a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
  }
  .live-chat a p {
    font-size: 16px;
    color: #fff;
  }
}
