.braink-core-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 15px;
  padding: 15px 20px;
  min-width: 150px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.braink-core-button:hover, .braink-core-button:focus-visible {
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.braink-core-button:focus-visible {
  outline: 2px solid #1b1b1b;
  outline-offset: 2px;
}
.braink-core-button__label {
  font-family: "Space Grotesk", sans-serif;
  font-family: "Space Mono", monospace;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.0625vw;
  color: "null";
  font-weight: 700;
}
@media (min-width: 768px) {
  .braink-core-button__label {
    font-size: 17.92px;
    line-height: 22.4px;
  }
}
@media (min-width: 1024px) {
  .braink-core-button__label {
    font-size: 1vw;
    line-height: 1.25vw;
  }
}
@media (min-width: 1440px) {
  .braink-core-button__label {
    font-size: 1vw;
    line-height: 1.25vw;
  }
}
.braink-core-button__label {
  font-style: normal;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.braink-core-button__icon {
  color: var(--icon-color);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  height: 15px;
  width: 15px;
}

@media (min-width: 768px) {
  .braink-core-button {
    height: 56px;
  }
  .braink-core-button__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
    height: 16px;
    width: 16px;
  }
}
@media (min-width: 1024px) and (min-height: 600px) {
  .braink-core-button {
    height: auto;
    border-radius: 1vw;
    padding: 1vw 2vw;
    gap: 1vw;
  }
  .braink-core-button__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 0.9vw;
            flex: 0 0 0.9vw;
    height: 1.5vw;
    width: 1.5vw;
  }
}