.vf-chatbot-fab {
  position: fixed;
  bottom: inherit;
  right: inherit;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: none;
  border-radius: 50%;
  border-bottom-right-radius: 10%;
  background: #18974c; //Substituting this colour with variable is giving error at the moment
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;

  &:hover {
    transform: scale(1.05);
    background: darken(#18974c, 10%); //Substituting this colour with variable is giving error at the moment
  }

  &__icon {
    width: 24px;
    height: 24px;
    fill: #ffffff;
  }

  &--inactive {
    display: none;
  }
}
