.flatbutton-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
.flatbutton {
  font-family: 'Proxima-Nova', sans-serif;
  display: flex;
  overflow: hidden;
  margin: 10px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 60ms ease-in-out;
  text-align: center;
  white-space: nowrap;
  text-decoration: none !important;
  text-transform: none;
  text-transform: capitalize;
  color: #fff;
  border: 0 none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  -webkit-appearance: none;
  -moz-appearance: none;
  justify-content: center;
  align-items: center;
  flex: 0 0 160px;
}
.flatbutton:hover {
  transition: all 60ms ease;
  opacity: .85;
}
.flatbutton:active {
  transition: all 60ms ease;
  opacity: .75;
}
.flatbutton:focus {
  outline: 1px dotted #959595;
  outline-offset: -4px;
}
.flatbutton.-regular {
  color: #202129;
  background-color: #edeeee;
}
.flatbutton.-regular:hover {
  color: #202129;
  background-color: #e1e2e2;
  opacity: 1;
}
.flatbutton.-regular:active {
  background-color: #d5d6d6;
  opacity: 1;
}
.flatbutton.-dark {
  color: #FFFFFF;
  background: #333030;
}
.flatbutton.-dark:focus {
  outline: 1px dotted white;
  outline-offset: -4px;
}
.flatbutton.-green {
  color: #FFFFFF;
  background: #3ac569;
}
.flatbutton.-blue {
  color: #FFFFFF;
  background: #2b90d9;
}
.flatbutton.-salmon {
  color: #FFFFFF;
  background: #F32C52;
}
