/* Button Component */
/* VARIABLES */
/* TYPOGRAPHY */
/* Google Fonts */
.c-button {
  cursor: pointer;
  transition: var(--base-trans);
}

.c-button__primary {
  --button-color: var(--white);
  --button-bg: var(--primary-complementary);
  --button-hover-bg: var(--accent-dark);
  display: inline-block;
  padding: 14px var(--spacing-md);
  border: 0;
  border-radius: 8px;
  background-color: var(--button-bg);
  color: var(--button-color);
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.c-button__primary:hover {
  background-color: var(--button-hover-bg);
  color: var(--button-color);
}

.c-button__sample {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  align-items: center;
  padding-right: 32px;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.5rem;
  text-decoration: underline;
}

.c-button__sample:hover {
  color: var(--text-color);
  text-decoration: none;
}

.c-button__sample::after {
  content: "\e933";
  position: absolute;
  right: 0;
  z-index: 1;
  color: var(--text-color);
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: "icomoon";
  font-size: 1.5rem;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-button.stretched-link.c-button__sample {
  position: inherit;
  width: 100%;
  height: 100%;
}

.c-button.stretched-link.c-button__sample::before {
  content: "\e933";
  position: absolute;
  right: 24px;
  z-index: 1;
  color: var(--text-color);
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: "icomoon";
  font-size: 1.5rem;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-button__white {
  --button-color: var(--accent-dark);
  --button-bg: var(--white);
  --button-hover-bg: var(--primary-light);
  display: inline-block;
  padding: 14px var(--spacing-md);
  border: 0;
  border-radius: 8px;
  background-color: var(--button-bg);
  color: var(--button-color);
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.c-button__white:hover {
  background-color: var(--button-hover-bg);
  color: var(--button-color);
}

.c-button__icon {
  display: flex;
  gap: var(--spacing-2xs, 8px);
  justify-content: center;
  align-items: center;
}

@media (min-width: 480px) {
  .c-button__icon {
    display: inline-flex;
  }
}
.c-button__icon--active::after {
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: "icomoon";
  font-size: 1.5rem;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90b";
  color: var(--button-color);
}

.c-button__icon--active[target=_blank]::after {
  content: "\e933";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: "icomoon";
  font-size: 1.5rem;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--button-color);
}

.block.background--accent-shade .c-button, .block.background--accent-dark .c-button {
  --button-bg: var(--white);
  --button-color: var(--accent-dark);
}

.block.background--accent-shade .c-button::after, .block.background--accent-dark .c-button::after {
  color: var(--button-color);
}

.block.background--accent-shade .c-button:hover, .block.background--accent-dark .c-button:hover {
  --button-hover-bg: var(--accent-light);
}
/*# sourceMappingURL=button.css.map */
