/* Floating btn */
.fab1-wrapper {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 999;
}
.fab1-checkbox {
  display: none;
}
.fab1 {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #09c1d9 !important;
  box-shadow: 0px 5px 20px #09c1d9 !important;
  transition: all 0.3s ease;
  z-index: 1;
  border-bottom-right-radius: 6px;
  border: 1px solid #09c1d9 !important;
}
.fab1:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}
.fab1-checkbox:checked ~ .fab1:before {
  width: 90%;
  height: 90%;
  left: 5%;
  top: 5%;
  background-color: rgba(255, 255, 255, 0.2);
}
.fab1:hover {
  background: #F9B723;
  box-shadow: 0px 5px 20px #F9B723;
}
.fab1-dots {
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: white;
  border-radius: 50%;
  top: 50%;
  transform: translateX(0%) translateY(-50%) rotate(0deg);
  opacity: 1;
  animation: blink 3s ease infinite;
  transition: all 0.3s ease;
}
.fab1-dots-1 {
  left: 15px;
  animation-delay: 0s;
}
.fab1-dots-2 {
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  animation-delay: 0.4s;
}
.fab1-dots-3 {
  right: 15px;
  animation-delay: 0.8s;
}
.fab1-checkbox:checked ~ .fab1 .fab1-dots {
  height: 6px;
}
.fab1 .fab1-dots-2 {
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
}
.fab1-checkbox:checked ~ .fab1 .fab1-dots-1 {
  width: 32px;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.fab1-checkbox:checked ~ .fab1 .fab1-dots-3 {
  width: 32px;
  border-radius: 10px;
  right: 50%;
  transform: translateX(50%) translateY(-50%) rotate(-45deg);
}
@keyframes blink {
  50% {
      opacity: 0.25;
  }
}
.fab1-checkbox:checked ~ .fab1 .fab1-dots {
  animation: none;
}
.fab1-wheel {
  position: absolute;
  bottom: 0;
  right: 0;
  border: none;
  width: 10rem;
  height: 10rem;
  transition: all 0.3s ease;
  transform-origin: bottom right;
  transform: scale(0);
}
.fab1-checkbox:checked ~ .fab1-wheel {
  transform: scale(1);
}
.fab1-action {
  position: absolute;
  background: #1a9958;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  transition: all 1s ease;
  opacity: 0;
}
.fab1-checkbox:checked ~ .fab1-wheel .fab1-action {
  opacity: 1;
}
.fab1-action:hover {
  background-color: #1a9958;
  color: #fff;
}
.fab1-wheel .fab1-action-1 {
  right: -1rem;
  top: 0;
}
.fab1-wheel .fab1-action-2 {
  right: 3.4rem;
  top: 0.5rem;
}
.fab1-wheel .fab1-action-3 {
  left: 0.5rem;
  bottom: 0rem !important;
}
.fab1-wheel .fab1-action-4 {
  left: 0;
  bottom: -1rem;
}

/*CUSTOM FROM HERE*/
.connect-text {
    /* background: #569F1F; */
    color: #fff;
    font-size: 14px;
    width: 185px;
    padding: 5px 30px;
    border-radius: 10px;
    /*position: absolute;
    right: 0;
    top: 3px;
    
     */
}
.fab1-wrapper {
    bottom: 6rem !important;
}
.fab1-wrapper .fab1-wheel .fab1-action-1 {
    top: -80px;
    right: -5px;
}
.fab1-wrapper .fab1-wheel .fab1-action-2 {
    top: -20px;
    right: -5px;
    background: #2283c5;
}
.fab1-wrapper .fab1-wheel .fab1-action-3 {
    top: 30px;
    right: -5px;
    bottom: unset;
    left: unset;
    background: #f17f23;
}
.fab1-wrapper .fab1 {
    background: #569F1F;
    box-shadow: 0px 5px 20px #569F1F;
    border: 1px solid #569F1F;
}
.fab1-wrapper .fab1-action{
    background: #569F1F;
}
.fab1-wrapper .fab1:hover {
    background: #569F1F;
    box-shadow: 0px 5px 20px #569F1F;
}

/* Floating btn */