.live-chat {
  position: fixed;
  display: flex;
  bottom: 20px;
  background: #2e4c51d8;
  border-radius: 35px 3px 3px 35px;
  min-width: 200px;
  z-index: 99;
  box-shadow: 0 11px 30px 0 #2e4c51d8;
  align-items: center;
}

.live-chat__left {
  left: 20px;
}
.live-chat__right {
  right: 20px;
}

.live-chat__image {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  border: 3px #2e4c51 solid;
}
@media (max-width: 1024px) {
  .live-chat__image {
    height: 50px;
    width: 50px;
  }
}
.live-chat__text {
  align-items: center;
  justify-content: left;
  font-family: var(--heading--font-family);
  font-size: 18px;
  padding: 13px;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .live-chat__text {
    padding: 8px;
  }
}
.live-chat:hover {
  background-color: #2e4c51;
}
.live-chat:hover .live-chat__image {
  cursor: pointer;
}
.live-chat:hover .live-chat__text {
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .live-chat {
    border-radius: 26px 3px 3px 26px;
    max-width: 270px;
  }
}
