@import 'https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap';
.button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.button-medium {
  padding: 0.3rem 1rem;
  border-radius: 0.25rem;
  gap: 0.5rem;
}
.button-medium .content {
  font-size: 1rem;
}
.button-medium .left_icon, .button-medium .right_icon {
  width: 1rem;
  height: 1rem;
}

.button-filled-neutral {
  background-color: #DDE0E5;
  border: 1px solid #d8dce2;
  border-radius: 1rem;
  padding: 0.4rem 1.8rem;
}
.button-filled-neutral .content {
  color: #1f7df7;
}
.button-filled-neutral.disabled {
  background-color: #F0F2F5;
  border: 1px solid #d8dce2;
  cursor: not-allowed;
}
.button-filled-neutral.disabled .content {
  color: #949FB6;
}

.button-filled-blue {
  background-color: #1f7df7;
  border: none;
  border-radius: 1rem;
  padding: 0.4rem 1.8rem;
}
.button-filled-blue .content {
  color: #F0F2F5;
}
.button-filled-blue.disabled {
  background-color: #4A85FF;
  cursor: not-allowed;
}
.button-filled-blue.disabled .content {
  color: #DDE0E5;
}

.button_unfilled_neutral {
  background-color: transparent;
  border: none;
}
.button_unfilled_neutral .content {
  color: #BDC4D3;
}
.button_unfilled_neutral .content img {
  width: 0.9rem;
  margin-left: 0.25rem;
}
.button_unfilled_neutral.disabled {
  background-color: #F0F2F5;
  border: 1px solid #d8dce2;
  cursor: not-allowed;
}
.button_unfilled_neutral.disabled .content {
  color: #949FB6;
}

*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Source Sans 3", sans-serif;
}

h1 {
  font-weight: 600;
  font-size: 2rem;
  margin: 0;
}

h2 {
  font-weight: 500;
}

h3 {
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 1.1rem;
}/*# sourceMappingURL=global.css.map */