/*--------------------------------------------------------------
 # 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: #001449;
  border-color: #001449;
  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: #001858;
    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: #041645;
    border-color: #00030c;
    color: #000616;
    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: #001449;
  border-color: #001449;
  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: #00227c;
    border-color: #00227c;
    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: #041645;
    border-color: #041645;
    color: #000616; }

.btn-color-2, .btn-color-2-flat {
  background-color: #012677;
  border-color: #012677;
  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: #0136aa;
    border-color: #0136aa;
    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: #072871;
    border-color: #072871;
    color: #011644; }

.btn-color-3, .btn-color-3-flat {
  background-color: #005bc5;
  border-color: #005bc5;
  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: #0073f8;
    border-color: #0073f8;
    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: #0a5cbb;
    border-color: #0a5cbb;
    color: #004392; }

.btn-color-4, .btn-color-4-flat {
  background-color: #00b4fc;
  border-color: #00b4fc;
  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: #30c4ff;
    border-color: #30c4ff;
    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: #0dafef;
    border-color: #0dafef;
    color: #0090c9; }

.btn-neutral-color, .btn-neutral-color-flat {
  background-color: #fff;
  border-color: #fff;
  color: #1a1a1a; }
  .btn-neutral-color:visited, .btn-neutral-color-flat:visited {
    color: #1a1a1a; }
  .btn-neutral-color:hover, .btn-neutral-color-flat:hover, .btn-neutral-color:focus, .btn-neutral-color-flat:focus {
    background-color: #fff;
    border-color: #fff;
    color: #1a1a1a; }
  .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: #fff;
    border-color: #fff;
    color: #e6e6e6; }
/*
 * 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(0, 34, 124, 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: #001449; }
    .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(0, 34, 124, 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(4, 22, 69, 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: #012677; }
    .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(1, 54, 170, 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(7, 40, 113, 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: #005bc5; }
    .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(0, 115, 248, 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(10, 92, 187, 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: #00b4fc; }
    .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(48, 196, 255, 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(13, 175, 239, 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: #fff; }
    .btn-border.btn-neutral-color:hover, .btn-border-thin.btn-neutral-color:hover, .btn-border-thick.btn-neutral-color:hover, .btn-border.btn-neutral-color:focus, .btn-border-thin.btn-neutral-color:focus, .btn-border-thick.btn-neutral-color:focus {
      background-color: rgba(255, 255, 255, 0.9);
      color: rgba(26, 26, 26, 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(255, 255, 255, 0.7);
      color: rgba(26, 26, 26, 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: #001449;
  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: #001449; }
  .btn-borderless.btn-color-2 {
    color: #012677; }
  .btn-borderless.btn-color-3 {
    color: #005bc5; }
  .btn-borderless.btn-color-4 {
    color: #00b4fc; }
  .btn-borderless.btn-neutral-color {
    color: #fff; }
  .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: #000d30;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#001858, #000d30);
  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(#001f72, #000a25); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #041645;
  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: #000d30;
  background: linear-gradient(#001b63, #000d30); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#001f72, #000a25); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #000616;
    background: #041645; }
  .btn-raised.btn-color-2 {
    border-color: #011e5e;
    background: linear-gradient(#012e90, #011e5e); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#01339f, #011b54); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #011644;
    background: #072871; }
  .btn-raised.btn-color-3 {
    border-color: #004fac;
    background: linear-gradient(#0067df, #004fac); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#006eee, #004ba1); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #004392;
    background: #0a5cbb; }
  .btn-raised.btn-color-4 {
    border-color: #00a2e3;
    background: linear-gradient(#17bdff, #00a2e3); }
  .btn-raised.btn-color-4:hover, .btn-raised.btn-color-4:focus {
    background: linear-gradient(#26c1ff, #009bd8); }
  .btn-raised.btn-color-4:active, .btn-raised.btn-color-4.active, .btn-raised.btn-color-4.is-active {
    border-color: #0090c9;
    background: #0dafef; }
  .btn-raised.btn-neutral-color {
    border-color: #f2f2f2;
    background: linear-gradient(#fff, #f2f2f2); }
  .btn-raised.btn-neutral-color:hover, .btn-raised.btn-neutral-color:focus {
    background: linear-gradient(#fff, #ededed); }
  .btn-raised.btn-neutral-color:active, .btn-raised.btn-neutral-color.active, .btn-raised.btn-neutral-color.is-active {
    border-color: #e6e6e6;
    background: #fff; }
/*
 * 3D Buttons
 *
 * These buttons have a heavy three dimensional
 * style that mimics the visual appearance of a
 * real life button.
 */
.btn-3d {
  position: relative;
  top: 0;
  box-shadow: 0 7px 0 #000, 0 8px 3px rgba(0, 0, 0, 0.2); }

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

.btn-3d:active, .btn-3d.active, .btn-3d.is-active {
  top: 5px;
  transition-property: all;
  transition-duration: 0.15s;
  box-shadow: 0 2px 0 #000, 0 3px 3px rgba(0, 0, 0, 0.2); }
/*
 * 3D Button Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-3d.btn-color-1 {
  box-shadow: 0 7px 0 #000616, 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 #00030c, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-1:active, .btn-3d.btn-color-1.active, .btn-3d.btn-color-1.is-active {
    box-shadow: 0 2px 0 #000, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-2 {
    box-shadow: 0 7px 0 #011644, 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 #00133a, 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 #000612, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #004392, 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 #003f88, 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 #002c5f, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-4 {
    box-shadow: 0 7px 0 #0090c9, 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 #0088bf, 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 #006b96, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-neutral-color {
    box-shadow: 0 7px 0 #e6e6e6, 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 #e0e0e0, 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 #ccc, 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(0, 20, 73, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(0, 20, 73, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(0, 20, 73, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-neutral-color {
    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 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(0, 34, 124, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #000616;
  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: #001858;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #00103a; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(0, 20, 73, 0.95);
  border-color: #000616; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #000a25; }
  .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: #000d30; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(1, 38, 119, 0.95);
    border-color: #011644; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #011b54; }
  .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: #011e5e; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(0, 91, 197, 0.95);
    border-color: #004392; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #004ba1; }
  .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: #004fac; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list {
    background: rgba(0, 180, 252, 0.95);
    border-color: #0090c9; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #009bd8; }
  .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: #00a2e3; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list {
    background: rgba(255, 255, 255, 0.95);
    border-color: #e6e6e6; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list .btn-dropdown-divider {
    border-color: #ededed; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list > li > a {
    color: #1a1a1a; }
    .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list > li > a:hover {
      color: #0d0d0d;
      background: #f2f2f2; }
/*
 * 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 #000616, 1px 1px #000616, 2px 2px #000616, 3px 3px #000616, 4px 4px #000616, 5px 5px #000616, 6px 6px #000616, 7px 7px #000616, 8px 8px #000616, 9px 9px #000616, 10px 10px #000616, 11px 11px #000616, 12px 12px #000616, 13px 13px #000616, 14px 14px #000616, 15px 15px #000616, 16px 16px #000616, 17px 17px #000616, 18px 18px #000616, 19px 19px #000616, 20px 20px #000616, 21px 21px #000616, 22px 22px #000616, 23px 23px #000616, 24px 24px #000616, 25px 25px #000616, 26px 26px #000616, 27px 27px #000616, 28px 28px #000616, 29px 29px #000616, 30px 30px #000616, 31px 31px #000616, 32px 32px #000616, 33px 33px #000616, 34px 34px #000616, 35px 35px #000616, 36px 36px #000616, 37px 37px #000616, 38px 38px #000616, 39px 39px #000616, 40px 40px #000616, 41px 41px #000616, 42px 42px #000616, 43px 43px #000616, 44px 44px #000616, 45px 45px #000616, 46px 46px #000616, 47px 47px #000616, 48px 48px #000616, 49px 49px #000616, 50px 50px #000616, 51px 51px #000616, 52px 52px #000616, 53px 53px #000616, 54px 54px #000616, 55px 55px #000616, 56px 56px #000616, 57px 57px #000616, 58px 58px #000616, 59px 59px #000616, 60px 60px #000616, 61px 61px #000616, 62px 62px #000616, 63px 63px #000616, 64px 64px #000616, 65px 65px #000616, 66px 66px #000616, 67px 67px #000616, 68px 68px #000616, 69px 69px #000616, 70px 70px #000616, 71px 71px #000616, 72px 72px #000616, 73px 73px #000616, 74px 74px #000616, 75px 75px #000616, 76px 76px #000616, 77px 77px #000616, 78px 78px #000616, 79px 79px #000616, 80px 80px #000616, 81px 81px #000616, 82px 82px #000616, 83px 83px #000616, 84px 84px #000616, 85px 85px #000616; }
  .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 #011644, 1px 1px #011644, 2px 2px #011644, 3px 3px #011644, 4px 4px #011644, 5px 5px #011644, 6px 6px #011644, 7px 7px #011644, 8px 8px #011644, 9px 9px #011644, 10px 10px #011644, 11px 11px #011644, 12px 12px #011644, 13px 13px #011644, 14px 14px #011644, 15px 15px #011644, 16px 16px #011644, 17px 17px #011644, 18px 18px #011644, 19px 19px #011644, 20px 20px #011644, 21px 21px #011644, 22px 22px #011644, 23px 23px #011644, 24px 24px #011644, 25px 25px #011644, 26px 26px #011644, 27px 27px #011644, 28px 28px #011644, 29px 29px #011644, 30px 30px #011644, 31px 31px #011644, 32px 32px #011644, 33px 33px #011644, 34px 34px #011644, 35px 35px #011644, 36px 36px #011644, 37px 37px #011644, 38px 38px #011644, 39px 39px #011644, 40px 40px #011644, 41px 41px #011644, 42px 42px #011644, 43px 43px #011644, 44px 44px #011644, 45px 45px #011644, 46px 46px #011644, 47px 47px #011644, 48px 48px #011644, 49px 49px #011644, 50px 50px #011644, 51px 51px #011644, 52px 52px #011644, 53px 53px #011644, 54px 54px #011644, 55px 55px #011644, 56px 56px #011644, 57px 57px #011644, 58px 58px #011644, 59px 59px #011644, 60px 60px #011644, 61px 61px #011644, 62px 62px #011644, 63px 63px #011644, 64px 64px #011644, 65px 65px #011644, 66px 66px #011644, 67px 67px #011644, 68px 68px #011644, 69px 69px #011644, 70px 70px #011644, 71px 71px #011644, 72px 72px #011644, 73px 73px #011644, 74px 74px #011644, 75px 75px #011644, 76px 76px #011644, 77px 77px #011644, 78px 78px #011644, 79px 79px #011644, 80px 80px #011644, 81px 81px #011644, 82px 82px #011644, 83px 83px #011644, 84px 84px #011644, 85px 85px #011644; }
  .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 #004392, 1px 1px #004392, 2px 2px #004392, 3px 3px #004392, 4px 4px #004392, 5px 5px #004392, 6px 6px #004392, 7px 7px #004392, 8px 8px #004392, 9px 9px #004392, 10px 10px #004392, 11px 11px #004392, 12px 12px #004392, 13px 13px #004392, 14px 14px #004392, 15px 15px #004392, 16px 16px #004392, 17px 17px #004392, 18px 18px #004392, 19px 19px #004392, 20px 20px #004392, 21px 21px #004392, 22px 22px #004392, 23px 23px #004392, 24px 24px #004392, 25px 25px #004392, 26px 26px #004392, 27px 27px #004392, 28px 28px #004392, 29px 29px #004392, 30px 30px #004392, 31px 31px #004392, 32px 32px #004392, 33px 33px #004392, 34px 34px #004392, 35px 35px #004392, 36px 36px #004392, 37px 37px #004392, 38px 38px #004392, 39px 39px #004392, 40px 40px #004392, 41px 41px #004392, 42px 42px #004392, 43px 43px #004392, 44px 44px #004392, 45px 45px #004392, 46px 46px #004392, 47px 47px #004392, 48px 48px #004392, 49px 49px #004392, 50px 50px #004392, 51px 51px #004392, 52px 52px #004392, 53px 53px #004392, 54px 54px #004392, 55px 55px #004392, 56px 56px #004392, 57px 57px #004392, 58px 58px #004392, 59px 59px #004392, 60px 60px #004392, 61px 61px #004392, 62px 62px #004392, 63px 63px #004392, 64px 64px #004392, 65px 65px #004392, 66px 66px #004392, 67px 67px #004392, 68px 68px #004392, 69px 69px #004392, 70px 70px #004392, 71px 71px #004392, 72px 72px #004392, 73px 73px #004392, 74px 74px #004392, 75px 75px #004392, 76px 76px #004392, 77px 77px #004392, 78px 78px #004392, 79px 79px #004392, 80px 80px #004392, 81px 81px #004392, 82px 82px #004392, 83px 83px #004392, 84px 84px #004392, 85px 85px #004392; }
  .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 #0090c9, 1px 1px #0090c9, 2px 2px #0090c9, 3px 3px #0090c9, 4px 4px #0090c9, 5px 5px #0090c9, 6px 6px #0090c9, 7px 7px #0090c9, 8px 8px #0090c9, 9px 9px #0090c9, 10px 10px #0090c9, 11px 11px #0090c9, 12px 12px #0090c9, 13px 13px #0090c9, 14px 14px #0090c9, 15px 15px #0090c9, 16px 16px #0090c9, 17px 17px #0090c9, 18px 18px #0090c9, 19px 19px #0090c9, 20px 20px #0090c9, 21px 21px #0090c9, 22px 22px #0090c9, 23px 23px #0090c9, 24px 24px #0090c9, 25px 25px #0090c9, 26px 26px #0090c9, 27px 27px #0090c9, 28px 28px #0090c9, 29px 29px #0090c9, 30px 30px #0090c9, 31px 31px #0090c9, 32px 32px #0090c9, 33px 33px #0090c9, 34px 34px #0090c9, 35px 35px #0090c9, 36px 36px #0090c9, 37px 37px #0090c9, 38px 38px #0090c9, 39px 39px #0090c9, 40px 40px #0090c9, 41px 41px #0090c9, 42px 42px #0090c9, 43px 43px #0090c9, 44px 44px #0090c9, 45px 45px #0090c9, 46px 46px #0090c9, 47px 47px #0090c9, 48px 48px #0090c9, 49px 49px #0090c9, 50px 50px #0090c9, 51px 51px #0090c9, 52px 52px #0090c9, 53px 53px #0090c9, 54px 54px #0090c9, 55px 55px #0090c9, 56px 56px #0090c9, 57px 57px #0090c9, 58px 58px #0090c9, 59px 59px #0090c9, 60px 60px #0090c9, 61px 61px #0090c9, 62px 62px #0090c9, 63px 63px #0090c9, 64px 64px #0090c9, 65px 65px #0090c9, 66px 66px #0090c9, 67px 67px #0090c9, 68px 68px #0090c9, 69px 69px #0090c9, 70px 70px #0090c9, 71px 71px #0090c9, 72px 72px #0090c9, 73px 73px #0090c9, 74px 74px #0090c9, 75px 75px #0090c9, 76px 76px #0090c9, 77px 77px #0090c9, 78px 78px #0090c9, 79px 79px #0090c9, 80px 80px #0090c9, 81px 81px #0090c9, 82px 82px #0090c9, 83px 83px #0090c9, 84px 84px #0090c9, 85px 85px #0090c9; }
  .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 #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-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 #000616, -1px 1px #000616, -2px 2px #000616, -3px 3px #000616, -4px 4px #000616, -5px 5px #000616, -6px 6px #000616, -7px 7px #000616, -8px 8px #000616, -9px 9px #000616, -10px 10px #000616, -11px 11px #000616, -12px 12px #000616, -13px 13px #000616, -14px 14px #000616, -15px 15px #000616, -16px 16px #000616, -17px 17px #000616, -18px 18px #000616, -19px 19px #000616, -20px 20px #000616, -21px 21px #000616, -22px 22px #000616, -23px 23px #000616, -24px 24px #000616, -25px 25px #000616, -26px 26px #000616, -27px 27px #000616, -28px 28px #000616, -29px 29px #000616, -30px 30px #000616, -31px 31px #000616, -32px 32px #000616, -33px 33px #000616, -34px 34px #000616, -35px 35px #000616, -36px 36px #000616, -37px 37px #000616, -38px 38px #000616, -39px 39px #000616, -40px 40px #000616, -41px 41px #000616, -42px 42px #000616, -43px 43px #000616, -44px 44px #000616, -45px 45px #000616, -46px 46px #000616, -47px 47px #000616, -48px 48px #000616, -49px 49px #000616, -50px 50px #000616, -51px 51px #000616, -52px 52px #000616, -53px 53px #000616, -54px 54px #000616, -55px 55px #000616, -56px 56px #000616, -57px 57px #000616, -58px 58px #000616, -59px 59px #000616, -60px 60px #000616, -61px 61px #000616, -62px 62px #000616, -63px 63px #000616, -64px 64px #000616, -65px 65px #000616, -66px 66px #000616, -67px 67px #000616, -68px 68px #000616, -69px 69px #000616, -70px 70px #000616, -71px 71px #000616, -72px 72px #000616, -73px 73px #000616, -74px 74px #000616, -75px 75px #000616, -76px 76px #000616, -77px 77px #000616, -78px 78px #000616, -79px 79px #000616, -80px 80px #000616, -81px 81px #000616, -82px 82px #000616, -83px 83px #000616, -84px 84px #000616, -85px 85px #000616; }
  .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 #011644, -1px 1px #011644, -2px 2px #011644, -3px 3px #011644, -4px 4px #011644, -5px 5px #011644, -6px 6px #011644, -7px 7px #011644, -8px 8px #011644, -9px 9px #011644, -10px 10px #011644, -11px 11px #011644, -12px 12px #011644, -13px 13px #011644, -14px 14px #011644, -15px 15px #011644, -16px 16px #011644, -17px 17px #011644, -18px 18px #011644, -19px 19px #011644, -20px 20px #011644, -21px 21px #011644, -22px 22px #011644, -23px 23px #011644, -24px 24px #011644, -25px 25px #011644, -26px 26px #011644, -27px 27px #011644, -28px 28px #011644, -29px 29px #011644, -30px 30px #011644, -31px 31px #011644, -32px 32px #011644, -33px 33px #011644, -34px 34px #011644, -35px 35px #011644, -36px 36px #011644, -37px 37px #011644, -38px 38px #011644, -39px 39px #011644, -40px 40px #011644, -41px 41px #011644, -42px 42px #011644, -43px 43px #011644, -44px 44px #011644, -45px 45px #011644, -46px 46px #011644, -47px 47px #011644, -48px 48px #011644, -49px 49px #011644, -50px 50px #011644, -51px 51px #011644, -52px 52px #011644, -53px 53px #011644, -54px 54px #011644, -55px 55px #011644, -56px 56px #011644, -57px 57px #011644, -58px 58px #011644, -59px 59px #011644, -60px 60px #011644, -61px 61px #011644, -62px 62px #011644, -63px 63px #011644, -64px 64px #011644, -65px 65px #011644, -66px 66px #011644, -67px 67px #011644, -68px 68px #011644, -69px 69px #011644, -70px 70px #011644, -71px 71px #011644, -72px 72px #011644, -73px 73px #011644, -74px 74px #011644, -75px 75px #011644, -76px 76px #011644, -77px 77px #011644, -78px 78px #011644, -79px 79px #011644, -80px 80px #011644, -81px 81px #011644, -82px 82px #011644, -83px 83px #011644, -84px 84px #011644, -85px 85px #011644; }
  .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 #004392, -1px 1px #004392, -2px 2px #004392, -3px 3px #004392, -4px 4px #004392, -5px 5px #004392, -6px 6px #004392, -7px 7px #004392, -8px 8px #004392, -9px 9px #004392, -10px 10px #004392, -11px 11px #004392, -12px 12px #004392, -13px 13px #004392, -14px 14px #004392, -15px 15px #004392, -16px 16px #004392, -17px 17px #004392, -18px 18px #004392, -19px 19px #004392, -20px 20px #004392, -21px 21px #004392, -22px 22px #004392, -23px 23px #004392, -24px 24px #004392, -25px 25px #004392, -26px 26px #004392, -27px 27px #004392, -28px 28px #004392, -29px 29px #004392, -30px 30px #004392, -31px 31px #004392, -32px 32px #004392, -33px 33px #004392, -34px 34px #004392, -35px 35px #004392, -36px 36px #004392, -37px 37px #004392, -38px 38px #004392, -39px 39px #004392, -40px 40px #004392, -41px 41px #004392, -42px 42px #004392, -43px 43px #004392, -44px 44px #004392, -45px 45px #004392, -46px 46px #004392, -47px 47px #004392, -48px 48px #004392, -49px 49px #004392, -50px 50px #004392, -51px 51px #004392, -52px 52px #004392, -53px 53px #004392, -54px 54px #004392, -55px 55px #004392, -56px 56px #004392, -57px 57px #004392, -58px 58px #004392, -59px 59px #004392, -60px 60px #004392, -61px 61px #004392, -62px 62px #004392, -63px 63px #004392, -64px 64px #004392, -65px 65px #004392, -66px 66px #004392, -67px 67px #004392, -68px 68px #004392, -69px 69px #004392, -70px 70px #004392, -71px 71px #004392, -72px 72px #004392, -73px 73px #004392, -74px 74px #004392, -75px 75px #004392, -76px 76px #004392, -77px 77px #004392, -78px 78px #004392, -79px 79px #004392, -80px 80px #004392, -81px 81px #004392, -82px 82px #004392, -83px 83px #004392, -84px 84px #004392, -85px 85px #004392; }
  .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 #0090c9, -1px 1px #0090c9, -2px 2px #0090c9, -3px 3px #0090c9, -4px 4px #0090c9, -5px 5px #0090c9, -6px 6px #0090c9, -7px 7px #0090c9, -8px 8px #0090c9, -9px 9px #0090c9, -10px 10px #0090c9, -11px 11px #0090c9, -12px 12px #0090c9, -13px 13px #0090c9, -14px 14px #0090c9, -15px 15px #0090c9, -16px 16px #0090c9, -17px 17px #0090c9, -18px 18px #0090c9, -19px 19px #0090c9, -20px 20px #0090c9, -21px 21px #0090c9, -22px 22px #0090c9, -23px 23px #0090c9, -24px 24px #0090c9, -25px 25px #0090c9, -26px 26px #0090c9, -27px 27px #0090c9, -28px 28px #0090c9, -29px 29px #0090c9, -30px 30px #0090c9, -31px 31px #0090c9, -32px 32px #0090c9, -33px 33px #0090c9, -34px 34px #0090c9, -35px 35px #0090c9, -36px 36px #0090c9, -37px 37px #0090c9, -38px 38px #0090c9, -39px 39px #0090c9, -40px 40px #0090c9, -41px 41px #0090c9, -42px 42px #0090c9, -43px 43px #0090c9, -44px 44px #0090c9, -45px 45px #0090c9, -46px 46px #0090c9, -47px 47px #0090c9, -48px 48px #0090c9, -49px 49px #0090c9, -50px 50px #0090c9, -51px 51px #0090c9, -52px 52px #0090c9, -53px 53px #0090c9, -54px 54px #0090c9, -55px 55px #0090c9, -56px 56px #0090c9, -57px 57px #0090c9, -58px 58px #0090c9, -59px 59px #0090c9, -60px 60px #0090c9, -61px 61px #0090c9, -62px 62px #0090c9, -63px 63px #0090c9, -64px 64px #0090c9, -65px 65px #0090c9, -66px 66px #0090c9, -67px 67px #0090c9, -68px 68px #0090c9, -69px 69px #0090c9, -70px 70px #0090c9, -71px 71px #0090c9, -72px 72px #0090c9, -73px 73px #0090c9, -74px 74px #0090c9, -75px 75px #0090c9, -76px 76px #0090c9, -77px 77px #0090c9, -78px 78px #0090c9, -79px 79px #0090c9, -80px 80px #0090c9, -81px 81px #0090c9, -82px 82px #0090c9, -83px 83px #0090c9, -84px 84px #0090c9, -85px 85px #0090c9; }
  .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 #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-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; }
