/* Buttons */

.button-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  width: fit-content;
  margin-right: -16px;
  margin-bottom: -10px;
}

.button-container .default-button {
  max-width: 100%;
  margin-right: 16px;
  margin-bottom: 10px;
}

.default-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 31px;
  height: 55px;

  background-color: var(--white);
  border: none;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  opacity: 1;

  font-family: "Basis Grotesque Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 0;
  color: var(--blue);

  cursor: pointer;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;

  -webkit-transition: opacity 0.4s, background-color 0.4s;
  transition: opacity 0.4s, background-color 0.4s;
}

.default-button img,
.default-button svg {
  display: block;
  width: 22px;
  height: auto;
  margin-right: 10px;
}

.default-button.-gray {
  background: var(--gray);
}

.default-button.-blue {
  background-color: var(--blue);
}

.default-button.-blue *,
.default-button.-blue {
  color: var(--white);
}

.default-button.-pink {
  color: var(--white);
  background-color: var(--pink);
}

.default-button.-border {
  padding: 0 30px;
  border: 1px solid var(--blue);
  background-color: transparent;
}

.default-button.--white-text *,
.default-button.--white-text {
  color: var(--white);
}

.default-button.-disable {
  background-color: var(--blue) !important;
  opacity: 0.3 !important;
  pointer-events: none;
}

.default-button.-disable *,
.default-button.-disable {
  color: var(--white) !important;
}

.-apple .default-button {
  padding-top: 1px;
}

@media screen and (max-width: 1024px) {
  .button-container {
    margin-right: -12px;
  }

  .button-container .default-button {
    margin-right: 12px;
  }
}
