.button {
  display: inline-block;
  background: #1c7cae;
  padding: 15px 20px;
  margin: 5px 0px;
  border: none;
  color: #fff;
  font-family: "Roboto", "Arial", Helvetica, sans-serif;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 100%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }
  .button.small {
    font-size: 12px;
    padding: 7px 10px; }
  .button.large {
    font-size: 18px;
    padding: 20px 30px; }
  .button:hover, .button:focus {
    text-decoration: none;
    opacity: 0.8;
    color: #fff; }
  .button:active {
    background: #4A89C1;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }
  .button.selected {
    text-shadow: 1px 1px 3px #888;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }
    .button.selected:hover, .button.selected:focus {
      opacity: 0.8; }
    .button.selected:active {
      text-shadow: 1px 1px 3px #444; }

.admin.button,
.admin .button {
  background: none;
  background-color: #333;
  font-family: "Roboto", "Open Sans", "Arial", Helvetica, sans-serif; }

.text.button {
  background: none;
  padding: 0;
  border: none;
  color: #0081ED;
  font-size: 12px;
  font-family: "Roboto", "Open Sans", "Arial", Helvetica, sans-serif;
  text-shadow: none;
  box-shadow: none; }
  .text.button:hover, .text.button:focus {
    text-decoration: underline; }

.button-group {
  list-style: none outside none;
  padding-left: 0;
  margin: 0; }
  .button-group li,
  .button-group .button {
    display: inline-block; }
  .button-group > .button,
  .button-group li > .button {
    border-radius: 0;
    border-width: 1px 1px 1px 0; }
  .button-group > li:first-child > .button,
  .button-group > .button:first-child {
    margin-left: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-width: 1px; }
  .button-group > li:last-child > .button,
  .button-group > .button:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px; }
