/* Bulma Utilities */
.agn-primary-button {
  box-sizing: border-box;
  cursor: pointer;
  border: none;
  background-image: linear-gradient(55deg, #006bd7 1%, #0582ff 98%);
  border-radius: 8px;
  box-shadow: 0 9px 17px 0 rgba(38, 133, 245, 0.28);
  height: 3rem;
  padding: 0 1.5rem;
}
@media screen and (min-width: 768px), print {
  .agn-primary-button {
    height: 64px;
    padding: 0 2.5rem;
  }
}
.agn-primary-button .agn-primary-button-title {
  color: #ffffff;
  font-size: 1rem;
  font-family: Manrope-ExtraBold;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .agn-primary-button .agn-primary-button-title {
    letter-spacing: 0.22px;
    font-size: 22px;
  }
}
.agn-primary-button.is-white-cta {
  background-image: unset;
  background-color: #ffffff;
}
.agn-primary-button.is-white-cta:hover {
  background-color: #ade0fe;
  background-image: unset;
  box-shadow: 0 9px 17px 0 rgba(38, 133, 245, 0.28);
}
.agn-primary-button.is-white-cta .agn-primary-button-title {
  color: #1272e2;
}

.agn-primary-button:hover {
  background-image: linear-gradient(65deg, #024c7e -11%, #0568cb 97%);
  box-shadow: 0 9px 29px 0 var(--RGBA_4);
}

.agn-primary-button:disabled {
  background-color: #1682fc;
  background-image: unset;
  box-shadow: unset;
  cursor: unset;
}
.agn-primary-button:disabled .agn-primary-button-title {
  opacity: 0.6;
}

.agn-primary-button:disabled:hover {
  background-image: unset;
  box-shadow: unset;
}
.agn-primary-button:disabled:hover .agn-primary-button-title {
  opacity: 0.6;
}

.agn-ghost-button {
  box-sizing: border-box;
  background-color: #ffffff;
  border: solid 1.5px #1272e2;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 3rem;
  padding: 0 1.5rem;
}
@media screen and (min-width: 768px), print {
  .agn-ghost-button {
    height: 64px;
    padding: 0 2.5rem;
  }
}
.agn-ghost-button .agn-ghost-button-title {
  font-size: 1rem;
  font-family: Manrope-ExtraBold;
  text-align: center;
  color: #1272e2;
}
@media screen and (min-width: 768px), print {
  .agn-ghost-button .agn-ghost-button-title {
    font-size: 22px;
    line-height: 0.73;
  }
}

.agn-ghost-button:hover {
  background-color: #edf6fa;
  border: solid 1.5px #1272e2;
  box-shadow: 0 1rem 1.5rem 0 var(--RGBA_12);
}

.agn-ghost-button:disabled {
  background-color: #ffffff;
  border-radius: 0.5rem;
  cursor: unset;
  opacity: 0.6;
}

.agn-ghost-button:disabled:hover {
  background-image: unset;
  box-shadow: unset;
}

.agn-primary-button .button-text,
.agn-ghost-button .button-text {
  color: #ffffff;
  display: unset;
  font-size: 1.25rem;
}