*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
#root {
  width: 100%;
  min-height: 100%;
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* hide native input arrow */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield; /* Firefox */
}

ul {
  margin: 0;
  padding-left: 1em;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s !important;
}

button {
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  cursor: pointer;
  font-family: inherit;
  text-align: inherit;
}

.ellipsisText {
  text-overflow: ellipsis;
  overflow: hidden;
  text-wrap: nowrap;
}
