#loginButton {
  margin-right: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  background-color: #f4f4f4;
  color: #08949c;
  font-weight: bold;
  cursor: pointer;
}

#loginButton:hover {
  background-color: #e1e1e1;
  color: #08949c;
}

#registerButton {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background-color: #fcac3d;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse1 1.5s infinite;
}

@-webkit-keyframes pulse {
  0% {
    @include transform(scale(0.9));
  }

  70% {
    @include transform(scale(1));
    box-shadow: 0 0 0 10px rgba(252, 172, 61, 0.5);
  }

  100% {
    @include transform(scale(0.9));
    box-shadow: 0 0 0 0 rgba(252, 172, 61, 0.5);
  }
}

@keyframes pulse1 {
  0% {
    transform: scale(0.9);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(252, 172, 61, 0.5);
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(252, 172, 61, 0.5);
  }
}

#registerButton:hover {
  -webkit-animation: none;
  animation: none;
}

.olalgo-contact-us-fixed-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
}

.olalgo-contact-us-fixed-button-card {
  width: 75px;
  height: 75px;
  outline: none;
  border: none;
  background: #08949c;
  border-radius: 50%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: 0.2s ease-in-out;
}

.olalgo-contact-us-fixed-button-whatsapp {
  fill: #fff;
}

.olalgo-contact-us-fixed-button-card:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #fff;
}

.olalgo-contact-us-fixed-button-card:hover .olalgo-contact-us-fixed-button-whatsapp {
  fill: #08949c;
}