/*--------------------------------------------------------------
 # Buttons.scss - BoldGrid Button Library.
 --------------------------------------------------------------*/
/*! @license
 *
 * Buttons
 * Copyright 2012-2014 Alex Wolfe and Rob Levin
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*
 * Compass (optional)
 *
 * We recommend the use of autoprefixer instead of Compass
 * when using buttons. However, buttons does support Compass.
 * simply change $ubtn-use-compass to true and uncomment the
 * @import 'compass' code below to use Compass.
 */
/*
 * Required Files
 *
 * These files include the variables and options
 * and base css styles that are required to generate buttons.
 */
/*
 * $ubtn prefix (reserved)
 *
 * This prefix stands for Unicorn Button - ubtn
 * We provide a prefix to the Sass Variables to
 * prevent namespace collisions that could occur if
 * you import buttons as part of your Sass build process.
 * We kindly ask you not to use the prefix $ubtn in your project
 * in order to avoid possilbe name conflicts. Thanks!
 */
/*
 * Button Namespace (ex .button or .btn)
 *
 */
/*
 * Button Defaults
 *
 * Some default settings that are used throughout the button library.
 * Changes to these settings will be picked up by all of the other modules.
 * The colors used here are the default colors for the base button (gray).
 * The font size and height are used to set the base size for the buttons.
 * The size values will be used to calculate the larger and smaller button sizes.
 */
/*
 * Button Colors
 *
 * $ubtn-colors is used to generate the different button colors.
 * Edit or add colors to the list below and recompile.
 * Each block contains the (name, background, color)
 * The class is generated using the name: (ex .button-primary)
 */
/*
 * Button Shapes
 *
 * $ubtn-shapes is used to generate the different button shapes.
 * Edit or add shapes to the list below and recompile.
 * Each block contains the (name, border-radius).
 * The class is generated using the name: (ex .button-square).
 */
/*
 * Button Sizes
 *
 * $ubtn-sizes is used to generate the different button sizes.
 * Edit or add colors to the list below and recompile.
 * Each block contains the (name, size multiplier).
 * The class is generated using the name: (ex .button-giant).
 */
/*
 * Color Mixin
 *
 * Iterates through the list of colors and creates
 *
 */
/*
 * No Animation
 *
 * Sets animation property to none
 */
/*
 * Clearfix
 *
 * Clears floats inside the container
 */
/*
 * Base Button Style
 *
 * The default values for the .button class
 */
.btn {
  color: #333;
  background-color: #87a7bc;
  border-color: #87a7bc;
  font-weight: inherit;
  font-size: 1em;
  font-family: inherit;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  display: inline-block;
  appearance: none;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  transition-property: all;
  transition-duration: 0.3s;
  /*
   * Disabled State
   *
   * The disabled state uses the class .disabled, is-disabled,
   * and the form attribute disabled="disabled".
   * The use of !important is only added because this is a state
   * that must be applied to all buttons when in a disabled state.
   */ }
  .btn:visited {
    color: #333; }
  .btn:hover, .btn:focus {
    background-color: #91aec1;
    text-decoration: none;
    outline: none; }
  .btn:active, .btn.active, .btn.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
    text-decoration: none;
    background-color: #90a5b3;
    border-color: #608aa6;
    color: #668faa;
    transition-duration: 0s;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2); }
  .btn.disabled, .btn.is-disabled, .btn:disabled {
    top: 0 !important;
    background: #eee !important;
    border: 1px solid #ddd !important;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 1) !important;
    color: #ccc !important;
    cursor: default !important;
    appearance: none !important; }
    .btn.disabled else, .btn.is-disabled else, .btn:disabled else {
      box-shadow: none !important;
      opacity: 0.8 !important; }
/*
 * Base Button Tyography
 *
 */
.btn-uppercase {
  text-transform: uppercase; }

.btn-lowercase {
  text-transform: lowercase; }

.btn-capitalize {
  text-transform: capitalize; }

.btn-small-caps {
  font-variant: small-caps; }

.btn-icon-txt-large {
  font-size: 36px !important; }
/*
 * Base padding
 *
 */
.btn-width-small {
  padding: 0 10px !important; }
/*
 * Base Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-color-1, .btn-color-1-flat {
  background-color: #87a7bc;
  border-color: #87a7bc;
  color: #333; }
  .btn-color-1:visited, .btn-color-1-flat:visited {
    color: #333; }
  .btn-color-1:hover, .btn-color-1-flat:hover, .btn-color-1:focus, .btn-color-1-flat:focus {
    background-color: #a8bfce;
    border-color: #a8bfce;
    color: #333; }
  .btn-color-1:active, .btn-color-1-flat:active, .btn-color-1.active, .btn-color-1-flat.active, .btn-color-1.is-active, .btn-color-1-flat.is-active {
    background-color: #90a5b3;
    border-color: #90a5b3;
    color: #668faa; }

.btn-color-2, .btn-color-2-flat {
  background-color: #4d637c;
  border-color: #4d637c;
  color: #fff; }
  .btn-color-2:visited, .btn-color-2-flat:visited {
    color: #fff; }
  .btn-color-2:hover, .btn-color-2-flat:hover, .btn-color-2:focus, .btn-color-2-flat:focus {
    background-color: #617c9b;
    border-color: #617c9b;
    color: #fff; }
  .btn-color-2:active, .btn-color-2-flat:active, .btn-color-2.active, .btn-color-2-flat.active, .btn-color-2.is-active, .btn-color-2-flat.is-active {
    background-color: #576472;
    border-color: #576472;
    color: #394a5d; }

.btn-color-3, .btn-color-3-flat {
  background-color: #6d6e71;
  border-color: #6d6e71;
  color: #fff; }
  .btn-color-3:visited, .btn-color-3-flat:visited {
    color: #fff; }
  .btn-color-3:hover, .btn-color-3-flat:hover, .btn-color-3:focus, .btn-color-3-flat:focus {
    background-color: #86878b;
    border-color: #86878b;
    color: #fff; }
  .btn-color-3:active, .btn-color-3-flat:active, .btn-color-3.active, .btn-color-3-flat.active, .btn-color-3.is-active, .btn-color-3-flat.is-active {
    background-color: #6f6f6f;
    border-color: #6f6f6f;
    color: #545557; }

.btn-color-4, .btn-color-4-flat {
  background-color: #2b222c;
  border-color: #2b222c;
  color: #fff; }
  .btn-color-4:visited, .btn-color-4-flat:visited {
    color: #fff; }
  .btn-color-4:hover, .btn-color-4-flat:hover, .btn-color-4:focus, .btn-color-4-flat:focus {
    background-color: #473849;
    border-color: #473849;
    color: #fff; }
  .btn-color-4:active, .btn-color-4-flat:active, .btn-color-4.active, .btn-color-4-flat.active, .btn-color-4.is-active, .btn-color-4-flat.is-active {
    background-color: #282628;
    border-color: #282628;
    color: #0f0c0f; }
/*
 * Base Layout Styles
 *
 * Very Miminal Layout Styles
 */
.btn-block, .btn-stacked {
  display: block; }
/*
 * Button Types (optional)
 *
 * All of the files below represent the various button
 * types (including shapes & sizes). None of these files
 * are required. Simple remove the uneeded type below and
 * the button type will be excluded from the final build
 */
/*
 * Button Shapes
 *
 * This file creates the various button shapes
 * (ex. Circle, Rounded, Pill)
 */
.btn-square {
  border-radius: 0; }

.btn-box {
  border-radius: 10px; }

.btn-rounded {
  border-radius: 4px; }

.btn-pill {
  border-radius: 200px; }

.btn-circle {
  border-radius: 100%; }
/*
 * Size Adjustment for equal height & widht buttons
 *
 * Remove padding and set a fixed width.
 */
.btn-circle, .btn-box, .btn-square {
  padding: 0 !important;
  width: 40px; }
  .btn-circle.btn-giant, .btn-box.btn-giant, .btn-square.btn-giant {
    width: 70px; }
  .btn-circle.btn-jumbo, .btn-box.btn-jumbo, .btn-square.btn-jumbo {
    width: 60px; }
  .btn-circle.btn-large, .btn-box.btn-large, .btn-square.btn-large {
    width: 50px; }
  .btn-circle.btn-normal, .btn-box.btn-normal, .btn-square.btn-normal {
    width: 40px; }
  .btn-circle.btn-small, .btn-box.btn-small, .btn-square.btn-small {
    width: 30px; }
  .btn-circle.btn-tiny, .btn-box.btn-tiny, .btn-square.btn-tiny {
    width: 24px; }
/*
 * Border Buttons
 *
 * These buttons have no fill they only have a
 * border to define their hit target.
 */
.btn-border, .btn-border-thin, .btn-border-thick {
  background: none;
  border-width: 2px;
  border-style: solid;
  line-height: 36px; }

.btn-border:hover, .btn-border-thin:hover, .btn-border-thick:hover {
  background-color: rgba(168, 191, 206, 0.9); }

.btn-border:active, .btn-border-thin:active, .btn-border-thick:active, .btn-border.active, .btn-border-thin.active, .btn-border-thick.active, .btn-border.is-active, .btn-border-thin.is-active, .btn-border-thick.is-active {
  box-shadow: none;
  text-shadow: none;
  transition-property: all;
  transition-duration: 0.3s; }
/*
 * Border Optional Sizes
 *
 * A slight variation in border thickness
 */
.btn-border-thin {
  border-width: 1px; }

.btn-border-thick {
  border-width: 3px; }
/*
 * Border Button Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-border, .btn-border-thin, .btn-border-thick {
  /*
   * Border Button Size Adjustment
   *
   * The line-height must be adjusted to compinsate for
   * the width of the border.
   */ }
  .btn-border.btn-color-1, .btn-border-thin.btn-color-1, .btn-border-thick.btn-color-1 {
    color: #87a7bc; }
    .btn-border.btn-color-1:hover, .btn-border-thin.btn-color-1:hover, .btn-border-thick.btn-color-1:hover, .btn-border.btn-color-1:focus, .btn-border-thin.btn-color-1:focus, .btn-border-thick.btn-color-1:focus {
      background-color: rgba(168, 191, 206, 0.9);
      color: rgba(51, 51, 51, 0.9); }
    .btn-border.btn-color-1:active, .btn-border-thin.btn-color-1:active, .btn-border-thick.btn-color-1:active, .btn-border.btn-color-1.active, .btn-border-thin.btn-color-1.active, .btn-border-thick.btn-color-1.active, .btn-border.btn-color-1.is-active, .btn-border-thin.btn-color-1.is-active, .btn-border-thick.btn-color-1.is-active {
      background-color: rgba(144, 165, 179, 0.7);
      color: rgba(51, 51, 51, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-2, .btn-border-thin.btn-color-2, .btn-border-thick.btn-color-2 {
    color: #4d637c; }
    .btn-border.btn-color-2:hover, .btn-border-thin.btn-color-2:hover, .btn-border-thick.btn-color-2:hover, .btn-border.btn-color-2:focus, .btn-border-thin.btn-color-2:focus, .btn-border-thick.btn-color-2:focus {
      background-color: rgba(97, 124, 155, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .btn-border.btn-color-2:active, .btn-border-thin.btn-color-2:active, .btn-border-thick.btn-color-2:active, .btn-border.btn-color-2.active, .btn-border-thin.btn-color-2.active, .btn-border-thick.btn-color-2.active, .btn-border.btn-color-2.is-active, .btn-border-thin.btn-color-2.is-active, .btn-border-thick.btn-color-2.is-active {
      background-color: rgba(87, 100, 114, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-3, .btn-border-thin.btn-color-3, .btn-border-thick.btn-color-3 {
    color: #6d6e71; }
    .btn-border.btn-color-3:hover, .btn-border-thin.btn-color-3:hover, .btn-border-thick.btn-color-3:hover, .btn-border.btn-color-3:focus, .btn-border-thin.btn-color-3:focus, .btn-border-thick.btn-color-3:focus {
      background-color: rgba(134, 135, 139, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .btn-border.btn-color-3:active, .btn-border-thin.btn-color-3:active, .btn-border-thick.btn-color-3:active, .btn-border.btn-color-3.active, .btn-border-thin.btn-color-3.active, .btn-border-thick.btn-color-3.active, .btn-border.btn-color-3.is-active, .btn-border-thin.btn-color-3.is-active, .btn-border-thick.btn-color-3.is-active {
      background-color: rgba(111, 111, 111, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-4, .btn-border-thin.btn-color-4, .btn-border-thick.btn-color-4 {
    color: #2b222c; }
    .btn-border.btn-color-4:hover, .btn-border-thin.btn-color-4:hover, .btn-border-thick.btn-color-4:hover, .btn-border.btn-color-4:focus, .btn-border-thin.btn-color-4:focus, .btn-border-thick.btn-color-4:focus {
      background-color: rgba(71, 56, 73, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .btn-border.btn-color-4:active, .btn-border-thin.btn-color-4:active, .btn-border-thick.btn-color-4:active, .btn-border.btn-color-4.active, .btn-border-thin.btn-color-4.active, .btn-border-thick.btn-color-4.active, .btn-border.btn-color-4.is-active, .btn-border-thin.btn-color-4.is-active, .btn-border-thick.btn-color-4.is-active {
      background-color: rgba(40, 38, 40, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-giant, .btn-border-thin.btn-giant, .btn-border-thick.btn-giant {
    line-height: 66px; }
  .btn-border.btn-jumbo, .btn-border-thin.btn-jumbo, .btn-border-thick.btn-jumbo {
    line-height: 56px; }
  .btn-border.btn-large, .btn-border-thin.btn-large, .btn-border-thick.btn-large {
    line-height: 46px; }
  .btn-border.btn-normal, .btn-border-thin.btn-normal, .btn-border-thick.btn-normal {
    line-height: 36px; }
  .btn-border.btn-small, .btn-border-thin.btn-small, .btn-border-thick.btn-small {
    line-height: 26px; }
  .btn-border.btn-tiny, .btn-border-thin.btn-tiny, .btn-border-thick.btn-tiny {
    line-height: 20px; }
/*
 * Border Buttons
 *
 * These buttons have no fill they only have a
 * border to define their hit target.
 */
.btn-borderless {
  background: none;
  border: none;
  padding: 0 8px !important;
  color: #87a7bc;
  font-size: 1.3em;
  font-weight: 200;
  /*
   * Borderless Button Colors
   *
   * Create colors for buttons
   * (.button-primary, .button-secondary, etc.)
   */
  /*
   * Borderles Size Adjustment
   *
   * The font-size must be large to compinsate for
   * the lack of a hit target.
   */ }

.btn-borderless:hover, .btn-borderless:focus {
  background: none; }

.btn-borderless:active, .btn-borderless.active, .btn-borderless.is-active {
  box-shadow: none;
  text-shadow: none;
  transition-property: all;
  transition-duration: 0.3s;
  opacity: 0.3; }
  .btn-borderless.btn-color-1 {
    color: #87a7bc; }
  .btn-borderless.btn-color-2 {
    color: #4d637c; }
  .btn-borderless.btn-color-3 {
    color: #6d6e71; }
  .btn-borderless.btn-color-4 {
    color: #2b222c; }
  .btn-borderless.btn-giant {
    font-size: 2.275em;
    height: 18.275em;
    line-height: 18.275em; }
  .btn-borderless.btn-jumbo {
    font-size: 1.95em;
    height: 17.95em;
    line-height: 17.95em; }
  .btn-borderless.btn-large {
    font-size: 1.625em;
    height: 17.625em;
    line-height: 17.625em; }
  .btn-borderless.btn-normal {
    font-size: 1.3em;
    height: 17.3em;
    line-height: 17.3em; }
  .btn-borderless.btn-small {
    font-size: 0.975em;
    height: 16.975em;
    line-height: 16.975em; }
  .btn-borderless.btn-tiny {
    font-size: 0.78em;
    height: 16.78em;
    line-height: 16.78em; }
/*
 * Raised Buttons
 *
 * A classic looking button that offers
 * great depth and affordance.
 */
.btn-raised {
  border-color: #779bb3;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#91aec1, #779bb3);
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.3), 0 1px 2px rgba(0, 0, 0, 0.15); }

.btn-raised:hover, .btn-raised:focus {
  background: linear-gradient(#a1bacb, #7096af); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #90a5b3;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2), 0px 1px 0px rgba(255, 255, 255, 1); }
/*
 * Raised Button Colors
 *
 * Create colors for raised buttons
 */
.btn-raised.btn-color-1 {
  border-color: #779bb3;
  background: linear-gradient(#97b3c5, #779bb3); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#a1bacb, #7096af); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #668faa;
    background: #90a5b3; }
  .btn-raised.btn-color-2 {
    border-color: #43566c;
    background: linear-gradient(#57708c, #43566c); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#5d7795, #3f5166); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #394a5d;
    background: #576472; }
  .btn-raised.btn-color-3 {
    border-color: #606164;
    background: linear-gradient(#7a7b7e, #606164); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#818286, #5b5c5f); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #545557;
    background: #6f6f6f; }
  .btn-raised.btn-color-4 {
    border-color: #1d171e;
    background: linear-gradient(#392d3a, #1d171e); }
  .btn-raised.btn-color-4:hover, .btn-raised.btn-color-4:focus {
    background: linear-gradient(#413443, #171218); }
  .btn-raised.btn-color-4:active, .btn-raised.btn-color-4.active, .btn-raised.btn-color-4.is-active {
    border-color: #0f0c0f;
    background: #282628; }
/*
 * 3D Buttons
 *
 * These buttons have a heavy three dimensional
 * style that mimics the visual appearance of a
 * real life button.
 */
.btn-3d {
  position: relative;
  top: 0;
  box-shadow: 0 7px 0 #4f758e, 0 8px 3px rgba(0, 0, 0, 0.2); }

.btn-3d:hover, .btn-3d:focus {
  box-shadow: 0 7px 0 #4f758e, 0 8px 3px rgba(0, 0, 0, 0.2); }

.btn-3d:active, .btn-3d.active, .btn-3d.is-active {
  top: 5px;
  transition-property: all;
  transition-duration: 0.15s;
  box-shadow: 0 2px 0 #4f758e, 0 3px 3px rgba(0, 0, 0, 0.2); }
/*
 * 3D Button Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-3d.btn-color-1 {
  box-shadow: 0 7px 0 #668faa, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-1:hover, .btn-3d.btn-color-1:focus {
    box-shadow: 0 7px 0 #608aa6, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-1:active, .btn-3d.btn-color-1.active, .btn-3d.btn-color-1.is-active {
    box-shadow: 0 2px 0 #4f758e, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-2 {
    box-shadow: 0 7px 0 #394a5d, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-2:hover, .btn-3d.btn-color-2:focus {
    box-shadow: 0 7px 0 #364556, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-2:active, .btn-3d.btn-color-2.active, .btn-3d.btn-color-2.is-active {
    box-shadow: 0 2px 0 #26313d, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #545557, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-3:hover, .btn-3d.btn-color-3:focus {
    box-shadow: 0 7px 0 #4f5052, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-3:active, .btn-3d.btn-color-3.active, .btn-3d.btn-color-3.is-active {
    box-shadow: 0 2px 0 #3b3b3d, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-4 {
    box-shadow: 0 7px 0 #0f0c0f, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-4:hover, .btn-3d.btn-color-4:focus {
    box-shadow: 0 7px 0 #090709, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-4:active, .btn-3d.btn-color-4.active, .btn-3d.btn-color-4.is-active {
    box-shadow: 0 2px 0 #000, 0 3px 3px rgba(0, 0, 0, 0.2); }
/*
 * Glowing Buttons
 *
 * A pulse like glow that appears
 * rythmically around the edges of
 * a button.
 */
/*
 * Glow animation mixin for Compass users
 *
 */
/*
 * Glowing Keyframes
 *
 */
@keyframes glowing {
  from {
    box-shadow: 0 0 0 rgba(44, 154, 219, 0.3); }

  50% {
    box-shadow: 0 0 20px rgba(44, 154, 219, 0.8); }

  to {
    box-shadow: 0 0 0 rgba(44, 154, 219, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-color-1 {
    from {
      box-shadow: 0 0 0 rgba(135, 167, 188, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(135, 167, 188, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(135, 167, 188, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-color-2 {
    from {
      box-shadow: 0 0 0 rgba(77, 99, 124, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(77, 99, 124, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(77, 99, 124, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-color-3 {
    from {
      box-shadow: 0 0 0 rgba(109, 110, 113, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(109, 110, 113, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(109, 110, 113, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-color-4 {
    from {
      box-shadow: 0 0 0 rgba(43, 34, 44, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(43, 34, 44, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(43, 34, 44, 0.3); } }
/*
 * Glowing Buttons Base Styes
 *
 * A pulse like glow that appears
 * rythmically around the edges of
 * a button.
 */
.btn-glow {
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: glowing; }

.btn-glow:active, .btn-glow.active, .btn-glow.is-active {
  animation-name: none; }
/*
 * Glowing Button Colors
 *
 * Create colors for glowing buttons
 */
.btn-glow.btn-color-1 {
  animation-name: glowing-color-1; }
  .btn-glow.btn-color-2 {
    animation-name: glowing-color-2; }
  .btn-glow.btn-color-3 {
    animation-name: glowing-color-3; }
  .btn-glow.btn-color-4 {
    animation-name: glowing-color-4; }
/*
 * Dropdown menu buttons
 *
 * A dropdown menu appears
 * when a button is pressed
 */
/*
 * Dropdown Container
 *
 */
.btn-dropdown {
  position: relative;
  overflow: visible;
  display: inline-block; }
/*
 * Dropdown List Style
 *
 */
.btn-dropdown-list {
  display: none;
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 1000;
  min-width: 100%;
  list-style-type: none;
  background: rgba(168, 191, 206, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #668faa;
  font-family: inherit;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  box-sizing: border-box;
  /*
   * Dropdown Above
   *
   */ }

.btn-dropdown-list.is-below {
  /*
   * Dropdown Below
   *
   */
  top: 100%;
  border-top: none;
  border-radius: 0 0 3px 3px; }

.btn-dropdown-list.is-above {
  bottom: 100%;
  top: auto;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 -2px 7px rgba(0, 0, 0, 0.2); }
/*
 * Dropdown Buttons
 *
 */
.btn-dropdown-list > li {
  padding: 0;
  margin: 0;
  display: block; }

.btn-dropdown-list > li > a {
  display: block;
  line-height: 40px;
  font-size: 0.8em;
  padding: 5px 10px;
  float: none;
  color: #333;
  text-decoration: none; }
  .btn-dropdown-list > li > a:hover {
    color: #2b2b2b;
    background: #91aec1;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #7da0b7; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(135, 167, 188, 0.95);
  border-color: #668faa; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #7096af; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list > li > a {
    color: #333; }
    .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list > li > a:hover {
      color: #262626;
      background: #779bb3; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(77, 99, 124, 0.95);
    border-color: #394a5d; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #3f5166; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list > li > a {
    color: #fff; }
    .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #43566c; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(109, 110, 113, 0.95);
    border-color: #545557; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #5b5c5f; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a {
    color: #fff; }
    .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #606164; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list {
    background: rgba(43, 34, 44, 0.95);
    border-color: #0f0c0f; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #171218; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a {
    color: #fff; }
    .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #1d171e; }
/*
 * Buton Groups
 *
 * A group of related buttons
 * displayed edge to edge
 */
.btn-group {
  *zoom: 1;
  position: relative;
  display: inline-block; }

.btn-group:after, .btn-group:before {
  content: '.';
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0; }

.btn-group .btn, .btn-group .btn-dropdown {
  float: left; }
  .btn-group .btn:not(:first-child):not(:last-child), .btn-group .btn-dropdown:not(:first-child):not(:last-child) {
    border-radius: 0;
    border-right: none; }
  .btn-group .btn:first-child, .btn-group .btn-dropdown:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none; }
  .btn-group .btn:last-child, .btn-group .btn-dropdown:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
/*
 * Button Wrapper
 *
 * A wrap around effect to highlight
 * the shape of the button and offer
 * a subtle visual effect.
 */
.btn-wrap {
  border: 1px solid #e3e3e3;
  display: inline-block;
  padding: 9px;
  background: linear-gradient(#f2f2f2, #fff);
  border-radius: 200px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04); }
/*
 * Long Shadow Buttons
 *
 * A visual effect adding a flat shadow to the text of a button
 */
/*
 * Long Shadow Function
 *
 * Loops $length times building a long shadow. Defaults downward right
 */
/*
 * LONG SHADOW MIXIN
 *
 */
/*
 * Shadow Right
 *
 */
.btn-longshadow, .btn-longshadow-right {
  overflow: hidden; }
  .btn-longshadow.btn-color-1, .btn-longshadow-right.btn-color-1 {
    text-shadow: 0px 0px #668faa, 1px 1px #668faa, 2px 2px #668faa, 3px 3px #668faa, 4px 4px #668faa, 5px 5px #668faa, 6px 6px #668faa, 7px 7px #668faa, 8px 8px #668faa, 9px 9px #668faa, 10px 10px #668faa, 11px 11px #668faa, 12px 12px #668faa, 13px 13px #668faa, 14px 14px #668faa, 15px 15px #668faa, 16px 16px #668faa, 17px 17px #668faa, 18px 18px #668faa, 19px 19px #668faa, 20px 20px #668faa, 21px 21px #668faa, 22px 22px #668faa, 23px 23px #668faa, 24px 24px #668faa, 25px 25px #668faa, 26px 26px #668faa, 27px 27px #668faa, 28px 28px #668faa, 29px 29px #668faa, 30px 30px #668faa, 31px 31px #668faa, 32px 32px #668faa, 33px 33px #668faa, 34px 34px #668faa, 35px 35px #668faa, 36px 36px #668faa, 37px 37px #668faa, 38px 38px #668faa, 39px 39px #668faa, 40px 40px #668faa, 41px 41px #668faa, 42px 42px #668faa, 43px 43px #668faa, 44px 44px #668faa, 45px 45px #668faa, 46px 46px #668faa, 47px 47px #668faa, 48px 48px #668faa, 49px 49px #668faa, 50px 50px #668faa, 51px 51px #668faa, 52px 52px #668faa, 53px 53px #668faa, 54px 54px #668faa, 55px 55px #668faa, 56px 56px #668faa, 57px 57px #668faa, 58px 58px #668faa, 59px 59px #668faa, 60px 60px #668faa, 61px 61px #668faa, 62px 62px #668faa, 63px 63px #668faa, 64px 64px #668faa, 65px 65px #668faa, 66px 66px #668faa, 67px 67px #668faa, 68px 68px #668faa, 69px 69px #668faa, 70px 70px #668faa, 71px 71px #668faa, 72px 72px #668faa, 73px 73px #668faa, 74px 74px #668faa, 75px 75px #668faa, 76px 76px #668faa, 77px 77px #668faa, 78px 78px #668faa, 79px 79px #668faa, 80px 80px #668faa, 81px 81px #668faa, 82px 82px #668faa, 83px 83px #668faa, 84px 84px #668faa, 85px 85px #668faa; }
  .btn-longshadow.btn-color-1:active, .btn-longshadow-right.btn-color-1:active, .btn-longshadow.btn-color-1.active, .btn-longshadow-right.btn-color-1.active, .btn-longshadow.btn-color-1.is-active, .btn-longshadow-right.btn-color-1.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow.btn-color-2, .btn-longshadow-right.btn-color-2 {
    text-shadow: 0px 0px #394a5d, 1px 1px #394a5d, 2px 2px #394a5d, 3px 3px #394a5d, 4px 4px #394a5d, 5px 5px #394a5d, 6px 6px #394a5d, 7px 7px #394a5d, 8px 8px #394a5d, 9px 9px #394a5d, 10px 10px #394a5d, 11px 11px #394a5d, 12px 12px #394a5d, 13px 13px #394a5d, 14px 14px #394a5d, 15px 15px #394a5d, 16px 16px #394a5d, 17px 17px #394a5d, 18px 18px #394a5d, 19px 19px #394a5d, 20px 20px #394a5d, 21px 21px #394a5d, 22px 22px #394a5d, 23px 23px #394a5d, 24px 24px #394a5d, 25px 25px #394a5d, 26px 26px #394a5d, 27px 27px #394a5d, 28px 28px #394a5d, 29px 29px #394a5d, 30px 30px #394a5d, 31px 31px #394a5d, 32px 32px #394a5d, 33px 33px #394a5d, 34px 34px #394a5d, 35px 35px #394a5d, 36px 36px #394a5d, 37px 37px #394a5d, 38px 38px #394a5d, 39px 39px #394a5d, 40px 40px #394a5d, 41px 41px #394a5d, 42px 42px #394a5d, 43px 43px #394a5d, 44px 44px #394a5d, 45px 45px #394a5d, 46px 46px #394a5d, 47px 47px #394a5d, 48px 48px #394a5d, 49px 49px #394a5d, 50px 50px #394a5d, 51px 51px #394a5d, 52px 52px #394a5d, 53px 53px #394a5d, 54px 54px #394a5d, 55px 55px #394a5d, 56px 56px #394a5d, 57px 57px #394a5d, 58px 58px #394a5d, 59px 59px #394a5d, 60px 60px #394a5d, 61px 61px #394a5d, 62px 62px #394a5d, 63px 63px #394a5d, 64px 64px #394a5d, 65px 65px #394a5d, 66px 66px #394a5d, 67px 67px #394a5d, 68px 68px #394a5d, 69px 69px #394a5d, 70px 70px #394a5d, 71px 71px #394a5d, 72px 72px #394a5d, 73px 73px #394a5d, 74px 74px #394a5d, 75px 75px #394a5d, 76px 76px #394a5d, 77px 77px #394a5d, 78px 78px #394a5d, 79px 79px #394a5d, 80px 80px #394a5d, 81px 81px #394a5d, 82px 82px #394a5d, 83px 83px #394a5d, 84px 84px #394a5d, 85px 85px #394a5d; }
  .btn-longshadow.btn-color-2:active, .btn-longshadow-right.btn-color-2:active, .btn-longshadow.btn-color-2.active, .btn-longshadow-right.btn-color-2.active, .btn-longshadow.btn-color-2.is-active, .btn-longshadow-right.btn-color-2.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow.btn-color-3, .btn-longshadow-right.btn-color-3 {
    text-shadow: 0px 0px #545557, 1px 1px #545557, 2px 2px #545557, 3px 3px #545557, 4px 4px #545557, 5px 5px #545557, 6px 6px #545557, 7px 7px #545557, 8px 8px #545557, 9px 9px #545557, 10px 10px #545557, 11px 11px #545557, 12px 12px #545557, 13px 13px #545557, 14px 14px #545557, 15px 15px #545557, 16px 16px #545557, 17px 17px #545557, 18px 18px #545557, 19px 19px #545557, 20px 20px #545557, 21px 21px #545557, 22px 22px #545557, 23px 23px #545557, 24px 24px #545557, 25px 25px #545557, 26px 26px #545557, 27px 27px #545557, 28px 28px #545557, 29px 29px #545557, 30px 30px #545557, 31px 31px #545557, 32px 32px #545557, 33px 33px #545557, 34px 34px #545557, 35px 35px #545557, 36px 36px #545557, 37px 37px #545557, 38px 38px #545557, 39px 39px #545557, 40px 40px #545557, 41px 41px #545557, 42px 42px #545557, 43px 43px #545557, 44px 44px #545557, 45px 45px #545557, 46px 46px #545557, 47px 47px #545557, 48px 48px #545557, 49px 49px #545557, 50px 50px #545557, 51px 51px #545557, 52px 52px #545557, 53px 53px #545557, 54px 54px #545557, 55px 55px #545557, 56px 56px #545557, 57px 57px #545557, 58px 58px #545557, 59px 59px #545557, 60px 60px #545557, 61px 61px #545557, 62px 62px #545557, 63px 63px #545557, 64px 64px #545557, 65px 65px #545557, 66px 66px #545557, 67px 67px #545557, 68px 68px #545557, 69px 69px #545557, 70px 70px #545557, 71px 71px #545557, 72px 72px #545557, 73px 73px #545557, 74px 74px #545557, 75px 75px #545557, 76px 76px #545557, 77px 77px #545557, 78px 78px #545557, 79px 79px #545557, 80px 80px #545557, 81px 81px #545557, 82px 82px #545557, 83px 83px #545557, 84px 84px #545557, 85px 85px #545557; }
  .btn-longshadow.btn-color-3:active, .btn-longshadow-right.btn-color-3:active, .btn-longshadow.btn-color-3.active, .btn-longshadow-right.btn-color-3.active, .btn-longshadow.btn-color-3.is-active, .btn-longshadow-right.btn-color-3.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow.btn-color-4, .btn-longshadow-right.btn-color-4 {
    text-shadow: 0px 0px #0f0c0f, 1px 1px #0f0c0f, 2px 2px #0f0c0f, 3px 3px #0f0c0f, 4px 4px #0f0c0f, 5px 5px #0f0c0f, 6px 6px #0f0c0f, 7px 7px #0f0c0f, 8px 8px #0f0c0f, 9px 9px #0f0c0f, 10px 10px #0f0c0f, 11px 11px #0f0c0f, 12px 12px #0f0c0f, 13px 13px #0f0c0f, 14px 14px #0f0c0f, 15px 15px #0f0c0f, 16px 16px #0f0c0f, 17px 17px #0f0c0f, 18px 18px #0f0c0f, 19px 19px #0f0c0f, 20px 20px #0f0c0f, 21px 21px #0f0c0f, 22px 22px #0f0c0f, 23px 23px #0f0c0f, 24px 24px #0f0c0f, 25px 25px #0f0c0f, 26px 26px #0f0c0f, 27px 27px #0f0c0f, 28px 28px #0f0c0f, 29px 29px #0f0c0f, 30px 30px #0f0c0f, 31px 31px #0f0c0f, 32px 32px #0f0c0f, 33px 33px #0f0c0f, 34px 34px #0f0c0f, 35px 35px #0f0c0f, 36px 36px #0f0c0f, 37px 37px #0f0c0f, 38px 38px #0f0c0f, 39px 39px #0f0c0f, 40px 40px #0f0c0f, 41px 41px #0f0c0f, 42px 42px #0f0c0f, 43px 43px #0f0c0f, 44px 44px #0f0c0f, 45px 45px #0f0c0f, 46px 46px #0f0c0f, 47px 47px #0f0c0f, 48px 48px #0f0c0f, 49px 49px #0f0c0f, 50px 50px #0f0c0f, 51px 51px #0f0c0f, 52px 52px #0f0c0f, 53px 53px #0f0c0f, 54px 54px #0f0c0f, 55px 55px #0f0c0f, 56px 56px #0f0c0f, 57px 57px #0f0c0f, 58px 58px #0f0c0f, 59px 59px #0f0c0f, 60px 60px #0f0c0f, 61px 61px #0f0c0f, 62px 62px #0f0c0f, 63px 63px #0f0c0f, 64px 64px #0f0c0f, 65px 65px #0f0c0f, 66px 66px #0f0c0f, 67px 67px #0f0c0f, 68px 68px #0f0c0f, 69px 69px #0f0c0f, 70px 70px #0f0c0f, 71px 71px #0f0c0f, 72px 72px #0f0c0f, 73px 73px #0f0c0f, 74px 74px #0f0c0f, 75px 75px #0f0c0f, 76px 76px #0f0c0f, 77px 77px #0f0c0f, 78px 78px #0f0c0f, 79px 79px #0f0c0f, 80px 80px #0f0c0f, 81px 81px #0f0c0f, 82px 82px #0f0c0f, 83px 83px #0f0c0f, 84px 84px #0f0c0f, 85px 85px #0f0c0f; }
  .btn-longshadow.btn-color-4:active, .btn-longshadow-right.btn-color-4:active, .btn-longshadow.btn-color-4.active, .btn-longshadow-right.btn-color-4.active, .btn-longshadow.btn-color-4.is-active, .btn-longshadow-right.btn-color-4.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
/*
 * Shadow Left
 *
 */
.btn-longshadow-left {
  overflow: hidden; }
  .btn-longshadow-left.btn-color-1 {
    text-shadow: 0px 0px #668faa, -1px 1px #668faa, -2px 2px #668faa, -3px 3px #668faa, -4px 4px #668faa, -5px 5px #668faa, -6px 6px #668faa, -7px 7px #668faa, -8px 8px #668faa, -9px 9px #668faa, -10px 10px #668faa, -11px 11px #668faa, -12px 12px #668faa, -13px 13px #668faa, -14px 14px #668faa, -15px 15px #668faa, -16px 16px #668faa, -17px 17px #668faa, -18px 18px #668faa, -19px 19px #668faa, -20px 20px #668faa, -21px 21px #668faa, -22px 22px #668faa, -23px 23px #668faa, -24px 24px #668faa, -25px 25px #668faa, -26px 26px #668faa, -27px 27px #668faa, -28px 28px #668faa, -29px 29px #668faa, -30px 30px #668faa, -31px 31px #668faa, -32px 32px #668faa, -33px 33px #668faa, -34px 34px #668faa, -35px 35px #668faa, -36px 36px #668faa, -37px 37px #668faa, -38px 38px #668faa, -39px 39px #668faa, -40px 40px #668faa, -41px 41px #668faa, -42px 42px #668faa, -43px 43px #668faa, -44px 44px #668faa, -45px 45px #668faa, -46px 46px #668faa, -47px 47px #668faa, -48px 48px #668faa, -49px 49px #668faa, -50px 50px #668faa, -51px 51px #668faa, -52px 52px #668faa, -53px 53px #668faa, -54px 54px #668faa, -55px 55px #668faa, -56px 56px #668faa, -57px 57px #668faa, -58px 58px #668faa, -59px 59px #668faa, -60px 60px #668faa, -61px 61px #668faa, -62px 62px #668faa, -63px 63px #668faa, -64px 64px #668faa, -65px 65px #668faa, -66px 66px #668faa, -67px 67px #668faa, -68px 68px #668faa, -69px 69px #668faa, -70px 70px #668faa, -71px 71px #668faa, -72px 72px #668faa, -73px 73px #668faa, -74px 74px #668faa, -75px 75px #668faa, -76px 76px #668faa, -77px 77px #668faa, -78px 78px #668faa, -79px 79px #668faa, -80px 80px #668faa, -81px 81px #668faa, -82px 82px #668faa, -83px 83px #668faa, -84px 84px #668faa, -85px 85px #668faa; }
  .btn-longshadow-left.btn-color-1:active, .btn-longshadow-left.btn-color-1.active, .btn-longshadow-left.btn-color-1.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow-left.btn-color-2 {
    text-shadow: 0px 0px #394a5d, -1px 1px #394a5d, -2px 2px #394a5d, -3px 3px #394a5d, -4px 4px #394a5d, -5px 5px #394a5d, -6px 6px #394a5d, -7px 7px #394a5d, -8px 8px #394a5d, -9px 9px #394a5d, -10px 10px #394a5d, -11px 11px #394a5d, -12px 12px #394a5d, -13px 13px #394a5d, -14px 14px #394a5d, -15px 15px #394a5d, -16px 16px #394a5d, -17px 17px #394a5d, -18px 18px #394a5d, -19px 19px #394a5d, -20px 20px #394a5d, -21px 21px #394a5d, -22px 22px #394a5d, -23px 23px #394a5d, -24px 24px #394a5d, -25px 25px #394a5d, -26px 26px #394a5d, -27px 27px #394a5d, -28px 28px #394a5d, -29px 29px #394a5d, -30px 30px #394a5d, -31px 31px #394a5d, -32px 32px #394a5d, -33px 33px #394a5d, -34px 34px #394a5d, -35px 35px #394a5d, -36px 36px #394a5d, -37px 37px #394a5d, -38px 38px #394a5d, -39px 39px #394a5d, -40px 40px #394a5d, -41px 41px #394a5d, -42px 42px #394a5d, -43px 43px #394a5d, -44px 44px #394a5d, -45px 45px #394a5d, -46px 46px #394a5d, -47px 47px #394a5d, -48px 48px #394a5d, -49px 49px #394a5d, -50px 50px #394a5d, -51px 51px #394a5d, -52px 52px #394a5d, -53px 53px #394a5d, -54px 54px #394a5d, -55px 55px #394a5d, -56px 56px #394a5d, -57px 57px #394a5d, -58px 58px #394a5d, -59px 59px #394a5d, -60px 60px #394a5d, -61px 61px #394a5d, -62px 62px #394a5d, -63px 63px #394a5d, -64px 64px #394a5d, -65px 65px #394a5d, -66px 66px #394a5d, -67px 67px #394a5d, -68px 68px #394a5d, -69px 69px #394a5d, -70px 70px #394a5d, -71px 71px #394a5d, -72px 72px #394a5d, -73px 73px #394a5d, -74px 74px #394a5d, -75px 75px #394a5d, -76px 76px #394a5d, -77px 77px #394a5d, -78px 78px #394a5d, -79px 79px #394a5d, -80px 80px #394a5d, -81px 81px #394a5d, -82px 82px #394a5d, -83px 83px #394a5d, -84px 84px #394a5d, -85px 85px #394a5d; }
  .btn-longshadow-left.btn-color-2:active, .btn-longshadow-left.btn-color-2.active, .btn-longshadow-left.btn-color-2.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow-left.btn-color-3 {
    text-shadow: 0px 0px #545557, -1px 1px #545557, -2px 2px #545557, -3px 3px #545557, -4px 4px #545557, -5px 5px #545557, -6px 6px #545557, -7px 7px #545557, -8px 8px #545557, -9px 9px #545557, -10px 10px #545557, -11px 11px #545557, -12px 12px #545557, -13px 13px #545557, -14px 14px #545557, -15px 15px #545557, -16px 16px #545557, -17px 17px #545557, -18px 18px #545557, -19px 19px #545557, -20px 20px #545557, -21px 21px #545557, -22px 22px #545557, -23px 23px #545557, -24px 24px #545557, -25px 25px #545557, -26px 26px #545557, -27px 27px #545557, -28px 28px #545557, -29px 29px #545557, -30px 30px #545557, -31px 31px #545557, -32px 32px #545557, -33px 33px #545557, -34px 34px #545557, -35px 35px #545557, -36px 36px #545557, -37px 37px #545557, -38px 38px #545557, -39px 39px #545557, -40px 40px #545557, -41px 41px #545557, -42px 42px #545557, -43px 43px #545557, -44px 44px #545557, -45px 45px #545557, -46px 46px #545557, -47px 47px #545557, -48px 48px #545557, -49px 49px #545557, -50px 50px #545557, -51px 51px #545557, -52px 52px #545557, -53px 53px #545557, -54px 54px #545557, -55px 55px #545557, -56px 56px #545557, -57px 57px #545557, -58px 58px #545557, -59px 59px #545557, -60px 60px #545557, -61px 61px #545557, -62px 62px #545557, -63px 63px #545557, -64px 64px #545557, -65px 65px #545557, -66px 66px #545557, -67px 67px #545557, -68px 68px #545557, -69px 69px #545557, -70px 70px #545557, -71px 71px #545557, -72px 72px #545557, -73px 73px #545557, -74px 74px #545557, -75px 75px #545557, -76px 76px #545557, -77px 77px #545557, -78px 78px #545557, -79px 79px #545557, -80px 80px #545557, -81px 81px #545557, -82px 82px #545557, -83px 83px #545557, -84px 84px #545557, -85px 85px #545557; }
  .btn-longshadow-left.btn-color-3:active, .btn-longshadow-left.btn-color-3.active, .btn-longshadow-left.btn-color-3.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow-left.btn-color-4 {
    text-shadow: 0px 0px #0f0c0f, -1px 1px #0f0c0f, -2px 2px #0f0c0f, -3px 3px #0f0c0f, -4px 4px #0f0c0f, -5px 5px #0f0c0f, -6px 6px #0f0c0f, -7px 7px #0f0c0f, -8px 8px #0f0c0f, -9px 9px #0f0c0f, -10px 10px #0f0c0f, -11px 11px #0f0c0f, -12px 12px #0f0c0f, -13px 13px #0f0c0f, -14px 14px #0f0c0f, -15px 15px #0f0c0f, -16px 16px #0f0c0f, -17px 17px #0f0c0f, -18px 18px #0f0c0f, -19px 19px #0f0c0f, -20px 20px #0f0c0f, -21px 21px #0f0c0f, -22px 22px #0f0c0f, -23px 23px #0f0c0f, -24px 24px #0f0c0f, -25px 25px #0f0c0f, -26px 26px #0f0c0f, -27px 27px #0f0c0f, -28px 28px #0f0c0f, -29px 29px #0f0c0f, -30px 30px #0f0c0f, -31px 31px #0f0c0f, -32px 32px #0f0c0f, -33px 33px #0f0c0f, -34px 34px #0f0c0f, -35px 35px #0f0c0f, -36px 36px #0f0c0f, -37px 37px #0f0c0f, -38px 38px #0f0c0f, -39px 39px #0f0c0f, -40px 40px #0f0c0f, -41px 41px #0f0c0f, -42px 42px #0f0c0f, -43px 43px #0f0c0f, -44px 44px #0f0c0f, -45px 45px #0f0c0f, -46px 46px #0f0c0f, -47px 47px #0f0c0f, -48px 48px #0f0c0f, -49px 49px #0f0c0f, -50px 50px #0f0c0f, -51px 51px #0f0c0f, -52px 52px #0f0c0f, -53px 53px #0f0c0f, -54px 54px #0f0c0f, -55px 55px #0f0c0f, -56px 56px #0f0c0f, -57px 57px #0f0c0f, -58px 58px #0f0c0f, -59px 59px #0f0c0f, -60px 60px #0f0c0f, -61px 61px #0f0c0f, -62px 62px #0f0c0f, -63px 63px #0f0c0f, -64px 64px #0f0c0f, -65px 65px #0f0c0f, -66px 66px #0f0c0f, -67px 67px #0f0c0f, -68px 68px #0f0c0f, -69px 69px #0f0c0f, -70px 70px #0f0c0f, -71px 71px #0f0c0f, -72px 72px #0f0c0f, -73px 73px #0f0c0f, -74px 74px #0f0c0f, -75px 75px #0f0c0f, -76px 76px #0f0c0f, -77px 77px #0f0c0f, -78px 78px #0f0c0f, -79px 79px #0f0c0f, -80px 80px #0f0c0f, -81px 81px #0f0c0f, -82px 82px #0f0c0f, -83px 83px #0f0c0f, -84px 84px #0f0c0f, -85px 85px #0f0c0f; }
  .btn-longshadow-left.btn-color-4:active, .btn-longshadow-left.btn-color-4.active, .btn-longshadow-left.btn-color-4.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
/*
 * Button Sizes
 *
 * This file creates the various button sizes
 * (ex. .button-large, .button-small, etc.)
 */
.btn-giant {
  font-size: 1.75em;
  height: 70px;
  line-height: 70px;
  padding: 0 70px; }

.btn-jumbo {
  font-size: 1.5em;
  height: 60px;
  line-height: 60px;
  padding: 0 60px; }

.btn-large {
  font-size: 1.25em;
  height: 50px;
  line-height: 50px;
  padding: 0 50px; }

.btn-normal {
  font-size: 1em;
  height: 40px;
  line-height: 40px;
  padding: 0 40px; }

.btn-small {
  font-size: 0.75em;
  height: 30px;
  line-height: 30px;
  padding: 0 30px; }

.btn-tiny {
  font-size: 0.6em;
  height: 24px;
  line-height: 24px;
  padding: 0 24px; }
