/*--------------------------------------------------------------
 # 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: #f4f9fc;
  background-color: #2f485b;
  border-color: #2f485b;
  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: #f4f9fc; }
  .btn:hover, .btn:focus {
    background-color: #345065;
    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: #364754;
    border-color: #1a2833;
    color: #1e2d39;
    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: #2f485b;
  border-color: #2f485b;
  color: #f4f9fc; }
  .btn-color-1:visited, .btn-color-1-flat:visited {
    color: #f4f9fc; }
  .btn-color-1:hover, .btn-color-1-flat:hover, .btn-color-1:focus, .btn-color-1-flat:focus {
    background-color: #40637d;
    border-color: #40637d;
    color: #f4f9fc; }
  .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: #364754;
    border-color: #364754;
    color: #1e2d39; }

.btn-color-2, .btn-color-2-flat {
  background-color: #6a96b2;
  border-color: #6a96b2;
  color: #f4f9fc; }
  .btn-color-2:visited, .btn-color-2-flat:visited {
    color: #f4f9fc; }
  .btn-color-2:hover, .btn-color-2-flat:hover, .btn-color-2:focus, .btn-color-2-flat:focus {
    background-color: #8caec3;
    border-color: #8caec3;
    color: #f4f9fc; }
  .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: #7593a7;
    border-color: #7593a7;
    color: #4f7d9a; }

.btn-color-3, .btn-color-3-flat {
  background-color: #977967;
  border-color: #977967;
  color: #f4f9fc; }
  .btn-color-3:visited, .btn-color-3-flat:visited {
    color: #f4f9fc; }
  .btn-color-3:hover, .btn-color-3-flat:hover, .btn-color-3:focus, .btn-color-3-flat:focus {
    background-color: #ac9485;
    border-color: #ac9485;
    color: #f4f9fc; }
  .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: #8a7c74;
    border-color: #8a7c74;
    color: #796152; }

.btn-color-4, .btn-color-4-flat {
  background-color: #5c6873;
  border-color: #5c6873;
  color: #f4f9fc; }
  .btn-color-4:visited, .btn-color-4-flat:visited {
    color: #f4f9fc; }
  .btn-color-4:hover, .btn-color-4-flat:hover, .btn-color-4:focus, .btn-color-4-flat:focus {
    background-color: #73828f;
    border-color: #73828f;
    color: #f4f9fc; }
  .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: #666869;
    border-color: #666869;
    color: #454e57; }

.btn-color-5, .btn-color-5-flat {
  background-color: #f4f9fc;
  border-color: #f4f9fc;
  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: #f5f9fb;
    border-color: #f5f9fb;
    color: #cce3f1; }
/*
 * 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(64, 99, 125, 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: #2f485b; }
    .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(64, 99, 125, 0.9);
      color: rgba(244, 249, 252, 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(54, 71, 84, 0.7);
      color: rgba(244, 249, 252, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-2, .btn-border-thin.btn-color-2, .btn-border-thick.btn-color-2 {
    color: #6a96b2; }
    .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(140, 174, 195, 0.9);
      color: rgba(244, 249, 252, 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(117, 147, 167, 0.7);
      color: rgba(244, 249, 252, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-3, .btn-border-thin.btn-color-3, .btn-border-thick.btn-color-3 {
    color: #977967; }
    .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(172, 148, 133, 0.9);
      color: rgba(244, 249, 252, 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(138, 124, 116, 0.7);
      color: rgba(244, 249, 252, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-4, .btn-border-thin.btn-color-4, .btn-border-thick.btn-color-4 {
    color: #5c6873; }
    .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(115, 130, 143, 0.9);
      color: rgba(244, 249, 252, 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(102, 104, 105, 0.7);
      color: rgba(244, 249, 252, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-5, .btn-border-thin.btn-color-5, .btn-border-thick.btn-color-5 {
    color: #f4f9fc; }
    .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(245, 249, 251, 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: #2f485b;
  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: #2f485b; }
  .btn-borderless.btn-color-2 {
    color: #6a96b2; }
  .btn-borderless.btn-color-3 {
    color: #977967; }
  .btn-borderless.btn-color-4 {
    color: #5c6873; }
  .btn-borderless.btn-color-5 {
    color: #f4f9fc; }
  .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: #263b4a;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#345065, #263b4a);
  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(#3d5d76, #233543); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #364754;
  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: #263b4a;
  background: linear-gradient(#38556c, #263b4a); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#3d5d76, #233543); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #1e2d39;
    background: #364754; }
  .btn-raised.btn-color-2 {
    border-color: #598aa9;
    background: linear-gradient(#7ba2bb, #598aa9); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#85a9c0, #5585a4); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #4f7d9a;
    background: #7593a7; }
  .btn-raised.btn-color-3 {
    border-color: #886d5d;
    background: linear-gradient(#a28676, #886d5d); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#a88e7f, #826859); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #796152;
    background: #8a7c74; }
  .btn-raised.btn-color-4 {
    border-color: #515b65;
    background: linear-gradient(#677581, #515b65); }
  .btn-raised.btn-color-4:hover, .btn-raised.btn-color-4:focus {
    background: linear-gradient(#6e7c8a, #4c565f); }
  .btn-raised.btn-color-4:active, .btn-raised.btn-color-4.active, .btn-raised.btn-color-4.is-active {
    border-color: #454e57;
    background: #666869; }
  .btn-raised.btn-color-5 {
    border-color: #e0eef7;
    background: linear-gradient(#fff, #e0eef7); }
  .btn-raised.btn-color-5:hover, .btn-raised.btn-color-5:focus {
    background: linear-gradient(#fff, #d8eaf4); }
  .btn-raised.btn-color-5:active, .btn-raised.btn-color-5.active, .btn-raised.btn-color-5.is-active {
    border-color: #cce3f1;
    background: #f5f9fb; }
/*
 * 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 #0c1318, 0 8px 3px rgba(0, 0, 0, 0.2); }

.btn-3d:hover, .btn-3d:focus {
  box-shadow: 0 7px 0 #0c1318, 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 #0c1318, 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 #1e2d39, 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 #1a2833, 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 #0c1318, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-2 {
    box-shadow: 0 7px 0 #4f7d9a, 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 #4c7793, 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 #3e6178, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #796152, 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 #735c4e, 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 #5a483e, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-4 {
    box-shadow: 0 7px 0 #454e57, 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 #414951, 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 #2f353a, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-5 {
    box-shadow: 0 7px 0 #cce3f1, 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 #c4dfef, 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 #a4cde6, 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(47, 72, 91, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(47, 72, 91, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(47, 72, 91, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-color-5 {
    from {
      box-shadow: 0 0 0 rgba(244, 249, 252, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(244, 249, 252, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(244, 249, 252, 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(64, 99, 125, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #1e2d39;
  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: #f4f9fc;
  text-decoration: none; }
  .btn-dropdown-list > li > a:hover {
    color: #e8f2f9;
    background: #345065;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #2a4051; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(47, 72, 91, 0.95);
  border-color: #1e2d39; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #233543; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list > li > a {
    color: #f4f9fc; }
    .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list > li > a:hover {
      color: #e0eef7;
      background: #263b4a; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(106, 150, 178, 0.95);
    border-color: #4f7d9a; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #5585a4; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list > li > a {
    color: #f4f9fc; }
    .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list > li > a:hover {
      color: #e0eef7;
      background: #598aa9; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(151, 121, 103, 0.95);
    border-color: #796152; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #826859; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a {
    color: #f4f9fc; }
    .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a:hover {
      color: #e0eef7;
      background: #886d5d; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list {
    background: rgba(92, 104, 115, 0.95);
    border-color: #454e57; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #4c565f; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a {
    color: #f4f9fc; }
    .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a:hover {
      color: #e0eef7;
      background: #515b65; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list {
    background: rgba(244, 249, 252, 0.95);
    border-color: #cce3f1; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #d8eaf4; }
  .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: #e0eef7; }
/*
 * 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 #1e2d39, 1px 1px #1e2d39, 2px 2px #1e2d39, 3px 3px #1e2d39, 4px 4px #1e2d39, 5px 5px #1e2d39, 6px 6px #1e2d39, 7px 7px #1e2d39, 8px 8px #1e2d39, 9px 9px #1e2d39, 10px 10px #1e2d39, 11px 11px #1e2d39, 12px 12px #1e2d39, 13px 13px #1e2d39, 14px 14px #1e2d39, 15px 15px #1e2d39, 16px 16px #1e2d39, 17px 17px #1e2d39, 18px 18px #1e2d39, 19px 19px #1e2d39, 20px 20px #1e2d39, 21px 21px #1e2d39, 22px 22px #1e2d39, 23px 23px #1e2d39, 24px 24px #1e2d39, 25px 25px #1e2d39, 26px 26px #1e2d39, 27px 27px #1e2d39, 28px 28px #1e2d39, 29px 29px #1e2d39, 30px 30px #1e2d39, 31px 31px #1e2d39, 32px 32px #1e2d39, 33px 33px #1e2d39, 34px 34px #1e2d39, 35px 35px #1e2d39, 36px 36px #1e2d39, 37px 37px #1e2d39, 38px 38px #1e2d39, 39px 39px #1e2d39, 40px 40px #1e2d39, 41px 41px #1e2d39, 42px 42px #1e2d39, 43px 43px #1e2d39, 44px 44px #1e2d39, 45px 45px #1e2d39, 46px 46px #1e2d39, 47px 47px #1e2d39, 48px 48px #1e2d39, 49px 49px #1e2d39, 50px 50px #1e2d39, 51px 51px #1e2d39, 52px 52px #1e2d39, 53px 53px #1e2d39, 54px 54px #1e2d39, 55px 55px #1e2d39, 56px 56px #1e2d39, 57px 57px #1e2d39, 58px 58px #1e2d39, 59px 59px #1e2d39, 60px 60px #1e2d39, 61px 61px #1e2d39, 62px 62px #1e2d39, 63px 63px #1e2d39, 64px 64px #1e2d39, 65px 65px #1e2d39, 66px 66px #1e2d39, 67px 67px #1e2d39, 68px 68px #1e2d39, 69px 69px #1e2d39, 70px 70px #1e2d39, 71px 71px #1e2d39, 72px 72px #1e2d39, 73px 73px #1e2d39, 74px 74px #1e2d39, 75px 75px #1e2d39, 76px 76px #1e2d39, 77px 77px #1e2d39, 78px 78px #1e2d39, 79px 79px #1e2d39, 80px 80px #1e2d39, 81px 81px #1e2d39, 82px 82px #1e2d39, 83px 83px #1e2d39, 84px 84px #1e2d39, 85px 85px #1e2d39; }
  .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 #4f7d9a, 1px 1px #4f7d9a, 2px 2px #4f7d9a, 3px 3px #4f7d9a, 4px 4px #4f7d9a, 5px 5px #4f7d9a, 6px 6px #4f7d9a, 7px 7px #4f7d9a, 8px 8px #4f7d9a, 9px 9px #4f7d9a, 10px 10px #4f7d9a, 11px 11px #4f7d9a, 12px 12px #4f7d9a, 13px 13px #4f7d9a, 14px 14px #4f7d9a, 15px 15px #4f7d9a, 16px 16px #4f7d9a, 17px 17px #4f7d9a, 18px 18px #4f7d9a, 19px 19px #4f7d9a, 20px 20px #4f7d9a, 21px 21px #4f7d9a, 22px 22px #4f7d9a, 23px 23px #4f7d9a, 24px 24px #4f7d9a, 25px 25px #4f7d9a, 26px 26px #4f7d9a, 27px 27px #4f7d9a, 28px 28px #4f7d9a, 29px 29px #4f7d9a, 30px 30px #4f7d9a, 31px 31px #4f7d9a, 32px 32px #4f7d9a, 33px 33px #4f7d9a, 34px 34px #4f7d9a, 35px 35px #4f7d9a, 36px 36px #4f7d9a, 37px 37px #4f7d9a, 38px 38px #4f7d9a, 39px 39px #4f7d9a, 40px 40px #4f7d9a, 41px 41px #4f7d9a, 42px 42px #4f7d9a, 43px 43px #4f7d9a, 44px 44px #4f7d9a, 45px 45px #4f7d9a, 46px 46px #4f7d9a, 47px 47px #4f7d9a, 48px 48px #4f7d9a, 49px 49px #4f7d9a, 50px 50px #4f7d9a, 51px 51px #4f7d9a, 52px 52px #4f7d9a, 53px 53px #4f7d9a, 54px 54px #4f7d9a, 55px 55px #4f7d9a, 56px 56px #4f7d9a, 57px 57px #4f7d9a, 58px 58px #4f7d9a, 59px 59px #4f7d9a, 60px 60px #4f7d9a, 61px 61px #4f7d9a, 62px 62px #4f7d9a, 63px 63px #4f7d9a, 64px 64px #4f7d9a, 65px 65px #4f7d9a, 66px 66px #4f7d9a, 67px 67px #4f7d9a, 68px 68px #4f7d9a, 69px 69px #4f7d9a, 70px 70px #4f7d9a, 71px 71px #4f7d9a, 72px 72px #4f7d9a, 73px 73px #4f7d9a, 74px 74px #4f7d9a, 75px 75px #4f7d9a, 76px 76px #4f7d9a, 77px 77px #4f7d9a, 78px 78px #4f7d9a, 79px 79px #4f7d9a, 80px 80px #4f7d9a, 81px 81px #4f7d9a, 82px 82px #4f7d9a, 83px 83px #4f7d9a, 84px 84px #4f7d9a, 85px 85px #4f7d9a; }
  .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 #796152, 1px 1px #796152, 2px 2px #796152, 3px 3px #796152, 4px 4px #796152, 5px 5px #796152, 6px 6px #796152, 7px 7px #796152, 8px 8px #796152, 9px 9px #796152, 10px 10px #796152, 11px 11px #796152, 12px 12px #796152, 13px 13px #796152, 14px 14px #796152, 15px 15px #796152, 16px 16px #796152, 17px 17px #796152, 18px 18px #796152, 19px 19px #796152, 20px 20px #796152, 21px 21px #796152, 22px 22px #796152, 23px 23px #796152, 24px 24px #796152, 25px 25px #796152, 26px 26px #796152, 27px 27px #796152, 28px 28px #796152, 29px 29px #796152, 30px 30px #796152, 31px 31px #796152, 32px 32px #796152, 33px 33px #796152, 34px 34px #796152, 35px 35px #796152, 36px 36px #796152, 37px 37px #796152, 38px 38px #796152, 39px 39px #796152, 40px 40px #796152, 41px 41px #796152, 42px 42px #796152, 43px 43px #796152, 44px 44px #796152, 45px 45px #796152, 46px 46px #796152, 47px 47px #796152, 48px 48px #796152, 49px 49px #796152, 50px 50px #796152, 51px 51px #796152, 52px 52px #796152, 53px 53px #796152, 54px 54px #796152, 55px 55px #796152, 56px 56px #796152, 57px 57px #796152, 58px 58px #796152, 59px 59px #796152, 60px 60px #796152, 61px 61px #796152, 62px 62px #796152, 63px 63px #796152, 64px 64px #796152, 65px 65px #796152, 66px 66px #796152, 67px 67px #796152, 68px 68px #796152, 69px 69px #796152, 70px 70px #796152, 71px 71px #796152, 72px 72px #796152, 73px 73px #796152, 74px 74px #796152, 75px 75px #796152, 76px 76px #796152, 77px 77px #796152, 78px 78px #796152, 79px 79px #796152, 80px 80px #796152, 81px 81px #796152, 82px 82px #796152, 83px 83px #796152, 84px 84px #796152, 85px 85px #796152; }
  .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 #454e57, 1px 1px #454e57, 2px 2px #454e57, 3px 3px #454e57, 4px 4px #454e57, 5px 5px #454e57, 6px 6px #454e57, 7px 7px #454e57, 8px 8px #454e57, 9px 9px #454e57, 10px 10px #454e57, 11px 11px #454e57, 12px 12px #454e57, 13px 13px #454e57, 14px 14px #454e57, 15px 15px #454e57, 16px 16px #454e57, 17px 17px #454e57, 18px 18px #454e57, 19px 19px #454e57, 20px 20px #454e57, 21px 21px #454e57, 22px 22px #454e57, 23px 23px #454e57, 24px 24px #454e57, 25px 25px #454e57, 26px 26px #454e57, 27px 27px #454e57, 28px 28px #454e57, 29px 29px #454e57, 30px 30px #454e57, 31px 31px #454e57, 32px 32px #454e57, 33px 33px #454e57, 34px 34px #454e57, 35px 35px #454e57, 36px 36px #454e57, 37px 37px #454e57, 38px 38px #454e57, 39px 39px #454e57, 40px 40px #454e57, 41px 41px #454e57, 42px 42px #454e57, 43px 43px #454e57, 44px 44px #454e57, 45px 45px #454e57, 46px 46px #454e57, 47px 47px #454e57, 48px 48px #454e57, 49px 49px #454e57, 50px 50px #454e57, 51px 51px #454e57, 52px 52px #454e57, 53px 53px #454e57, 54px 54px #454e57, 55px 55px #454e57, 56px 56px #454e57, 57px 57px #454e57, 58px 58px #454e57, 59px 59px #454e57, 60px 60px #454e57, 61px 61px #454e57, 62px 62px #454e57, 63px 63px #454e57, 64px 64px #454e57, 65px 65px #454e57, 66px 66px #454e57, 67px 67px #454e57, 68px 68px #454e57, 69px 69px #454e57, 70px 70px #454e57, 71px 71px #454e57, 72px 72px #454e57, 73px 73px #454e57, 74px 74px #454e57, 75px 75px #454e57, 76px 76px #454e57, 77px 77px #454e57, 78px 78px #454e57, 79px 79px #454e57, 80px 80px #454e57, 81px 81px #454e57, 82px 82px #454e57, 83px 83px #454e57, 84px 84px #454e57, 85px 85px #454e57; }
  .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 #cce3f1, 1px 1px #cce3f1, 2px 2px #cce3f1, 3px 3px #cce3f1, 4px 4px #cce3f1, 5px 5px #cce3f1, 6px 6px #cce3f1, 7px 7px #cce3f1, 8px 8px #cce3f1, 9px 9px #cce3f1, 10px 10px #cce3f1, 11px 11px #cce3f1, 12px 12px #cce3f1, 13px 13px #cce3f1, 14px 14px #cce3f1, 15px 15px #cce3f1, 16px 16px #cce3f1, 17px 17px #cce3f1, 18px 18px #cce3f1, 19px 19px #cce3f1, 20px 20px #cce3f1, 21px 21px #cce3f1, 22px 22px #cce3f1, 23px 23px #cce3f1, 24px 24px #cce3f1, 25px 25px #cce3f1, 26px 26px #cce3f1, 27px 27px #cce3f1, 28px 28px #cce3f1, 29px 29px #cce3f1, 30px 30px #cce3f1, 31px 31px #cce3f1, 32px 32px #cce3f1, 33px 33px #cce3f1, 34px 34px #cce3f1, 35px 35px #cce3f1, 36px 36px #cce3f1, 37px 37px #cce3f1, 38px 38px #cce3f1, 39px 39px #cce3f1, 40px 40px #cce3f1, 41px 41px #cce3f1, 42px 42px #cce3f1, 43px 43px #cce3f1, 44px 44px #cce3f1, 45px 45px #cce3f1, 46px 46px #cce3f1, 47px 47px #cce3f1, 48px 48px #cce3f1, 49px 49px #cce3f1, 50px 50px #cce3f1, 51px 51px #cce3f1, 52px 52px #cce3f1, 53px 53px #cce3f1, 54px 54px #cce3f1, 55px 55px #cce3f1, 56px 56px #cce3f1, 57px 57px #cce3f1, 58px 58px #cce3f1, 59px 59px #cce3f1, 60px 60px #cce3f1, 61px 61px #cce3f1, 62px 62px #cce3f1, 63px 63px #cce3f1, 64px 64px #cce3f1, 65px 65px #cce3f1, 66px 66px #cce3f1, 67px 67px #cce3f1, 68px 68px #cce3f1, 69px 69px #cce3f1, 70px 70px #cce3f1, 71px 71px #cce3f1, 72px 72px #cce3f1, 73px 73px #cce3f1, 74px 74px #cce3f1, 75px 75px #cce3f1, 76px 76px #cce3f1, 77px 77px #cce3f1, 78px 78px #cce3f1, 79px 79px #cce3f1, 80px 80px #cce3f1, 81px 81px #cce3f1, 82px 82px #cce3f1, 83px 83px #cce3f1, 84px 84px #cce3f1, 85px 85px #cce3f1; }
  .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 #1e2d39, -1px 1px #1e2d39, -2px 2px #1e2d39, -3px 3px #1e2d39, -4px 4px #1e2d39, -5px 5px #1e2d39, -6px 6px #1e2d39, -7px 7px #1e2d39, -8px 8px #1e2d39, -9px 9px #1e2d39, -10px 10px #1e2d39, -11px 11px #1e2d39, -12px 12px #1e2d39, -13px 13px #1e2d39, -14px 14px #1e2d39, -15px 15px #1e2d39, -16px 16px #1e2d39, -17px 17px #1e2d39, -18px 18px #1e2d39, -19px 19px #1e2d39, -20px 20px #1e2d39, -21px 21px #1e2d39, -22px 22px #1e2d39, -23px 23px #1e2d39, -24px 24px #1e2d39, -25px 25px #1e2d39, -26px 26px #1e2d39, -27px 27px #1e2d39, -28px 28px #1e2d39, -29px 29px #1e2d39, -30px 30px #1e2d39, -31px 31px #1e2d39, -32px 32px #1e2d39, -33px 33px #1e2d39, -34px 34px #1e2d39, -35px 35px #1e2d39, -36px 36px #1e2d39, -37px 37px #1e2d39, -38px 38px #1e2d39, -39px 39px #1e2d39, -40px 40px #1e2d39, -41px 41px #1e2d39, -42px 42px #1e2d39, -43px 43px #1e2d39, -44px 44px #1e2d39, -45px 45px #1e2d39, -46px 46px #1e2d39, -47px 47px #1e2d39, -48px 48px #1e2d39, -49px 49px #1e2d39, -50px 50px #1e2d39, -51px 51px #1e2d39, -52px 52px #1e2d39, -53px 53px #1e2d39, -54px 54px #1e2d39, -55px 55px #1e2d39, -56px 56px #1e2d39, -57px 57px #1e2d39, -58px 58px #1e2d39, -59px 59px #1e2d39, -60px 60px #1e2d39, -61px 61px #1e2d39, -62px 62px #1e2d39, -63px 63px #1e2d39, -64px 64px #1e2d39, -65px 65px #1e2d39, -66px 66px #1e2d39, -67px 67px #1e2d39, -68px 68px #1e2d39, -69px 69px #1e2d39, -70px 70px #1e2d39, -71px 71px #1e2d39, -72px 72px #1e2d39, -73px 73px #1e2d39, -74px 74px #1e2d39, -75px 75px #1e2d39, -76px 76px #1e2d39, -77px 77px #1e2d39, -78px 78px #1e2d39, -79px 79px #1e2d39, -80px 80px #1e2d39, -81px 81px #1e2d39, -82px 82px #1e2d39, -83px 83px #1e2d39, -84px 84px #1e2d39, -85px 85px #1e2d39; }
  .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 #4f7d9a, -1px 1px #4f7d9a, -2px 2px #4f7d9a, -3px 3px #4f7d9a, -4px 4px #4f7d9a, -5px 5px #4f7d9a, -6px 6px #4f7d9a, -7px 7px #4f7d9a, -8px 8px #4f7d9a, -9px 9px #4f7d9a, -10px 10px #4f7d9a, -11px 11px #4f7d9a, -12px 12px #4f7d9a, -13px 13px #4f7d9a, -14px 14px #4f7d9a, -15px 15px #4f7d9a, -16px 16px #4f7d9a, -17px 17px #4f7d9a, -18px 18px #4f7d9a, -19px 19px #4f7d9a, -20px 20px #4f7d9a, -21px 21px #4f7d9a, -22px 22px #4f7d9a, -23px 23px #4f7d9a, -24px 24px #4f7d9a, -25px 25px #4f7d9a, -26px 26px #4f7d9a, -27px 27px #4f7d9a, -28px 28px #4f7d9a, -29px 29px #4f7d9a, -30px 30px #4f7d9a, -31px 31px #4f7d9a, -32px 32px #4f7d9a, -33px 33px #4f7d9a, -34px 34px #4f7d9a, -35px 35px #4f7d9a, -36px 36px #4f7d9a, -37px 37px #4f7d9a, -38px 38px #4f7d9a, -39px 39px #4f7d9a, -40px 40px #4f7d9a, -41px 41px #4f7d9a, -42px 42px #4f7d9a, -43px 43px #4f7d9a, -44px 44px #4f7d9a, -45px 45px #4f7d9a, -46px 46px #4f7d9a, -47px 47px #4f7d9a, -48px 48px #4f7d9a, -49px 49px #4f7d9a, -50px 50px #4f7d9a, -51px 51px #4f7d9a, -52px 52px #4f7d9a, -53px 53px #4f7d9a, -54px 54px #4f7d9a, -55px 55px #4f7d9a, -56px 56px #4f7d9a, -57px 57px #4f7d9a, -58px 58px #4f7d9a, -59px 59px #4f7d9a, -60px 60px #4f7d9a, -61px 61px #4f7d9a, -62px 62px #4f7d9a, -63px 63px #4f7d9a, -64px 64px #4f7d9a, -65px 65px #4f7d9a, -66px 66px #4f7d9a, -67px 67px #4f7d9a, -68px 68px #4f7d9a, -69px 69px #4f7d9a, -70px 70px #4f7d9a, -71px 71px #4f7d9a, -72px 72px #4f7d9a, -73px 73px #4f7d9a, -74px 74px #4f7d9a, -75px 75px #4f7d9a, -76px 76px #4f7d9a, -77px 77px #4f7d9a, -78px 78px #4f7d9a, -79px 79px #4f7d9a, -80px 80px #4f7d9a, -81px 81px #4f7d9a, -82px 82px #4f7d9a, -83px 83px #4f7d9a, -84px 84px #4f7d9a, -85px 85px #4f7d9a; }
  .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 #796152, -1px 1px #796152, -2px 2px #796152, -3px 3px #796152, -4px 4px #796152, -5px 5px #796152, -6px 6px #796152, -7px 7px #796152, -8px 8px #796152, -9px 9px #796152, -10px 10px #796152, -11px 11px #796152, -12px 12px #796152, -13px 13px #796152, -14px 14px #796152, -15px 15px #796152, -16px 16px #796152, -17px 17px #796152, -18px 18px #796152, -19px 19px #796152, -20px 20px #796152, -21px 21px #796152, -22px 22px #796152, -23px 23px #796152, -24px 24px #796152, -25px 25px #796152, -26px 26px #796152, -27px 27px #796152, -28px 28px #796152, -29px 29px #796152, -30px 30px #796152, -31px 31px #796152, -32px 32px #796152, -33px 33px #796152, -34px 34px #796152, -35px 35px #796152, -36px 36px #796152, -37px 37px #796152, -38px 38px #796152, -39px 39px #796152, -40px 40px #796152, -41px 41px #796152, -42px 42px #796152, -43px 43px #796152, -44px 44px #796152, -45px 45px #796152, -46px 46px #796152, -47px 47px #796152, -48px 48px #796152, -49px 49px #796152, -50px 50px #796152, -51px 51px #796152, -52px 52px #796152, -53px 53px #796152, -54px 54px #796152, -55px 55px #796152, -56px 56px #796152, -57px 57px #796152, -58px 58px #796152, -59px 59px #796152, -60px 60px #796152, -61px 61px #796152, -62px 62px #796152, -63px 63px #796152, -64px 64px #796152, -65px 65px #796152, -66px 66px #796152, -67px 67px #796152, -68px 68px #796152, -69px 69px #796152, -70px 70px #796152, -71px 71px #796152, -72px 72px #796152, -73px 73px #796152, -74px 74px #796152, -75px 75px #796152, -76px 76px #796152, -77px 77px #796152, -78px 78px #796152, -79px 79px #796152, -80px 80px #796152, -81px 81px #796152, -82px 82px #796152, -83px 83px #796152, -84px 84px #796152, -85px 85px #796152; }
  .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 #454e57, -1px 1px #454e57, -2px 2px #454e57, -3px 3px #454e57, -4px 4px #454e57, -5px 5px #454e57, -6px 6px #454e57, -7px 7px #454e57, -8px 8px #454e57, -9px 9px #454e57, -10px 10px #454e57, -11px 11px #454e57, -12px 12px #454e57, -13px 13px #454e57, -14px 14px #454e57, -15px 15px #454e57, -16px 16px #454e57, -17px 17px #454e57, -18px 18px #454e57, -19px 19px #454e57, -20px 20px #454e57, -21px 21px #454e57, -22px 22px #454e57, -23px 23px #454e57, -24px 24px #454e57, -25px 25px #454e57, -26px 26px #454e57, -27px 27px #454e57, -28px 28px #454e57, -29px 29px #454e57, -30px 30px #454e57, -31px 31px #454e57, -32px 32px #454e57, -33px 33px #454e57, -34px 34px #454e57, -35px 35px #454e57, -36px 36px #454e57, -37px 37px #454e57, -38px 38px #454e57, -39px 39px #454e57, -40px 40px #454e57, -41px 41px #454e57, -42px 42px #454e57, -43px 43px #454e57, -44px 44px #454e57, -45px 45px #454e57, -46px 46px #454e57, -47px 47px #454e57, -48px 48px #454e57, -49px 49px #454e57, -50px 50px #454e57, -51px 51px #454e57, -52px 52px #454e57, -53px 53px #454e57, -54px 54px #454e57, -55px 55px #454e57, -56px 56px #454e57, -57px 57px #454e57, -58px 58px #454e57, -59px 59px #454e57, -60px 60px #454e57, -61px 61px #454e57, -62px 62px #454e57, -63px 63px #454e57, -64px 64px #454e57, -65px 65px #454e57, -66px 66px #454e57, -67px 67px #454e57, -68px 68px #454e57, -69px 69px #454e57, -70px 70px #454e57, -71px 71px #454e57, -72px 72px #454e57, -73px 73px #454e57, -74px 74px #454e57, -75px 75px #454e57, -76px 76px #454e57, -77px 77px #454e57, -78px 78px #454e57, -79px 79px #454e57, -80px 80px #454e57, -81px 81px #454e57, -82px 82px #454e57, -83px 83px #454e57, -84px 84px #454e57, -85px 85px #454e57; }
  .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 #cce3f1, -1px 1px #cce3f1, -2px 2px #cce3f1, -3px 3px #cce3f1, -4px 4px #cce3f1, -5px 5px #cce3f1, -6px 6px #cce3f1, -7px 7px #cce3f1, -8px 8px #cce3f1, -9px 9px #cce3f1, -10px 10px #cce3f1, -11px 11px #cce3f1, -12px 12px #cce3f1, -13px 13px #cce3f1, -14px 14px #cce3f1, -15px 15px #cce3f1, -16px 16px #cce3f1, -17px 17px #cce3f1, -18px 18px #cce3f1, -19px 19px #cce3f1, -20px 20px #cce3f1, -21px 21px #cce3f1, -22px 22px #cce3f1, -23px 23px #cce3f1, -24px 24px #cce3f1, -25px 25px #cce3f1, -26px 26px #cce3f1, -27px 27px #cce3f1, -28px 28px #cce3f1, -29px 29px #cce3f1, -30px 30px #cce3f1, -31px 31px #cce3f1, -32px 32px #cce3f1, -33px 33px #cce3f1, -34px 34px #cce3f1, -35px 35px #cce3f1, -36px 36px #cce3f1, -37px 37px #cce3f1, -38px 38px #cce3f1, -39px 39px #cce3f1, -40px 40px #cce3f1, -41px 41px #cce3f1, -42px 42px #cce3f1, -43px 43px #cce3f1, -44px 44px #cce3f1, -45px 45px #cce3f1, -46px 46px #cce3f1, -47px 47px #cce3f1, -48px 48px #cce3f1, -49px 49px #cce3f1, -50px 50px #cce3f1, -51px 51px #cce3f1, -52px 52px #cce3f1, -53px 53px #cce3f1, -54px 54px #cce3f1, -55px 55px #cce3f1, -56px 56px #cce3f1, -57px 57px #cce3f1, -58px 58px #cce3f1, -59px 59px #cce3f1, -60px 60px #cce3f1, -61px 61px #cce3f1, -62px 62px #cce3f1, -63px 63px #cce3f1, -64px 64px #cce3f1, -65px 65px #cce3f1, -66px 66px #cce3f1, -67px 67px #cce3f1, -68px 68px #cce3f1, -69px 69px #cce3f1, -70px 70px #cce3f1, -71px 71px #cce3f1, -72px 72px #cce3f1, -73px 73px #cce3f1, -74px 74px #cce3f1, -75px 75px #cce3f1, -76px 76px #cce3f1, -77px 77px #cce3f1, -78px 78px #cce3f1, -79px 79px #cce3f1, -80px 80px #cce3f1, -81px 81px #cce3f1, -82px 82px #cce3f1, -83px 83px #cce3f1, -84px 84px #cce3f1, -85px 85px #cce3f1; }
  .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; }
