/*--------------------------------------------------------------
 # 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: #011f3f;
  border-color: #011f3f;
  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: #01264e;
    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: #041f3c;
    border-color: #000103;
    color: #00060d;
    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: #011f3f;
  border-color: #011f3f;
  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: #023871;
    border-color: #023871;
    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: #041f3c;
    border-color: #041f3c;
    color: #00060d; }

.btn-color-2, .btn-color-2-flat {
  background-color: #3f3f3f;
  border-color: #3f3f3f;
  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: #595959;
    border-color: #595959;
    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: #3f3f3f;
    border-color: #3f3f3f;
    color: #262626; }

.btn-color-3, .btn-color-3-flat {
  background-color: #ffd493;
  border-color: #ffd493;
  color: #333; }
  .btn-color-3:visited, .btn-color-3-flat:visited {
    color: #333; }
  .btn-color-3:hover, .btn-color-3-flat:hover, .btn-color-3:focus, .btn-color-3-flat:focus {
    background-color: #ffe8c6;
    border-color: #ffe8c6;
    color: #333; }
  .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: #fad398;
    border-color: #fad398;
    color: #ffc060; }

.btn-color-4, .btn-color-4-flat {
  background-color: #b2aca2;
  border-color: #b2aca2;
  color: #333; }
  .btn-color-4:visited, .btn-color-4-flat:visited {
    color: #333; }
  .btn-color-4:hover, .btn-color-4-flat:hover, .btn-color-4:focus, .btn-color-4-flat:focus {
    background-color: #c9c5be;
    border-color: #c9c5be;
    color: #333; }
  .btn-color-4:active, .btn-color-4-flat:active, .btn-color-4.active, .btn-color-4-flat.active, .btn-color-4.is-active, .btn-color-4-flat.is-active {
    background-color: #aaa;
    border-color: #aaa;
    color: #9b9386; }

.btn-color-5, .btn-color-5-flat {
  background-color: #e8e8e8;
  border-color: #e8e8e8;
  color: #333; }
  .btn-color-5:visited, .btn-color-5-flat:visited {
    color: #333; }
  .btn-color-5:hover, .btn-color-5-flat:hover, .btn-color-5:focus, .btn-color-5-flat:focus {
    background-color: #fff;
    border-color: #fff;
    color: #333; }
  .btn-color-5:active, .btn-color-5-flat:active, .btn-color-5.active, .btn-color-5-flat.active, .btn-color-5.is-active, .btn-color-5-flat.is-active {
    background-color: #e8e8e8;
    border-color: #e8e8e8;
    color: #cfcfcf; }
/*
 * 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(2, 56, 113, 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: #011f3f; }
    .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(2, 56, 113, 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, 31, 60, 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: #3f3f3f; }
    .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(89, 89, 89, 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(63, 63, 63, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-3, .btn-border-thin.btn-color-3, .btn-border-thick.btn-color-3 {
    color: #ffd493; }
    .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, 232, 198, 0.9);
      color: rgba(51, 51, 51, 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(250, 211, 152, 0.7);
      color: rgba(51, 51, 51, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-4, .btn-border-thin.btn-color-4, .btn-border-thick.btn-color-4 {
    color: #b2aca2; }
    .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(201, 197, 190, 0.9);
      color: rgba(51, 51, 51, 0.9); }
    .btn-border.btn-color-4:active, .btn-border-thin.btn-color-4:active, .btn-border-thick.btn-color-4:active, .btn-border.btn-color-4.active, .btn-border-thin.btn-color-4.active, .btn-border-thick.btn-color-4.active, .btn-border.btn-color-4.is-active, .btn-border-thin.btn-color-4.is-active, .btn-border-thick.btn-color-4.is-active {
      background-color: rgba(170, 170, 170, 0.7);
      color: rgba(51, 51, 51, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-5, .btn-border-thin.btn-color-5, .btn-border-thick.btn-color-5 {
    color: #e8e8e8; }
    .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(255, 255, 255, 0.9);
      color: rgba(51, 51, 51, 0.9); }
    .btn-border.btn-color-5:active, .btn-border-thin.btn-color-5:active, .btn-border-thick.btn-color-5:active, .btn-border.btn-color-5.active, .btn-border-thin.btn-color-5.active, .btn-border-thick.btn-color-5.active, .btn-border.btn-color-5.is-active, .btn-border-thin.btn-color-5.is-active, .btn-border-thick.btn-color-5.is-active {
      background-color: rgba(232, 232, 232, 0.7);
      color: rgba(51, 51, 51, 0.5);
      opacity: 0.3; }
  .btn-border.btn-giant, .btn-border-thin.btn-giant, .btn-border-thick.btn-giant {
    line-height: 66px; }
  .btn-border.btn-jumbo, .btn-border-thin.btn-jumbo, .btn-border-thick.btn-jumbo {
    line-height: 56px; }
  .btn-border.btn-large, .btn-border-thin.btn-large, .btn-border-thick.btn-large {
    line-height: 46px; }
  .btn-border.btn-normal, .btn-border-thin.btn-normal, .btn-border-thick.btn-normal {
    line-height: 36px; }
  .btn-border.btn-small, .btn-border-thin.btn-small, .btn-border-thick.btn-small {
    line-height: 26px; }
  .btn-border.btn-tiny, .btn-border-thin.btn-tiny, .btn-border-thick.btn-tiny {
    line-height: 20px; }
/*
 * Border Buttons
 *
 * These buttons have no fill they only have a
 * border to define their hit target.
 */
.btn-borderless {
  background: none;
  border: none;
  padding: 0 8px !important;
  color: #011f3f;
  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: #011f3f; }
  .btn-borderless.btn-color-2 {
    color: #3f3f3f; }
  .btn-borderless.btn-color-3 {
    color: #ffd493; }
  .btn-borderless.btn-color-4 {
    color: #b2aca2; }
  .btn-borderless.btn-color-5 {
    color: #e8e8e8; }
  .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: #011326;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#01264e, #011326);
  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(#023367, #000e1c); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #041f3c;
  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: #011326;
  background: linear-gradient(#012b58, #011326); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#023367, #000e1c); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #00060d;
    background: #041f3c; }
  .btn-raised.btn-color-2 {
    border-color: #323232;
    background: linear-gradient(#4c4c4c, #323232); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#535353, #2d2d2d); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #262626;
    background: #3f3f3f; }
  .btn-raised.btn-color-3 {
    border-color: #ffca7a;
    background: linear-gradient(#ffdead, #ffca7a); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#ffe4bc, #ffc66f); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #ffc060;
    background: #fad398; }
  .btn-raised.btn-color-4 {
    border-color: #a6a094;
    background: linear-gradient(#beb8b0, #a6a094); }
  .btn-raised.btn-color-4:hover, .btn-raised.btn-color-4:focus {
    background: linear-gradient(#c4c0b8, #a29b8e); }
  .btn-raised.btn-color-4:active, .btn-raised.btn-color-4.active, .btn-raised.btn-color-4.is-active {
    border-color: #9b9386;
    background: #aaa; }
  .btn-raised.btn-color-5 {
    border-color: #dbdbdb;
    background: linear-gradient(#f5f5f5, #dbdbdb); }
  .btn-raised.btn-color-5:hover, .btn-raised.btn-color-5:focus {
    background: linear-gradient(#fcfcfc, #d6d6d6); }
  .btn-raised.btn-color-5:active, .btn-raised.btn-color-5.active, .btn-raised.btn-color-5.is-active {
    border-color: #cfcfcf;
    background: #e8e8e8; }
/*
 * 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 #00060d, 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 #000103, 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 #262626, 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 #202020, 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 #0c0c0c, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #ffc060, 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 #ffbc56, 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 #ffab2d, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-4 {
    box-shadow: 0 7px 0 #9b9386, 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 #968e81, 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 #827a6c, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-5 {
    box-shadow: 0 7px 0 #cfcfcf, 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 #c9c9c9, 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 #b5b5b5, 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(1, 31, 63, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(1, 31, 63, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(1, 31, 63, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

.btn-glow:active, .btn-glow.active, .btn-glow.is-active {
  animation-name: none; }
/*
 * Glowing Button Colors
 *
 * Create colors for glowing buttons
 */
.btn-glow.btn-color-1 {
  animation-name: glowing-color-1; }
  .btn-glow.btn-color-2 {
    animation-name: glowing-color-2; }
  .btn-glow.btn-color-3 {
    animation-name: glowing-color-3; }
  .btn-glow.btn-color-4 {
    animation-name: glowing-color-4; }
  .btn-glow.btn-color-5 {
    animation-name: glowing-color-5; }
/*
 * Dropdown menu buttons
 *
 * A dropdown menu appears
 * when a button is pressed
 */
/*
 * Dropdown Container
 *
 */
.btn-dropdown {
  position: relative;
  overflow: visible;
  display: inline-block; }
/*
 * Dropdown List Style
 *
 */
.btn-dropdown-list {
  display: none;
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 1000;
  min-width: 100%;
  list-style-type: none;
  background: rgba(2, 56, 113, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #00060d;
  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: #01264e;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #011830; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(1, 31, 63, 0.95);
  border-color: #00060d; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #000e1c; }
  .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: #011326; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(63, 63, 63, 0.95);
    border-color: #262626; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #2d2d2d; }
  .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: #323232; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(255, 212, 147, 0.95);
    border-color: #ffc060; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #ffc66f; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a {
    color: #333; }
    .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a:hover {
      color: #262626;
      background: #ffca7a; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list {
    background: rgba(178, 172, 162, 0.95);
    border-color: #9b9386; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #a29b8e; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a {
    color: #333; }
    .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a:hover {
      color: #262626;
      background: #a6a094; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list {
    background: rgba(232, 232, 232, 0.95);
    border-color: #cfcfcf; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #d6d6d6; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a {
    color: #333; }
    .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a:hover {
      color: #262626;
      background: #dbdbdb; }
/*
 * 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 #00060d, 1px 1px #00060d, 2px 2px #00060d, 3px 3px #00060d, 4px 4px #00060d, 5px 5px #00060d, 6px 6px #00060d, 7px 7px #00060d, 8px 8px #00060d, 9px 9px #00060d, 10px 10px #00060d, 11px 11px #00060d, 12px 12px #00060d, 13px 13px #00060d, 14px 14px #00060d, 15px 15px #00060d, 16px 16px #00060d, 17px 17px #00060d, 18px 18px #00060d, 19px 19px #00060d, 20px 20px #00060d, 21px 21px #00060d, 22px 22px #00060d, 23px 23px #00060d, 24px 24px #00060d, 25px 25px #00060d, 26px 26px #00060d, 27px 27px #00060d, 28px 28px #00060d, 29px 29px #00060d, 30px 30px #00060d, 31px 31px #00060d, 32px 32px #00060d, 33px 33px #00060d, 34px 34px #00060d, 35px 35px #00060d, 36px 36px #00060d, 37px 37px #00060d, 38px 38px #00060d, 39px 39px #00060d, 40px 40px #00060d, 41px 41px #00060d, 42px 42px #00060d, 43px 43px #00060d, 44px 44px #00060d, 45px 45px #00060d, 46px 46px #00060d, 47px 47px #00060d, 48px 48px #00060d, 49px 49px #00060d, 50px 50px #00060d, 51px 51px #00060d, 52px 52px #00060d, 53px 53px #00060d, 54px 54px #00060d, 55px 55px #00060d, 56px 56px #00060d, 57px 57px #00060d, 58px 58px #00060d, 59px 59px #00060d, 60px 60px #00060d, 61px 61px #00060d, 62px 62px #00060d, 63px 63px #00060d, 64px 64px #00060d, 65px 65px #00060d, 66px 66px #00060d, 67px 67px #00060d, 68px 68px #00060d, 69px 69px #00060d, 70px 70px #00060d, 71px 71px #00060d, 72px 72px #00060d, 73px 73px #00060d, 74px 74px #00060d, 75px 75px #00060d, 76px 76px #00060d, 77px 77px #00060d, 78px 78px #00060d, 79px 79px #00060d, 80px 80px #00060d, 81px 81px #00060d, 82px 82px #00060d, 83px 83px #00060d, 84px 84px #00060d, 85px 85px #00060d; }
  .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 #262626, 1px 1px #262626, 2px 2px #262626, 3px 3px #262626, 4px 4px #262626, 5px 5px #262626, 6px 6px #262626, 7px 7px #262626, 8px 8px #262626, 9px 9px #262626, 10px 10px #262626, 11px 11px #262626, 12px 12px #262626, 13px 13px #262626, 14px 14px #262626, 15px 15px #262626, 16px 16px #262626, 17px 17px #262626, 18px 18px #262626, 19px 19px #262626, 20px 20px #262626, 21px 21px #262626, 22px 22px #262626, 23px 23px #262626, 24px 24px #262626, 25px 25px #262626, 26px 26px #262626, 27px 27px #262626, 28px 28px #262626, 29px 29px #262626, 30px 30px #262626, 31px 31px #262626, 32px 32px #262626, 33px 33px #262626, 34px 34px #262626, 35px 35px #262626, 36px 36px #262626, 37px 37px #262626, 38px 38px #262626, 39px 39px #262626, 40px 40px #262626, 41px 41px #262626, 42px 42px #262626, 43px 43px #262626, 44px 44px #262626, 45px 45px #262626, 46px 46px #262626, 47px 47px #262626, 48px 48px #262626, 49px 49px #262626, 50px 50px #262626, 51px 51px #262626, 52px 52px #262626, 53px 53px #262626, 54px 54px #262626, 55px 55px #262626, 56px 56px #262626, 57px 57px #262626, 58px 58px #262626, 59px 59px #262626, 60px 60px #262626, 61px 61px #262626, 62px 62px #262626, 63px 63px #262626, 64px 64px #262626, 65px 65px #262626, 66px 66px #262626, 67px 67px #262626, 68px 68px #262626, 69px 69px #262626, 70px 70px #262626, 71px 71px #262626, 72px 72px #262626, 73px 73px #262626, 74px 74px #262626, 75px 75px #262626, 76px 76px #262626, 77px 77px #262626, 78px 78px #262626, 79px 79px #262626, 80px 80px #262626, 81px 81px #262626, 82px 82px #262626, 83px 83px #262626, 84px 84px #262626, 85px 85px #262626; }
  .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 #ffc060, 1px 1px #ffc060, 2px 2px #ffc060, 3px 3px #ffc060, 4px 4px #ffc060, 5px 5px #ffc060, 6px 6px #ffc060, 7px 7px #ffc060, 8px 8px #ffc060, 9px 9px #ffc060, 10px 10px #ffc060, 11px 11px #ffc060, 12px 12px #ffc060, 13px 13px #ffc060, 14px 14px #ffc060, 15px 15px #ffc060, 16px 16px #ffc060, 17px 17px #ffc060, 18px 18px #ffc060, 19px 19px #ffc060, 20px 20px #ffc060, 21px 21px #ffc060, 22px 22px #ffc060, 23px 23px #ffc060, 24px 24px #ffc060, 25px 25px #ffc060, 26px 26px #ffc060, 27px 27px #ffc060, 28px 28px #ffc060, 29px 29px #ffc060, 30px 30px #ffc060, 31px 31px #ffc060, 32px 32px #ffc060, 33px 33px #ffc060, 34px 34px #ffc060, 35px 35px #ffc060, 36px 36px #ffc060, 37px 37px #ffc060, 38px 38px #ffc060, 39px 39px #ffc060, 40px 40px #ffc060, 41px 41px #ffc060, 42px 42px #ffc060, 43px 43px #ffc060, 44px 44px #ffc060, 45px 45px #ffc060, 46px 46px #ffc060, 47px 47px #ffc060, 48px 48px #ffc060, 49px 49px #ffc060, 50px 50px #ffc060, 51px 51px #ffc060, 52px 52px #ffc060, 53px 53px #ffc060, 54px 54px #ffc060, 55px 55px #ffc060, 56px 56px #ffc060, 57px 57px #ffc060, 58px 58px #ffc060, 59px 59px #ffc060, 60px 60px #ffc060, 61px 61px #ffc060, 62px 62px #ffc060, 63px 63px #ffc060, 64px 64px #ffc060, 65px 65px #ffc060, 66px 66px #ffc060, 67px 67px #ffc060, 68px 68px #ffc060, 69px 69px #ffc060, 70px 70px #ffc060, 71px 71px #ffc060, 72px 72px #ffc060, 73px 73px #ffc060, 74px 74px #ffc060, 75px 75px #ffc060, 76px 76px #ffc060, 77px 77px #ffc060, 78px 78px #ffc060, 79px 79px #ffc060, 80px 80px #ffc060, 81px 81px #ffc060, 82px 82px #ffc060, 83px 83px #ffc060, 84px 84px #ffc060, 85px 85px #ffc060; }
  .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 #9b9386, 1px 1px #9b9386, 2px 2px #9b9386, 3px 3px #9b9386, 4px 4px #9b9386, 5px 5px #9b9386, 6px 6px #9b9386, 7px 7px #9b9386, 8px 8px #9b9386, 9px 9px #9b9386, 10px 10px #9b9386, 11px 11px #9b9386, 12px 12px #9b9386, 13px 13px #9b9386, 14px 14px #9b9386, 15px 15px #9b9386, 16px 16px #9b9386, 17px 17px #9b9386, 18px 18px #9b9386, 19px 19px #9b9386, 20px 20px #9b9386, 21px 21px #9b9386, 22px 22px #9b9386, 23px 23px #9b9386, 24px 24px #9b9386, 25px 25px #9b9386, 26px 26px #9b9386, 27px 27px #9b9386, 28px 28px #9b9386, 29px 29px #9b9386, 30px 30px #9b9386, 31px 31px #9b9386, 32px 32px #9b9386, 33px 33px #9b9386, 34px 34px #9b9386, 35px 35px #9b9386, 36px 36px #9b9386, 37px 37px #9b9386, 38px 38px #9b9386, 39px 39px #9b9386, 40px 40px #9b9386, 41px 41px #9b9386, 42px 42px #9b9386, 43px 43px #9b9386, 44px 44px #9b9386, 45px 45px #9b9386, 46px 46px #9b9386, 47px 47px #9b9386, 48px 48px #9b9386, 49px 49px #9b9386, 50px 50px #9b9386, 51px 51px #9b9386, 52px 52px #9b9386, 53px 53px #9b9386, 54px 54px #9b9386, 55px 55px #9b9386, 56px 56px #9b9386, 57px 57px #9b9386, 58px 58px #9b9386, 59px 59px #9b9386, 60px 60px #9b9386, 61px 61px #9b9386, 62px 62px #9b9386, 63px 63px #9b9386, 64px 64px #9b9386, 65px 65px #9b9386, 66px 66px #9b9386, 67px 67px #9b9386, 68px 68px #9b9386, 69px 69px #9b9386, 70px 70px #9b9386, 71px 71px #9b9386, 72px 72px #9b9386, 73px 73px #9b9386, 74px 74px #9b9386, 75px 75px #9b9386, 76px 76px #9b9386, 77px 77px #9b9386, 78px 78px #9b9386, 79px 79px #9b9386, 80px 80px #9b9386, 81px 81px #9b9386, 82px 82px #9b9386, 83px 83px #9b9386, 84px 84px #9b9386, 85px 85px #9b9386; }
  .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 #cfcfcf, 1px 1px #cfcfcf, 2px 2px #cfcfcf, 3px 3px #cfcfcf, 4px 4px #cfcfcf, 5px 5px #cfcfcf, 6px 6px #cfcfcf, 7px 7px #cfcfcf, 8px 8px #cfcfcf, 9px 9px #cfcfcf, 10px 10px #cfcfcf, 11px 11px #cfcfcf, 12px 12px #cfcfcf, 13px 13px #cfcfcf, 14px 14px #cfcfcf, 15px 15px #cfcfcf, 16px 16px #cfcfcf, 17px 17px #cfcfcf, 18px 18px #cfcfcf, 19px 19px #cfcfcf, 20px 20px #cfcfcf, 21px 21px #cfcfcf, 22px 22px #cfcfcf, 23px 23px #cfcfcf, 24px 24px #cfcfcf, 25px 25px #cfcfcf, 26px 26px #cfcfcf, 27px 27px #cfcfcf, 28px 28px #cfcfcf, 29px 29px #cfcfcf, 30px 30px #cfcfcf, 31px 31px #cfcfcf, 32px 32px #cfcfcf, 33px 33px #cfcfcf, 34px 34px #cfcfcf, 35px 35px #cfcfcf, 36px 36px #cfcfcf, 37px 37px #cfcfcf, 38px 38px #cfcfcf, 39px 39px #cfcfcf, 40px 40px #cfcfcf, 41px 41px #cfcfcf, 42px 42px #cfcfcf, 43px 43px #cfcfcf, 44px 44px #cfcfcf, 45px 45px #cfcfcf, 46px 46px #cfcfcf, 47px 47px #cfcfcf, 48px 48px #cfcfcf, 49px 49px #cfcfcf, 50px 50px #cfcfcf, 51px 51px #cfcfcf, 52px 52px #cfcfcf, 53px 53px #cfcfcf, 54px 54px #cfcfcf, 55px 55px #cfcfcf, 56px 56px #cfcfcf, 57px 57px #cfcfcf, 58px 58px #cfcfcf, 59px 59px #cfcfcf, 60px 60px #cfcfcf, 61px 61px #cfcfcf, 62px 62px #cfcfcf, 63px 63px #cfcfcf, 64px 64px #cfcfcf, 65px 65px #cfcfcf, 66px 66px #cfcfcf, 67px 67px #cfcfcf, 68px 68px #cfcfcf, 69px 69px #cfcfcf, 70px 70px #cfcfcf, 71px 71px #cfcfcf, 72px 72px #cfcfcf, 73px 73px #cfcfcf, 74px 74px #cfcfcf, 75px 75px #cfcfcf, 76px 76px #cfcfcf, 77px 77px #cfcfcf, 78px 78px #cfcfcf, 79px 79px #cfcfcf, 80px 80px #cfcfcf, 81px 81px #cfcfcf, 82px 82px #cfcfcf, 83px 83px #cfcfcf, 84px 84px #cfcfcf, 85px 85px #cfcfcf; }
  .btn-longshadow.btn-color-5:active, .btn-longshadow-right.btn-color-5:active, .btn-longshadow.btn-color-5.active, .btn-longshadow-right.btn-color-5.active, .btn-longshadow.btn-color-5.is-active, .btn-longshadow-right.btn-color-5.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
/*
 * Shadow Left
 *
 */
.btn-longshadow-left {
  overflow: hidden; }
  .btn-longshadow-left.btn-color-1 {
    text-shadow: 0px 0px #00060d, -1px 1px #00060d, -2px 2px #00060d, -3px 3px #00060d, -4px 4px #00060d, -5px 5px #00060d, -6px 6px #00060d, -7px 7px #00060d, -8px 8px #00060d, -9px 9px #00060d, -10px 10px #00060d, -11px 11px #00060d, -12px 12px #00060d, -13px 13px #00060d, -14px 14px #00060d, -15px 15px #00060d, -16px 16px #00060d, -17px 17px #00060d, -18px 18px #00060d, -19px 19px #00060d, -20px 20px #00060d, -21px 21px #00060d, -22px 22px #00060d, -23px 23px #00060d, -24px 24px #00060d, -25px 25px #00060d, -26px 26px #00060d, -27px 27px #00060d, -28px 28px #00060d, -29px 29px #00060d, -30px 30px #00060d, -31px 31px #00060d, -32px 32px #00060d, -33px 33px #00060d, -34px 34px #00060d, -35px 35px #00060d, -36px 36px #00060d, -37px 37px #00060d, -38px 38px #00060d, -39px 39px #00060d, -40px 40px #00060d, -41px 41px #00060d, -42px 42px #00060d, -43px 43px #00060d, -44px 44px #00060d, -45px 45px #00060d, -46px 46px #00060d, -47px 47px #00060d, -48px 48px #00060d, -49px 49px #00060d, -50px 50px #00060d, -51px 51px #00060d, -52px 52px #00060d, -53px 53px #00060d, -54px 54px #00060d, -55px 55px #00060d, -56px 56px #00060d, -57px 57px #00060d, -58px 58px #00060d, -59px 59px #00060d, -60px 60px #00060d, -61px 61px #00060d, -62px 62px #00060d, -63px 63px #00060d, -64px 64px #00060d, -65px 65px #00060d, -66px 66px #00060d, -67px 67px #00060d, -68px 68px #00060d, -69px 69px #00060d, -70px 70px #00060d, -71px 71px #00060d, -72px 72px #00060d, -73px 73px #00060d, -74px 74px #00060d, -75px 75px #00060d, -76px 76px #00060d, -77px 77px #00060d, -78px 78px #00060d, -79px 79px #00060d, -80px 80px #00060d, -81px 81px #00060d, -82px 82px #00060d, -83px 83px #00060d, -84px 84px #00060d, -85px 85px #00060d; }
  .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 #262626, -1px 1px #262626, -2px 2px #262626, -3px 3px #262626, -4px 4px #262626, -5px 5px #262626, -6px 6px #262626, -7px 7px #262626, -8px 8px #262626, -9px 9px #262626, -10px 10px #262626, -11px 11px #262626, -12px 12px #262626, -13px 13px #262626, -14px 14px #262626, -15px 15px #262626, -16px 16px #262626, -17px 17px #262626, -18px 18px #262626, -19px 19px #262626, -20px 20px #262626, -21px 21px #262626, -22px 22px #262626, -23px 23px #262626, -24px 24px #262626, -25px 25px #262626, -26px 26px #262626, -27px 27px #262626, -28px 28px #262626, -29px 29px #262626, -30px 30px #262626, -31px 31px #262626, -32px 32px #262626, -33px 33px #262626, -34px 34px #262626, -35px 35px #262626, -36px 36px #262626, -37px 37px #262626, -38px 38px #262626, -39px 39px #262626, -40px 40px #262626, -41px 41px #262626, -42px 42px #262626, -43px 43px #262626, -44px 44px #262626, -45px 45px #262626, -46px 46px #262626, -47px 47px #262626, -48px 48px #262626, -49px 49px #262626, -50px 50px #262626, -51px 51px #262626, -52px 52px #262626, -53px 53px #262626, -54px 54px #262626, -55px 55px #262626, -56px 56px #262626, -57px 57px #262626, -58px 58px #262626, -59px 59px #262626, -60px 60px #262626, -61px 61px #262626, -62px 62px #262626, -63px 63px #262626, -64px 64px #262626, -65px 65px #262626, -66px 66px #262626, -67px 67px #262626, -68px 68px #262626, -69px 69px #262626, -70px 70px #262626, -71px 71px #262626, -72px 72px #262626, -73px 73px #262626, -74px 74px #262626, -75px 75px #262626, -76px 76px #262626, -77px 77px #262626, -78px 78px #262626, -79px 79px #262626, -80px 80px #262626, -81px 81px #262626, -82px 82px #262626, -83px 83px #262626, -84px 84px #262626, -85px 85px #262626; }
  .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 #ffc060, -1px 1px #ffc060, -2px 2px #ffc060, -3px 3px #ffc060, -4px 4px #ffc060, -5px 5px #ffc060, -6px 6px #ffc060, -7px 7px #ffc060, -8px 8px #ffc060, -9px 9px #ffc060, -10px 10px #ffc060, -11px 11px #ffc060, -12px 12px #ffc060, -13px 13px #ffc060, -14px 14px #ffc060, -15px 15px #ffc060, -16px 16px #ffc060, -17px 17px #ffc060, -18px 18px #ffc060, -19px 19px #ffc060, -20px 20px #ffc060, -21px 21px #ffc060, -22px 22px #ffc060, -23px 23px #ffc060, -24px 24px #ffc060, -25px 25px #ffc060, -26px 26px #ffc060, -27px 27px #ffc060, -28px 28px #ffc060, -29px 29px #ffc060, -30px 30px #ffc060, -31px 31px #ffc060, -32px 32px #ffc060, -33px 33px #ffc060, -34px 34px #ffc060, -35px 35px #ffc060, -36px 36px #ffc060, -37px 37px #ffc060, -38px 38px #ffc060, -39px 39px #ffc060, -40px 40px #ffc060, -41px 41px #ffc060, -42px 42px #ffc060, -43px 43px #ffc060, -44px 44px #ffc060, -45px 45px #ffc060, -46px 46px #ffc060, -47px 47px #ffc060, -48px 48px #ffc060, -49px 49px #ffc060, -50px 50px #ffc060, -51px 51px #ffc060, -52px 52px #ffc060, -53px 53px #ffc060, -54px 54px #ffc060, -55px 55px #ffc060, -56px 56px #ffc060, -57px 57px #ffc060, -58px 58px #ffc060, -59px 59px #ffc060, -60px 60px #ffc060, -61px 61px #ffc060, -62px 62px #ffc060, -63px 63px #ffc060, -64px 64px #ffc060, -65px 65px #ffc060, -66px 66px #ffc060, -67px 67px #ffc060, -68px 68px #ffc060, -69px 69px #ffc060, -70px 70px #ffc060, -71px 71px #ffc060, -72px 72px #ffc060, -73px 73px #ffc060, -74px 74px #ffc060, -75px 75px #ffc060, -76px 76px #ffc060, -77px 77px #ffc060, -78px 78px #ffc060, -79px 79px #ffc060, -80px 80px #ffc060, -81px 81px #ffc060, -82px 82px #ffc060, -83px 83px #ffc060, -84px 84px #ffc060, -85px 85px #ffc060; }
  .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 #9b9386, -1px 1px #9b9386, -2px 2px #9b9386, -3px 3px #9b9386, -4px 4px #9b9386, -5px 5px #9b9386, -6px 6px #9b9386, -7px 7px #9b9386, -8px 8px #9b9386, -9px 9px #9b9386, -10px 10px #9b9386, -11px 11px #9b9386, -12px 12px #9b9386, -13px 13px #9b9386, -14px 14px #9b9386, -15px 15px #9b9386, -16px 16px #9b9386, -17px 17px #9b9386, -18px 18px #9b9386, -19px 19px #9b9386, -20px 20px #9b9386, -21px 21px #9b9386, -22px 22px #9b9386, -23px 23px #9b9386, -24px 24px #9b9386, -25px 25px #9b9386, -26px 26px #9b9386, -27px 27px #9b9386, -28px 28px #9b9386, -29px 29px #9b9386, -30px 30px #9b9386, -31px 31px #9b9386, -32px 32px #9b9386, -33px 33px #9b9386, -34px 34px #9b9386, -35px 35px #9b9386, -36px 36px #9b9386, -37px 37px #9b9386, -38px 38px #9b9386, -39px 39px #9b9386, -40px 40px #9b9386, -41px 41px #9b9386, -42px 42px #9b9386, -43px 43px #9b9386, -44px 44px #9b9386, -45px 45px #9b9386, -46px 46px #9b9386, -47px 47px #9b9386, -48px 48px #9b9386, -49px 49px #9b9386, -50px 50px #9b9386, -51px 51px #9b9386, -52px 52px #9b9386, -53px 53px #9b9386, -54px 54px #9b9386, -55px 55px #9b9386, -56px 56px #9b9386, -57px 57px #9b9386, -58px 58px #9b9386, -59px 59px #9b9386, -60px 60px #9b9386, -61px 61px #9b9386, -62px 62px #9b9386, -63px 63px #9b9386, -64px 64px #9b9386, -65px 65px #9b9386, -66px 66px #9b9386, -67px 67px #9b9386, -68px 68px #9b9386, -69px 69px #9b9386, -70px 70px #9b9386, -71px 71px #9b9386, -72px 72px #9b9386, -73px 73px #9b9386, -74px 74px #9b9386, -75px 75px #9b9386, -76px 76px #9b9386, -77px 77px #9b9386, -78px 78px #9b9386, -79px 79px #9b9386, -80px 80px #9b9386, -81px 81px #9b9386, -82px 82px #9b9386, -83px 83px #9b9386, -84px 84px #9b9386, -85px 85px #9b9386; }
  .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 #cfcfcf, -1px 1px #cfcfcf, -2px 2px #cfcfcf, -3px 3px #cfcfcf, -4px 4px #cfcfcf, -5px 5px #cfcfcf, -6px 6px #cfcfcf, -7px 7px #cfcfcf, -8px 8px #cfcfcf, -9px 9px #cfcfcf, -10px 10px #cfcfcf, -11px 11px #cfcfcf, -12px 12px #cfcfcf, -13px 13px #cfcfcf, -14px 14px #cfcfcf, -15px 15px #cfcfcf, -16px 16px #cfcfcf, -17px 17px #cfcfcf, -18px 18px #cfcfcf, -19px 19px #cfcfcf, -20px 20px #cfcfcf, -21px 21px #cfcfcf, -22px 22px #cfcfcf, -23px 23px #cfcfcf, -24px 24px #cfcfcf, -25px 25px #cfcfcf, -26px 26px #cfcfcf, -27px 27px #cfcfcf, -28px 28px #cfcfcf, -29px 29px #cfcfcf, -30px 30px #cfcfcf, -31px 31px #cfcfcf, -32px 32px #cfcfcf, -33px 33px #cfcfcf, -34px 34px #cfcfcf, -35px 35px #cfcfcf, -36px 36px #cfcfcf, -37px 37px #cfcfcf, -38px 38px #cfcfcf, -39px 39px #cfcfcf, -40px 40px #cfcfcf, -41px 41px #cfcfcf, -42px 42px #cfcfcf, -43px 43px #cfcfcf, -44px 44px #cfcfcf, -45px 45px #cfcfcf, -46px 46px #cfcfcf, -47px 47px #cfcfcf, -48px 48px #cfcfcf, -49px 49px #cfcfcf, -50px 50px #cfcfcf, -51px 51px #cfcfcf, -52px 52px #cfcfcf, -53px 53px #cfcfcf, -54px 54px #cfcfcf, -55px 55px #cfcfcf, -56px 56px #cfcfcf, -57px 57px #cfcfcf, -58px 58px #cfcfcf, -59px 59px #cfcfcf, -60px 60px #cfcfcf, -61px 61px #cfcfcf, -62px 62px #cfcfcf, -63px 63px #cfcfcf, -64px 64px #cfcfcf, -65px 65px #cfcfcf, -66px 66px #cfcfcf, -67px 67px #cfcfcf, -68px 68px #cfcfcf, -69px 69px #cfcfcf, -70px 70px #cfcfcf, -71px 71px #cfcfcf, -72px 72px #cfcfcf, -73px 73px #cfcfcf, -74px 74px #cfcfcf, -75px 75px #cfcfcf, -76px 76px #cfcfcf, -77px 77px #cfcfcf, -78px 78px #cfcfcf, -79px 79px #cfcfcf, -80px 80px #cfcfcf, -81px 81px #cfcfcf, -82px 82px #cfcfcf, -83px 83px #cfcfcf, -84px 84px #cfcfcf, -85px 85px #cfcfcf; }
  .btn-longshadow-left.btn-color-5:active, .btn-longshadow-left.btn-color-5.active, .btn-longshadow-left.btn-color-5.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
/*
 * Button Sizes
 *
 * This file creates the various button sizes
 * (ex. .button-large, .button-small, etc.)
 */
.btn-giant {
  font-size: 1.75em;
  height: 70px;
  line-height: 70px;
  padding: 0 70px; }

.btn-jumbo {
  font-size: 1.5em;
  height: 60px;
  line-height: 60px;
  padding: 0 60px; }

.btn-large {
  font-size: 1.25em;
  height: 50px;
  line-height: 50px;
  padding: 0 50px; }

.btn-normal {
  font-size: 1em;
  height: 40px;
  line-height: 40px;
  padding: 0 40px; }

.btn-small {
  font-size: 0.75em;
  height: 30px;
  line-height: 30px;
  padding: 0 30px; }

.btn-tiny {
  font-size: 0.6em;
  height: 24px;
  line-height: 24px;
  padding: 0 24px; }
