/*--------------------------------------------------------------
 # 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: #fff;
  background-color: #260729;
  border-color: #260729;
  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: #fff; }
  .btn:hover, .btn:focus {
    background-color: #320936;
    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: #240927;
    border-color: #000;
    color: #000;
    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: #260729;
  border-color: #260729;
  color: #fff; }
  .btn-color-1:visited, .btn-color-1-flat:visited {
    color: #fff; }
  .btn-color-1:hover, .btn-color-1-flat:hover, .btn-color-1:focus, .btn-color-1-flat:focus {
    background-color: #4e0e55;
    border-color: #4e0e55;
    color: #fff; }
  .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: #240927;
    border-color: #240927;
    color: #000; }

.btn-color-2, .btn-color-2-flat {
  background-color: #2a2344;
  border-color: #2a2344;
  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: #3f3466;
    border-color: #3f3466;
    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: #2d283f;
    border-color: #2d283f;
    color: #151222; }

.btn-color-3, .btn-color-3-flat {
  background-color: #495168;
  border-color: #495168;
  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: #5e6886;
    border-color: #5e6886;
    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: #52555f;
    border-color: #52555f;
    color: #343a4a; }

.btn-color-4, .btn-color-4-flat {
  background-color: #c9aa74;
  border-color: #c9aa74;
  color: #333; }
  .btn-color-4:visited, .btn-color-4-flat:visited {
    color: #333; }
  .btn-color-4:hover, .btn-color-4-flat:hover, .btn-color-4:focus, .btn-color-4-flat:focus {
    background-color: #d7c099;
    border-color: #d7c099;
    color: #333; }
  .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: #bfa77e;
    border-color: #bfa77e;
    color: #bb944f; }

.btn-color-5, .btn-color-5-flat {
  background-color: #d8ccb2;
  border-color: #d8ccb2;
  color: #333; }
  .btn-color-5:visited, .btn-color-5-flat:visited {
    color: #333; }
  .btn-color-5:hover, .btn-color-5-flat:hover, .btn-color-5:focus, .btn-color-5-flat:focus {
    background-color: #e9e2d4;
    border-color: #e9e2d4;
    color: #333; }
  .btn-color-5:active, .btn-color-5-flat:active, .btn-color-5.active, .btn-color-5-flat.active, .btn-color-5.is-active, .btn-color-5-flat.is-active {
    background-color: #d2cab8;
    border-color: #d2cab8;
    color: #c7b690; }
/*
 * 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(78, 14, 85, 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: #260729; }
    .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(78, 14, 85, 0.9);
      color: rgba(255, 255, 255, 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(36, 9, 39, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-2, .btn-border-thin.btn-color-2, .btn-border-thick.btn-color-2 {
    color: #2a2344; }
    .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(63, 52, 102, 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(45, 40, 63, 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: #495168; }
    .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(94, 104, 134, 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(82, 85, 95, 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: #c9aa74; }
    .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(215, 192, 153, 0.9);
      color: rgba(51, 51, 51, 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(191, 167, 126, 0.7);
      color: rgba(51, 51, 51, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-5, .btn-border-thin.btn-color-5, .btn-border-thick.btn-color-5 {
    color: #d8ccb2; }
    .btn-border.btn-color-5:hover, .btn-border-thin.btn-color-5:hover, .btn-border-thick.btn-color-5:hover, .btn-border.btn-color-5:focus, .btn-border-thin.btn-color-5:focus, .btn-border-thick.btn-color-5:focus {
      background-color: rgba(233, 226, 212, 0.9);
      color: rgba(51, 51, 51, 0.9); }
    .btn-border.btn-color-5:active, .btn-border-thin.btn-color-5:active, .btn-border-thick.btn-color-5:active, .btn-border.btn-color-5.active, .btn-border-thin.btn-color-5.active, .btn-border-thick.btn-color-5.active, .btn-border.btn-color-5.is-active, .btn-border-thin.btn-color-5.is-active, .btn-border-thick.btn-color-5.is-active {
      background-color: rgba(210, 202, 184, 0.7);
      color: rgba(51, 51, 51, 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: #260729;
  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: #260729; }
  .btn-borderless.btn-color-2 {
    color: #2a2344; }
  .btn-borderless.btn-color-3 {
    color: #495168; }
  .btn-borderless.btn-color-4 {
    color: #c9aa74; }
  .btn-borderless.btn-color-5 {
    color: #d8ccb2; }
  .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: #120313;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#320936, #120313);
  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(#460d4c, #0a020b); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #240927;
  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: #120313;
  background: linear-gradient(#3a0b3f, #120313); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#460d4c, #0a020b); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #000;
    background: #240927; }
  .btn-raised.btn-color-2 {
    border-color: #201a33;
    background: linear-gradient(#342c55, #201a33); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#3b315f, #1b172c); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #151222;
    background: #2d283f; }
  .btn-raised.btn-color-3 {
    border-color: #3e4559;
    background: linear-gradient(#545d77, #3e4559); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#5a6480, #3a4153); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #343a4a;
    background: #52555f; }
  .btn-raised.btn-color-4 {
    border-color: #c29f62;
    background: linear-gradient(#d0b586, #c29f62); }
  .btn-raised.btn-color-4:hover, .btn-raised.btn-color-4:focus {
    background: linear-gradient(#d4bc91, #bf9a5a); }
  .btn-raised.btn-color-4:active, .btn-raised.btn-color-4.active, .btn-raised.btn-color-4.is-active {
    border-color: #bb944f;
    background: #bfa77e; }
  .btn-raised.btn-color-5 {
    border-color: #cfc1a1;
    background: linear-gradient(#e1d7c3, #cfc1a1); }
  .btn-raised.btn-color-5:hover, .btn-raised.btn-color-5:focus {
    background: linear-gradient(#e6decd, #ccbc9a); }
  .btn-raised.btn-color-5:active, .btn-raised.btn-color-5.active, .btn-raised.btn-color-5.is-active {
    border-color: #c7b690;
    background: #d2cab8; }
/*
 * 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 #000, 0 8px 3px rgba(0, 0, 0, 0.2); }

.btn-3d:hover, .btn-3d:focus {
  box-shadow: 0 7px 0 #000, 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 #000, 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 #000, 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 #000, 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 #000, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-2 {
    box-shadow: 0 7px 0 #151222, 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 #110e1c, 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 #000001, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #343a4a, 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 #303544, 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 #1f222c, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-4 {
    box-shadow: 0 7px 0 #bb944f, 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 #b88f48, 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 #9b783c, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-5 {
    box-shadow: 0 7px 0 #c7b690, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-5:hover, .btn-3d.btn-color-5:focus {
    box-shadow: 0 7px 0 #c3b189, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-5:active, .btn-3d.btn-color-5.active, .btn-3d.btn-color-5.is-active {
    box-shadow: 0 2px 0 #b69f6e, 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(38, 7, 41, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(38, 7, 41, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(38, 7, 41, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-color-4 {
    from {
      box-shadow: 0 0 0 rgba(201, 170, 116, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(201, 170, 116, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(201, 170, 116, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-color-5 {
    from {
      box-shadow: 0 0 0 rgba(216, 204, 178, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(216, 204, 178, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(216, 204, 178, 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; }
  .btn-glow.btn-color-5 {
    animation-name: glowing-color-5; }
/*
 * 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(78, 14, 85, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #000;
  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: #fff;
  text-decoration: none; }
  .btn-dropdown-list > li > a:hover {
    color: #f7f7f7;
    background: #320936;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #1a051c; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(38, 7, 41, 0.95);
  border-color: #000; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #0a020b; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list > li > a {
    color: #fff; }
    .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #120313; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(42, 35, 68, 0.95);
    border-color: #151222; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #1b172c; }
  .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: #201a33; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(73, 81, 104, 0.95);
    border-color: #343a4a; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #3a4153; }
  .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: #3e4559; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list {
    background: rgba(201, 170, 116, 0.95);
    border-color: #bb944f; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #bf9a5a; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a {
    color: #333; }
    .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a:hover {
      color: #262626;
      background: #c29f62; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list {
    background: rgba(216, 204, 178, 0.95);
    border-color: #c7b690; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #ccbc9a; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a {
    color: #333; }
    .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a:hover {
      color: #262626;
      background: #cfc1a1; }
/*
 * 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 #000, 1px 1px #000, 2px 2px #000, 3px 3px #000, 4px 4px #000, 5px 5px #000, 6px 6px #000, 7px 7px #000, 8px 8px #000, 9px 9px #000, 10px 10px #000, 11px 11px #000, 12px 12px #000, 13px 13px #000, 14px 14px #000, 15px 15px #000, 16px 16px #000, 17px 17px #000, 18px 18px #000, 19px 19px #000, 20px 20px #000, 21px 21px #000, 22px 22px #000, 23px 23px #000, 24px 24px #000, 25px 25px #000, 26px 26px #000, 27px 27px #000, 28px 28px #000, 29px 29px #000, 30px 30px #000, 31px 31px #000, 32px 32px #000, 33px 33px #000, 34px 34px #000, 35px 35px #000, 36px 36px #000, 37px 37px #000, 38px 38px #000, 39px 39px #000, 40px 40px #000, 41px 41px #000, 42px 42px #000, 43px 43px #000, 44px 44px #000, 45px 45px #000, 46px 46px #000, 47px 47px #000, 48px 48px #000, 49px 49px #000, 50px 50px #000, 51px 51px #000, 52px 52px #000, 53px 53px #000, 54px 54px #000, 55px 55px #000, 56px 56px #000, 57px 57px #000, 58px 58px #000, 59px 59px #000, 60px 60px #000, 61px 61px #000, 62px 62px #000, 63px 63px #000, 64px 64px #000, 65px 65px #000, 66px 66px #000, 67px 67px #000, 68px 68px #000, 69px 69px #000, 70px 70px #000, 71px 71px #000, 72px 72px #000, 73px 73px #000, 74px 74px #000, 75px 75px #000, 76px 76px #000, 77px 77px #000, 78px 78px #000, 79px 79px #000, 80px 80px #000, 81px 81px #000, 82px 82px #000, 83px 83px #000, 84px 84px #000, 85px 85px #000; }
  .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 #151222, 1px 1px #151222, 2px 2px #151222, 3px 3px #151222, 4px 4px #151222, 5px 5px #151222, 6px 6px #151222, 7px 7px #151222, 8px 8px #151222, 9px 9px #151222, 10px 10px #151222, 11px 11px #151222, 12px 12px #151222, 13px 13px #151222, 14px 14px #151222, 15px 15px #151222, 16px 16px #151222, 17px 17px #151222, 18px 18px #151222, 19px 19px #151222, 20px 20px #151222, 21px 21px #151222, 22px 22px #151222, 23px 23px #151222, 24px 24px #151222, 25px 25px #151222, 26px 26px #151222, 27px 27px #151222, 28px 28px #151222, 29px 29px #151222, 30px 30px #151222, 31px 31px #151222, 32px 32px #151222, 33px 33px #151222, 34px 34px #151222, 35px 35px #151222, 36px 36px #151222, 37px 37px #151222, 38px 38px #151222, 39px 39px #151222, 40px 40px #151222, 41px 41px #151222, 42px 42px #151222, 43px 43px #151222, 44px 44px #151222, 45px 45px #151222, 46px 46px #151222, 47px 47px #151222, 48px 48px #151222, 49px 49px #151222, 50px 50px #151222, 51px 51px #151222, 52px 52px #151222, 53px 53px #151222, 54px 54px #151222, 55px 55px #151222, 56px 56px #151222, 57px 57px #151222, 58px 58px #151222, 59px 59px #151222, 60px 60px #151222, 61px 61px #151222, 62px 62px #151222, 63px 63px #151222, 64px 64px #151222, 65px 65px #151222, 66px 66px #151222, 67px 67px #151222, 68px 68px #151222, 69px 69px #151222, 70px 70px #151222, 71px 71px #151222, 72px 72px #151222, 73px 73px #151222, 74px 74px #151222, 75px 75px #151222, 76px 76px #151222, 77px 77px #151222, 78px 78px #151222, 79px 79px #151222, 80px 80px #151222, 81px 81px #151222, 82px 82px #151222, 83px 83px #151222, 84px 84px #151222, 85px 85px #151222; }
  .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 #343a4a, 1px 1px #343a4a, 2px 2px #343a4a, 3px 3px #343a4a, 4px 4px #343a4a, 5px 5px #343a4a, 6px 6px #343a4a, 7px 7px #343a4a, 8px 8px #343a4a, 9px 9px #343a4a, 10px 10px #343a4a, 11px 11px #343a4a, 12px 12px #343a4a, 13px 13px #343a4a, 14px 14px #343a4a, 15px 15px #343a4a, 16px 16px #343a4a, 17px 17px #343a4a, 18px 18px #343a4a, 19px 19px #343a4a, 20px 20px #343a4a, 21px 21px #343a4a, 22px 22px #343a4a, 23px 23px #343a4a, 24px 24px #343a4a, 25px 25px #343a4a, 26px 26px #343a4a, 27px 27px #343a4a, 28px 28px #343a4a, 29px 29px #343a4a, 30px 30px #343a4a, 31px 31px #343a4a, 32px 32px #343a4a, 33px 33px #343a4a, 34px 34px #343a4a, 35px 35px #343a4a, 36px 36px #343a4a, 37px 37px #343a4a, 38px 38px #343a4a, 39px 39px #343a4a, 40px 40px #343a4a, 41px 41px #343a4a, 42px 42px #343a4a, 43px 43px #343a4a, 44px 44px #343a4a, 45px 45px #343a4a, 46px 46px #343a4a, 47px 47px #343a4a, 48px 48px #343a4a, 49px 49px #343a4a, 50px 50px #343a4a, 51px 51px #343a4a, 52px 52px #343a4a, 53px 53px #343a4a, 54px 54px #343a4a, 55px 55px #343a4a, 56px 56px #343a4a, 57px 57px #343a4a, 58px 58px #343a4a, 59px 59px #343a4a, 60px 60px #343a4a, 61px 61px #343a4a, 62px 62px #343a4a, 63px 63px #343a4a, 64px 64px #343a4a, 65px 65px #343a4a, 66px 66px #343a4a, 67px 67px #343a4a, 68px 68px #343a4a, 69px 69px #343a4a, 70px 70px #343a4a, 71px 71px #343a4a, 72px 72px #343a4a, 73px 73px #343a4a, 74px 74px #343a4a, 75px 75px #343a4a, 76px 76px #343a4a, 77px 77px #343a4a, 78px 78px #343a4a, 79px 79px #343a4a, 80px 80px #343a4a, 81px 81px #343a4a, 82px 82px #343a4a, 83px 83px #343a4a, 84px 84px #343a4a, 85px 85px #343a4a; }
  .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 #bb944f, 1px 1px #bb944f, 2px 2px #bb944f, 3px 3px #bb944f, 4px 4px #bb944f, 5px 5px #bb944f, 6px 6px #bb944f, 7px 7px #bb944f, 8px 8px #bb944f, 9px 9px #bb944f, 10px 10px #bb944f, 11px 11px #bb944f, 12px 12px #bb944f, 13px 13px #bb944f, 14px 14px #bb944f, 15px 15px #bb944f, 16px 16px #bb944f, 17px 17px #bb944f, 18px 18px #bb944f, 19px 19px #bb944f, 20px 20px #bb944f, 21px 21px #bb944f, 22px 22px #bb944f, 23px 23px #bb944f, 24px 24px #bb944f, 25px 25px #bb944f, 26px 26px #bb944f, 27px 27px #bb944f, 28px 28px #bb944f, 29px 29px #bb944f, 30px 30px #bb944f, 31px 31px #bb944f, 32px 32px #bb944f, 33px 33px #bb944f, 34px 34px #bb944f, 35px 35px #bb944f, 36px 36px #bb944f, 37px 37px #bb944f, 38px 38px #bb944f, 39px 39px #bb944f, 40px 40px #bb944f, 41px 41px #bb944f, 42px 42px #bb944f, 43px 43px #bb944f, 44px 44px #bb944f, 45px 45px #bb944f, 46px 46px #bb944f, 47px 47px #bb944f, 48px 48px #bb944f, 49px 49px #bb944f, 50px 50px #bb944f, 51px 51px #bb944f, 52px 52px #bb944f, 53px 53px #bb944f, 54px 54px #bb944f, 55px 55px #bb944f, 56px 56px #bb944f, 57px 57px #bb944f, 58px 58px #bb944f, 59px 59px #bb944f, 60px 60px #bb944f, 61px 61px #bb944f, 62px 62px #bb944f, 63px 63px #bb944f, 64px 64px #bb944f, 65px 65px #bb944f, 66px 66px #bb944f, 67px 67px #bb944f, 68px 68px #bb944f, 69px 69px #bb944f, 70px 70px #bb944f, 71px 71px #bb944f, 72px 72px #bb944f, 73px 73px #bb944f, 74px 74px #bb944f, 75px 75px #bb944f, 76px 76px #bb944f, 77px 77px #bb944f, 78px 78px #bb944f, 79px 79px #bb944f, 80px 80px #bb944f, 81px 81px #bb944f, 82px 82px #bb944f, 83px 83px #bb944f, 84px 84px #bb944f, 85px 85px #bb944f; }
  .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); }
  .btn-longshadow.btn-color-5, .btn-longshadow-right.btn-color-5 {
    text-shadow: 0px 0px #c7b690, 1px 1px #c7b690, 2px 2px #c7b690, 3px 3px #c7b690, 4px 4px #c7b690, 5px 5px #c7b690, 6px 6px #c7b690, 7px 7px #c7b690, 8px 8px #c7b690, 9px 9px #c7b690, 10px 10px #c7b690, 11px 11px #c7b690, 12px 12px #c7b690, 13px 13px #c7b690, 14px 14px #c7b690, 15px 15px #c7b690, 16px 16px #c7b690, 17px 17px #c7b690, 18px 18px #c7b690, 19px 19px #c7b690, 20px 20px #c7b690, 21px 21px #c7b690, 22px 22px #c7b690, 23px 23px #c7b690, 24px 24px #c7b690, 25px 25px #c7b690, 26px 26px #c7b690, 27px 27px #c7b690, 28px 28px #c7b690, 29px 29px #c7b690, 30px 30px #c7b690, 31px 31px #c7b690, 32px 32px #c7b690, 33px 33px #c7b690, 34px 34px #c7b690, 35px 35px #c7b690, 36px 36px #c7b690, 37px 37px #c7b690, 38px 38px #c7b690, 39px 39px #c7b690, 40px 40px #c7b690, 41px 41px #c7b690, 42px 42px #c7b690, 43px 43px #c7b690, 44px 44px #c7b690, 45px 45px #c7b690, 46px 46px #c7b690, 47px 47px #c7b690, 48px 48px #c7b690, 49px 49px #c7b690, 50px 50px #c7b690, 51px 51px #c7b690, 52px 52px #c7b690, 53px 53px #c7b690, 54px 54px #c7b690, 55px 55px #c7b690, 56px 56px #c7b690, 57px 57px #c7b690, 58px 58px #c7b690, 59px 59px #c7b690, 60px 60px #c7b690, 61px 61px #c7b690, 62px 62px #c7b690, 63px 63px #c7b690, 64px 64px #c7b690, 65px 65px #c7b690, 66px 66px #c7b690, 67px 67px #c7b690, 68px 68px #c7b690, 69px 69px #c7b690, 70px 70px #c7b690, 71px 71px #c7b690, 72px 72px #c7b690, 73px 73px #c7b690, 74px 74px #c7b690, 75px 75px #c7b690, 76px 76px #c7b690, 77px 77px #c7b690, 78px 78px #c7b690, 79px 79px #c7b690, 80px 80px #c7b690, 81px 81px #c7b690, 82px 82px #c7b690, 83px 83px #c7b690, 84px 84px #c7b690, 85px 85px #c7b690; }
  .btn-longshadow.btn-color-5:active, .btn-longshadow-right.btn-color-5:active, .btn-longshadow.btn-color-5.active, .btn-longshadow-right.btn-color-5.active, .btn-longshadow.btn-color-5.is-active, .btn-longshadow-right.btn-color-5.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 #000, -1px 1px #000, -2px 2px #000, -3px 3px #000, -4px 4px #000, -5px 5px #000, -6px 6px #000, -7px 7px #000, -8px 8px #000, -9px 9px #000, -10px 10px #000, -11px 11px #000, -12px 12px #000, -13px 13px #000, -14px 14px #000, -15px 15px #000, -16px 16px #000, -17px 17px #000, -18px 18px #000, -19px 19px #000, -20px 20px #000, -21px 21px #000, -22px 22px #000, -23px 23px #000, -24px 24px #000, -25px 25px #000, -26px 26px #000, -27px 27px #000, -28px 28px #000, -29px 29px #000, -30px 30px #000, -31px 31px #000, -32px 32px #000, -33px 33px #000, -34px 34px #000, -35px 35px #000, -36px 36px #000, -37px 37px #000, -38px 38px #000, -39px 39px #000, -40px 40px #000, -41px 41px #000, -42px 42px #000, -43px 43px #000, -44px 44px #000, -45px 45px #000, -46px 46px #000, -47px 47px #000, -48px 48px #000, -49px 49px #000, -50px 50px #000, -51px 51px #000, -52px 52px #000, -53px 53px #000, -54px 54px #000, -55px 55px #000, -56px 56px #000, -57px 57px #000, -58px 58px #000, -59px 59px #000, -60px 60px #000, -61px 61px #000, -62px 62px #000, -63px 63px #000, -64px 64px #000, -65px 65px #000, -66px 66px #000, -67px 67px #000, -68px 68px #000, -69px 69px #000, -70px 70px #000, -71px 71px #000, -72px 72px #000, -73px 73px #000, -74px 74px #000, -75px 75px #000, -76px 76px #000, -77px 77px #000, -78px 78px #000, -79px 79px #000, -80px 80px #000, -81px 81px #000, -82px 82px #000, -83px 83px #000, -84px 84px #000, -85px 85px #000; }
  .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 #151222, -1px 1px #151222, -2px 2px #151222, -3px 3px #151222, -4px 4px #151222, -5px 5px #151222, -6px 6px #151222, -7px 7px #151222, -8px 8px #151222, -9px 9px #151222, -10px 10px #151222, -11px 11px #151222, -12px 12px #151222, -13px 13px #151222, -14px 14px #151222, -15px 15px #151222, -16px 16px #151222, -17px 17px #151222, -18px 18px #151222, -19px 19px #151222, -20px 20px #151222, -21px 21px #151222, -22px 22px #151222, -23px 23px #151222, -24px 24px #151222, -25px 25px #151222, -26px 26px #151222, -27px 27px #151222, -28px 28px #151222, -29px 29px #151222, -30px 30px #151222, -31px 31px #151222, -32px 32px #151222, -33px 33px #151222, -34px 34px #151222, -35px 35px #151222, -36px 36px #151222, -37px 37px #151222, -38px 38px #151222, -39px 39px #151222, -40px 40px #151222, -41px 41px #151222, -42px 42px #151222, -43px 43px #151222, -44px 44px #151222, -45px 45px #151222, -46px 46px #151222, -47px 47px #151222, -48px 48px #151222, -49px 49px #151222, -50px 50px #151222, -51px 51px #151222, -52px 52px #151222, -53px 53px #151222, -54px 54px #151222, -55px 55px #151222, -56px 56px #151222, -57px 57px #151222, -58px 58px #151222, -59px 59px #151222, -60px 60px #151222, -61px 61px #151222, -62px 62px #151222, -63px 63px #151222, -64px 64px #151222, -65px 65px #151222, -66px 66px #151222, -67px 67px #151222, -68px 68px #151222, -69px 69px #151222, -70px 70px #151222, -71px 71px #151222, -72px 72px #151222, -73px 73px #151222, -74px 74px #151222, -75px 75px #151222, -76px 76px #151222, -77px 77px #151222, -78px 78px #151222, -79px 79px #151222, -80px 80px #151222, -81px 81px #151222, -82px 82px #151222, -83px 83px #151222, -84px 84px #151222, -85px 85px #151222; }
  .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 #343a4a, -1px 1px #343a4a, -2px 2px #343a4a, -3px 3px #343a4a, -4px 4px #343a4a, -5px 5px #343a4a, -6px 6px #343a4a, -7px 7px #343a4a, -8px 8px #343a4a, -9px 9px #343a4a, -10px 10px #343a4a, -11px 11px #343a4a, -12px 12px #343a4a, -13px 13px #343a4a, -14px 14px #343a4a, -15px 15px #343a4a, -16px 16px #343a4a, -17px 17px #343a4a, -18px 18px #343a4a, -19px 19px #343a4a, -20px 20px #343a4a, -21px 21px #343a4a, -22px 22px #343a4a, -23px 23px #343a4a, -24px 24px #343a4a, -25px 25px #343a4a, -26px 26px #343a4a, -27px 27px #343a4a, -28px 28px #343a4a, -29px 29px #343a4a, -30px 30px #343a4a, -31px 31px #343a4a, -32px 32px #343a4a, -33px 33px #343a4a, -34px 34px #343a4a, -35px 35px #343a4a, -36px 36px #343a4a, -37px 37px #343a4a, -38px 38px #343a4a, -39px 39px #343a4a, -40px 40px #343a4a, -41px 41px #343a4a, -42px 42px #343a4a, -43px 43px #343a4a, -44px 44px #343a4a, -45px 45px #343a4a, -46px 46px #343a4a, -47px 47px #343a4a, -48px 48px #343a4a, -49px 49px #343a4a, -50px 50px #343a4a, -51px 51px #343a4a, -52px 52px #343a4a, -53px 53px #343a4a, -54px 54px #343a4a, -55px 55px #343a4a, -56px 56px #343a4a, -57px 57px #343a4a, -58px 58px #343a4a, -59px 59px #343a4a, -60px 60px #343a4a, -61px 61px #343a4a, -62px 62px #343a4a, -63px 63px #343a4a, -64px 64px #343a4a, -65px 65px #343a4a, -66px 66px #343a4a, -67px 67px #343a4a, -68px 68px #343a4a, -69px 69px #343a4a, -70px 70px #343a4a, -71px 71px #343a4a, -72px 72px #343a4a, -73px 73px #343a4a, -74px 74px #343a4a, -75px 75px #343a4a, -76px 76px #343a4a, -77px 77px #343a4a, -78px 78px #343a4a, -79px 79px #343a4a, -80px 80px #343a4a, -81px 81px #343a4a, -82px 82px #343a4a, -83px 83px #343a4a, -84px 84px #343a4a, -85px 85px #343a4a; }
  .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 #bb944f, -1px 1px #bb944f, -2px 2px #bb944f, -3px 3px #bb944f, -4px 4px #bb944f, -5px 5px #bb944f, -6px 6px #bb944f, -7px 7px #bb944f, -8px 8px #bb944f, -9px 9px #bb944f, -10px 10px #bb944f, -11px 11px #bb944f, -12px 12px #bb944f, -13px 13px #bb944f, -14px 14px #bb944f, -15px 15px #bb944f, -16px 16px #bb944f, -17px 17px #bb944f, -18px 18px #bb944f, -19px 19px #bb944f, -20px 20px #bb944f, -21px 21px #bb944f, -22px 22px #bb944f, -23px 23px #bb944f, -24px 24px #bb944f, -25px 25px #bb944f, -26px 26px #bb944f, -27px 27px #bb944f, -28px 28px #bb944f, -29px 29px #bb944f, -30px 30px #bb944f, -31px 31px #bb944f, -32px 32px #bb944f, -33px 33px #bb944f, -34px 34px #bb944f, -35px 35px #bb944f, -36px 36px #bb944f, -37px 37px #bb944f, -38px 38px #bb944f, -39px 39px #bb944f, -40px 40px #bb944f, -41px 41px #bb944f, -42px 42px #bb944f, -43px 43px #bb944f, -44px 44px #bb944f, -45px 45px #bb944f, -46px 46px #bb944f, -47px 47px #bb944f, -48px 48px #bb944f, -49px 49px #bb944f, -50px 50px #bb944f, -51px 51px #bb944f, -52px 52px #bb944f, -53px 53px #bb944f, -54px 54px #bb944f, -55px 55px #bb944f, -56px 56px #bb944f, -57px 57px #bb944f, -58px 58px #bb944f, -59px 59px #bb944f, -60px 60px #bb944f, -61px 61px #bb944f, -62px 62px #bb944f, -63px 63px #bb944f, -64px 64px #bb944f, -65px 65px #bb944f, -66px 66px #bb944f, -67px 67px #bb944f, -68px 68px #bb944f, -69px 69px #bb944f, -70px 70px #bb944f, -71px 71px #bb944f, -72px 72px #bb944f, -73px 73px #bb944f, -74px 74px #bb944f, -75px 75px #bb944f, -76px 76px #bb944f, -77px 77px #bb944f, -78px 78px #bb944f, -79px 79px #bb944f, -80px 80px #bb944f, -81px 81px #bb944f, -82px 82px #bb944f, -83px 83px #bb944f, -84px 84px #bb944f, -85px 85px #bb944f; }
  .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); }
  .btn-longshadow-left.btn-color-5 {
    text-shadow: 0px 0px #c7b690, -1px 1px #c7b690, -2px 2px #c7b690, -3px 3px #c7b690, -4px 4px #c7b690, -5px 5px #c7b690, -6px 6px #c7b690, -7px 7px #c7b690, -8px 8px #c7b690, -9px 9px #c7b690, -10px 10px #c7b690, -11px 11px #c7b690, -12px 12px #c7b690, -13px 13px #c7b690, -14px 14px #c7b690, -15px 15px #c7b690, -16px 16px #c7b690, -17px 17px #c7b690, -18px 18px #c7b690, -19px 19px #c7b690, -20px 20px #c7b690, -21px 21px #c7b690, -22px 22px #c7b690, -23px 23px #c7b690, -24px 24px #c7b690, -25px 25px #c7b690, -26px 26px #c7b690, -27px 27px #c7b690, -28px 28px #c7b690, -29px 29px #c7b690, -30px 30px #c7b690, -31px 31px #c7b690, -32px 32px #c7b690, -33px 33px #c7b690, -34px 34px #c7b690, -35px 35px #c7b690, -36px 36px #c7b690, -37px 37px #c7b690, -38px 38px #c7b690, -39px 39px #c7b690, -40px 40px #c7b690, -41px 41px #c7b690, -42px 42px #c7b690, -43px 43px #c7b690, -44px 44px #c7b690, -45px 45px #c7b690, -46px 46px #c7b690, -47px 47px #c7b690, -48px 48px #c7b690, -49px 49px #c7b690, -50px 50px #c7b690, -51px 51px #c7b690, -52px 52px #c7b690, -53px 53px #c7b690, -54px 54px #c7b690, -55px 55px #c7b690, -56px 56px #c7b690, -57px 57px #c7b690, -58px 58px #c7b690, -59px 59px #c7b690, -60px 60px #c7b690, -61px 61px #c7b690, -62px 62px #c7b690, -63px 63px #c7b690, -64px 64px #c7b690, -65px 65px #c7b690, -66px 66px #c7b690, -67px 67px #c7b690, -68px 68px #c7b690, -69px 69px #c7b690, -70px 70px #c7b690, -71px 71px #c7b690, -72px 72px #c7b690, -73px 73px #c7b690, -74px 74px #c7b690, -75px 75px #c7b690, -76px 76px #c7b690, -77px 77px #c7b690, -78px 78px #c7b690, -79px 79px #c7b690, -80px 80px #c7b690, -81px 81px #c7b690, -82px 82px #c7b690, -83px 83px #c7b690, -84px 84px #c7b690, -85px 85px #c7b690; }
  .btn-longshadow-left.btn-color-5:active, .btn-longshadow-left.btn-color-5.active, .btn-longshadow-left.btn-color-5.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; }
