/*
 * Showup.js jQuery Plugin
 * http://github.com/jonschlinkert/showup
 *
 * Copyright (c) 2013 Jon Schlinkert, contributors
 * Licensed under the MIT License (MIT).
 */

/**
 * Docs navbar transitions effects
 */



/**
 * Docs Buttons
 */

/* Demo buttons are all <button> tags, so
 * lets style these directly.

button {
  float: right !important;
} */


/* Fixed button, bottom right */
.btn-fixed-bottom {
  position: fixed;
  bottom: 10px;
  right: 20px;
  display: none;
}


/* Toggles navbar classes */
.btn-hide-show {
  margin-right: 10px;
}


/* Light theme */
.btn-light {
  color: #555;
  background-color: rgba(0, 0, 0,.1);
}
.btn-light:hover {
  color: #111;
  background-color: rgba(0, 0, 0,.25);
}

/* Dark theme */
.btn-dark {
  color: #fff;
  background-color: rgba(0, 0, 0,.5);
}
.btn-dark:hover {
  color: #fff;
  background-color: rgba(0, 0, 0,.9);
}



/* Buttons displayed throughout the content */
.btn-showup {
  position: relative;
  color: #fff;
  font-weight: normal;
  background-color: #463265;
  border-color: #3F2961;
}
.btn:focus,
.btn-showup:hover,
.btn-showup:focus {
  color: #fff;
  outline: none;
  background-color: #000;
  border-color: #000;
}

