/*--------------------------------------------------------------
 # 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: #1a1a1a;
  background-color: #ffc700;
  border-color: #ffc700;
  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: #1a1a1a; }
  .btn:hover, .btn:focus {
    background-color: #ffca0f;
    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: #f2c00d;
    border-color: #c29700;
    color: #cc9f00;
    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: #ffc700;
  border-color: #ffc700;
  color: #1a1a1a; }
  .btn-color-1:visited, .btn-color-1-flat:visited {
    color: #1a1a1a; }
  .btn-color-1:hover, .btn-color-1-flat:hover, .btn-color-1:focus, .btn-color-1-flat:focus {
    background-color: #ffd233;
    border-color: #ffd233;
    color: #1a1a1a; }
  .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: #f2c00d;
    border-color: #f2c00d;
    color: #cc9f00; }

.btn-color-2, .btn-color-2-flat {
  background-color: #001e60;
  border-color: #001e60;
  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: #002e93;
    border-color: #002e93;
    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: #05205b;
    border-color: #05205b;
    color: #000e2d; }

.btn-color-3, .btn-color-3-flat {
  background-color: #0037ff;
  border-color: #0037ff;
  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: #335fff;
    border-color: #335fff;
    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: #0d3ef2;
    border-color: #0d3ef2;
    color: #002ccc; }

.btn-color-4, .btn-color-4-flat {
  background-color: #1f2a30;
  border-color: #1f2a30;
  color: #fff; }
  .btn-color-4:visited, .btn-color-4-flat:visited {
    color: #fff; }
  .btn-color-4:hover, .btn-color-4-flat:hover, .btn-color-4:focus, .btn-color-4-flat:focus {
    background-color: #33454f;
    border-color: #33454f;
    color: #fff; }
  .btn-color-4:active, .btn-color-4-flat:active, .btn-color-4.active, .btn-color-4-flat.active, .btn-color-4.is-active, .btn-color-4-flat.is-active {
    background-color: #23292c;
    border-color: #23292c;
    color: #0b0f11; }

.btn-neutral-color, .btn-neutral-color-flat {
  background-color: #07f;
  border-color: #07f;
  color: #fff; }
  .btn-neutral-color:visited, .btn-neutral-color-flat:visited {
    color: #fff; }
  .btn-neutral-color:hover, .btn-neutral-color-flat:hover, .btn-neutral-color:focus, .btn-neutral-color-flat:focus {
    background-color: #3392ff;
    border-color: #3392ff;
    color: #fff; }
  .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: #0d78f2;
    border-color: #0d78f2;
    color: #005fcc; }
/*
 * 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(255, 210, 51, 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: #ffc700; }
    .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(255, 210, 51, 0.9);
      color: rgba(26, 26, 26, 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(242, 192, 13, 0.7);
      color: rgba(26, 26, 26, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-2, .btn-border-thin.btn-color-2, .btn-border-thick.btn-color-2 {
    color: #001e60; }
    .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(0, 46, 147, 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(5, 32, 91, 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: #0037ff; }
    .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(51, 95, 255, 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(13, 62, 242, 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: #1f2a30; }
    .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(51, 69, 79, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .btn-border.btn-color-4:active, .btn-border-thin.btn-color-4:active, .btn-border-thick.btn-color-4:active, .btn-border.btn-color-4.active, .btn-border-thin.btn-color-4.active, .btn-border-thick.btn-color-4.active, .btn-border.btn-color-4.is-active, .btn-border-thin.btn-color-4.is-active, .btn-border-thick.btn-color-4.is-active {
      background-color: rgba(35, 41, 44, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-neutral-color, .btn-border-thin.btn-neutral-color, .btn-border-thick.btn-neutral-color {
    color: #07f; }
    .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(51, 146, 255, 0.9);
      color: rgba(255, 255, 255, 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(13, 120, 242, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-giant, .btn-border-thin.btn-giant, .btn-border-thick.btn-giant {
    line-height: 66px; }
  .btn-border.btn-jumbo, .btn-border-thin.btn-jumbo, .btn-border-thick.btn-jumbo {
    line-height: 56px; }
  .btn-border.btn-large, .btn-border-thin.btn-large, .btn-border-thick.btn-large {
    line-height: 46px; }
  .btn-border.btn-normal, .btn-border-thin.btn-normal, .btn-border-thick.btn-normal {
    line-height: 36px; }
  .btn-border.btn-small, .btn-border-thin.btn-small, .btn-border-thick.btn-small {
    line-height: 26px; }
  .btn-border.btn-tiny, .btn-border-thin.btn-tiny, .btn-border-thick.btn-tiny {
    line-height: 20px; }
/*
 * Border Buttons
 *
 * These buttons have no fill they only have a
 * border to define their hit target.
 */
.btn-borderless {
  background: none;
  border: none;
  padding: 0 8px !important;
  color: #ffc700;
  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: #ffc700; }
  .btn-borderless.btn-color-2 {
    color: #001e60; }
  .btn-borderless.btn-color-3 {
    color: #0037ff; }
  .btn-borderless.btn-color-4 {
    color: #1f2a30; }
  .btn-borderless.btn-neutral-color {
    color: #07f; }
  .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: #e6b300;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#ffca0f, #e6b300);
  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(#ffd029, #dbab00); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #f2c00d;
  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: #e6b300;
  background: linear-gradient(#ffcd1a, #e6b300); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#ffd029, #dbab00); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #cc9f00;
    background: #f2c00d; }
  .btn-raised.btn-color-2 {
    border-color: #001647;
    background: linear-gradient(#00267a, #001647); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#002b89, #00133c); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #000e2d;
    background: #05205b; }
  .btn-raised.btn-color-3 {
    border-color: #0032e6;
    background: linear-gradient(#1a4bff, #0032e6); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#2957ff, #002fdb); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #002ccc;
    background: #0d3ef2; }
  .btn-raised.btn-color-4 {
    border-color: #151c21;
    background: linear-gradient(#29383f, #151c21); }
  .btn-raised.btn-color-4:hover, .btn-raised.btn-color-4:focus {
    background: linear-gradient(#2f4049, #11171a); }
  .btn-raised.btn-color-4:active, .btn-raised.btn-color-4.active, .btn-raised.btn-color-4.is-active {
    border-color: #0b0f11;
    background: #23292c; }
  .btn-raised.btn-neutral-color {
    border-color: #006be6;
    background: linear-gradient(#1a85ff, #006be6); }
  .btn-raised.btn-neutral-color:hover, .btn-raised.btn-neutral-color:focus {
    background: linear-gradient(#298dff, #0066db); }
  .btn-raised.btn-neutral-color:active, .btn-raised.btn-neutral-color.active, .btn-raised.btn-neutral-color.is-active {
    border-color: #005fcc;
    background: #0d78f2; }
/*
 * 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 #970, 0 8px 3px rgba(0, 0, 0, 0.2); }

.btn-3d:hover, .btn-3d:focus {
  box-shadow: 0 7px 0 #970, 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 #970, 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 #cc9f00, 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 #c29700, 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 #970, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-2 {
    box-shadow: 0 7px 0 #000e2d, 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 #000b23, 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 #000, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #002ccc, 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 #002ac2, 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 #002199, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-4 {
    box-shadow: 0 7px 0 #0b0f11, 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 #07090b, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-4:active, .btn-3d.btn-color-4.active, .btn-3d.btn-color-4.is-active {
    box-shadow: 0 2px 0 #000, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-neutral-color {
    box-shadow: 0 7px 0 #005fcc, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-neutral-color:hover, .btn-3d.btn-neutral-color:focus {
    box-shadow: 0 7px 0 #005ac2, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-neutral-color:active, .btn-3d.btn-neutral-color.active, .btn-3d.btn-neutral-color.is-active {
    box-shadow: 0 2px 0 #004799, 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(255, 199, 0, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(255, 199, 0, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(255, 199, 0, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-neutral-color {
    from {
      box-shadow: 0 0 0 rgba(0, 119, 255, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(0, 119, 255, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(0, 119, 255, 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-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(255, 210, 51, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #cc9f00;
  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: #1a1a1a;
  text-decoration: none; }
  .btn-dropdown-list > li > a:hover {
    color: #121212;
    background: #ffca0f;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #f0bb00; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(255, 199, 0, 0.95);
  border-color: #cc9f00; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #dbab00; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list > li > a {
    color: #1a1a1a; }
    .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list > li > a:hover {
      color: #0d0d0d;
      background: #e6b300; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(0, 30, 96, 0.95);
    border-color: #000e2d; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #00133c; }
  .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: #001647; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(0, 55, 255, 0.95);
    border-color: #002ccc; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #002fdb; }
  .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: #0032e6; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list {
    background: rgba(31, 42, 48, 0.95);
    border-color: #0b0f11; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #11171a; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a {
    color: #fff; }
    .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #151c21; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list {
    background: rgba(0, 119, 255, 0.95);
    border-color: #005fcc; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list .btn-dropdown-divider {
    border-color: #0066db; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list > li > a {
    color: #fff; }
    .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #006be6; }
/*
 * 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 #cc9f00, 1px 1px #cc9f00, 2px 2px #cc9f00, 3px 3px #cc9f00, 4px 4px #cc9f00, 5px 5px #cc9f00, 6px 6px #cc9f00, 7px 7px #cc9f00, 8px 8px #cc9f00, 9px 9px #cc9f00, 10px 10px #cc9f00, 11px 11px #cc9f00, 12px 12px #cc9f00, 13px 13px #cc9f00, 14px 14px #cc9f00, 15px 15px #cc9f00, 16px 16px #cc9f00, 17px 17px #cc9f00, 18px 18px #cc9f00, 19px 19px #cc9f00, 20px 20px #cc9f00, 21px 21px #cc9f00, 22px 22px #cc9f00, 23px 23px #cc9f00, 24px 24px #cc9f00, 25px 25px #cc9f00, 26px 26px #cc9f00, 27px 27px #cc9f00, 28px 28px #cc9f00, 29px 29px #cc9f00, 30px 30px #cc9f00, 31px 31px #cc9f00, 32px 32px #cc9f00, 33px 33px #cc9f00, 34px 34px #cc9f00, 35px 35px #cc9f00, 36px 36px #cc9f00, 37px 37px #cc9f00, 38px 38px #cc9f00, 39px 39px #cc9f00, 40px 40px #cc9f00, 41px 41px #cc9f00, 42px 42px #cc9f00, 43px 43px #cc9f00, 44px 44px #cc9f00, 45px 45px #cc9f00, 46px 46px #cc9f00, 47px 47px #cc9f00, 48px 48px #cc9f00, 49px 49px #cc9f00, 50px 50px #cc9f00, 51px 51px #cc9f00, 52px 52px #cc9f00, 53px 53px #cc9f00, 54px 54px #cc9f00, 55px 55px #cc9f00, 56px 56px #cc9f00, 57px 57px #cc9f00, 58px 58px #cc9f00, 59px 59px #cc9f00, 60px 60px #cc9f00, 61px 61px #cc9f00, 62px 62px #cc9f00, 63px 63px #cc9f00, 64px 64px #cc9f00, 65px 65px #cc9f00, 66px 66px #cc9f00, 67px 67px #cc9f00, 68px 68px #cc9f00, 69px 69px #cc9f00, 70px 70px #cc9f00, 71px 71px #cc9f00, 72px 72px #cc9f00, 73px 73px #cc9f00, 74px 74px #cc9f00, 75px 75px #cc9f00, 76px 76px #cc9f00, 77px 77px #cc9f00, 78px 78px #cc9f00, 79px 79px #cc9f00, 80px 80px #cc9f00, 81px 81px #cc9f00, 82px 82px #cc9f00, 83px 83px #cc9f00, 84px 84px #cc9f00, 85px 85px #cc9f00; }
  .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 #000e2d, 1px 1px #000e2d, 2px 2px #000e2d, 3px 3px #000e2d, 4px 4px #000e2d, 5px 5px #000e2d, 6px 6px #000e2d, 7px 7px #000e2d, 8px 8px #000e2d, 9px 9px #000e2d, 10px 10px #000e2d, 11px 11px #000e2d, 12px 12px #000e2d, 13px 13px #000e2d, 14px 14px #000e2d, 15px 15px #000e2d, 16px 16px #000e2d, 17px 17px #000e2d, 18px 18px #000e2d, 19px 19px #000e2d, 20px 20px #000e2d, 21px 21px #000e2d, 22px 22px #000e2d, 23px 23px #000e2d, 24px 24px #000e2d, 25px 25px #000e2d, 26px 26px #000e2d, 27px 27px #000e2d, 28px 28px #000e2d, 29px 29px #000e2d, 30px 30px #000e2d, 31px 31px #000e2d, 32px 32px #000e2d, 33px 33px #000e2d, 34px 34px #000e2d, 35px 35px #000e2d, 36px 36px #000e2d, 37px 37px #000e2d, 38px 38px #000e2d, 39px 39px #000e2d, 40px 40px #000e2d, 41px 41px #000e2d, 42px 42px #000e2d, 43px 43px #000e2d, 44px 44px #000e2d, 45px 45px #000e2d, 46px 46px #000e2d, 47px 47px #000e2d, 48px 48px #000e2d, 49px 49px #000e2d, 50px 50px #000e2d, 51px 51px #000e2d, 52px 52px #000e2d, 53px 53px #000e2d, 54px 54px #000e2d, 55px 55px #000e2d, 56px 56px #000e2d, 57px 57px #000e2d, 58px 58px #000e2d, 59px 59px #000e2d, 60px 60px #000e2d, 61px 61px #000e2d, 62px 62px #000e2d, 63px 63px #000e2d, 64px 64px #000e2d, 65px 65px #000e2d, 66px 66px #000e2d, 67px 67px #000e2d, 68px 68px #000e2d, 69px 69px #000e2d, 70px 70px #000e2d, 71px 71px #000e2d, 72px 72px #000e2d, 73px 73px #000e2d, 74px 74px #000e2d, 75px 75px #000e2d, 76px 76px #000e2d, 77px 77px #000e2d, 78px 78px #000e2d, 79px 79px #000e2d, 80px 80px #000e2d, 81px 81px #000e2d, 82px 82px #000e2d, 83px 83px #000e2d, 84px 84px #000e2d, 85px 85px #000e2d; }
  .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 #002ccc, 1px 1px #002ccc, 2px 2px #002ccc, 3px 3px #002ccc, 4px 4px #002ccc, 5px 5px #002ccc, 6px 6px #002ccc, 7px 7px #002ccc, 8px 8px #002ccc, 9px 9px #002ccc, 10px 10px #002ccc, 11px 11px #002ccc, 12px 12px #002ccc, 13px 13px #002ccc, 14px 14px #002ccc, 15px 15px #002ccc, 16px 16px #002ccc, 17px 17px #002ccc, 18px 18px #002ccc, 19px 19px #002ccc, 20px 20px #002ccc, 21px 21px #002ccc, 22px 22px #002ccc, 23px 23px #002ccc, 24px 24px #002ccc, 25px 25px #002ccc, 26px 26px #002ccc, 27px 27px #002ccc, 28px 28px #002ccc, 29px 29px #002ccc, 30px 30px #002ccc, 31px 31px #002ccc, 32px 32px #002ccc, 33px 33px #002ccc, 34px 34px #002ccc, 35px 35px #002ccc, 36px 36px #002ccc, 37px 37px #002ccc, 38px 38px #002ccc, 39px 39px #002ccc, 40px 40px #002ccc, 41px 41px #002ccc, 42px 42px #002ccc, 43px 43px #002ccc, 44px 44px #002ccc, 45px 45px #002ccc, 46px 46px #002ccc, 47px 47px #002ccc, 48px 48px #002ccc, 49px 49px #002ccc, 50px 50px #002ccc, 51px 51px #002ccc, 52px 52px #002ccc, 53px 53px #002ccc, 54px 54px #002ccc, 55px 55px #002ccc, 56px 56px #002ccc, 57px 57px #002ccc, 58px 58px #002ccc, 59px 59px #002ccc, 60px 60px #002ccc, 61px 61px #002ccc, 62px 62px #002ccc, 63px 63px #002ccc, 64px 64px #002ccc, 65px 65px #002ccc, 66px 66px #002ccc, 67px 67px #002ccc, 68px 68px #002ccc, 69px 69px #002ccc, 70px 70px #002ccc, 71px 71px #002ccc, 72px 72px #002ccc, 73px 73px #002ccc, 74px 74px #002ccc, 75px 75px #002ccc, 76px 76px #002ccc, 77px 77px #002ccc, 78px 78px #002ccc, 79px 79px #002ccc, 80px 80px #002ccc, 81px 81px #002ccc, 82px 82px #002ccc, 83px 83px #002ccc, 84px 84px #002ccc, 85px 85px #002ccc; }
  .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 #0b0f11, 1px 1px #0b0f11, 2px 2px #0b0f11, 3px 3px #0b0f11, 4px 4px #0b0f11, 5px 5px #0b0f11, 6px 6px #0b0f11, 7px 7px #0b0f11, 8px 8px #0b0f11, 9px 9px #0b0f11, 10px 10px #0b0f11, 11px 11px #0b0f11, 12px 12px #0b0f11, 13px 13px #0b0f11, 14px 14px #0b0f11, 15px 15px #0b0f11, 16px 16px #0b0f11, 17px 17px #0b0f11, 18px 18px #0b0f11, 19px 19px #0b0f11, 20px 20px #0b0f11, 21px 21px #0b0f11, 22px 22px #0b0f11, 23px 23px #0b0f11, 24px 24px #0b0f11, 25px 25px #0b0f11, 26px 26px #0b0f11, 27px 27px #0b0f11, 28px 28px #0b0f11, 29px 29px #0b0f11, 30px 30px #0b0f11, 31px 31px #0b0f11, 32px 32px #0b0f11, 33px 33px #0b0f11, 34px 34px #0b0f11, 35px 35px #0b0f11, 36px 36px #0b0f11, 37px 37px #0b0f11, 38px 38px #0b0f11, 39px 39px #0b0f11, 40px 40px #0b0f11, 41px 41px #0b0f11, 42px 42px #0b0f11, 43px 43px #0b0f11, 44px 44px #0b0f11, 45px 45px #0b0f11, 46px 46px #0b0f11, 47px 47px #0b0f11, 48px 48px #0b0f11, 49px 49px #0b0f11, 50px 50px #0b0f11, 51px 51px #0b0f11, 52px 52px #0b0f11, 53px 53px #0b0f11, 54px 54px #0b0f11, 55px 55px #0b0f11, 56px 56px #0b0f11, 57px 57px #0b0f11, 58px 58px #0b0f11, 59px 59px #0b0f11, 60px 60px #0b0f11, 61px 61px #0b0f11, 62px 62px #0b0f11, 63px 63px #0b0f11, 64px 64px #0b0f11, 65px 65px #0b0f11, 66px 66px #0b0f11, 67px 67px #0b0f11, 68px 68px #0b0f11, 69px 69px #0b0f11, 70px 70px #0b0f11, 71px 71px #0b0f11, 72px 72px #0b0f11, 73px 73px #0b0f11, 74px 74px #0b0f11, 75px 75px #0b0f11, 76px 76px #0b0f11, 77px 77px #0b0f11, 78px 78px #0b0f11, 79px 79px #0b0f11, 80px 80px #0b0f11, 81px 81px #0b0f11, 82px 82px #0b0f11, 83px 83px #0b0f11, 84px 84px #0b0f11, 85px 85px #0b0f11; }
  .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-neutral-color, .btn-longshadow-right.btn-neutral-color {
    text-shadow: 0px 0px #005fcc, 1px 1px #005fcc, 2px 2px #005fcc, 3px 3px #005fcc, 4px 4px #005fcc, 5px 5px #005fcc, 6px 6px #005fcc, 7px 7px #005fcc, 8px 8px #005fcc, 9px 9px #005fcc, 10px 10px #005fcc, 11px 11px #005fcc, 12px 12px #005fcc, 13px 13px #005fcc, 14px 14px #005fcc, 15px 15px #005fcc, 16px 16px #005fcc, 17px 17px #005fcc, 18px 18px #005fcc, 19px 19px #005fcc, 20px 20px #005fcc, 21px 21px #005fcc, 22px 22px #005fcc, 23px 23px #005fcc, 24px 24px #005fcc, 25px 25px #005fcc, 26px 26px #005fcc, 27px 27px #005fcc, 28px 28px #005fcc, 29px 29px #005fcc, 30px 30px #005fcc, 31px 31px #005fcc, 32px 32px #005fcc, 33px 33px #005fcc, 34px 34px #005fcc, 35px 35px #005fcc, 36px 36px #005fcc, 37px 37px #005fcc, 38px 38px #005fcc, 39px 39px #005fcc, 40px 40px #005fcc, 41px 41px #005fcc, 42px 42px #005fcc, 43px 43px #005fcc, 44px 44px #005fcc, 45px 45px #005fcc, 46px 46px #005fcc, 47px 47px #005fcc, 48px 48px #005fcc, 49px 49px #005fcc, 50px 50px #005fcc, 51px 51px #005fcc, 52px 52px #005fcc, 53px 53px #005fcc, 54px 54px #005fcc, 55px 55px #005fcc, 56px 56px #005fcc, 57px 57px #005fcc, 58px 58px #005fcc, 59px 59px #005fcc, 60px 60px #005fcc, 61px 61px #005fcc, 62px 62px #005fcc, 63px 63px #005fcc, 64px 64px #005fcc, 65px 65px #005fcc, 66px 66px #005fcc, 67px 67px #005fcc, 68px 68px #005fcc, 69px 69px #005fcc, 70px 70px #005fcc, 71px 71px #005fcc, 72px 72px #005fcc, 73px 73px #005fcc, 74px 74px #005fcc, 75px 75px #005fcc, 76px 76px #005fcc, 77px 77px #005fcc, 78px 78px #005fcc, 79px 79px #005fcc, 80px 80px #005fcc, 81px 81px #005fcc, 82px 82px #005fcc, 83px 83px #005fcc, 84px 84px #005fcc, 85px 85px #005fcc; }
  .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, 0.4); }
/*
 * Shadow Left
 *
 */
.btn-longshadow-left {
  overflow: hidden; }
  .btn-longshadow-left.btn-color-1 {
    text-shadow: 0px 0px #cc9f00, -1px 1px #cc9f00, -2px 2px #cc9f00, -3px 3px #cc9f00, -4px 4px #cc9f00, -5px 5px #cc9f00, -6px 6px #cc9f00, -7px 7px #cc9f00, -8px 8px #cc9f00, -9px 9px #cc9f00, -10px 10px #cc9f00, -11px 11px #cc9f00, -12px 12px #cc9f00, -13px 13px #cc9f00, -14px 14px #cc9f00, -15px 15px #cc9f00, -16px 16px #cc9f00, -17px 17px #cc9f00, -18px 18px #cc9f00, -19px 19px #cc9f00, -20px 20px #cc9f00, -21px 21px #cc9f00, -22px 22px #cc9f00, -23px 23px #cc9f00, -24px 24px #cc9f00, -25px 25px #cc9f00, -26px 26px #cc9f00, -27px 27px #cc9f00, -28px 28px #cc9f00, -29px 29px #cc9f00, -30px 30px #cc9f00, -31px 31px #cc9f00, -32px 32px #cc9f00, -33px 33px #cc9f00, -34px 34px #cc9f00, -35px 35px #cc9f00, -36px 36px #cc9f00, -37px 37px #cc9f00, -38px 38px #cc9f00, -39px 39px #cc9f00, -40px 40px #cc9f00, -41px 41px #cc9f00, -42px 42px #cc9f00, -43px 43px #cc9f00, -44px 44px #cc9f00, -45px 45px #cc9f00, -46px 46px #cc9f00, -47px 47px #cc9f00, -48px 48px #cc9f00, -49px 49px #cc9f00, -50px 50px #cc9f00, -51px 51px #cc9f00, -52px 52px #cc9f00, -53px 53px #cc9f00, -54px 54px #cc9f00, -55px 55px #cc9f00, -56px 56px #cc9f00, -57px 57px #cc9f00, -58px 58px #cc9f00, -59px 59px #cc9f00, -60px 60px #cc9f00, -61px 61px #cc9f00, -62px 62px #cc9f00, -63px 63px #cc9f00, -64px 64px #cc9f00, -65px 65px #cc9f00, -66px 66px #cc9f00, -67px 67px #cc9f00, -68px 68px #cc9f00, -69px 69px #cc9f00, -70px 70px #cc9f00, -71px 71px #cc9f00, -72px 72px #cc9f00, -73px 73px #cc9f00, -74px 74px #cc9f00, -75px 75px #cc9f00, -76px 76px #cc9f00, -77px 77px #cc9f00, -78px 78px #cc9f00, -79px 79px #cc9f00, -80px 80px #cc9f00, -81px 81px #cc9f00, -82px 82px #cc9f00, -83px 83px #cc9f00, -84px 84px #cc9f00, -85px 85px #cc9f00; }
  .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 #000e2d, -1px 1px #000e2d, -2px 2px #000e2d, -3px 3px #000e2d, -4px 4px #000e2d, -5px 5px #000e2d, -6px 6px #000e2d, -7px 7px #000e2d, -8px 8px #000e2d, -9px 9px #000e2d, -10px 10px #000e2d, -11px 11px #000e2d, -12px 12px #000e2d, -13px 13px #000e2d, -14px 14px #000e2d, -15px 15px #000e2d, -16px 16px #000e2d, -17px 17px #000e2d, -18px 18px #000e2d, -19px 19px #000e2d, -20px 20px #000e2d, -21px 21px #000e2d, -22px 22px #000e2d, -23px 23px #000e2d, -24px 24px #000e2d, -25px 25px #000e2d, -26px 26px #000e2d, -27px 27px #000e2d, -28px 28px #000e2d, -29px 29px #000e2d, -30px 30px #000e2d, -31px 31px #000e2d, -32px 32px #000e2d, -33px 33px #000e2d, -34px 34px #000e2d, -35px 35px #000e2d, -36px 36px #000e2d, -37px 37px #000e2d, -38px 38px #000e2d, -39px 39px #000e2d, -40px 40px #000e2d, -41px 41px #000e2d, -42px 42px #000e2d, -43px 43px #000e2d, -44px 44px #000e2d, -45px 45px #000e2d, -46px 46px #000e2d, -47px 47px #000e2d, -48px 48px #000e2d, -49px 49px #000e2d, -50px 50px #000e2d, -51px 51px #000e2d, -52px 52px #000e2d, -53px 53px #000e2d, -54px 54px #000e2d, -55px 55px #000e2d, -56px 56px #000e2d, -57px 57px #000e2d, -58px 58px #000e2d, -59px 59px #000e2d, -60px 60px #000e2d, -61px 61px #000e2d, -62px 62px #000e2d, -63px 63px #000e2d, -64px 64px #000e2d, -65px 65px #000e2d, -66px 66px #000e2d, -67px 67px #000e2d, -68px 68px #000e2d, -69px 69px #000e2d, -70px 70px #000e2d, -71px 71px #000e2d, -72px 72px #000e2d, -73px 73px #000e2d, -74px 74px #000e2d, -75px 75px #000e2d, -76px 76px #000e2d, -77px 77px #000e2d, -78px 78px #000e2d, -79px 79px #000e2d, -80px 80px #000e2d, -81px 81px #000e2d, -82px 82px #000e2d, -83px 83px #000e2d, -84px 84px #000e2d, -85px 85px #000e2d; }
  .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 #002ccc, -1px 1px #002ccc, -2px 2px #002ccc, -3px 3px #002ccc, -4px 4px #002ccc, -5px 5px #002ccc, -6px 6px #002ccc, -7px 7px #002ccc, -8px 8px #002ccc, -9px 9px #002ccc, -10px 10px #002ccc, -11px 11px #002ccc, -12px 12px #002ccc, -13px 13px #002ccc, -14px 14px #002ccc, -15px 15px #002ccc, -16px 16px #002ccc, -17px 17px #002ccc, -18px 18px #002ccc, -19px 19px #002ccc, -20px 20px #002ccc, -21px 21px #002ccc, -22px 22px #002ccc, -23px 23px #002ccc, -24px 24px #002ccc, -25px 25px #002ccc, -26px 26px #002ccc, -27px 27px #002ccc, -28px 28px #002ccc, -29px 29px #002ccc, -30px 30px #002ccc, -31px 31px #002ccc, -32px 32px #002ccc, -33px 33px #002ccc, -34px 34px #002ccc, -35px 35px #002ccc, -36px 36px #002ccc, -37px 37px #002ccc, -38px 38px #002ccc, -39px 39px #002ccc, -40px 40px #002ccc, -41px 41px #002ccc, -42px 42px #002ccc, -43px 43px #002ccc, -44px 44px #002ccc, -45px 45px #002ccc, -46px 46px #002ccc, -47px 47px #002ccc, -48px 48px #002ccc, -49px 49px #002ccc, -50px 50px #002ccc, -51px 51px #002ccc, -52px 52px #002ccc, -53px 53px #002ccc, -54px 54px #002ccc, -55px 55px #002ccc, -56px 56px #002ccc, -57px 57px #002ccc, -58px 58px #002ccc, -59px 59px #002ccc, -60px 60px #002ccc, -61px 61px #002ccc, -62px 62px #002ccc, -63px 63px #002ccc, -64px 64px #002ccc, -65px 65px #002ccc, -66px 66px #002ccc, -67px 67px #002ccc, -68px 68px #002ccc, -69px 69px #002ccc, -70px 70px #002ccc, -71px 71px #002ccc, -72px 72px #002ccc, -73px 73px #002ccc, -74px 74px #002ccc, -75px 75px #002ccc, -76px 76px #002ccc, -77px 77px #002ccc, -78px 78px #002ccc, -79px 79px #002ccc, -80px 80px #002ccc, -81px 81px #002ccc, -82px 82px #002ccc, -83px 83px #002ccc, -84px 84px #002ccc, -85px 85px #002ccc; }
  .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 #0b0f11, -1px 1px #0b0f11, -2px 2px #0b0f11, -3px 3px #0b0f11, -4px 4px #0b0f11, -5px 5px #0b0f11, -6px 6px #0b0f11, -7px 7px #0b0f11, -8px 8px #0b0f11, -9px 9px #0b0f11, -10px 10px #0b0f11, -11px 11px #0b0f11, -12px 12px #0b0f11, -13px 13px #0b0f11, -14px 14px #0b0f11, -15px 15px #0b0f11, -16px 16px #0b0f11, -17px 17px #0b0f11, -18px 18px #0b0f11, -19px 19px #0b0f11, -20px 20px #0b0f11, -21px 21px #0b0f11, -22px 22px #0b0f11, -23px 23px #0b0f11, -24px 24px #0b0f11, -25px 25px #0b0f11, -26px 26px #0b0f11, -27px 27px #0b0f11, -28px 28px #0b0f11, -29px 29px #0b0f11, -30px 30px #0b0f11, -31px 31px #0b0f11, -32px 32px #0b0f11, -33px 33px #0b0f11, -34px 34px #0b0f11, -35px 35px #0b0f11, -36px 36px #0b0f11, -37px 37px #0b0f11, -38px 38px #0b0f11, -39px 39px #0b0f11, -40px 40px #0b0f11, -41px 41px #0b0f11, -42px 42px #0b0f11, -43px 43px #0b0f11, -44px 44px #0b0f11, -45px 45px #0b0f11, -46px 46px #0b0f11, -47px 47px #0b0f11, -48px 48px #0b0f11, -49px 49px #0b0f11, -50px 50px #0b0f11, -51px 51px #0b0f11, -52px 52px #0b0f11, -53px 53px #0b0f11, -54px 54px #0b0f11, -55px 55px #0b0f11, -56px 56px #0b0f11, -57px 57px #0b0f11, -58px 58px #0b0f11, -59px 59px #0b0f11, -60px 60px #0b0f11, -61px 61px #0b0f11, -62px 62px #0b0f11, -63px 63px #0b0f11, -64px 64px #0b0f11, -65px 65px #0b0f11, -66px 66px #0b0f11, -67px 67px #0b0f11, -68px 68px #0b0f11, -69px 69px #0b0f11, -70px 70px #0b0f11, -71px 71px #0b0f11, -72px 72px #0b0f11, -73px 73px #0b0f11, -74px 74px #0b0f11, -75px 75px #0b0f11, -76px 76px #0b0f11, -77px 77px #0b0f11, -78px 78px #0b0f11, -79px 79px #0b0f11, -80px 80px #0b0f11, -81px 81px #0b0f11, -82px 82px #0b0f11, -83px 83px #0b0f11, -84px 84px #0b0f11, -85px 85px #0b0f11; }
  .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-neutral-color {
    text-shadow: 0px 0px #005fcc, -1px 1px #005fcc, -2px 2px #005fcc, -3px 3px #005fcc, -4px 4px #005fcc, -5px 5px #005fcc, -6px 6px #005fcc, -7px 7px #005fcc, -8px 8px #005fcc, -9px 9px #005fcc, -10px 10px #005fcc, -11px 11px #005fcc, -12px 12px #005fcc, -13px 13px #005fcc, -14px 14px #005fcc, -15px 15px #005fcc, -16px 16px #005fcc, -17px 17px #005fcc, -18px 18px #005fcc, -19px 19px #005fcc, -20px 20px #005fcc, -21px 21px #005fcc, -22px 22px #005fcc, -23px 23px #005fcc, -24px 24px #005fcc, -25px 25px #005fcc, -26px 26px #005fcc, -27px 27px #005fcc, -28px 28px #005fcc, -29px 29px #005fcc, -30px 30px #005fcc, -31px 31px #005fcc, -32px 32px #005fcc, -33px 33px #005fcc, -34px 34px #005fcc, -35px 35px #005fcc, -36px 36px #005fcc, -37px 37px #005fcc, -38px 38px #005fcc, -39px 39px #005fcc, -40px 40px #005fcc, -41px 41px #005fcc, -42px 42px #005fcc, -43px 43px #005fcc, -44px 44px #005fcc, -45px 45px #005fcc, -46px 46px #005fcc, -47px 47px #005fcc, -48px 48px #005fcc, -49px 49px #005fcc, -50px 50px #005fcc, -51px 51px #005fcc, -52px 52px #005fcc, -53px 53px #005fcc, -54px 54px #005fcc, -55px 55px #005fcc, -56px 56px #005fcc, -57px 57px #005fcc, -58px 58px #005fcc, -59px 59px #005fcc, -60px 60px #005fcc, -61px 61px #005fcc, -62px 62px #005fcc, -63px 63px #005fcc, -64px 64px #005fcc, -65px 65px #005fcc, -66px 66px #005fcc, -67px 67px #005fcc, -68px 68px #005fcc, -69px 69px #005fcc, -70px 70px #005fcc, -71px 71px #005fcc, -72px 72px #005fcc, -73px 73px #005fcc, -74px 74px #005fcc, -75px 75px #005fcc, -76px 76px #005fcc, -77px 77px #005fcc, -78px 78px #005fcc, -79px 79px #005fcc, -80px 80px #005fcc, -81px 81px #005fcc, -82px 82px #005fcc, -83px 83px #005fcc, -84px 84px #005fcc, -85px 85px #005fcc; }
  .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, 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; }
