/**
 * Toolbar.
 *
 * Available in the preview post mode.
 */
.snax-toolbar {
  padding: 10px;
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  text-align: right;
  background-color: #ccc; }
  .snax-toolbar > a {
    display: inline-block;
    height: 60px;
    padding: 0 40px;
    font-size: 20px;
    line-height: 60px;
    text-align: center;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    border-color: #808080;
    background-color: #808080;
    color: #fff;
    -webkit-transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out, opacity 0.3s ease-in-out; }
    .snax-toolbar > a:hover {
      border-color: #000;
      background-color: #000;
      color: #fff; }
    .snax-toolbar > a:before {
      display: inline-block;
      margin-right: 10px;
      vertical-align: middle;
      font-size: 34px;
      font-family: "snaxicon";
      content: "\e024"; }
