/**
 * @file
 * Color functions.
 *
 * @package Functions.
 */
/* Tint. */
/* Shade. */
/**
 * @file
 * Global settings.
 *
 * @package Settings.
 */
/* Import. */
/* * @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap'); */
/* Font family. */
/* Font size. */
/* Font weight. */
/* Line height. */
/* Basic colors. */
/* Status colors. */
/* Border radius. */
/* Outline. */
/* Shadow. */
/* Spacing. */
/* Width. */
/* Breakpoints. */
/* Grid breakpoints. */
/* Grid. */
/**
 * @file
 * Mixin to build a button.
 *
 * @package Tools.
 */
/* Use. */
/* Default. */
/**
 * @file
 * Button styles.
 *
 * @package Molecules.
 */
/* Use. */
/* Button. */
:not(.m-button--nostyle).m-button {
  margin: 0;
  padding: 0.9rem 2rem 0.9rem;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #0062FF;
  border: 0.1rem solid #0062FF;
  border-radius: 1rem;
  color: white;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 700;
  gap: 0.325rem;
  outline: none;
  text-decoration: none;
  line-height: 1.8rem;
  /* Themes. */
  /* Sizes. */
  /* Full width. */
  /* Icon. */
}
:not(.m-button--nostyle).m-button:hover, :not(.m-button--nostyle).m-button:active {
  background: #e2dfed;
  border-color: #e2dfed;
  color: #0062FF;
}
:not(.m-button--nostyle).m-button:focus {
  outline: 1px dashed currentColor;
  outline-color: #0062FF;
  outline-offset: 1px;
}
:not(.m-button--nostyle).m-button:disabled {
  cursor: not-allowed;
  filter: grayscale(100%);
  opacity: 0.2;
  pointer-events: none;
}
:not(.m-button--nostyle).m-button--secondary {
  background-color: #FFC542;
  border-color: #FFC542;
  color: #ffffff;
}
:not(.m-button--nostyle).m-button--secondary:hover, :not(.m-button--nostyle).m-button--secondary:active {
  background-color: rgba(255, 197, 66, 0.7);
  border-color: rgba(255, 197, 66, 0.7);
  color: white;
}
:not(.m-button--nostyle).m-button--secondary:focus {
  outline-color: #0062FF;
}
:not(.m-button--nostyle).m-button--primary {
  background-color: #0062FF;
  border-color: #0062FF;
  color: #ffffff;
}
:not(.m-button--nostyle).m-button--primary:hover, :not(.m-button--nostyle).m-button--primary:active {
  background-color: rgba(0, 98, 255, 0.7);
  border-color: rgba(0, 98, 255, 0.7);
  color: white;
}
:not(.m-button--nostyle).m-button--primary:focus {
  outline-color: #0062FF;
}
:not(.m-button--nostyle).m-button--light {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #0062FF;
}
:not(.m-button--nostyle).m-button--light:hover, :not(.m-button--nostyle).m-button--light:active {
  background-color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.7);
  color: #0062FF;
}
:not(.m-button--nostyle).m-button--light:focus {
  outline-color: #ffffff;
}
:not(.m-button--nostyle).m-button--help {
  background-color: #ffb100;
  border-color: #ffb100;
  color: black;
}
:not(.m-button--nostyle).m-button--help:focus {
  outline-color: #ffb100;
}
:not(.m-button--nostyle).m-button--text {
  padding: 0;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
  border-color: transparent;
  color: #0062FF;
}
:not(.m-button--nostyle).m-button--text:hover, :not(.m-button--nostyle).m-button--text:active {
  background-color: transparent;
  border-color: transparent;
  color: rgba(0, 98, 255, 0.7);
}
:not(.m-button--nostyle).m-button--text:focus {
  outline-color: #0062FF;
}
:not(.m-button--nostyle).m-button--circle {
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  gap: 0;
  justify-content: center;
}
:not(.m-button--nostyle).m-button--circle .m-icon {
  width: 1.8rem;
  height: 1.8rem;
}
:not(.m-button--nostyle).m-button--circle.m-button--size-small {
  width: 3rem;
  height: 3rem;
}
:not(.m-button--nostyle).m-button--circle.m-button--size-small .m-icon {
  width: 1.3rem;
  height: 1.3rem;
}
:not(.m-button--nostyle).m-button--circle.m-button--size-large {
  width: 4rem;
  height: 4rem;
  padding: 0.7rem;
}
:not(.m-button--nostyle).m-button--circle.m-button--size-large .m-icon {
  width: 2rem;
  height: 2rem;
}
:not(.m-button--nostyle).m-button--circle-outline {
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  gap: 0;
  justify-content: center;
  background-color: transparent;
  border-color: #F1F1F5;
  border-width: 0.1rem;
  border-radius: 0.7rem;
  color: #696974;
  transition: all 0.15s ease;
}
:not(.m-button--nostyle).m-button--circle-outline:hover, :not(.m-button--nostyle).m-button--circle-outline:active {
  background-color: transparent;
  border-color: rgba(0, 98, 255, 0.5);
  color: #0062FF;
}
:not(.m-button--nostyle).m-button--circle-outline:focus {
  color: #0062FF;
  outline-color: #0062FF;
}
:not(.m-button--nostyle).m-button--circle-outline.m-button--color-warning {
  color: #FC5A5A;
  border-color: #FC5A5A;
}
:not(.m-button--nostyle).m-button--circle-outline.m-button--color-warning:hover, :not(.m-button--nostyle).m-button--circle-outline.m-button--color-warning:active {
  background-color: #FC5A5A;
  color: #ffffff;
}
:not(.m-button--nostyle).m-button--circle-outline.m-button--color-warning:focus {
  background-color: #FC5A5A;
  color: #ffffff;
  outline-color: #FC5A5A;
}
:not(.m-button--nostyle).m-button--circle-outline.m-button--color-black {
  background-color: #171725;
  color: #ffffff;
  border-color: #171725;
}
:not(.m-button--nostyle).m-button--circle-outline.m-button--color-black:hover, :not(.m-button--nostyle).m-button--circle-outline.m-button--color-black:active {
  background-color: #ffffff;
  color: #171725;
}
:not(.m-button--nostyle).m-button--circle-outline.m-button--color-black:focus {
  background-color: #ffffff;
  color: #171725;
  outline-color: #ffffff;
}
:not(.m-button--nostyle).m-button--circle-outline .m-icon {
  width: 1.8rem;
  height: 1.8rem;
}
:not(.m-button--nostyle).m-button--circle-outline.m-button--size-small {
  width: 2.4rem;
  height: 2.4rem;
}
:not(.m-button--nostyle).m-button--circle-outline.m-button--size-small .m-icon {
  width: 1.3rem;
  height: 1.3rem;
}
:not(.m-button--nostyle).m-button--circle-outline.m-button--size-large {
  width: 4rem;
  height: 4rem;
  padding: 0.7rem;
}
:not(.m-button--nostyle).m-button--circle-outline.m-button--size-large .m-icon {
  width: 2rem;
  height: 2rem;
}
:not(.m-button--nostyle).m-button--outline {
  background-color: transparent;
  border-color: #F1F1F5;
  border-width: 0.1rem;
  color: #696974;
}
:not(.m-button--nostyle).m-button--outline:hover, :not(.m-button--nostyle).m-button--outline:active {
  background-color: transparent;
  border-color: rgba(0, 98, 255, 0.5);
  color: #0062FF;
}
:not(.m-button--nostyle).m-button--outline:focus {
  color: #0062FF;
  outline-color: #0062FF;
}
:not(.m-button--nostyle).m-button--size-small {
  font-size: 1.2rem;
  line-height: 2.2rem;
  padding: 0.3rem 0.9rem;
}
:not(.m-button--nostyle).m-button--size-large {
  font-size: 1.4rem;
  line-height: 2.4rem;
  padding: 0.7rem 2.1rem;
}
:not(.m-button--nostyle).m-button--size-xlarge {
  font-size: 1.4rem;
  line-height: 2.4rem;
  padding: 1.4rem 2.1rem;
}
:not(.m-button--nostyle).m-button--full-width {
  width: 100%;
  justify-content: center;
}
:not(.m-button--nostyle).m-button--full-width .m-icon + span {
  margin-left: 0.5rem;
}
:not(.m-button--nostyle).m-button--block {
  width: 100%;
  justify-content: center;
}
@media screen and (min-width: 960px) {
  :not(.m-button--nostyle).m-button--block {
    max-width: 25rem;
  }
}
:not(.m-button--nostyle).m-button--block .m-icon + span {
  margin-left: 0.5rem;
}
:not(.m-button--nostyle).m-button__icon {
  margin: 0.125rem 0;
}
:not(.m-button--nostyle).m-button--embeded {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}
:not(.m-button--nostyle).m-button--embeded:focus {
  outline: none;
}
:not(.m-button--nostyle).m-button--mode-square {
  border-radius: 0;
}
:not(.m-button--nostyle).m-button__icon + .m-button__label {
  margin-left: 1rem;
}
:not(.m-button--nostyle).m-button__label + .m-button__icon {
  margin-left: 1rem;
}

/*# sourceMappingURL=button.css.map */