/*--------------------------------------------------------------
 # 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: #420322;
  border-color: #420322;
  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: #51042a;
    text-decoration: none;
    outline: none; }
  .btn:active, .btn.active, .btn.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, .3);
    text-decoration: none;
    background-color: #3f0622;
    border-color: #070004;
    color: #110109;
    transition-duration: 0s;
    box-shadow: inset 0 1px 3px rgba(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: #420322;
  border-color: #420322;
  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: #73053b;
    border-color: #73053b;
    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: #3f0622;
    border-color: #3f0622;
    color: #110109; }

.btn-color-2, .btn-color-2-flat {
  background-color: #932b4e;
  border-color: #932b4e;
  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: #ba3763;
    border-color: #ba3763;
    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: #8a3551;
    border-color: #8a3551;
    color: #6c1f39; }

.btn-color-3, .btn-color-3-flat {
  background-color: #420322;
  border-color: #420322;
  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: #73053b;
    border-color: #73053b;
    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: #3f0622;
    border-color: #3f0622;
    color: #110109; }

.btn-neutral-color, .btn-neutral-color-flat {
  background-color: #f9f9f9;
  border-color: #f9f9f9;
  color: #000; }
  .btn-neutral-color:visited, .btn-neutral-color-flat:visited {
    color: #000; }
  .btn-neutral-color:hover, .btn-neutral-color-flat:hover, .btn-neutral-color:focus, .btn-neutral-color-flat:focus {
    background-color: #fff;
    border-color: #fff;
    color: #000; }
  .btn-neutral-color:active, .btn-neutral-color-flat:active, .btn-neutral-color.active, .btn-neutral-color-flat.active, .btn-neutral-color.is-active, .btn-neutral-color-flat.is-active {
    background-color: #f9f9f9;
    border-color: #f9f9f9;
    color: #e0e0e0; }
/*
 * 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(115, 5, 59, .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: #420322; }
    .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(115, 5, 59, .9);
      color: rgba(255, 255, 255, .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(63, 6, 34, .7);
      color: rgba(255, 255, 255, .5);
      opacity: 0.3; }
  .btn-border.btn-color-2, .btn-border-thin.btn-color-2, .btn-border-thick.btn-color-2 {
    color: #932b4e; }
    .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(186, 55, 99, .9);
      color: rgba(255, 255, 255, .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(138, 53, 81, .7);
      color: rgba(255, 255, 255, .5);
      opacity: 0.3; }
  .btn-border.btn-color-3, .btn-border-thin.btn-color-3, .btn-border-thick.btn-color-3 {
    color: #420322; }
    .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(115, 5, 59, .9);
      color: rgba(255, 255, 255, .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(63, 6, 34, .7);
      color: rgba(255, 255, 255, .5);
      opacity: 0.3; }
  .btn-border.btn-neutral-color, .btn-border-thin.btn-neutral-color, .btn-border-thick.btn-neutral-color {
    color: #f9f9f9; }
    .btn-border.btn-neutral-color:hover, .btn-border-thin.btn-neutral-color:hover, .btn-border-thick.btn-neutral-color:hover, .btn-border.btn-neutral-color:focus, .btn-border-thin.btn-neutral-color:focus, .btn-border-thick.btn-neutral-color:focus {
      background-color: rgba(255, 255, 255, .9);
      color: rgba(0, 0, 0, .9); }
    .btn-border.btn-neutral-color:active, .btn-border-thin.btn-neutral-color:active, .btn-border-thick.btn-neutral-color:active, .btn-border.btn-neutral-color.active, .btn-border-thin.btn-neutral-color.active, .btn-border-thick.btn-neutral-color.active, .btn-border.btn-neutral-color.is-active, .btn-border-thin.btn-neutral-color.is-active, .btn-border-thick.btn-neutral-color.is-active {
      background-color: rgba(249, 249, 249, .7);
      color: rgba(0, 0, 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: #420322;
  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: #420322; }
  .btn-borderless.btn-color-2 {
    color: #932b4e; }
  .btn-borderless.btn-color-3 {
    color: #420322; }
  .btn-borderless.btn-neutral-color {
    color: #f9f9f9; }
  .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: #2a0215;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#51042a, #2a0215);
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, .3), 0 1px 2px rgba(0, 0, 0, .15); }

.btn-raised:hover, .btn-raised:focus {
  background: linear-gradient(#690536, #200110); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #3f0622;
  box-shadow: inset 0px 1px 3px rgba(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: #2a0215;
  background: linear-gradient(#5a042f, #2a0215); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#690536, #200110); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #110109;
    background: #3f0622; }
  .btn-raised.btn-color-2 {
    border-color: #7f2544;
    background: linear-gradient(#a73158, #7f2544); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#b3345f, #77233f); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #6c1f39;
    background: #8a3551; }
  .btn-raised.btn-color-3 {
    border-color: #2a0215;
    background: linear-gradient(#5a042f, #2a0215); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#690536, #200110); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #110109;
    background: #3f0622; }
  .btn-raised.btn-neutral-color {
    border-color: #ececec;
    background: linear-gradient(#fff, #ececec); }
  .btn-raised.btn-neutral-color:hover, .btn-raised.btn-neutral-color:focus {
    background: linear-gradient(#fff, #e7e7e7); }
  .btn-raised.btn-neutral-color:active, .btn-raised.btn-neutral-color.active, .btn-raised.btn-neutral-color.is-active {
    border-color: #e0e0e0;
    background: #f9f9f9; }
/*
 * 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, .2); }

.btn-3d:hover, .btn-3d:focus {
  box-shadow: 0 7px 0 #000, 0 8px 3px rgba(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, .2); }
/*
 * 3D Button Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-3d.btn-color-1 {
  box-shadow: 0 7px 0 #110109, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-color-1:hover, .btn-3d.btn-color-1:focus {
    box-shadow: 0 7px 0 #070004, 0 8px 3px rgba(0, 0, 0, .30); }
  .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, .2); }
  .btn-3d.btn-color-2 {
    box-shadow: 0 7px 0 #6c1f39, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-color-2:hover, .btn-3d.btn-color-2:focus {
    box-shadow: 0 7px 0 #641d35, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-color-2:active, .btn-3d.btn-color-2.active, .btn-3d.btn-color-2.is-active {
    box-shadow: 0 2px 0 #441424, 0 3px 3px rgba(0, 0, 0, .2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #110109, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-color-3:hover, .btn-3d.btn-color-3:focus {
    box-shadow: 0 7px 0 #070004, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-color-3:active, .btn-3d.btn-color-3.active, .btn-3d.btn-color-3.is-active {
    box-shadow: 0 2px 0 #000, 0 3px 3px rgba(0, 0, 0, .2); }
  .btn-3d.btn-neutral-color {
    box-shadow: 0 7px 0 #e0e0e0, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-neutral-color:hover, .btn-3d.btn-neutral-color:focus {
    box-shadow: 0 7px 0 #dadada, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-neutral-color:active, .btn-3d.btn-neutral-color.active, .btn-3d.btn-neutral-color.is-active {
    box-shadow: 0 2px 0 #c6c6c6, 0 3px 3px rgba(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(66, 3, 34, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(66, 3, 34, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(66, 3, 34, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-neutral-color {
    from {
      box-shadow: 0 0 0 rgba(249, 249, 249, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(249, 249, 249, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(249, 249, 249, 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-neutral-color {
    animation-name: glowing-neutral-color; }
/*
 * 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(115, 5, 59, .95);
  border-style: solid;
  border-width: 1px;
  border-color: #110109;
  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: #51042a;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #33021a; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(66, 3, 34, .95);
  border-color: #110109; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #200110; }
  .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: #2a0215; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(147, 43, 78, .95);
    border-color: #6c1f39; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #77233f; }
  .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: #7f2544; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(66, 3, 34, .95);
    border-color: #110109; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #200110; }
  .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: #2a0215; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list {
    background: rgba(249, 249, 249, .95);
    border-color: #e0e0e0; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list .btn-dropdown-divider {
    border-color: #e7e7e7; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list > li > a {
    color: #000; }
    .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list > li > a:hover {
      color: #000;
      background: #ececec; }
/*
 * 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 #110109, 1px 1px #110109, 2px 2px #110109, 3px 3px #110109, 4px 4px #110109, 5px 5px #110109, 6px 6px #110109, 7px 7px #110109, 8px 8px #110109, 9px 9px #110109, 10px 10px #110109, 11px 11px #110109, 12px 12px #110109, 13px 13px #110109, 14px 14px #110109, 15px 15px #110109, 16px 16px #110109, 17px 17px #110109, 18px 18px #110109, 19px 19px #110109, 20px 20px #110109, 21px 21px #110109, 22px 22px #110109, 23px 23px #110109, 24px 24px #110109, 25px 25px #110109, 26px 26px #110109, 27px 27px #110109, 28px 28px #110109, 29px 29px #110109, 30px 30px #110109, 31px 31px #110109, 32px 32px #110109, 33px 33px #110109, 34px 34px #110109, 35px 35px #110109, 36px 36px #110109, 37px 37px #110109, 38px 38px #110109, 39px 39px #110109, 40px 40px #110109, 41px 41px #110109, 42px 42px #110109, 43px 43px #110109, 44px 44px #110109, 45px 45px #110109, 46px 46px #110109, 47px 47px #110109, 48px 48px #110109, 49px 49px #110109, 50px 50px #110109, 51px 51px #110109, 52px 52px #110109, 53px 53px #110109, 54px 54px #110109, 55px 55px #110109, 56px 56px #110109, 57px 57px #110109, 58px 58px #110109, 59px 59px #110109, 60px 60px #110109, 61px 61px #110109, 62px 62px #110109, 63px 63px #110109, 64px 64px #110109, 65px 65px #110109, 66px 66px #110109, 67px 67px #110109, 68px 68px #110109, 69px 69px #110109, 70px 70px #110109, 71px 71px #110109, 72px 72px #110109, 73px 73px #110109, 74px 74px #110109, 75px 75px #110109, 76px 76px #110109, 77px 77px #110109, 78px 78px #110109, 79px 79px #110109, 80px 80px #110109, 81px 81px #110109, 82px 82px #110109, 83px 83px #110109, 84px 84px #110109, 85px 85px #110109; }
  .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, .4); }
  .btn-longshadow.btn-color-2, .btn-longshadow-right.btn-color-2 {
    text-shadow: 0px 0px #6c1f39, 1px 1px #6c1f39, 2px 2px #6c1f39, 3px 3px #6c1f39, 4px 4px #6c1f39, 5px 5px #6c1f39, 6px 6px #6c1f39, 7px 7px #6c1f39, 8px 8px #6c1f39, 9px 9px #6c1f39, 10px 10px #6c1f39, 11px 11px #6c1f39, 12px 12px #6c1f39, 13px 13px #6c1f39, 14px 14px #6c1f39, 15px 15px #6c1f39, 16px 16px #6c1f39, 17px 17px #6c1f39, 18px 18px #6c1f39, 19px 19px #6c1f39, 20px 20px #6c1f39, 21px 21px #6c1f39, 22px 22px #6c1f39, 23px 23px #6c1f39, 24px 24px #6c1f39, 25px 25px #6c1f39, 26px 26px #6c1f39, 27px 27px #6c1f39, 28px 28px #6c1f39, 29px 29px #6c1f39, 30px 30px #6c1f39, 31px 31px #6c1f39, 32px 32px #6c1f39, 33px 33px #6c1f39, 34px 34px #6c1f39, 35px 35px #6c1f39, 36px 36px #6c1f39, 37px 37px #6c1f39, 38px 38px #6c1f39, 39px 39px #6c1f39, 40px 40px #6c1f39, 41px 41px #6c1f39, 42px 42px #6c1f39, 43px 43px #6c1f39, 44px 44px #6c1f39, 45px 45px #6c1f39, 46px 46px #6c1f39, 47px 47px #6c1f39, 48px 48px #6c1f39, 49px 49px #6c1f39, 50px 50px #6c1f39, 51px 51px #6c1f39, 52px 52px #6c1f39, 53px 53px #6c1f39, 54px 54px #6c1f39, 55px 55px #6c1f39, 56px 56px #6c1f39, 57px 57px #6c1f39, 58px 58px #6c1f39, 59px 59px #6c1f39, 60px 60px #6c1f39, 61px 61px #6c1f39, 62px 62px #6c1f39, 63px 63px #6c1f39, 64px 64px #6c1f39, 65px 65px #6c1f39, 66px 66px #6c1f39, 67px 67px #6c1f39, 68px 68px #6c1f39, 69px 69px #6c1f39, 70px 70px #6c1f39, 71px 71px #6c1f39, 72px 72px #6c1f39, 73px 73px #6c1f39, 74px 74px #6c1f39, 75px 75px #6c1f39, 76px 76px #6c1f39, 77px 77px #6c1f39, 78px 78px #6c1f39, 79px 79px #6c1f39, 80px 80px #6c1f39, 81px 81px #6c1f39, 82px 82px #6c1f39, 83px 83px #6c1f39, 84px 84px #6c1f39, 85px 85px #6c1f39; }
  .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, .4); }
  .btn-longshadow.btn-color-3, .btn-longshadow-right.btn-color-3 {
    text-shadow: 0px 0px #110109, 1px 1px #110109, 2px 2px #110109, 3px 3px #110109, 4px 4px #110109, 5px 5px #110109, 6px 6px #110109, 7px 7px #110109, 8px 8px #110109, 9px 9px #110109, 10px 10px #110109, 11px 11px #110109, 12px 12px #110109, 13px 13px #110109, 14px 14px #110109, 15px 15px #110109, 16px 16px #110109, 17px 17px #110109, 18px 18px #110109, 19px 19px #110109, 20px 20px #110109, 21px 21px #110109, 22px 22px #110109, 23px 23px #110109, 24px 24px #110109, 25px 25px #110109, 26px 26px #110109, 27px 27px #110109, 28px 28px #110109, 29px 29px #110109, 30px 30px #110109, 31px 31px #110109, 32px 32px #110109, 33px 33px #110109, 34px 34px #110109, 35px 35px #110109, 36px 36px #110109, 37px 37px #110109, 38px 38px #110109, 39px 39px #110109, 40px 40px #110109, 41px 41px #110109, 42px 42px #110109, 43px 43px #110109, 44px 44px #110109, 45px 45px #110109, 46px 46px #110109, 47px 47px #110109, 48px 48px #110109, 49px 49px #110109, 50px 50px #110109, 51px 51px #110109, 52px 52px #110109, 53px 53px #110109, 54px 54px #110109, 55px 55px #110109, 56px 56px #110109, 57px 57px #110109, 58px 58px #110109, 59px 59px #110109, 60px 60px #110109, 61px 61px #110109, 62px 62px #110109, 63px 63px #110109, 64px 64px #110109, 65px 65px #110109, 66px 66px #110109, 67px 67px #110109, 68px 68px #110109, 69px 69px #110109, 70px 70px #110109, 71px 71px #110109, 72px 72px #110109, 73px 73px #110109, 74px 74px #110109, 75px 75px #110109, 76px 76px #110109, 77px 77px #110109, 78px 78px #110109, 79px 79px #110109, 80px 80px #110109, 81px 81px #110109, 82px 82px #110109, 83px 83px #110109, 84px 84px #110109, 85px 85px #110109; }
  .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, .4); }
  .btn-longshadow.btn-neutral-color, .btn-longshadow-right.btn-neutral-color {
    text-shadow: 0px 0px #e0e0e0, 1px 1px #e0e0e0, 2px 2px #e0e0e0, 3px 3px #e0e0e0, 4px 4px #e0e0e0, 5px 5px #e0e0e0, 6px 6px #e0e0e0, 7px 7px #e0e0e0, 8px 8px #e0e0e0, 9px 9px #e0e0e0, 10px 10px #e0e0e0, 11px 11px #e0e0e0, 12px 12px #e0e0e0, 13px 13px #e0e0e0, 14px 14px #e0e0e0, 15px 15px #e0e0e0, 16px 16px #e0e0e0, 17px 17px #e0e0e0, 18px 18px #e0e0e0, 19px 19px #e0e0e0, 20px 20px #e0e0e0, 21px 21px #e0e0e0, 22px 22px #e0e0e0, 23px 23px #e0e0e0, 24px 24px #e0e0e0, 25px 25px #e0e0e0, 26px 26px #e0e0e0, 27px 27px #e0e0e0, 28px 28px #e0e0e0, 29px 29px #e0e0e0, 30px 30px #e0e0e0, 31px 31px #e0e0e0, 32px 32px #e0e0e0, 33px 33px #e0e0e0, 34px 34px #e0e0e0, 35px 35px #e0e0e0, 36px 36px #e0e0e0, 37px 37px #e0e0e0, 38px 38px #e0e0e0, 39px 39px #e0e0e0, 40px 40px #e0e0e0, 41px 41px #e0e0e0, 42px 42px #e0e0e0, 43px 43px #e0e0e0, 44px 44px #e0e0e0, 45px 45px #e0e0e0, 46px 46px #e0e0e0, 47px 47px #e0e0e0, 48px 48px #e0e0e0, 49px 49px #e0e0e0, 50px 50px #e0e0e0, 51px 51px #e0e0e0, 52px 52px #e0e0e0, 53px 53px #e0e0e0, 54px 54px #e0e0e0, 55px 55px #e0e0e0, 56px 56px #e0e0e0, 57px 57px #e0e0e0, 58px 58px #e0e0e0, 59px 59px #e0e0e0, 60px 60px #e0e0e0, 61px 61px #e0e0e0, 62px 62px #e0e0e0, 63px 63px #e0e0e0, 64px 64px #e0e0e0, 65px 65px #e0e0e0, 66px 66px #e0e0e0, 67px 67px #e0e0e0, 68px 68px #e0e0e0, 69px 69px #e0e0e0, 70px 70px #e0e0e0, 71px 71px #e0e0e0, 72px 72px #e0e0e0, 73px 73px #e0e0e0, 74px 74px #e0e0e0, 75px 75px #e0e0e0, 76px 76px #e0e0e0, 77px 77px #e0e0e0, 78px 78px #e0e0e0, 79px 79px #e0e0e0, 80px 80px #e0e0e0, 81px 81px #e0e0e0, 82px 82px #e0e0e0, 83px 83px #e0e0e0, 84px 84px #e0e0e0, 85px 85px #e0e0e0; }
  .btn-longshadow.btn-neutral-color:active, .btn-longshadow-right.btn-neutral-color:active, .btn-longshadow.btn-neutral-color.active, .btn-longshadow-right.btn-neutral-color.active, .btn-longshadow.btn-neutral-color.is-active, .btn-longshadow-right.btn-neutral-color.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, .4); }
/*
 * Shadow Left
 *
 */
.btn-longshadow-left {
  overflow: hidden; }
  .btn-longshadow-left.btn-color-1 {
    text-shadow: 0px 0px #110109, -1px 1px #110109, -2px 2px #110109, -3px 3px #110109, -4px 4px #110109, -5px 5px #110109, -6px 6px #110109, -7px 7px #110109, -8px 8px #110109, -9px 9px #110109, -10px 10px #110109, -11px 11px #110109, -12px 12px #110109, -13px 13px #110109, -14px 14px #110109, -15px 15px #110109, -16px 16px #110109, -17px 17px #110109, -18px 18px #110109, -19px 19px #110109, -20px 20px #110109, -21px 21px #110109, -22px 22px #110109, -23px 23px #110109, -24px 24px #110109, -25px 25px #110109, -26px 26px #110109, -27px 27px #110109, -28px 28px #110109, -29px 29px #110109, -30px 30px #110109, -31px 31px #110109, -32px 32px #110109, -33px 33px #110109, -34px 34px #110109, -35px 35px #110109, -36px 36px #110109, -37px 37px #110109, -38px 38px #110109, -39px 39px #110109, -40px 40px #110109, -41px 41px #110109, -42px 42px #110109, -43px 43px #110109, -44px 44px #110109, -45px 45px #110109, -46px 46px #110109, -47px 47px #110109, -48px 48px #110109, -49px 49px #110109, -50px 50px #110109, -51px 51px #110109, -52px 52px #110109, -53px 53px #110109, -54px 54px #110109, -55px 55px #110109, -56px 56px #110109, -57px 57px #110109, -58px 58px #110109, -59px 59px #110109, -60px 60px #110109, -61px 61px #110109, -62px 62px #110109, -63px 63px #110109, -64px 64px #110109, -65px 65px #110109, -66px 66px #110109, -67px 67px #110109, -68px 68px #110109, -69px 69px #110109, -70px 70px #110109, -71px 71px #110109, -72px 72px #110109, -73px 73px #110109, -74px 74px #110109, -75px 75px #110109, -76px 76px #110109, -77px 77px #110109, -78px 78px #110109, -79px 79px #110109, -80px 80px #110109, -81px 81px #110109, -82px 82px #110109, -83px 83px #110109, -84px 84px #110109, -85px 85px #110109; }
  .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, .4); }
  .btn-longshadow-left.btn-color-2 {
    text-shadow: 0px 0px #6c1f39, -1px 1px #6c1f39, -2px 2px #6c1f39, -3px 3px #6c1f39, -4px 4px #6c1f39, -5px 5px #6c1f39, -6px 6px #6c1f39, -7px 7px #6c1f39, -8px 8px #6c1f39, -9px 9px #6c1f39, -10px 10px #6c1f39, -11px 11px #6c1f39, -12px 12px #6c1f39, -13px 13px #6c1f39, -14px 14px #6c1f39, -15px 15px #6c1f39, -16px 16px #6c1f39, -17px 17px #6c1f39, -18px 18px #6c1f39, -19px 19px #6c1f39, -20px 20px #6c1f39, -21px 21px #6c1f39, -22px 22px #6c1f39, -23px 23px #6c1f39, -24px 24px #6c1f39, -25px 25px #6c1f39, -26px 26px #6c1f39, -27px 27px #6c1f39, -28px 28px #6c1f39, -29px 29px #6c1f39, -30px 30px #6c1f39, -31px 31px #6c1f39, -32px 32px #6c1f39, -33px 33px #6c1f39, -34px 34px #6c1f39, -35px 35px #6c1f39, -36px 36px #6c1f39, -37px 37px #6c1f39, -38px 38px #6c1f39, -39px 39px #6c1f39, -40px 40px #6c1f39, -41px 41px #6c1f39, -42px 42px #6c1f39, -43px 43px #6c1f39, -44px 44px #6c1f39, -45px 45px #6c1f39, -46px 46px #6c1f39, -47px 47px #6c1f39, -48px 48px #6c1f39, -49px 49px #6c1f39, -50px 50px #6c1f39, -51px 51px #6c1f39, -52px 52px #6c1f39, -53px 53px #6c1f39, -54px 54px #6c1f39, -55px 55px #6c1f39, -56px 56px #6c1f39, -57px 57px #6c1f39, -58px 58px #6c1f39, -59px 59px #6c1f39, -60px 60px #6c1f39, -61px 61px #6c1f39, -62px 62px #6c1f39, -63px 63px #6c1f39, -64px 64px #6c1f39, -65px 65px #6c1f39, -66px 66px #6c1f39, -67px 67px #6c1f39, -68px 68px #6c1f39, -69px 69px #6c1f39, -70px 70px #6c1f39, -71px 71px #6c1f39, -72px 72px #6c1f39, -73px 73px #6c1f39, -74px 74px #6c1f39, -75px 75px #6c1f39, -76px 76px #6c1f39, -77px 77px #6c1f39, -78px 78px #6c1f39, -79px 79px #6c1f39, -80px 80px #6c1f39, -81px 81px #6c1f39, -82px 82px #6c1f39, -83px 83px #6c1f39, -84px 84px #6c1f39, -85px 85px #6c1f39; }
  .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, .4); }
  .btn-longshadow-left.btn-color-3 {
    text-shadow: 0px 0px #110109, -1px 1px #110109, -2px 2px #110109, -3px 3px #110109, -4px 4px #110109, -5px 5px #110109, -6px 6px #110109, -7px 7px #110109, -8px 8px #110109, -9px 9px #110109, -10px 10px #110109, -11px 11px #110109, -12px 12px #110109, -13px 13px #110109, -14px 14px #110109, -15px 15px #110109, -16px 16px #110109, -17px 17px #110109, -18px 18px #110109, -19px 19px #110109, -20px 20px #110109, -21px 21px #110109, -22px 22px #110109, -23px 23px #110109, -24px 24px #110109, -25px 25px #110109, -26px 26px #110109, -27px 27px #110109, -28px 28px #110109, -29px 29px #110109, -30px 30px #110109, -31px 31px #110109, -32px 32px #110109, -33px 33px #110109, -34px 34px #110109, -35px 35px #110109, -36px 36px #110109, -37px 37px #110109, -38px 38px #110109, -39px 39px #110109, -40px 40px #110109, -41px 41px #110109, -42px 42px #110109, -43px 43px #110109, -44px 44px #110109, -45px 45px #110109, -46px 46px #110109, -47px 47px #110109, -48px 48px #110109, -49px 49px #110109, -50px 50px #110109, -51px 51px #110109, -52px 52px #110109, -53px 53px #110109, -54px 54px #110109, -55px 55px #110109, -56px 56px #110109, -57px 57px #110109, -58px 58px #110109, -59px 59px #110109, -60px 60px #110109, -61px 61px #110109, -62px 62px #110109, -63px 63px #110109, -64px 64px #110109, -65px 65px #110109, -66px 66px #110109, -67px 67px #110109, -68px 68px #110109, -69px 69px #110109, -70px 70px #110109, -71px 71px #110109, -72px 72px #110109, -73px 73px #110109, -74px 74px #110109, -75px 75px #110109, -76px 76px #110109, -77px 77px #110109, -78px 78px #110109, -79px 79px #110109, -80px 80px #110109, -81px 81px #110109, -82px 82px #110109, -83px 83px #110109, -84px 84px #110109, -85px 85px #110109; }
  .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, .4); }
  .btn-longshadow-left.btn-neutral-color {
    text-shadow: 0px 0px #e0e0e0, -1px 1px #e0e0e0, -2px 2px #e0e0e0, -3px 3px #e0e0e0, -4px 4px #e0e0e0, -5px 5px #e0e0e0, -6px 6px #e0e0e0, -7px 7px #e0e0e0, -8px 8px #e0e0e0, -9px 9px #e0e0e0, -10px 10px #e0e0e0, -11px 11px #e0e0e0, -12px 12px #e0e0e0, -13px 13px #e0e0e0, -14px 14px #e0e0e0, -15px 15px #e0e0e0, -16px 16px #e0e0e0, -17px 17px #e0e0e0, -18px 18px #e0e0e0, -19px 19px #e0e0e0, -20px 20px #e0e0e0, -21px 21px #e0e0e0, -22px 22px #e0e0e0, -23px 23px #e0e0e0, -24px 24px #e0e0e0, -25px 25px #e0e0e0, -26px 26px #e0e0e0, -27px 27px #e0e0e0, -28px 28px #e0e0e0, -29px 29px #e0e0e0, -30px 30px #e0e0e0, -31px 31px #e0e0e0, -32px 32px #e0e0e0, -33px 33px #e0e0e0, -34px 34px #e0e0e0, -35px 35px #e0e0e0, -36px 36px #e0e0e0, -37px 37px #e0e0e0, -38px 38px #e0e0e0, -39px 39px #e0e0e0, -40px 40px #e0e0e0, -41px 41px #e0e0e0, -42px 42px #e0e0e0, -43px 43px #e0e0e0, -44px 44px #e0e0e0, -45px 45px #e0e0e0, -46px 46px #e0e0e0, -47px 47px #e0e0e0, -48px 48px #e0e0e0, -49px 49px #e0e0e0, -50px 50px #e0e0e0, -51px 51px #e0e0e0, -52px 52px #e0e0e0, -53px 53px #e0e0e0, -54px 54px #e0e0e0, -55px 55px #e0e0e0, -56px 56px #e0e0e0, -57px 57px #e0e0e0, -58px 58px #e0e0e0, -59px 59px #e0e0e0, -60px 60px #e0e0e0, -61px 61px #e0e0e0, -62px 62px #e0e0e0, -63px 63px #e0e0e0, -64px 64px #e0e0e0, -65px 65px #e0e0e0, -66px 66px #e0e0e0, -67px 67px #e0e0e0, -68px 68px #e0e0e0, -69px 69px #e0e0e0, -70px 70px #e0e0e0, -71px 71px #e0e0e0, -72px 72px #e0e0e0, -73px 73px #e0e0e0, -74px 74px #e0e0e0, -75px 75px #e0e0e0, -76px 76px #e0e0e0, -77px 77px #e0e0e0, -78px 78px #e0e0e0, -79px 79px #e0e0e0, -80px 80px #e0e0e0, -81px 81px #e0e0e0, -82px 82px #e0e0e0, -83px 83px #e0e0e0, -84px 84px #e0e0e0, -85px 85px #e0e0e0; }
  .btn-longshadow-left.btn-neutral-color:active, .btn-longshadow-left.btn-neutral-color.active, .btn-longshadow-left.btn-neutral-color.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, .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; }
