/*--------------------------------------------------------------
 # 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: #3988d6;
  border-color: #3988d6;
  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: #4690d9;
    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: #4588ca;
    border-color: #2469ae;
    color: #266eb6;
    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: #3988d6;
  border-color: #3988d6;
  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: #63a1df;
    border-color: #63a1df;
    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: #4588ca;
    border-color: #4588ca;
    color: #266eb6; }

.btn-color-2, .btn-color-2-flat {
  background-color: #365368;
  border-color: #365368;
  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: #476e8a;
    border-color: #476e8a;
    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: #3e5260;
    border-color: #3e5260;
    color: #253846; }

.btn-color-3, .btn-color-3-flat {
  background-color: #fff;
  border-color: #fff;
  color: #4d4d4d; }
  .btn-color-3:visited, .btn-color-3-flat:visited {
    color: #4d4d4d; }
  .btn-color-3:hover, .btn-color-3-flat:hover, .btn-color-3:focus, .btn-color-3-flat:focus {
    background-color: #fff;
    border-color: #fff;
    color: #4d4d4d; }
  .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: #fff;
    border-color: #fff;
    color: #e6e6e6; }

.btn-color-4, .btn-color-4-flat {
  background-color: #013c77;
  border-color: #013c77;
  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: #0155aa;
    border-color: #0155aa;
    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: #073c71;
    border-color: #073c71;
    color: #012344; }

.btn-color-5, .btn-color-5-flat {
  background-color: #c9c9c9;
  border-color: #c9c9c9;
  color: #4d4d4d; }
  .btn-color-5:visited, .btn-color-5-flat:visited {
    color: #4d4d4d; }
  .btn-color-5:hover, .btn-color-5-flat:hover, .btn-color-5:focus, .btn-color-5-flat:focus {
    background-color: #e3e3e3;
    border-color: #e3e3e3;
    color: #4d4d4d; }
  .btn-color-5:active, .btn-color-5-flat:active, .btn-color-5.active, .btn-color-5-flat.active, .btn-color-5.is-active, .btn-color-5-flat.is-active {
    background-color: #c9c9c9;
    border-color: #c9c9c9;
    color: #b0b0b0; }

.btn-neutral-color, .btn-neutral-color-flat {
  background-color: #292929;
  border-color: #292929;
  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: #434343;
    border-color: #434343;
    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: #292929;
    border-color: #292929;
    color: #101010; }
/*
 * 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(99, 161, 223, 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: #3988d6; }
    .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(99, 161, 223, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .btn-border.btn-color-1:active, .btn-border-thin.btn-color-1:active, .btn-border-thick.btn-color-1:active, .btn-border.btn-color-1.active, .btn-border-thin.btn-color-1.active, .btn-border-thick.btn-color-1.active, .btn-border.btn-color-1.is-active, .btn-border-thin.btn-color-1.is-active, .btn-border-thick.btn-color-1.is-active {
      background-color: rgba(69, 136, 202, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-2, .btn-border-thin.btn-color-2, .btn-border-thick.btn-color-2 {
    color: #365368; }
    .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(71, 110, 138, 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(62, 82, 96, 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: #fff; }
    .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(255, 255, 255, 0.9);
      color: rgba(77, 77, 77, 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(255, 255, 255, 0.7);
      color: rgba(77, 77, 77, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-4, .btn-border-thin.btn-color-4, .btn-border-thick.btn-color-4 {
    color: #013c77; }
    .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(1, 85, 170, 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(7, 60, 113, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-5, .btn-border-thin.btn-color-5, .btn-border-thick.btn-color-5 {
    color: #c9c9c9; }
    .btn-border.btn-color-5:hover, .btn-border-thin.btn-color-5:hover, .btn-border-thick.btn-color-5:hover, .btn-border.btn-color-5:focus, .btn-border-thin.btn-color-5:focus, .btn-border-thick.btn-color-5:focus {
      background-color: rgba(227, 227, 227, 0.9);
      color: rgba(77, 77, 77, 0.9); }
    .btn-border.btn-color-5:active, .btn-border-thin.btn-color-5:active, .btn-border-thick.btn-color-5:active, .btn-border.btn-color-5.active, .btn-border-thin.btn-color-5.active, .btn-border-thick.btn-color-5.active, .btn-border.btn-color-5.is-active, .btn-border-thin.btn-color-5.is-active, .btn-border-thick.btn-color-5.is-active {
      background-color: rgba(201, 201, 201, 0.7);
      color: rgba(77, 77, 77, 0.5);
      opacity: 0.3; }
  .btn-border.btn-neutral-color, .btn-border-thin.btn-neutral-color, .btn-border-thick.btn-neutral-color {
    color: #292929; }
    .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(67, 67, 67, 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(41, 41, 41, 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: #3988d6;
  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: #3988d6; }
  .btn-borderless.btn-color-2 {
    color: #365368; }
  .btn-borderless.btn-color-3 {
    color: #fff; }
  .btn-borderless.btn-color-4 {
    color: #013c77; }
  .btn-borderless.btn-color-5 {
    color: #c9c9c9; }
  .btn-borderless.btn-neutral-color {
    color: #292929; }
  .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: #2a7bcb;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#4690d9, #2a7bcb);
  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(#5b9cdd, #2876c3); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #4588ca;
  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: #2a7bcb;
  background: linear-gradient(#4e95da, #2a7bcb); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#5b9cdd, #2876c3); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #266eb6;
    background: #4588ca; }
  .btn-raised.btn-color-2 {
    border-color: #2d4657;
    background: linear-gradient(#3f6079, #2d4657); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#446883, #2a4051); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #253846;
    background: #3e5260; }
  .btn-raised.btn-color-3 {
    border-color: #f2f2f2;
    background: linear-gradient(#fff, #f2f2f2); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#fff, #ededed); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #e6e6e6;
    background: #fff; }
  .btn-raised.btn-color-4 {
    border-color: #012f5e;
    background: linear-gradient(#014990, #012f5e); }
  .btn-raised.btn-color-4:hover, .btn-raised.btn-color-4:focus {
    background: linear-gradient(#01509f, #012a54); }
  .btn-raised.btn-color-4:active, .btn-raised.btn-color-4.active, .btn-raised.btn-color-4.is-active {
    border-color: #012344;
    background: #073c71; }
  .btn-raised.btn-color-5 {
    border-color: #bcbcbc;
    background: linear-gradient(#d6d6d6, #bcbcbc); }
  .btn-raised.btn-color-5:hover, .btn-raised.btn-color-5:focus {
    background: linear-gradient(#ddd, #b7b7b7); }
  .btn-raised.btn-color-5:active, .btn-raised.btn-color-5.active, .btn-raised.btn-color-5.is-active {
    border-color: #b0b0b0;
    background: #c9c9c9; }
  .btn-raised.btn-neutral-color {
    border-color: #1c1c1c;
    background: linear-gradient(#363636, #1c1c1c); }
  .btn-raised.btn-neutral-color:hover, .btn-raised.btn-neutral-color:focus {
    background: linear-gradient(#3d3d3d, #171717); }
  .btn-raised.btn-neutral-color:active, .btn-raised.btn-neutral-color.active, .btn-raised.btn-neutral-color.is-active {
    border-color: #101010;
    background: #292929; }
/*
 * 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 #1d558c, 0 8px 3px rgba(0, 0, 0, 0.2); }

.btn-3d:hover, .btn-3d:focus {
  box-shadow: 0 7px 0 #1d558c, 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 #1d558c, 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 #266eb6, 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 #2469ae, 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 #1d558c, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-2 {
    box-shadow: 0 7px 0 #253846, 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 #213340, 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 #131d25, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #e6e6e6, 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 #e0e0e0, 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 #ccc, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-4 {
    box-shadow: 0 7px 0 #012344, 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 #001d3a, 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 #000912, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-5 {
    box-shadow: 0 7px 0 #b0b0b0, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-5:hover, .btn-3d.btn-color-5:focus {
    box-shadow: 0 7px 0 #aaa, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-5:active, .btn-3d.btn-color-5.active, .btn-3d.btn-color-5.is-active {
    box-shadow: 0 2px 0 #969696, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-neutral-color {
    box-shadow: 0 7px 0 #101010, 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 #0a0a0a, 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 #000, 0 3px 3px rgba(0, 0, 0, 0.2); }
/*
 * Glowing Buttons
 *
 * A pulse like glow that appears
 * rythmically around the edges of
 * a button.
 */
/*
 * Glow animation mixin for Compass users
 *
 */
/*
 * Glowing Keyframes
 *
 */
@keyframes glowing {
  from {
    box-shadow: 0 0 0 rgba(44, 154, 219, 0.3); }

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

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

.btn-glow:active, .btn-glow.active, .btn-glow.is-active {
  animation-name: none; }
/*
 * Glowing Button Colors
 *
 * Create colors for glowing buttons
 */
.btn-glow.btn-color-1 {
  animation-name: glowing-color-1; }
  .btn-glow.btn-color-2 {
    animation-name: glowing-color-2; }
  .btn-glow.btn-color-3 {
    animation-name: glowing-color-3; }
  .btn-glow.btn-color-4 {
    animation-name: glowing-color-4; }
  .btn-glow.btn-color-5 {
    animation-name: glowing-color-5; }
  .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(99, 161, 223, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #266eb6;
  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: #4690d9;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #2c80d3; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(57, 136, 214, 0.95);
  border-color: #266eb6; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #2876c3; }
  .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: #2a7bcb; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(54, 83, 104, 0.95);
    border-color: #253846; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #2a4051; }
  .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: #2d4657; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(255, 255, 255, 0.95);
    border-color: #e6e6e6; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #ededed; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a {
    color: #4d4d4d; }
    .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a:hover {
      color: #404040;
      background: #f2f2f2; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list {
    background: rgba(1, 60, 119, 0.95);
    border-color: #012344; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #012a54; }
  .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: #012f5e; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list {
    background: rgba(201, 201, 201, 0.95);
    border-color: #b0b0b0; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #b7b7b7; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a {
    color: #4d4d4d; }
    .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a:hover {
      color: #404040;
      background: #bcbcbc; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list {
    background: rgba(41, 41, 41, 0.95);
    border-color: #101010; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list .btn-dropdown-divider {
    border-color: #171717; }
  .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: #1c1c1c; }
/*
 * 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 #266eb6, 1px 1px #266eb6, 2px 2px #266eb6, 3px 3px #266eb6, 4px 4px #266eb6, 5px 5px #266eb6, 6px 6px #266eb6, 7px 7px #266eb6, 8px 8px #266eb6, 9px 9px #266eb6, 10px 10px #266eb6, 11px 11px #266eb6, 12px 12px #266eb6, 13px 13px #266eb6, 14px 14px #266eb6, 15px 15px #266eb6, 16px 16px #266eb6, 17px 17px #266eb6, 18px 18px #266eb6, 19px 19px #266eb6, 20px 20px #266eb6, 21px 21px #266eb6, 22px 22px #266eb6, 23px 23px #266eb6, 24px 24px #266eb6, 25px 25px #266eb6, 26px 26px #266eb6, 27px 27px #266eb6, 28px 28px #266eb6, 29px 29px #266eb6, 30px 30px #266eb6, 31px 31px #266eb6, 32px 32px #266eb6, 33px 33px #266eb6, 34px 34px #266eb6, 35px 35px #266eb6, 36px 36px #266eb6, 37px 37px #266eb6, 38px 38px #266eb6, 39px 39px #266eb6, 40px 40px #266eb6, 41px 41px #266eb6, 42px 42px #266eb6, 43px 43px #266eb6, 44px 44px #266eb6, 45px 45px #266eb6, 46px 46px #266eb6, 47px 47px #266eb6, 48px 48px #266eb6, 49px 49px #266eb6, 50px 50px #266eb6, 51px 51px #266eb6, 52px 52px #266eb6, 53px 53px #266eb6, 54px 54px #266eb6, 55px 55px #266eb6, 56px 56px #266eb6, 57px 57px #266eb6, 58px 58px #266eb6, 59px 59px #266eb6, 60px 60px #266eb6, 61px 61px #266eb6, 62px 62px #266eb6, 63px 63px #266eb6, 64px 64px #266eb6, 65px 65px #266eb6, 66px 66px #266eb6, 67px 67px #266eb6, 68px 68px #266eb6, 69px 69px #266eb6, 70px 70px #266eb6, 71px 71px #266eb6, 72px 72px #266eb6, 73px 73px #266eb6, 74px 74px #266eb6, 75px 75px #266eb6, 76px 76px #266eb6, 77px 77px #266eb6, 78px 78px #266eb6, 79px 79px #266eb6, 80px 80px #266eb6, 81px 81px #266eb6, 82px 82px #266eb6, 83px 83px #266eb6, 84px 84px #266eb6, 85px 85px #266eb6; }
  .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 #253846, 1px 1px #253846, 2px 2px #253846, 3px 3px #253846, 4px 4px #253846, 5px 5px #253846, 6px 6px #253846, 7px 7px #253846, 8px 8px #253846, 9px 9px #253846, 10px 10px #253846, 11px 11px #253846, 12px 12px #253846, 13px 13px #253846, 14px 14px #253846, 15px 15px #253846, 16px 16px #253846, 17px 17px #253846, 18px 18px #253846, 19px 19px #253846, 20px 20px #253846, 21px 21px #253846, 22px 22px #253846, 23px 23px #253846, 24px 24px #253846, 25px 25px #253846, 26px 26px #253846, 27px 27px #253846, 28px 28px #253846, 29px 29px #253846, 30px 30px #253846, 31px 31px #253846, 32px 32px #253846, 33px 33px #253846, 34px 34px #253846, 35px 35px #253846, 36px 36px #253846, 37px 37px #253846, 38px 38px #253846, 39px 39px #253846, 40px 40px #253846, 41px 41px #253846, 42px 42px #253846, 43px 43px #253846, 44px 44px #253846, 45px 45px #253846, 46px 46px #253846, 47px 47px #253846, 48px 48px #253846, 49px 49px #253846, 50px 50px #253846, 51px 51px #253846, 52px 52px #253846, 53px 53px #253846, 54px 54px #253846, 55px 55px #253846, 56px 56px #253846, 57px 57px #253846, 58px 58px #253846, 59px 59px #253846, 60px 60px #253846, 61px 61px #253846, 62px 62px #253846, 63px 63px #253846, 64px 64px #253846, 65px 65px #253846, 66px 66px #253846, 67px 67px #253846, 68px 68px #253846, 69px 69px #253846, 70px 70px #253846, 71px 71px #253846, 72px 72px #253846, 73px 73px #253846, 74px 74px #253846, 75px 75px #253846, 76px 76px #253846, 77px 77px #253846, 78px 78px #253846, 79px 79px #253846, 80px 80px #253846, 81px 81px #253846, 82px 82px #253846, 83px 83px #253846, 84px 84px #253846, 85px 85px #253846; }
  .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 #e6e6e6, 1px 1px #e6e6e6, 2px 2px #e6e6e6, 3px 3px #e6e6e6, 4px 4px #e6e6e6, 5px 5px #e6e6e6, 6px 6px #e6e6e6, 7px 7px #e6e6e6, 8px 8px #e6e6e6, 9px 9px #e6e6e6, 10px 10px #e6e6e6, 11px 11px #e6e6e6, 12px 12px #e6e6e6, 13px 13px #e6e6e6, 14px 14px #e6e6e6, 15px 15px #e6e6e6, 16px 16px #e6e6e6, 17px 17px #e6e6e6, 18px 18px #e6e6e6, 19px 19px #e6e6e6, 20px 20px #e6e6e6, 21px 21px #e6e6e6, 22px 22px #e6e6e6, 23px 23px #e6e6e6, 24px 24px #e6e6e6, 25px 25px #e6e6e6, 26px 26px #e6e6e6, 27px 27px #e6e6e6, 28px 28px #e6e6e6, 29px 29px #e6e6e6, 30px 30px #e6e6e6, 31px 31px #e6e6e6, 32px 32px #e6e6e6, 33px 33px #e6e6e6, 34px 34px #e6e6e6, 35px 35px #e6e6e6, 36px 36px #e6e6e6, 37px 37px #e6e6e6, 38px 38px #e6e6e6, 39px 39px #e6e6e6, 40px 40px #e6e6e6, 41px 41px #e6e6e6, 42px 42px #e6e6e6, 43px 43px #e6e6e6, 44px 44px #e6e6e6, 45px 45px #e6e6e6, 46px 46px #e6e6e6, 47px 47px #e6e6e6, 48px 48px #e6e6e6, 49px 49px #e6e6e6, 50px 50px #e6e6e6, 51px 51px #e6e6e6, 52px 52px #e6e6e6, 53px 53px #e6e6e6, 54px 54px #e6e6e6, 55px 55px #e6e6e6, 56px 56px #e6e6e6, 57px 57px #e6e6e6, 58px 58px #e6e6e6, 59px 59px #e6e6e6, 60px 60px #e6e6e6, 61px 61px #e6e6e6, 62px 62px #e6e6e6, 63px 63px #e6e6e6, 64px 64px #e6e6e6, 65px 65px #e6e6e6, 66px 66px #e6e6e6, 67px 67px #e6e6e6, 68px 68px #e6e6e6, 69px 69px #e6e6e6, 70px 70px #e6e6e6, 71px 71px #e6e6e6, 72px 72px #e6e6e6, 73px 73px #e6e6e6, 74px 74px #e6e6e6, 75px 75px #e6e6e6, 76px 76px #e6e6e6, 77px 77px #e6e6e6, 78px 78px #e6e6e6, 79px 79px #e6e6e6, 80px 80px #e6e6e6, 81px 81px #e6e6e6, 82px 82px #e6e6e6, 83px 83px #e6e6e6, 84px 84px #e6e6e6, 85px 85px #e6e6e6; }
  .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 #012344, 1px 1px #012344, 2px 2px #012344, 3px 3px #012344, 4px 4px #012344, 5px 5px #012344, 6px 6px #012344, 7px 7px #012344, 8px 8px #012344, 9px 9px #012344, 10px 10px #012344, 11px 11px #012344, 12px 12px #012344, 13px 13px #012344, 14px 14px #012344, 15px 15px #012344, 16px 16px #012344, 17px 17px #012344, 18px 18px #012344, 19px 19px #012344, 20px 20px #012344, 21px 21px #012344, 22px 22px #012344, 23px 23px #012344, 24px 24px #012344, 25px 25px #012344, 26px 26px #012344, 27px 27px #012344, 28px 28px #012344, 29px 29px #012344, 30px 30px #012344, 31px 31px #012344, 32px 32px #012344, 33px 33px #012344, 34px 34px #012344, 35px 35px #012344, 36px 36px #012344, 37px 37px #012344, 38px 38px #012344, 39px 39px #012344, 40px 40px #012344, 41px 41px #012344, 42px 42px #012344, 43px 43px #012344, 44px 44px #012344, 45px 45px #012344, 46px 46px #012344, 47px 47px #012344, 48px 48px #012344, 49px 49px #012344, 50px 50px #012344, 51px 51px #012344, 52px 52px #012344, 53px 53px #012344, 54px 54px #012344, 55px 55px #012344, 56px 56px #012344, 57px 57px #012344, 58px 58px #012344, 59px 59px #012344, 60px 60px #012344, 61px 61px #012344, 62px 62px #012344, 63px 63px #012344, 64px 64px #012344, 65px 65px #012344, 66px 66px #012344, 67px 67px #012344, 68px 68px #012344, 69px 69px #012344, 70px 70px #012344, 71px 71px #012344, 72px 72px #012344, 73px 73px #012344, 74px 74px #012344, 75px 75px #012344, 76px 76px #012344, 77px 77px #012344, 78px 78px #012344, 79px 79px #012344, 80px 80px #012344, 81px 81px #012344, 82px 82px #012344, 83px 83px #012344, 84px 84px #012344, 85px 85px #012344; }
  .btn-longshadow.btn-color-4:active, .btn-longshadow-right.btn-color-4:active, .btn-longshadow.btn-color-4.active, .btn-longshadow-right.btn-color-4.active, .btn-longshadow.btn-color-4.is-active, .btn-longshadow-right.btn-color-4.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow.btn-color-5, .btn-longshadow-right.btn-color-5 {
    text-shadow: 0px 0px #b0b0b0, 1px 1px #b0b0b0, 2px 2px #b0b0b0, 3px 3px #b0b0b0, 4px 4px #b0b0b0, 5px 5px #b0b0b0, 6px 6px #b0b0b0, 7px 7px #b0b0b0, 8px 8px #b0b0b0, 9px 9px #b0b0b0, 10px 10px #b0b0b0, 11px 11px #b0b0b0, 12px 12px #b0b0b0, 13px 13px #b0b0b0, 14px 14px #b0b0b0, 15px 15px #b0b0b0, 16px 16px #b0b0b0, 17px 17px #b0b0b0, 18px 18px #b0b0b0, 19px 19px #b0b0b0, 20px 20px #b0b0b0, 21px 21px #b0b0b0, 22px 22px #b0b0b0, 23px 23px #b0b0b0, 24px 24px #b0b0b0, 25px 25px #b0b0b0, 26px 26px #b0b0b0, 27px 27px #b0b0b0, 28px 28px #b0b0b0, 29px 29px #b0b0b0, 30px 30px #b0b0b0, 31px 31px #b0b0b0, 32px 32px #b0b0b0, 33px 33px #b0b0b0, 34px 34px #b0b0b0, 35px 35px #b0b0b0, 36px 36px #b0b0b0, 37px 37px #b0b0b0, 38px 38px #b0b0b0, 39px 39px #b0b0b0, 40px 40px #b0b0b0, 41px 41px #b0b0b0, 42px 42px #b0b0b0, 43px 43px #b0b0b0, 44px 44px #b0b0b0, 45px 45px #b0b0b0, 46px 46px #b0b0b0, 47px 47px #b0b0b0, 48px 48px #b0b0b0, 49px 49px #b0b0b0, 50px 50px #b0b0b0, 51px 51px #b0b0b0, 52px 52px #b0b0b0, 53px 53px #b0b0b0, 54px 54px #b0b0b0, 55px 55px #b0b0b0, 56px 56px #b0b0b0, 57px 57px #b0b0b0, 58px 58px #b0b0b0, 59px 59px #b0b0b0, 60px 60px #b0b0b0, 61px 61px #b0b0b0, 62px 62px #b0b0b0, 63px 63px #b0b0b0, 64px 64px #b0b0b0, 65px 65px #b0b0b0, 66px 66px #b0b0b0, 67px 67px #b0b0b0, 68px 68px #b0b0b0, 69px 69px #b0b0b0, 70px 70px #b0b0b0, 71px 71px #b0b0b0, 72px 72px #b0b0b0, 73px 73px #b0b0b0, 74px 74px #b0b0b0, 75px 75px #b0b0b0, 76px 76px #b0b0b0, 77px 77px #b0b0b0, 78px 78px #b0b0b0, 79px 79px #b0b0b0, 80px 80px #b0b0b0, 81px 81px #b0b0b0, 82px 82px #b0b0b0, 83px 83px #b0b0b0, 84px 84px #b0b0b0, 85px 85px #b0b0b0; }
  .btn-longshadow.btn-color-5:active, .btn-longshadow-right.btn-color-5:active, .btn-longshadow.btn-color-5.active, .btn-longshadow-right.btn-color-5.active, .btn-longshadow.btn-color-5.is-active, .btn-longshadow-right.btn-color-5.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow.btn-neutral-color, .btn-longshadow-right.btn-neutral-color {
    text-shadow: 0px 0px #101010, 1px 1px #101010, 2px 2px #101010, 3px 3px #101010, 4px 4px #101010, 5px 5px #101010, 6px 6px #101010, 7px 7px #101010, 8px 8px #101010, 9px 9px #101010, 10px 10px #101010, 11px 11px #101010, 12px 12px #101010, 13px 13px #101010, 14px 14px #101010, 15px 15px #101010, 16px 16px #101010, 17px 17px #101010, 18px 18px #101010, 19px 19px #101010, 20px 20px #101010, 21px 21px #101010, 22px 22px #101010, 23px 23px #101010, 24px 24px #101010, 25px 25px #101010, 26px 26px #101010, 27px 27px #101010, 28px 28px #101010, 29px 29px #101010, 30px 30px #101010, 31px 31px #101010, 32px 32px #101010, 33px 33px #101010, 34px 34px #101010, 35px 35px #101010, 36px 36px #101010, 37px 37px #101010, 38px 38px #101010, 39px 39px #101010, 40px 40px #101010, 41px 41px #101010, 42px 42px #101010, 43px 43px #101010, 44px 44px #101010, 45px 45px #101010, 46px 46px #101010, 47px 47px #101010, 48px 48px #101010, 49px 49px #101010, 50px 50px #101010, 51px 51px #101010, 52px 52px #101010, 53px 53px #101010, 54px 54px #101010, 55px 55px #101010, 56px 56px #101010, 57px 57px #101010, 58px 58px #101010, 59px 59px #101010, 60px 60px #101010, 61px 61px #101010, 62px 62px #101010, 63px 63px #101010, 64px 64px #101010, 65px 65px #101010, 66px 66px #101010, 67px 67px #101010, 68px 68px #101010, 69px 69px #101010, 70px 70px #101010, 71px 71px #101010, 72px 72px #101010, 73px 73px #101010, 74px 74px #101010, 75px 75px #101010, 76px 76px #101010, 77px 77px #101010, 78px 78px #101010, 79px 79px #101010, 80px 80px #101010, 81px 81px #101010, 82px 82px #101010, 83px 83px #101010, 84px 84px #101010, 85px 85px #101010; }
  .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 #266eb6, -1px 1px #266eb6, -2px 2px #266eb6, -3px 3px #266eb6, -4px 4px #266eb6, -5px 5px #266eb6, -6px 6px #266eb6, -7px 7px #266eb6, -8px 8px #266eb6, -9px 9px #266eb6, -10px 10px #266eb6, -11px 11px #266eb6, -12px 12px #266eb6, -13px 13px #266eb6, -14px 14px #266eb6, -15px 15px #266eb6, -16px 16px #266eb6, -17px 17px #266eb6, -18px 18px #266eb6, -19px 19px #266eb6, -20px 20px #266eb6, -21px 21px #266eb6, -22px 22px #266eb6, -23px 23px #266eb6, -24px 24px #266eb6, -25px 25px #266eb6, -26px 26px #266eb6, -27px 27px #266eb6, -28px 28px #266eb6, -29px 29px #266eb6, -30px 30px #266eb6, -31px 31px #266eb6, -32px 32px #266eb6, -33px 33px #266eb6, -34px 34px #266eb6, -35px 35px #266eb6, -36px 36px #266eb6, -37px 37px #266eb6, -38px 38px #266eb6, -39px 39px #266eb6, -40px 40px #266eb6, -41px 41px #266eb6, -42px 42px #266eb6, -43px 43px #266eb6, -44px 44px #266eb6, -45px 45px #266eb6, -46px 46px #266eb6, -47px 47px #266eb6, -48px 48px #266eb6, -49px 49px #266eb6, -50px 50px #266eb6, -51px 51px #266eb6, -52px 52px #266eb6, -53px 53px #266eb6, -54px 54px #266eb6, -55px 55px #266eb6, -56px 56px #266eb6, -57px 57px #266eb6, -58px 58px #266eb6, -59px 59px #266eb6, -60px 60px #266eb6, -61px 61px #266eb6, -62px 62px #266eb6, -63px 63px #266eb6, -64px 64px #266eb6, -65px 65px #266eb6, -66px 66px #266eb6, -67px 67px #266eb6, -68px 68px #266eb6, -69px 69px #266eb6, -70px 70px #266eb6, -71px 71px #266eb6, -72px 72px #266eb6, -73px 73px #266eb6, -74px 74px #266eb6, -75px 75px #266eb6, -76px 76px #266eb6, -77px 77px #266eb6, -78px 78px #266eb6, -79px 79px #266eb6, -80px 80px #266eb6, -81px 81px #266eb6, -82px 82px #266eb6, -83px 83px #266eb6, -84px 84px #266eb6, -85px 85px #266eb6; }
  .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 #253846, -1px 1px #253846, -2px 2px #253846, -3px 3px #253846, -4px 4px #253846, -5px 5px #253846, -6px 6px #253846, -7px 7px #253846, -8px 8px #253846, -9px 9px #253846, -10px 10px #253846, -11px 11px #253846, -12px 12px #253846, -13px 13px #253846, -14px 14px #253846, -15px 15px #253846, -16px 16px #253846, -17px 17px #253846, -18px 18px #253846, -19px 19px #253846, -20px 20px #253846, -21px 21px #253846, -22px 22px #253846, -23px 23px #253846, -24px 24px #253846, -25px 25px #253846, -26px 26px #253846, -27px 27px #253846, -28px 28px #253846, -29px 29px #253846, -30px 30px #253846, -31px 31px #253846, -32px 32px #253846, -33px 33px #253846, -34px 34px #253846, -35px 35px #253846, -36px 36px #253846, -37px 37px #253846, -38px 38px #253846, -39px 39px #253846, -40px 40px #253846, -41px 41px #253846, -42px 42px #253846, -43px 43px #253846, -44px 44px #253846, -45px 45px #253846, -46px 46px #253846, -47px 47px #253846, -48px 48px #253846, -49px 49px #253846, -50px 50px #253846, -51px 51px #253846, -52px 52px #253846, -53px 53px #253846, -54px 54px #253846, -55px 55px #253846, -56px 56px #253846, -57px 57px #253846, -58px 58px #253846, -59px 59px #253846, -60px 60px #253846, -61px 61px #253846, -62px 62px #253846, -63px 63px #253846, -64px 64px #253846, -65px 65px #253846, -66px 66px #253846, -67px 67px #253846, -68px 68px #253846, -69px 69px #253846, -70px 70px #253846, -71px 71px #253846, -72px 72px #253846, -73px 73px #253846, -74px 74px #253846, -75px 75px #253846, -76px 76px #253846, -77px 77px #253846, -78px 78px #253846, -79px 79px #253846, -80px 80px #253846, -81px 81px #253846, -82px 82px #253846, -83px 83px #253846, -84px 84px #253846, -85px 85px #253846; }
  .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 #e6e6e6, -1px 1px #e6e6e6, -2px 2px #e6e6e6, -3px 3px #e6e6e6, -4px 4px #e6e6e6, -5px 5px #e6e6e6, -6px 6px #e6e6e6, -7px 7px #e6e6e6, -8px 8px #e6e6e6, -9px 9px #e6e6e6, -10px 10px #e6e6e6, -11px 11px #e6e6e6, -12px 12px #e6e6e6, -13px 13px #e6e6e6, -14px 14px #e6e6e6, -15px 15px #e6e6e6, -16px 16px #e6e6e6, -17px 17px #e6e6e6, -18px 18px #e6e6e6, -19px 19px #e6e6e6, -20px 20px #e6e6e6, -21px 21px #e6e6e6, -22px 22px #e6e6e6, -23px 23px #e6e6e6, -24px 24px #e6e6e6, -25px 25px #e6e6e6, -26px 26px #e6e6e6, -27px 27px #e6e6e6, -28px 28px #e6e6e6, -29px 29px #e6e6e6, -30px 30px #e6e6e6, -31px 31px #e6e6e6, -32px 32px #e6e6e6, -33px 33px #e6e6e6, -34px 34px #e6e6e6, -35px 35px #e6e6e6, -36px 36px #e6e6e6, -37px 37px #e6e6e6, -38px 38px #e6e6e6, -39px 39px #e6e6e6, -40px 40px #e6e6e6, -41px 41px #e6e6e6, -42px 42px #e6e6e6, -43px 43px #e6e6e6, -44px 44px #e6e6e6, -45px 45px #e6e6e6, -46px 46px #e6e6e6, -47px 47px #e6e6e6, -48px 48px #e6e6e6, -49px 49px #e6e6e6, -50px 50px #e6e6e6, -51px 51px #e6e6e6, -52px 52px #e6e6e6, -53px 53px #e6e6e6, -54px 54px #e6e6e6, -55px 55px #e6e6e6, -56px 56px #e6e6e6, -57px 57px #e6e6e6, -58px 58px #e6e6e6, -59px 59px #e6e6e6, -60px 60px #e6e6e6, -61px 61px #e6e6e6, -62px 62px #e6e6e6, -63px 63px #e6e6e6, -64px 64px #e6e6e6, -65px 65px #e6e6e6, -66px 66px #e6e6e6, -67px 67px #e6e6e6, -68px 68px #e6e6e6, -69px 69px #e6e6e6, -70px 70px #e6e6e6, -71px 71px #e6e6e6, -72px 72px #e6e6e6, -73px 73px #e6e6e6, -74px 74px #e6e6e6, -75px 75px #e6e6e6, -76px 76px #e6e6e6, -77px 77px #e6e6e6, -78px 78px #e6e6e6, -79px 79px #e6e6e6, -80px 80px #e6e6e6, -81px 81px #e6e6e6, -82px 82px #e6e6e6, -83px 83px #e6e6e6, -84px 84px #e6e6e6, -85px 85px #e6e6e6; }
  .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 #012344, -1px 1px #012344, -2px 2px #012344, -3px 3px #012344, -4px 4px #012344, -5px 5px #012344, -6px 6px #012344, -7px 7px #012344, -8px 8px #012344, -9px 9px #012344, -10px 10px #012344, -11px 11px #012344, -12px 12px #012344, -13px 13px #012344, -14px 14px #012344, -15px 15px #012344, -16px 16px #012344, -17px 17px #012344, -18px 18px #012344, -19px 19px #012344, -20px 20px #012344, -21px 21px #012344, -22px 22px #012344, -23px 23px #012344, -24px 24px #012344, -25px 25px #012344, -26px 26px #012344, -27px 27px #012344, -28px 28px #012344, -29px 29px #012344, -30px 30px #012344, -31px 31px #012344, -32px 32px #012344, -33px 33px #012344, -34px 34px #012344, -35px 35px #012344, -36px 36px #012344, -37px 37px #012344, -38px 38px #012344, -39px 39px #012344, -40px 40px #012344, -41px 41px #012344, -42px 42px #012344, -43px 43px #012344, -44px 44px #012344, -45px 45px #012344, -46px 46px #012344, -47px 47px #012344, -48px 48px #012344, -49px 49px #012344, -50px 50px #012344, -51px 51px #012344, -52px 52px #012344, -53px 53px #012344, -54px 54px #012344, -55px 55px #012344, -56px 56px #012344, -57px 57px #012344, -58px 58px #012344, -59px 59px #012344, -60px 60px #012344, -61px 61px #012344, -62px 62px #012344, -63px 63px #012344, -64px 64px #012344, -65px 65px #012344, -66px 66px #012344, -67px 67px #012344, -68px 68px #012344, -69px 69px #012344, -70px 70px #012344, -71px 71px #012344, -72px 72px #012344, -73px 73px #012344, -74px 74px #012344, -75px 75px #012344, -76px 76px #012344, -77px 77px #012344, -78px 78px #012344, -79px 79px #012344, -80px 80px #012344, -81px 81px #012344, -82px 82px #012344, -83px 83px #012344, -84px 84px #012344, -85px 85px #012344; }
  .btn-longshadow-left.btn-color-4:active, .btn-longshadow-left.btn-color-4.active, .btn-longshadow-left.btn-color-4.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow-left.btn-color-5 {
    text-shadow: 0px 0px #b0b0b0, -1px 1px #b0b0b0, -2px 2px #b0b0b0, -3px 3px #b0b0b0, -4px 4px #b0b0b0, -5px 5px #b0b0b0, -6px 6px #b0b0b0, -7px 7px #b0b0b0, -8px 8px #b0b0b0, -9px 9px #b0b0b0, -10px 10px #b0b0b0, -11px 11px #b0b0b0, -12px 12px #b0b0b0, -13px 13px #b0b0b0, -14px 14px #b0b0b0, -15px 15px #b0b0b0, -16px 16px #b0b0b0, -17px 17px #b0b0b0, -18px 18px #b0b0b0, -19px 19px #b0b0b0, -20px 20px #b0b0b0, -21px 21px #b0b0b0, -22px 22px #b0b0b0, -23px 23px #b0b0b0, -24px 24px #b0b0b0, -25px 25px #b0b0b0, -26px 26px #b0b0b0, -27px 27px #b0b0b0, -28px 28px #b0b0b0, -29px 29px #b0b0b0, -30px 30px #b0b0b0, -31px 31px #b0b0b0, -32px 32px #b0b0b0, -33px 33px #b0b0b0, -34px 34px #b0b0b0, -35px 35px #b0b0b0, -36px 36px #b0b0b0, -37px 37px #b0b0b0, -38px 38px #b0b0b0, -39px 39px #b0b0b0, -40px 40px #b0b0b0, -41px 41px #b0b0b0, -42px 42px #b0b0b0, -43px 43px #b0b0b0, -44px 44px #b0b0b0, -45px 45px #b0b0b0, -46px 46px #b0b0b0, -47px 47px #b0b0b0, -48px 48px #b0b0b0, -49px 49px #b0b0b0, -50px 50px #b0b0b0, -51px 51px #b0b0b0, -52px 52px #b0b0b0, -53px 53px #b0b0b0, -54px 54px #b0b0b0, -55px 55px #b0b0b0, -56px 56px #b0b0b0, -57px 57px #b0b0b0, -58px 58px #b0b0b0, -59px 59px #b0b0b0, -60px 60px #b0b0b0, -61px 61px #b0b0b0, -62px 62px #b0b0b0, -63px 63px #b0b0b0, -64px 64px #b0b0b0, -65px 65px #b0b0b0, -66px 66px #b0b0b0, -67px 67px #b0b0b0, -68px 68px #b0b0b0, -69px 69px #b0b0b0, -70px 70px #b0b0b0, -71px 71px #b0b0b0, -72px 72px #b0b0b0, -73px 73px #b0b0b0, -74px 74px #b0b0b0, -75px 75px #b0b0b0, -76px 76px #b0b0b0, -77px 77px #b0b0b0, -78px 78px #b0b0b0, -79px 79px #b0b0b0, -80px 80px #b0b0b0, -81px 81px #b0b0b0, -82px 82px #b0b0b0, -83px 83px #b0b0b0, -84px 84px #b0b0b0, -85px 85px #b0b0b0; }
  .btn-longshadow-left.btn-color-5:active, .btn-longshadow-left.btn-color-5.active, .btn-longshadow-left.btn-color-5.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow-left.btn-neutral-color {
    text-shadow: 0px 0px #101010, -1px 1px #101010, -2px 2px #101010, -3px 3px #101010, -4px 4px #101010, -5px 5px #101010, -6px 6px #101010, -7px 7px #101010, -8px 8px #101010, -9px 9px #101010, -10px 10px #101010, -11px 11px #101010, -12px 12px #101010, -13px 13px #101010, -14px 14px #101010, -15px 15px #101010, -16px 16px #101010, -17px 17px #101010, -18px 18px #101010, -19px 19px #101010, -20px 20px #101010, -21px 21px #101010, -22px 22px #101010, -23px 23px #101010, -24px 24px #101010, -25px 25px #101010, -26px 26px #101010, -27px 27px #101010, -28px 28px #101010, -29px 29px #101010, -30px 30px #101010, -31px 31px #101010, -32px 32px #101010, -33px 33px #101010, -34px 34px #101010, -35px 35px #101010, -36px 36px #101010, -37px 37px #101010, -38px 38px #101010, -39px 39px #101010, -40px 40px #101010, -41px 41px #101010, -42px 42px #101010, -43px 43px #101010, -44px 44px #101010, -45px 45px #101010, -46px 46px #101010, -47px 47px #101010, -48px 48px #101010, -49px 49px #101010, -50px 50px #101010, -51px 51px #101010, -52px 52px #101010, -53px 53px #101010, -54px 54px #101010, -55px 55px #101010, -56px 56px #101010, -57px 57px #101010, -58px 58px #101010, -59px 59px #101010, -60px 60px #101010, -61px 61px #101010, -62px 62px #101010, -63px 63px #101010, -64px 64px #101010, -65px 65px #101010, -66px 66px #101010, -67px 67px #101010, -68px 68px #101010, -69px 69px #101010, -70px 70px #101010, -71px 71px #101010, -72px 72px #101010, -73px 73px #101010, -74px 74px #101010, -75px 75px #101010, -76px 76px #101010, -77px 77px #101010, -78px 78px #101010, -79px 79px #101010, -80px 80px #101010, -81px 81px #101010, -82px 82px #101010, -83px 83px #101010, -84px 84px #101010, -85px 85px #101010; }
  .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; }
