/*--------------------------------------------------------------
 # 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: #0f314c;
  border-color: #0f314c;
  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: #123959;
    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: #143047;
    border-color: #051019;
    color: #071621;
    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: #0f314c;
  border-color: #0f314c;
  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: #174c77;
    border-color: #174c77;
    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: #143047;
    border-color: #143047;
    color: #071621; }

.btn-color-2, .btn-color-2-flat {
  background-color: #63899b;
  border-color: #63899b;
  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: #82a1af;
    border-color: #82a1af;
    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: #70848e;
    border-color: #70848e;
    color: #4f6d7c; }

.btn-color-3, .btn-color-3-flat {
  background-color: #222;
  border-color: #222;
  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: #3c3c3c;
    border-color: #3c3c3c;
    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: #222;
    border-color: #222;
    color: #090909; }

.btn-color-4, .btn-color-4-flat {
  background-color: #3390af;
  border-color: #3390af;
  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: #4baaca;
    border-color: #4baaca;
    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: #3e8aa4;
    border-color: #3e8aa4;
    color: #277088; }

.btn-color-5, .btn-color-5-flat {
  background-color: #0f314c;
  border-color: #0f314c;
  color: #fff; }
  .btn-color-5:visited, .btn-color-5-flat:visited {
    color: #fff; }
  .btn-color-5:hover, .btn-color-5-flat:hover, .btn-color-5:focus, .btn-color-5-flat:focus {
    background-color: #174c77;
    border-color: #174c77;
    color: #fff; }
  .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: #143047;
    border-color: #143047;
    color: #071621; }
/*
 * 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(23, 76, 119, 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: #0f314c; }
    .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(23, 76, 119, 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(20, 48, 71, 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: #63899b; }
    .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(130, 161, 175, 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(112, 132, 142, 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: #222; }
    .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(60, 60, 60, 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(34, 34, 34, 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: #3390af; }
    .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(75, 170, 202, 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(62, 138, 164, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-5, .btn-border-thin.btn-color-5, .btn-border-thick.btn-color-5 {
    color: #0f314c; }
    .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(23, 76, 119, 0.9);
      color: rgba(255, 255, 255, 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(20, 48, 71, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-giant, .btn-border-thin.btn-giant, .btn-border-thick.btn-giant {
    line-height: 66px; }
  .btn-border.btn-jumbo, .btn-border-thin.btn-jumbo, .btn-border-thick.btn-jumbo {
    line-height: 56px; }
  .btn-border.btn-large, .btn-border-thin.btn-large, .btn-border-thick.btn-large {
    line-height: 46px; }
  .btn-border.btn-normal, .btn-border-thin.btn-normal, .btn-border-thick.btn-normal {
    line-height: 36px; }
  .btn-border.btn-small, .btn-border-thin.btn-small, .btn-border-thick.btn-small {
    line-height: 26px; }
  .btn-border.btn-tiny, .btn-border-thin.btn-tiny, .btn-border-thick.btn-tiny {
    line-height: 20px; }
/*
 * Border Buttons
 *
 * These buttons have no fill they only have a
 * border to define their hit target.
 */
.btn-borderless {
  background: none;
  border: none;
  padding: 0 8px !important;
  color: #0f314c;
  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: #0f314c; }
  .btn-borderless.btn-color-2 {
    color: #63899b; }
  .btn-borderless.btn-color-3 {
    color: #222; }
  .btn-borderless.btn-color-4 {
    color: #3390af; }
  .btn-borderless.btn-color-5 {
    color: #0f314c; }
  .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: #0b2337;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#123959, #0b2337);
  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(#16476e, #091e2e); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #143047;
  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: #0b2337;
  background: linear-gradient(#133f61, #0b2337); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#16476e, #091e2e); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #071621;
    background: #143047; }
  .btn-raised.btn-color-2 {
    border-color: #597b8b;
    background: linear-gradient(#7295a5, #597b8b); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#7c9cab, #557685); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #4f6d7c;
    background: #70848e; }
  .btn-raised.btn-color-3 {
    border-color: #151515;
    background: linear-gradient(#2f2f2f, #151515); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#363636, #101010); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #090909;
    background: #222; }
  .btn-raised.btn-color-4 {
    border-color: #2d809b;
    background: linear-gradient(#39a0c3, #2d809b); }
  .btn-raised.btn-color-4:hover, .btn-raised.btn-color-4:focus {
    background: linear-gradient(#43a7c8, #2b7993); }
  .btn-raised.btn-color-4:active, .btn-raised.btn-color-4.active, .btn-raised.btn-color-4.is-active {
    border-color: #277088;
    background: #3e8aa4; }
  .btn-raised.btn-color-5 {
    border-color: #0b2337;
    background: linear-gradient(#133f61, #0b2337); }
  .btn-raised.btn-color-5:hover, .btn-raised.btn-color-5:focus {
    background: linear-gradient(#16476e, #091e2e); }
  .btn-raised.btn-color-5:active, .btn-raised.btn-color-5.active, .btn-raised.btn-color-5.is-active {
    border-color: #071621;
    background: #143047; }
/*
 * 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 #071621, 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 #051019, 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 #4f6d7c, 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 #4b6876, 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 #3b525d, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #090909, 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 #030303, 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 #000, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-4 {
    box-shadow: 0 7px 0 #277088, 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 #256980, 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 #1c4f60, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-5 {
    box-shadow: 0 7px 0 #071621, 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 #051019, 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 #000, 0 3px 3px rgba(0, 0, 0, 0.2); }
/*
 * Glowing Buttons
 *
 * A pulse like glow that appears
 * rythmically around the edges of
 * a button.
 */
/*
 * Glow animation mixin for Compass users
 *
 */
/*
 * Glowing Keyframes
 *
 */
@keyframes glowing {
  from {
    box-shadow: 0 0 0 rgba(44, 154, 219, 0.3); }

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

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-color-5 {
    from {
      box-shadow: 0 0 0 rgba(15, 49, 76, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(15, 49, 76, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(15, 49, 76, 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(23, 76, 119, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #071621;
  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: #123959;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #0c293f; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(15, 49, 76, 0.95);
  border-color: #071621; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #091e2e; }
  .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: #0b2337; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(99, 137, 155, 0.95);
    border-color: #4f6d7c; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #557685; }
  .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: #597b8b; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(34, 34, 34, 0.95);
    border-color: #090909; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #101010; }
  .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: #151515; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list {
    background: rgba(51, 144, 175, 0.95);
    border-color: #277088; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #2b7993; }
  .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: #2d809b; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list {
    background: rgba(15, 49, 76, 0.95);
    border-color: #071621; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #091e2e; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a {
    color: #fff; }
    .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #0b2337; }
/*
 * 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 #071621, 1px 1px #071621, 2px 2px #071621, 3px 3px #071621, 4px 4px #071621, 5px 5px #071621, 6px 6px #071621, 7px 7px #071621, 8px 8px #071621, 9px 9px #071621, 10px 10px #071621, 11px 11px #071621, 12px 12px #071621, 13px 13px #071621, 14px 14px #071621, 15px 15px #071621, 16px 16px #071621, 17px 17px #071621, 18px 18px #071621, 19px 19px #071621, 20px 20px #071621, 21px 21px #071621, 22px 22px #071621, 23px 23px #071621, 24px 24px #071621, 25px 25px #071621, 26px 26px #071621, 27px 27px #071621, 28px 28px #071621, 29px 29px #071621, 30px 30px #071621, 31px 31px #071621, 32px 32px #071621, 33px 33px #071621, 34px 34px #071621, 35px 35px #071621, 36px 36px #071621, 37px 37px #071621, 38px 38px #071621, 39px 39px #071621, 40px 40px #071621, 41px 41px #071621, 42px 42px #071621, 43px 43px #071621, 44px 44px #071621, 45px 45px #071621, 46px 46px #071621, 47px 47px #071621, 48px 48px #071621, 49px 49px #071621, 50px 50px #071621, 51px 51px #071621, 52px 52px #071621, 53px 53px #071621, 54px 54px #071621, 55px 55px #071621, 56px 56px #071621, 57px 57px #071621, 58px 58px #071621, 59px 59px #071621, 60px 60px #071621, 61px 61px #071621, 62px 62px #071621, 63px 63px #071621, 64px 64px #071621, 65px 65px #071621, 66px 66px #071621, 67px 67px #071621, 68px 68px #071621, 69px 69px #071621, 70px 70px #071621, 71px 71px #071621, 72px 72px #071621, 73px 73px #071621, 74px 74px #071621, 75px 75px #071621, 76px 76px #071621, 77px 77px #071621, 78px 78px #071621, 79px 79px #071621, 80px 80px #071621, 81px 81px #071621, 82px 82px #071621, 83px 83px #071621, 84px 84px #071621, 85px 85px #071621; }
  .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 #4f6d7c, 1px 1px #4f6d7c, 2px 2px #4f6d7c, 3px 3px #4f6d7c, 4px 4px #4f6d7c, 5px 5px #4f6d7c, 6px 6px #4f6d7c, 7px 7px #4f6d7c, 8px 8px #4f6d7c, 9px 9px #4f6d7c, 10px 10px #4f6d7c, 11px 11px #4f6d7c, 12px 12px #4f6d7c, 13px 13px #4f6d7c, 14px 14px #4f6d7c, 15px 15px #4f6d7c, 16px 16px #4f6d7c, 17px 17px #4f6d7c, 18px 18px #4f6d7c, 19px 19px #4f6d7c, 20px 20px #4f6d7c, 21px 21px #4f6d7c, 22px 22px #4f6d7c, 23px 23px #4f6d7c, 24px 24px #4f6d7c, 25px 25px #4f6d7c, 26px 26px #4f6d7c, 27px 27px #4f6d7c, 28px 28px #4f6d7c, 29px 29px #4f6d7c, 30px 30px #4f6d7c, 31px 31px #4f6d7c, 32px 32px #4f6d7c, 33px 33px #4f6d7c, 34px 34px #4f6d7c, 35px 35px #4f6d7c, 36px 36px #4f6d7c, 37px 37px #4f6d7c, 38px 38px #4f6d7c, 39px 39px #4f6d7c, 40px 40px #4f6d7c, 41px 41px #4f6d7c, 42px 42px #4f6d7c, 43px 43px #4f6d7c, 44px 44px #4f6d7c, 45px 45px #4f6d7c, 46px 46px #4f6d7c, 47px 47px #4f6d7c, 48px 48px #4f6d7c, 49px 49px #4f6d7c, 50px 50px #4f6d7c, 51px 51px #4f6d7c, 52px 52px #4f6d7c, 53px 53px #4f6d7c, 54px 54px #4f6d7c, 55px 55px #4f6d7c, 56px 56px #4f6d7c, 57px 57px #4f6d7c, 58px 58px #4f6d7c, 59px 59px #4f6d7c, 60px 60px #4f6d7c, 61px 61px #4f6d7c, 62px 62px #4f6d7c, 63px 63px #4f6d7c, 64px 64px #4f6d7c, 65px 65px #4f6d7c, 66px 66px #4f6d7c, 67px 67px #4f6d7c, 68px 68px #4f6d7c, 69px 69px #4f6d7c, 70px 70px #4f6d7c, 71px 71px #4f6d7c, 72px 72px #4f6d7c, 73px 73px #4f6d7c, 74px 74px #4f6d7c, 75px 75px #4f6d7c, 76px 76px #4f6d7c, 77px 77px #4f6d7c, 78px 78px #4f6d7c, 79px 79px #4f6d7c, 80px 80px #4f6d7c, 81px 81px #4f6d7c, 82px 82px #4f6d7c, 83px 83px #4f6d7c, 84px 84px #4f6d7c, 85px 85px #4f6d7c; }
  .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 #090909, 1px 1px #090909, 2px 2px #090909, 3px 3px #090909, 4px 4px #090909, 5px 5px #090909, 6px 6px #090909, 7px 7px #090909, 8px 8px #090909, 9px 9px #090909, 10px 10px #090909, 11px 11px #090909, 12px 12px #090909, 13px 13px #090909, 14px 14px #090909, 15px 15px #090909, 16px 16px #090909, 17px 17px #090909, 18px 18px #090909, 19px 19px #090909, 20px 20px #090909, 21px 21px #090909, 22px 22px #090909, 23px 23px #090909, 24px 24px #090909, 25px 25px #090909, 26px 26px #090909, 27px 27px #090909, 28px 28px #090909, 29px 29px #090909, 30px 30px #090909, 31px 31px #090909, 32px 32px #090909, 33px 33px #090909, 34px 34px #090909, 35px 35px #090909, 36px 36px #090909, 37px 37px #090909, 38px 38px #090909, 39px 39px #090909, 40px 40px #090909, 41px 41px #090909, 42px 42px #090909, 43px 43px #090909, 44px 44px #090909, 45px 45px #090909, 46px 46px #090909, 47px 47px #090909, 48px 48px #090909, 49px 49px #090909, 50px 50px #090909, 51px 51px #090909, 52px 52px #090909, 53px 53px #090909, 54px 54px #090909, 55px 55px #090909, 56px 56px #090909, 57px 57px #090909, 58px 58px #090909, 59px 59px #090909, 60px 60px #090909, 61px 61px #090909, 62px 62px #090909, 63px 63px #090909, 64px 64px #090909, 65px 65px #090909, 66px 66px #090909, 67px 67px #090909, 68px 68px #090909, 69px 69px #090909, 70px 70px #090909, 71px 71px #090909, 72px 72px #090909, 73px 73px #090909, 74px 74px #090909, 75px 75px #090909, 76px 76px #090909, 77px 77px #090909, 78px 78px #090909, 79px 79px #090909, 80px 80px #090909, 81px 81px #090909, 82px 82px #090909, 83px 83px #090909, 84px 84px #090909, 85px 85px #090909; }
  .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 #277088, 1px 1px #277088, 2px 2px #277088, 3px 3px #277088, 4px 4px #277088, 5px 5px #277088, 6px 6px #277088, 7px 7px #277088, 8px 8px #277088, 9px 9px #277088, 10px 10px #277088, 11px 11px #277088, 12px 12px #277088, 13px 13px #277088, 14px 14px #277088, 15px 15px #277088, 16px 16px #277088, 17px 17px #277088, 18px 18px #277088, 19px 19px #277088, 20px 20px #277088, 21px 21px #277088, 22px 22px #277088, 23px 23px #277088, 24px 24px #277088, 25px 25px #277088, 26px 26px #277088, 27px 27px #277088, 28px 28px #277088, 29px 29px #277088, 30px 30px #277088, 31px 31px #277088, 32px 32px #277088, 33px 33px #277088, 34px 34px #277088, 35px 35px #277088, 36px 36px #277088, 37px 37px #277088, 38px 38px #277088, 39px 39px #277088, 40px 40px #277088, 41px 41px #277088, 42px 42px #277088, 43px 43px #277088, 44px 44px #277088, 45px 45px #277088, 46px 46px #277088, 47px 47px #277088, 48px 48px #277088, 49px 49px #277088, 50px 50px #277088, 51px 51px #277088, 52px 52px #277088, 53px 53px #277088, 54px 54px #277088, 55px 55px #277088, 56px 56px #277088, 57px 57px #277088, 58px 58px #277088, 59px 59px #277088, 60px 60px #277088, 61px 61px #277088, 62px 62px #277088, 63px 63px #277088, 64px 64px #277088, 65px 65px #277088, 66px 66px #277088, 67px 67px #277088, 68px 68px #277088, 69px 69px #277088, 70px 70px #277088, 71px 71px #277088, 72px 72px #277088, 73px 73px #277088, 74px 74px #277088, 75px 75px #277088, 76px 76px #277088, 77px 77px #277088, 78px 78px #277088, 79px 79px #277088, 80px 80px #277088, 81px 81px #277088, 82px 82px #277088, 83px 83px #277088, 84px 84px #277088, 85px 85px #277088; }
  .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 #071621, 1px 1px #071621, 2px 2px #071621, 3px 3px #071621, 4px 4px #071621, 5px 5px #071621, 6px 6px #071621, 7px 7px #071621, 8px 8px #071621, 9px 9px #071621, 10px 10px #071621, 11px 11px #071621, 12px 12px #071621, 13px 13px #071621, 14px 14px #071621, 15px 15px #071621, 16px 16px #071621, 17px 17px #071621, 18px 18px #071621, 19px 19px #071621, 20px 20px #071621, 21px 21px #071621, 22px 22px #071621, 23px 23px #071621, 24px 24px #071621, 25px 25px #071621, 26px 26px #071621, 27px 27px #071621, 28px 28px #071621, 29px 29px #071621, 30px 30px #071621, 31px 31px #071621, 32px 32px #071621, 33px 33px #071621, 34px 34px #071621, 35px 35px #071621, 36px 36px #071621, 37px 37px #071621, 38px 38px #071621, 39px 39px #071621, 40px 40px #071621, 41px 41px #071621, 42px 42px #071621, 43px 43px #071621, 44px 44px #071621, 45px 45px #071621, 46px 46px #071621, 47px 47px #071621, 48px 48px #071621, 49px 49px #071621, 50px 50px #071621, 51px 51px #071621, 52px 52px #071621, 53px 53px #071621, 54px 54px #071621, 55px 55px #071621, 56px 56px #071621, 57px 57px #071621, 58px 58px #071621, 59px 59px #071621, 60px 60px #071621, 61px 61px #071621, 62px 62px #071621, 63px 63px #071621, 64px 64px #071621, 65px 65px #071621, 66px 66px #071621, 67px 67px #071621, 68px 68px #071621, 69px 69px #071621, 70px 70px #071621, 71px 71px #071621, 72px 72px #071621, 73px 73px #071621, 74px 74px #071621, 75px 75px #071621, 76px 76px #071621, 77px 77px #071621, 78px 78px #071621, 79px 79px #071621, 80px 80px #071621, 81px 81px #071621, 82px 82px #071621, 83px 83px #071621, 84px 84px #071621, 85px 85px #071621; }
  .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 #071621, -1px 1px #071621, -2px 2px #071621, -3px 3px #071621, -4px 4px #071621, -5px 5px #071621, -6px 6px #071621, -7px 7px #071621, -8px 8px #071621, -9px 9px #071621, -10px 10px #071621, -11px 11px #071621, -12px 12px #071621, -13px 13px #071621, -14px 14px #071621, -15px 15px #071621, -16px 16px #071621, -17px 17px #071621, -18px 18px #071621, -19px 19px #071621, -20px 20px #071621, -21px 21px #071621, -22px 22px #071621, -23px 23px #071621, -24px 24px #071621, -25px 25px #071621, -26px 26px #071621, -27px 27px #071621, -28px 28px #071621, -29px 29px #071621, -30px 30px #071621, -31px 31px #071621, -32px 32px #071621, -33px 33px #071621, -34px 34px #071621, -35px 35px #071621, -36px 36px #071621, -37px 37px #071621, -38px 38px #071621, -39px 39px #071621, -40px 40px #071621, -41px 41px #071621, -42px 42px #071621, -43px 43px #071621, -44px 44px #071621, -45px 45px #071621, -46px 46px #071621, -47px 47px #071621, -48px 48px #071621, -49px 49px #071621, -50px 50px #071621, -51px 51px #071621, -52px 52px #071621, -53px 53px #071621, -54px 54px #071621, -55px 55px #071621, -56px 56px #071621, -57px 57px #071621, -58px 58px #071621, -59px 59px #071621, -60px 60px #071621, -61px 61px #071621, -62px 62px #071621, -63px 63px #071621, -64px 64px #071621, -65px 65px #071621, -66px 66px #071621, -67px 67px #071621, -68px 68px #071621, -69px 69px #071621, -70px 70px #071621, -71px 71px #071621, -72px 72px #071621, -73px 73px #071621, -74px 74px #071621, -75px 75px #071621, -76px 76px #071621, -77px 77px #071621, -78px 78px #071621, -79px 79px #071621, -80px 80px #071621, -81px 81px #071621, -82px 82px #071621, -83px 83px #071621, -84px 84px #071621, -85px 85px #071621; }
  .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 #4f6d7c, -1px 1px #4f6d7c, -2px 2px #4f6d7c, -3px 3px #4f6d7c, -4px 4px #4f6d7c, -5px 5px #4f6d7c, -6px 6px #4f6d7c, -7px 7px #4f6d7c, -8px 8px #4f6d7c, -9px 9px #4f6d7c, -10px 10px #4f6d7c, -11px 11px #4f6d7c, -12px 12px #4f6d7c, -13px 13px #4f6d7c, -14px 14px #4f6d7c, -15px 15px #4f6d7c, -16px 16px #4f6d7c, -17px 17px #4f6d7c, -18px 18px #4f6d7c, -19px 19px #4f6d7c, -20px 20px #4f6d7c, -21px 21px #4f6d7c, -22px 22px #4f6d7c, -23px 23px #4f6d7c, -24px 24px #4f6d7c, -25px 25px #4f6d7c, -26px 26px #4f6d7c, -27px 27px #4f6d7c, -28px 28px #4f6d7c, -29px 29px #4f6d7c, -30px 30px #4f6d7c, -31px 31px #4f6d7c, -32px 32px #4f6d7c, -33px 33px #4f6d7c, -34px 34px #4f6d7c, -35px 35px #4f6d7c, -36px 36px #4f6d7c, -37px 37px #4f6d7c, -38px 38px #4f6d7c, -39px 39px #4f6d7c, -40px 40px #4f6d7c, -41px 41px #4f6d7c, -42px 42px #4f6d7c, -43px 43px #4f6d7c, -44px 44px #4f6d7c, -45px 45px #4f6d7c, -46px 46px #4f6d7c, -47px 47px #4f6d7c, -48px 48px #4f6d7c, -49px 49px #4f6d7c, -50px 50px #4f6d7c, -51px 51px #4f6d7c, -52px 52px #4f6d7c, -53px 53px #4f6d7c, -54px 54px #4f6d7c, -55px 55px #4f6d7c, -56px 56px #4f6d7c, -57px 57px #4f6d7c, -58px 58px #4f6d7c, -59px 59px #4f6d7c, -60px 60px #4f6d7c, -61px 61px #4f6d7c, -62px 62px #4f6d7c, -63px 63px #4f6d7c, -64px 64px #4f6d7c, -65px 65px #4f6d7c, -66px 66px #4f6d7c, -67px 67px #4f6d7c, -68px 68px #4f6d7c, -69px 69px #4f6d7c, -70px 70px #4f6d7c, -71px 71px #4f6d7c, -72px 72px #4f6d7c, -73px 73px #4f6d7c, -74px 74px #4f6d7c, -75px 75px #4f6d7c, -76px 76px #4f6d7c, -77px 77px #4f6d7c, -78px 78px #4f6d7c, -79px 79px #4f6d7c, -80px 80px #4f6d7c, -81px 81px #4f6d7c, -82px 82px #4f6d7c, -83px 83px #4f6d7c, -84px 84px #4f6d7c, -85px 85px #4f6d7c; }
  .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 #090909, -1px 1px #090909, -2px 2px #090909, -3px 3px #090909, -4px 4px #090909, -5px 5px #090909, -6px 6px #090909, -7px 7px #090909, -8px 8px #090909, -9px 9px #090909, -10px 10px #090909, -11px 11px #090909, -12px 12px #090909, -13px 13px #090909, -14px 14px #090909, -15px 15px #090909, -16px 16px #090909, -17px 17px #090909, -18px 18px #090909, -19px 19px #090909, -20px 20px #090909, -21px 21px #090909, -22px 22px #090909, -23px 23px #090909, -24px 24px #090909, -25px 25px #090909, -26px 26px #090909, -27px 27px #090909, -28px 28px #090909, -29px 29px #090909, -30px 30px #090909, -31px 31px #090909, -32px 32px #090909, -33px 33px #090909, -34px 34px #090909, -35px 35px #090909, -36px 36px #090909, -37px 37px #090909, -38px 38px #090909, -39px 39px #090909, -40px 40px #090909, -41px 41px #090909, -42px 42px #090909, -43px 43px #090909, -44px 44px #090909, -45px 45px #090909, -46px 46px #090909, -47px 47px #090909, -48px 48px #090909, -49px 49px #090909, -50px 50px #090909, -51px 51px #090909, -52px 52px #090909, -53px 53px #090909, -54px 54px #090909, -55px 55px #090909, -56px 56px #090909, -57px 57px #090909, -58px 58px #090909, -59px 59px #090909, -60px 60px #090909, -61px 61px #090909, -62px 62px #090909, -63px 63px #090909, -64px 64px #090909, -65px 65px #090909, -66px 66px #090909, -67px 67px #090909, -68px 68px #090909, -69px 69px #090909, -70px 70px #090909, -71px 71px #090909, -72px 72px #090909, -73px 73px #090909, -74px 74px #090909, -75px 75px #090909, -76px 76px #090909, -77px 77px #090909, -78px 78px #090909, -79px 79px #090909, -80px 80px #090909, -81px 81px #090909, -82px 82px #090909, -83px 83px #090909, -84px 84px #090909, -85px 85px #090909; }
  .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 #277088, -1px 1px #277088, -2px 2px #277088, -3px 3px #277088, -4px 4px #277088, -5px 5px #277088, -6px 6px #277088, -7px 7px #277088, -8px 8px #277088, -9px 9px #277088, -10px 10px #277088, -11px 11px #277088, -12px 12px #277088, -13px 13px #277088, -14px 14px #277088, -15px 15px #277088, -16px 16px #277088, -17px 17px #277088, -18px 18px #277088, -19px 19px #277088, -20px 20px #277088, -21px 21px #277088, -22px 22px #277088, -23px 23px #277088, -24px 24px #277088, -25px 25px #277088, -26px 26px #277088, -27px 27px #277088, -28px 28px #277088, -29px 29px #277088, -30px 30px #277088, -31px 31px #277088, -32px 32px #277088, -33px 33px #277088, -34px 34px #277088, -35px 35px #277088, -36px 36px #277088, -37px 37px #277088, -38px 38px #277088, -39px 39px #277088, -40px 40px #277088, -41px 41px #277088, -42px 42px #277088, -43px 43px #277088, -44px 44px #277088, -45px 45px #277088, -46px 46px #277088, -47px 47px #277088, -48px 48px #277088, -49px 49px #277088, -50px 50px #277088, -51px 51px #277088, -52px 52px #277088, -53px 53px #277088, -54px 54px #277088, -55px 55px #277088, -56px 56px #277088, -57px 57px #277088, -58px 58px #277088, -59px 59px #277088, -60px 60px #277088, -61px 61px #277088, -62px 62px #277088, -63px 63px #277088, -64px 64px #277088, -65px 65px #277088, -66px 66px #277088, -67px 67px #277088, -68px 68px #277088, -69px 69px #277088, -70px 70px #277088, -71px 71px #277088, -72px 72px #277088, -73px 73px #277088, -74px 74px #277088, -75px 75px #277088, -76px 76px #277088, -77px 77px #277088, -78px 78px #277088, -79px 79px #277088, -80px 80px #277088, -81px 81px #277088, -82px 82px #277088, -83px 83px #277088, -84px 84px #277088, -85px 85px #277088; }
  .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 #071621, -1px 1px #071621, -2px 2px #071621, -3px 3px #071621, -4px 4px #071621, -5px 5px #071621, -6px 6px #071621, -7px 7px #071621, -8px 8px #071621, -9px 9px #071621, -10px 10px #071621, -11px 11px #071621, -12px 12px #071621, -13px 13px #071621, -14px 14px #071621, -15px 15px #071621, -16px 16px #071621, -17px 17px #071621, -18px 18px #071621, -19px 19px #071621, -20px 20px #071621, -21px 21px #071621, -22px 22px #071621, -23px 23px #071621, -24px 24px #071621, -25px 25px #071621, -26px 26px #071621, -27px 27px #071621, -28px 28px #071621, -29px 29px #071621, -30px 30px #071621, -31px 31px #071621, -32px 32px #071621, -33px 33px #071621, -34px 34px #071621, -35px 35px #071621, -36px 36px #071621, -37px 37px #071621, -38px 38px #071621, -39px 39px #071621, -40px 40px #071621, -41px 41px #071621, -42px 42px #071621, -43px 43px #071621, -44px 44px #071621, -45px 45px #071621, -46px 46px #071621, -47px 47px #071621, -48px 48px #071621, -49px 49px #071621, -50px 50px #071621, -51px 51px #071621, -52px 52px #071621, -53px 53px #071621, -54px 54px #071621, -55px 55px #071621, -56px 56px #071621, -57px 57px #071621, -58px 58px #071621, -59px 59px #071621, -60px 60px #071621, -61px 61px #071621, -62px 62px #071621, -63px 63px #071621, -64px 64px #071621, -65px 65px #071621, -66px 66px #071621, -67px 67px #071621, -68px 68px #071621, -69px 69px #071621, -70px 70px #071621, -71px 71px #071621, -72px 72px #071621, -73px 73px #071621, -74px 74px #071621, -75px 75px #071621, -76px 76px #071621, -77px 77px #071621, -78px 78px #071621, -79px 79px #071621, -80px 80px #071621, -81px 81px #071621, -82px 82px #071621, -83px 83px #071621, -84px 84px #071621, -85px 85px #071621; }
  .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; }
