.quill-button {
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: min-content;
  min-width: 88px;
  padding: 0px 16px;
  white-space: nowrap;
  cursor: pointer;
  font-family: adelle-sans, "Arial", sans-serif;
  &:focus, &:hover {
    outline: none;
    text-decoration: none;
  }
  &.fun {
    height: 32px;
    font-size: 13px;
  }
  &.small {
    height: 36px;
    font-size: 14px;
  }
  &.medium {
    height: 40px;
    font-size: 15px;
    &.icon {
      width: 112px;
    }
  }
  &.large {
    height: 48px;
    font-size: 18px;
    &.icon {
      width: 121px;
    }
  }
  &.outlined {
    border: solid 1px #bdbdbd;
    background-color: white;
    font-weight: 600;
  }
  &.contained {
    font-weight: bold;
    border: none;
  }
  &.primary {
    &.contained {
      color: #ffffff;
      background-color: #06806b;
      &:not(.disabled) {
        &:hover, &:focus {
          background-color: #08907b;
        }
      }
    }
    &.outlined {
      background-color: #ffffff;
      color: #009a80;
      &:hover, &:focus {
        background-color: #f6fcfa;
      }
    }
  }
  &.secondary {
    &.outlined {
      color: #000;
      &:hover, &:focus {
        background-color: #f5f5f5;
      }
    }
  }
  &.disabled {
    color: #878787 !important;
    &.contained {
      background-color: #cccccc;
    }
  }

}
