.slide-button {
  position: fixed;
  z-index: 3000;
  bottom: 90px;
  right: 35px;
  height: 74px;
  width: 74px;
  background-color: #007961;
  color: #fff;
  border: none;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: width 0.4s ease;
}
.slide-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
.slide-button .button-text {
  margin-right: 10px;
  white-space: nowrap;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}
.slide-button .button-icon {
  flex-shrink: 0;
  font-size: 20px;
  transition: margin-left 0.4s ease;
}
.slide-button:hover,
.slide-button:focus,
.slide-button.expanded {
  width: 205px;
}
.slide-button:hover .button-text,
.slide-button:focus .button-text,
.slide-button.expanded .button-text {
  transform: translateX(0);
  opacity: 1;
}
.slide-button:hover .button-icon,
.slide-button:focus .button-icon,
.slide-button.expanded .button-icon {
  margin-left: 8px;
}
@media (min-width: 768px) {
  #servisbot-messenger-iframe {
    bottom: 180px !important;
  }
}
