/*
    - Name: "button.scss"
    - Description: "Add custom styles to button block"
*/
/* VARIABLES */
/* TYPOGRAPHY */
/* Google Fonts */
.ui-autocomplete {
  border-color: #002855;
  border-color: rgba(0, 40, 85, 0.5);
  background-clip: padding-box;
}

.ui-autocomplete li a {
  display: block;
  color: #002855;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: var(--font-16);
  text-decoration: none;
}

.ui-autocomplete li a.ui-state-active, .ui-autocomplete li a:hover {
  border-color: #002855;
  background-color: #CCD5E2;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #002855;
}

.block__button {
  display: flex;
  margin: 30px 0;
}

.block__button a {
  display: inline-block;
  padding: 10px 24px;
  border: 0;
  border-radius: 8px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: var(--font-16);
  line-height: 1.5rem;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  display: inline-flex;
}

@media (min-width: 480px) {
  .block__button a {
    padding: 13px 32px;
  }
}
.block__button a:hover {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.block__button .field--name-icon {
  margin-left: -8px;
  padding-right: 12px;
}

.block__button.dark a {
  display: inline-block;
  padding: 10px 24px;
  border: 0;
  border-radius: 8px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: var(--font-16);
  line-height: 1.5rem;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  background-color: #002855;
  color: #fff;
  display: inline-flex;
}

@media (min-width: 480px) {
  .block__button.dark a {
    padding: 13px 32px;
  }
}
.block__button.dark a:hover {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.block__button.dark a:hover {
  background-color: #091D31;
}

.block__button.light a {
  display: inline-block;
  padding: 10px 24px;
  border: 0;
  border-radius: 8px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: var(--font-16);
  line-height: 1.5rem;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  background-color: #fff;
  color: #002855;
  box-shadow: 0 0 10px 0 #777779;
  display: inline-flex;
}

@media (min-width: 480px) {
  .block__button.light a {
    padding: 13px 32px;
  }
}
.block__button.light a:hover {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.block__button.light a:hover {
  background-color: #CCD5E2;
  box-shadow: none;
}

.block__button.base a {
  display: inline-block;
  padding: 10px 24px;
  border: 0;
  border-radius: 8px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: var(--font-16);
  line-height: 1.5rem;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  background-color: #405D8F;
  color: #fff;
  display: inline-flex;
}

@media (min-width: 480px) {
  .block__button.base a {
    padding: 13px 32px;
  }
}
.block__button.base a:hover {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.block__button.center {
  justify-content: center;
}

.block__button.left {
  justify-content: flex-start;
}

.block__button.right {
  justify-content: flex-end;
}

[class*=style-3] .block__button a {
  border-radius: 0;
}
/*# sourceMappingURL=button.css.map */
