:root {
  --lightBlue: #f3fbff;
}

:root {
  --lightBlue: #f3fbff;
}

.a-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  min-height: 56px;
  transition: all 0.1s ease-in-out;
  border-radius: 32px;
  background: #01a9c1;
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  border: solid 2px #01a9c1;
}
.a-button:hover {
  background: #ffffff;
  border-color: #019ab8;
  color: #000000;
  border: solid 2px #01a9c1;
}
.a-button_border {
  outline: solid 2px #01a9c1;
  outline-offset: -2px;
  background: transparent;
  color: #000000;
}
.a-button_border:hover {
  background: #01a9c1;
  color: #ffffff;
  border-color: #019ab8;
  outline: solid 2px #01a9c1;
}
.a-button_white {
  outline: solid 2px #ffffff;
  outline-offset: -2px;
  background: transparent;
  color: #ffffff;
}
.a-button_white:hover {
  background: #ffffff;
  color: #01a9c1;
  border-color: #ffffff;
  outline: solid 2px #ffffff;
}
.a-button--disabled {
  opacity: 0.3;
}
.a-button--disabled:hover {
  cursor: not-allowed;
}