@import "../../assets/scss/style.scss";

.button {
  display: flex;
  align-items: center;
  column-gap: 4px;
  height: 40px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 0 12px;
  cursor: pointer;
  transition: color 0.5s, background-color 0.5s;
  svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
  }
  &.--default {
    background-color: #2bbe72;
    color: $red-100;
    &:hover {
      background: #18844e;
    }
    &:focus {
      background: #126d40;
    }
  }
  &.--green-outline {
    background-color: transparent;
    color: #2bbe72;
    border: 1px solid #2bbe72;
    &:hover {
      color: #126d40;
      border: 1px solid #126d40;
    }
    &:focus {
      color: #126d40;
      border: 1px solid #126d40;
    }
  }
}
