#bws-help-widget {
  position: fixed;
  bottom: 5em;
  right: 2em;
  z-index: 2000;
  font-family: "Open Sans";
  font-size: 16px;
  opacity: 0;
  display: none;
}

#bws-help-widget.bws-hw-visible {
  display: block;
  overflow: visible;
}

#bws-help-widget.bws-hw-ready {
  opacity: 1;
}

#bws-help-widget > * {
  display: none;
}

#bws-help-widget .bws-hw-floating-btn {
  display: block !important;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
  color: #fff;
  text-align: center;
  line-height: 3.9;
  cursor: pointer;
  outline: 0;
  background: #fff;
  border: 4px solid #00825a;
  position: relative;
  top: 0;
}

#bws-help-widget .bws-hw-floating-btn .bws-hw-icon {
  position: relative;
  display: inline-flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

#bws-help-widget .bws-hw-floating-btn .bws-hw-icon img {
  animation: 0.3s bws-open-animation;
  width: 34px;
  height: auto;
  max-width: 34px;
  max-height: 34px;
}

#bws-help-widget .bws-hw-floating-btn .bws-hw-icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: 34px;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 24 24%27 xml:space=%27preserve%27%3e%3cpath fill=%27%232c2a29%27 d=%27M4,19.7l0.7,0.7l7.5-7.5l7.5,7.5l0.7-0.7l-7.5-7.5l7.5-7.5L19.7,4l-7.5,7.5L4.7,4L4,4.7l7.5,7.5L4,19.7z%27/%3e%3c/svg%3e");
  opacity: 0;
}

#bws-help-widget .bws-hw-floating-btn:active {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}

#bws-help-widget::after {
  display: block;
  content: "";
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
  transition: 0.3s;
}

#bws-help-widget .bws-hw-menu {
  padding: 0;
  margin: 0;
}

#bws-help-widget .bws-hw-item {
  position: absolute;
  top: 0.2em;
  right: 0.2em;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  width: 64px;
  height: 64px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  text-align: center;
  line-height: 3;
  background-color: #fff;
  transition: transform 0.3s, background 0.2s;
}

#bws-help-widget .bws-hw-item > img {
  width: 33px;
  height: auto;
  max-width: 40px;
  max-height: 40px;
}

#bws-help-widget .bws-hw-item .bws-hw-text {
  color: #2c2a29;
  font-size: 14px;
  font-weight: 700;
  width: 200px;
  position: absolute;
  top: 0;
  right: 5.2em;
  z-index: -1;
  display: flex;
  line-height: 1.2;
  text-align: right;
  min-height: 64px;
  margin: 0;
  justify-content: flex-end;
  align-items: center;
  font-family: "Open Sans";
}

#bws-help-widget .bws-hw-item .new-item {
  color: #DFFF61;
  font-size: 12px;
  font-weight: 200;
  background-color: #2C2A29;
  padding: 1px 10px;
  border-radius: 5px;
  margin-right: 8px;
}

#bws-help-widget.bws-hw-active > *{
  display: initial;
}

#bws-help-widget.bws-hw-active .bws-hw-floating-btn .bws-hw-icon img {
  opacity: 0;
  animation: none;
}

#bws-help-widget.bws-hw-active .bws-hw-floating-btn .bws-hw-icon::after {
  opacity: 1;
  animation: 0.3s bws-close-animation;
}

#bws-help-widget.bws-hw-active::after {
  display: block;
  content: " ";
  width: 20em;
  height: 20em;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: -7rem;
  z-index: -2;
  background: radial-gradient(circle, rgba(223,255,97,1) 11%, rgba(176,242,174,1) 28%, rgba(176,242,174,1) 43%, rgba(176,242,174,0.7861519607843137) 55%, rgba(255,255,255,0) 63%, rgba(255,255,255,0) 68%);
  transform: scale3d(5.5, 5.5, 1);
  transition-timing-function: cubic-bezier(0.68, 1.55, 0.265, 1);
}

#bws-help-widget .bws-hw-item:hover {
  background-color: #00825A;
}

#bws-help-widget .bws-hw-item:hover img{
  filter: invert();
}

#bws-help-widget.bws-hw-active .bws-hw-item {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#bws-help-widget.bws-hw-active .bws-hw-item:first-child {
  transform: translate3d(0, -20rem, 0);
}
#bws-help-widget.bws-hw-active .bws-hw-item:nth-child(2) {
  transform: translate3d(0, -15rem, 0);
}

#bws-help-widget.bws-hw-active .bws-hw-item:nth-child(3) {
  transform: translate3d(0, -10rem, 0);
}

#bws-help-widget.bws-hw-active .bws-hw-item:nth-child(4) {
  transform: translate3d(0, -5rem, 0);
}

#bws-help-widget.bws-hw-active .bws-hw-item:nth-child(5) {
  transform: translate3d(0, -25rem, 0);
}

#bws-help-widget.bws-hw-active .bws-hw-item:nth-child(n + 6) {
  display: none !important;
}

#bws-help-widget.bws-hw-active.bws-hw-count-3 .bws-hw-item:first-child {
  transform: translate3d(-3.5em, -6.3em, 0);
}

#bws-help-widget.bws-hw-active.bws-hw-count-3 .bws-hw-item:nth-child(2) {
  transform: translate3d(-5.4em, -1.6em, 0);
}

#bws-help-widget.bws-hw-active.bws-hw-count-3 .bws-hw-item:nth-child(3) {
  transform: translate3d(-5em, 3.4em, 0);
}

#bws-help-widget.bws-hw-active.bws-hw-count-2 .bws-hw-item:first-child {
  transform: translate3d(-3em, -6em, 0);
}

#bws-help-widget.bws-hw-active.bws-hw-count-2 .bws-hw-item:nth-child(2) {
  transform: translate3d(-6em, 1em, 0);
}
#bws-help-widget.bws-hw-active.bws-hw-count-1 .bws-hw-item:first-child {
  transform: translate3d(-6em, 0, 0);
}

@keyframes bws-close-animation {
  100% {
    transform: rotate(180deg);
  }
}

@keyframes bws-open-animation {
  100% {
    transform: rotate(-360deg);
  }
}