/*--------------------------------------------------------------
 # 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: #4e4d4a;
  border-color: #4e4d4a;
  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: #565551;
    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: #4c4c4c;
    border-color: #2f2e2c;
    color: #343331;
    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: #4e4d4a;
  border-color: #4e4d4a;
  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: #686763;
    border-color: #686763;
    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: #4c4c4c;
    border-color: #4c4c4c;
    color: #343331; }

.btn-color-2, .btn-color-2-flat {
  background-color: #353432;
  border-color: #353432;
  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: #4f4e4b;
    border-color: #4f4e4b;
    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: #343434;
    border-color: #343434;
    color: #1b1a19; }

.btn-color-3, .btn-color-3-flat {
  background-color: #94ba65;
  border-color: #94ba65;
  color: #333; }
  .btn-color-3:visited, .btn-color-3-flat:visited {
    color: #333; }
  .btn-color-3:hover, .btn-color-3-flat:hover, .btn-color-3:focus, .btn-color-3-flat:focus {
    background-color: #acca88;
    border-color: #acca88;
    color: #333; }
  .btn-color-3:active, .btn-color-3-flat:active, .btn-color-3.active, .btn-color-3-flat.active, .btn-color-3.is-active, .btn-color-3-flat.is-active {
    background-color: #93af70;
    border-color: #93af70;
    color: #7ba349; }

.btn-color-4, .btn-color-4-flat {
  background-color: #2790b0;
  border-color: #2790b0;
  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: #37aed3;
    border-color: #37aed3;
    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: #328aa5;
    border-color: #328aa5;
    color: #1e6e86; }

.btn-color-5, .btn-color-5-flat {
  background-color: #2b4e72;
  border-color: #2b4e72;
  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: #396797;
    border-color: #396797;
    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: #334e6a;
    border-color: #334e6a;
    color: #1d354d; }
/*
 * 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(104, 103, 99, 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: #4e4d4a; }
    .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(104, 103, 99, 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(76, 76, 76, 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: #353432; }
    .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(79, 78, 75, 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(52, 52, 52, 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: #94ba65; }
    .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, 202, 136, 0.9);
      color: rgba(51, 51, 51, 0.9); }
    .btn-border.btn-color-3:active, .btn-border-thin.btn-color-3:active, .btn-border-thick.btn-color-3:active, .btn-border.btn-color-3.active, .btn-border-thin.btn-color-3.active, .btn-border-thick.btn-color-3.active, .btn-border.btn-color-3.is-active, .btn-border-thin.btn-color-3.is-active, .btn-border-thick.btn-color-3.is-active {
      background-color: rgba(147, 175, 112, 0.7);
      color: rgba(51, 51, 51, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-4, .btn-border-thin.btn-color-4, .btn-border-thick.btn-color-4 {
    color: #2790b0; }
    .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(55, 174, 211, 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(50, 138, 165, 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: #2b4e72; }
    .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(57, 103, 151, 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(51, 78, 106, 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: #4e4d4a;
  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: #4e4d4a; }
  .btn-borderless.btn-color-2 {
    color: #353432; }
  .btn-borderless.btn-color-3 {
    color: #94ba65; }
  .btn-borderless.btn-color-4 {
    color: #2790b0; }
  .btn-borderless.btn-color-5 {
    color: #2b4e72; }
  .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: #41403e;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#565551, #41403e);
  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(#63625e, #3c3b39); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #4c4c4c;
  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: #41403e;
  background: linear-gradient(#5b5a56, #41403e); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#63625e, #3c3b39); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #343331;
    background: #4c4c4c; }
  .btn-raised.btn-color-2 {
    border-color: #282726;
    background: linear-gradient(#42413e, #282726); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#4a4946, #232221); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #1b1a19;
    background: #343434; }
  .btn-raised.btn-color-3 {
    border-color: #88b253;
    background: linear-gradient(#a0c277, #88b253); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#a8c781, #83ae4e); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #7ba349;
    background: #93af70; }
  .btn-raised.btn-color-4 {
    border-color: #227f9b;
    background: linear-gradient(#2ca1c5, #227f9b); }
  .btn-raised.btn-color-4:hover, .btn-raised.btn-color-4:focus {
    background: linear-gradient(#2fabd1, #217893); }
  .btn-raised.btn-color-4:active, .btn-raised.btn-color-4.active, .btn-raised.btn-color-4.is-active {
    border-color: #1e6e86;
    background: #328aa5; }
  .btn-raised.btn-color-5 {
    border-color: #24415f;
    background: linear-gradient(#325b85, #24415f); }
  .btn-raised.btn-color-5:hover, .btn-raised.btn-color-5:focus {
    background: linear-gradient(#366290, #213c58); }
  .btn-raised.btn-color-5:active, .btn-raised.btn-color-5.active, .btn-raised.btn-color-5.is-active {
    border-color: #1d354d;
    background: #334e6a; }
/*
 * 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 #1a1918, 0 8px 3px rgba(0, 0, 0, 0.2); }

.btn-3d:hover, .btn-3d:focus {
  box-shadow: 0 7px 0 #1a1918, 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 #1a1918, 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 #343331, 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 #2f2e2c, 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 #1a1918, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-2 {
    box-shadow: 0 7px 0 #1b1a19, 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 #161514, 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 #010100, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #7ba349, 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 #759c46, 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 #608039, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-4 {
    box-shadow: 0 7px 0 #1e6e86, 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 #1c677e, 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 #144c5d, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-5 {
    box-shadow: 0 7px 0 #1d354d, 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 #1a3046, 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 #0f1b28, 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(78, 77, 74, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(78, 77, 74, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(78, 77, 74, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-color-5 {
    from {
      box-shadow: 0 0 0 rgba(43, 78, 114, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(43, 78, 114, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(43, 78, 114, 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(104, 103, 99, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #343331;
  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: #565551;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #464543; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(78, 77, 74, 0.95);
  border-color: #343331; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #3c3b39; }
  .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: #41403e; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(53, 52, 50, 0.95);
    border-color: #1b1a19; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #232221; }
  .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: #282726; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(148, 186, 101, 0.95);
    border-color: #7ba349; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #83ae4e; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a {
    color: #333; }
    .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a:hover {
      color: #262626;
      background: #88b253; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list {
    background: rgba(39, 144, 176, 0.95);
    border-color: #1e6e86; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #217893; }
  .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: #227f9b; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list {
    background: rgba(43, 78, 114, 0.95);
    border-color: #1d354d; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #213c58; }
  .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: #24415f; }
/*
 * 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 #343331, 1px 1px #343331, 2px 2px #343331, 3px 3px #343331, 4px 4px #343331, 5px 5px #343331, 6px 6px #343331, 7px 7px #343331, 8px 8px #343331, 9px 9px #343331, 10px 10px #343331, 11px 11px #343331, 12px 12px #343331, 13px 13px #343331, 14px 14px #343331, 15px 15px #343331, 16px 16px #343331, 17px 17px #343331, 18px 18px #343331, 19px 19px #343331, 20px 20px #343331, 21px 21px #343331, 22px 22px #343331, 23px 23px #343331, 24px 24px #343331, 25px 25px #343331, 26px 26px #343331, 27px 27px #343331, 28px 28px #343331, 29px 29px #343331, 30px 30px #343331, 31px 31px #343331, 32px 32px #343331, 33px 33px #343331, 34px 34px #343331, 35px 35px #343331, 36px 36px #343331, 37px 37px #343331, 38px 38px #343331, 39px 39px #343331, 40px 40px #343331, 41px 41px #343331, 42px 42px #343331, 43px 43px #343331, 44px 44px #343331, 45px 45px #343331, 46px 46px #343331, 47px 47px #343331, 48px 48px #343331, 49px 49px #343331, 50px 50px #343331, 51px 51px #343331, 52px 52px #343331, 53px 53px #343331, 54px 54px #343331, 55px 55px #343331, 56px 56px #343331, 57px 57px #343331, 58px 58px #343331, 59px 59px #343331, 60px 60px #343331, 61px 61px #343331, 62px 62px #343331, 63px 63px #343331, 64px 64px #343331, 65px 65px #343331, 66px 66px #343331, 67px 67px #343331, 68px 68px #343331, 69px 69px #343331, 70px 70px #343331, 71px 71px #343331, 72px 72px #343331, 73px 73px #343331, 74px 74px #343331, 75px 75px #343331, 76px 76px #343331, 77px 77px #343331, 78px 78px #343331, 79px 79px #343331, 80px 80px #343331, 81px 81px #343331, 82px 82px #343331, 83px 83px #343331, 84px 84px #343331, 85px 85px #343331; }
  .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 #1b1a19, 1px 1px #1b1a19, 2px 2px #1b1a19, 3px 3px #1b1a19, 4px 4px #1b1a19, 5px 5px #1b1a19, 6px 6px #1b1a19, 7px 7px #1b1a19, 8px 8px #1b1a19, 9px 9px #1b1a19, 10px 10px #1b1a19, 11px 11px #1b1a19, 12px 12px #1b1a19, 13px 13px #1b1a19, 14px 14px #1b1a19, 15px 15px #1b1a19, 16px 16px #1b1a19, 17px 17px #1b1a19, 18px 18px #1b1a19, 19px 19px #1b1a19, 20px 20px #1b1a19, 21px 21px #1b1a19, 22px 22px #1b1a19, 23px 23px #1b1a19, 24px 24px #1b1a19, 25px 25px #1b1a19, 26px 26px #1b1a19, 27px 27px #1b1a19, 28px 28px #1b1a19, 29px 29px #1b1a19, 30px 30px #1b1a19, 31px 31px #1b1a19, 32px 32px #1b1a19, 33px 33px #1b1a19, 34px 34px #1b1a19, 35px 35px #1b1a19, 36px 36px #1b1a19, 37px 37px #1b1a19, 38px 38px #1b1a19, 39px 39px #1b1a19, 40px 40px #1b1a19, 41px 41px #1b1a19, 42px 42px #1b1a19, 43px 43px #1b1a19, 44px 44px #1b1a19, 45px 45px #1b1a19, 46px 46px #1b1a19, 47px 47px #1b1a19, 48px 48px #1b1a19, 49px 49px #1b1a19, 50px 50px #1b1a19, 51px 51px #1b1a19, 52px 52px #1b1a19, 53px 53px #1b1a19, 54px 54px #1b1a19, 55px 55px #1b1a19, 56px 56px #1b1a19, 57px 57px #1b1a19, 58px 58px #1b1a19, 59px 59px #1b1a19, 60px 60px #1b1a19, 61px 61px #1b1a19, 62px 62px #1b1a19, 63px 63px #1b1a19, 64px 64px #1b1a19, 65px 65px #1b1a19, 66px 66px #1b1a19, 67px 67px #1b1a19, 68px 68px #1b1a19, 69px 69px #1b1a19, 70px 70px #1b1a19, 71px 71px #1b1a19, 72px 72px #1b1a19, 73px 73px #1b1a19, 74px 74px #1b1a19, 75px 75px #1b1a19, 76px 76px #1b1a19, 77px 77px #1b1a19, 78px 78px #1b1a19, 79px 79px #1b1a19, 80px 80px #1b1a19, 81px 81px #1b1a19, 82px 82px #1b1a19, 83px 83px #1b1a19, 84px 84px #1b1a19, 85px 85px #1b1a19; }
  .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 #7ba349, 1px 1px #7ba349, 2px 2px #7ba349, 3px 3px #7ba349, 4px 4px #7ba349, 5px 5px #7ba349, 6px 6px #7ba349, 7px 7px #7ba349, 8px 8px #7ba349, 9px 9px #7ba349, 10px 10px #7ba349, 11px 11px #7ba349, 12px 12px #7ba349, 13px 13px #7ba349, 14px 14px #7ba349, 15px 15px #7ba349, 16px 16px #7ba349, 17px 17px #7ba349, 18px 18px #7ba349, 19px 19px #7ba349, 20px 20px #7ba349, 21px 21px #7ba349, 22px 22px #7ba349, 23px 23px #7ba349, 24px 24px #7ba349, 25px 25px #7ba349, 26px 26px #7ba349, 27px 27px #7ba349, 28px 28px #7ba349, 29px 29px #7ba349, 30px 30px #7ba349, 31px 31px #7ba349, 32px 32px #7ba349, 33px 33px #7ba349, 34px 34px #7ba349, 35px 35px #7ba349, 36px 36px #7ba349, 37px 37px #7ba349, 38px 38px #7ba349, 39px 39px #7ba349, 40px 40px #7ba349, 41px 41px #7ba349, 42px 42px #7ba349, 43px 43px #7ba349, 44px 44px #7ba349, 45px 45px #7ba349, 46px 46px #7ba349, 47px 47px #7ba349, 48px 48px #7ba349, 49px 49px #7ba349, 50px 50px #7ba349, 51px 51px #7ba349, 52px 52px #7ba349, 53px 53px #7ba349, 54px 54px #7ba349, 55px 55px #7ba349, 56px 56px #7ba349, 57px 57px #7ba349, 58px 58px #7ba349, 59px 59px #7ba349, 60px 60px #7ba349, 61px 61px #7ba349, 62px 62px #7ba349, 63px 63px #7ba349, 64px 64px #7ba349, 65px 65px #7ba349, 66px 66px #7ba349, 67px 67px #7ba349, 68px 68px #7ba349, 69px 69px #7ba349, 70px 70px #7ba349, 71px 71px #7ba349, 72px 72px #7ba349, 73px 73px #7ba349, 74px 74px #7ba349, 75px 75px #7ba349, 76px 76px #7ba349, 77px 77px #7ba349, 78px 78px #7ba349, 79px 79px #7ba349, 80px 80px #7ba349, 81px 81px #7ba349, 82px 82px #7ba349, 83px 83px #7ba349, 84px 84px #7ba349, 85px 85px #7ba349; }
  .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 #1e6e86, 1px 1px #1e6e86, 2px 2px #1e6e86, 3px 3px #1e6e86, 4px 4px #1e6e86, 5px 5px #1e6e86, 6px 6px #1e6e86, 7px 7px #1e6e86, 8px 8px #1e6e86, 9px 9px #1e6e86, 10px 10px #1e6e86, 11px 11px #1e6e86, 12px 12px #1e6e86, 13px 13px #1e6e86, 14px 14px #1e6e86, 15px 15px #1e6e86, 16px 16px #1e6e86, 17px 17px #1e6e86, 18px 18px #1e6e86, 19px 19px #1e6e86, 20px 20px #1e6e86, 21px 21px #1e6e86, 22px 22px #1e6e86, 23px 23px #1e6e86, 24px 24px #1e6e86, 25px 25px #1e6e86, 26px 26px #1e6e86, 27px 27px #1e6e86, 28px 28px #1e6e86, 29px 29px #1e6e86, 30px 30px #1e6e86, 31px 31px #1e6e86, 32px 32px #1e6e86, 33px 33px #1e6e86, 34px 34px #1e6e86, 35px 35px #1e6e86, 36px 36px #1e6e86, 37px 37px #1e6e86, 38px 38px #1e6e86, 39px 39px #1e6e86, 40px 40px #1e6e86, 41px 41px #1e6e86, 42px 42px #1e6e86, 43px 43px #1e6e86, 44px 44px #1e6e86, 45px 45px #1e6e86, 46px 46px #1e6e86, 47px 47px #1e6e86, 48px 48px #1e6e86, 49px 49px #1e6e86, 50px 50px #1e6e86, 51px 51px #1e6e86, 52px 52px #1e6e86, 53px 53px #1e6e86, 54px 54px #1e6e86, 55px 55px #1e6e86, 56px 56px #1e6e86, 57px 57px #1e6e86, 58px 58px #1e6e86, 59px 59px #1e6e86, 60px 60px #1e6e86, 61px 61px #1e6e86, 62px 62px #1e6e86, 63px 63px #1e6e86, 64px 64px #1e6e86, 65px 65px #1e6e86, 66px 66px #1e6e86, 67px 67px #1e6e86, 68px 68px #1e6e86, 69px 69px #1e6e86, 70px 70px #1e6e86, 71px 71px #1e6e86, 72px 72px #1e6e86, 73px 73px #1e6e86, 74px 74px #1e6e86, 75px 75px #1e6e86, 76px 76px #1e6e86, 77px 77px #1e6e86, 78px 78px #1e6e86, 79px 79px #1e6e86, 80px 80px #1e6e86, 81px 81px #1e6e86, 82px 82px #1e6e86, 83px 83px #1e6e86, 84px 84px #1e6e86, 85px 85px #1e6e86; }
  .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 #1d354d, 1px 1px #1d354d, 2px 2px #1d354d, 3px 3px #1d354d, 4px 4px #1d354d, 5px 5px #1d354d, 6px 6px #1d354d, 7px 7px #1d354d, 8px 8px #1d354d, 9px 9px #1d354d, 10px 10px #1d354d, 11px 11px #1d354d, 12px 12px #1d354d, 13px 13px #1d354d, 14px 14px #1d354d, 15px 15px #1d354d, 16px 16px #1d354d, 17px 17px #1d354d, 18px 18px #1d354d, 19px 19px #1d354d, 20px 20px #1d354d, 21px 21px #1d354d, 22px 22px #1d354d, 23px 23px #1d354d, 24px 24px #1d354d, 25px 25px #1d354d, 26px 26px #1d354d, 27px 27px #1d354d, 28px 28px #1d354d, 29px 29px #1d354d, 30px 30px #1d354d, 31px 31px #1d354d, 32px 32px #1d354d, 33px 33px #1d354d, 34px 34px #1d354d, 35px 35px #1d354d, 36px 36px #1d354d, 37px 37px #1d354d, 38px 38px #1d354d, 39px 39px #1d354d, 40px 40px #1d354d, 41px 41px #1d354d, 42px 42px #1d354d, 43px 43px #1d354d, 44px 44px #1d354d, 45px 45px #1d354d, 46px 46px #1d354d, 47px 47px #1d354d, 48px 48px #1d354d, 49px 49px #1d354d, 50px 50px #1d354d, 51px 51px #1d354d, 52px 52px #1d354d, 53px 53px #1d354d, 54px 54px #1d354d, 55px 55px #1d354d, 56px 56px #1d354d, 57px 57px #1d354d, 58px 58px #1d354d, 59px 59px #1d354d, 60px 60px #1d354d, 61px 61px #1d354d, 62px 62px #1d354d, 63px 63px #1d354d, 64px 64px #1d354d, 65px 65px #1d354d, 66px 66px #1d354d, 67px 67px #1d354d, 68px 68px #1d354d, 69px 69px #1d354d, 70px 70px #1d354d, 71px 71px #1d354d, 72px 72px #1d354d, 73px 73px #1d354d, 74px 74px #1d354d, 75px 75px #1d354d, 76px 76px #1d354d, 77px 77px #1d354d, 78px 78px #1d354d, 79px 79px #1d354d, 80px 80px #1d354d, 81px 81px #1d354d, 82px 82px #1d354d, 83px 83px #1d354d, 84px 84px #1d354d, 85px 85px #1d354d; }
  .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 #343331, -1px 1px #343331, -2px 2px #343331, -3px 3px #343331, -4px 4px #343331, -5px 5px #343331, -6px 6px #343331, -7px 7px #343331, -8px 8px #343331, -9px 9px #343331, -10px 10px #343331, -11px 11px #343331, -12px 12px #343331, -13px 13px #343331, -14px 14px #343331, -15px 15px #343331, -16px 16px #343331, -17px 17px #343331, -18px 18px #343331, -19px 19px #343331, -20px 20px #343331, -21px 21px #343331, -22px 22px #343331, -23px 23px #343331, -24px 24px #343331, -25px 25px #343331, -26px 26px #343331, -27px 27px #343331, -28px 28px #343331, -29px 29px #343331, -30px 30px #343331, -31px 31px #343331, -32px 32px #343331, -33px 33px #343331, -34px 34px #343331, -35px 35px #343331, -36px 36px #343331, -37px 37px #343331, -38px 38px #343331, -39px 39px #343331, -40px 40px #343331, -41px 41px #343331, -42px 42px #343331, -43px 43px #343331, -44px 44px #343331, -45px 45px #343331, -46px 46px #343331, -47px 47px #343331, -48px 48px #343331, -49px 49px #343331, -50px 50px #343331, -51px 51px #343331, -52px 52px #343331, -53px 53px #343331, -54px 54px #343331, -55px 55px #343331, -56px 56px #343331, -57px 57px #343331, -58px 58px #343331, -59px 59px #343331, -60px 60px #343331, -61px 61px #343331, -62px 62px #343331, -63px 63px #343331, -64px 64px #343331, -65px 65px #343331, -66px 66px #343331, -67px 67px #343331, -68px 68px #343331, -69px 69px #343331, -70px 70px #343331, -71px 71px #343331, -72px 72px #343331, -73px 73px #343331, -74px 74px #343331, -75px 75px #343331, -76px 76px #343331, -77px 77px #343331, -78px 78px #343331, -79px 79px #343331, -80px 80px #343331, -81px 81px #343331, -82px 82px #343331, -83px 83px #343331, -84px 84px #343331, -85px 85px #343331; }
  .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 #1b1a19, -1px 1px #1b1a19, -2px 2px #1b1a19, -3px 3px #1b1a19, -4px 4px #1b1a19, -5px 5px #1b1a19, -6px 6px #1b1a19, -7px 7px #1b1a19, -8px 8px #1b1a19, -9px 9px #1b1a19, -10px 10px #1b1a19, -11px 11px #1b1a19, -12px 12px #1b1a19, -13px 13px #1b1a19, -14px 14px #1b1a19, -15px 15px #1b1a19, -16px 16px #1b1a19, -17px 17px #1b1a19, -18px 18px #1b1a19, -19px 19px #1b1a19, -20px 20px #1b1a19, -21px 21px #1b1a19, -22px 22px #1b1a19, -23px 23px #1b1a19, -24px 24px #1b1a19, -25px 25px #1b1a19, -26px 26px #1b1a19, -27px 27px #1b1a19, -28px 28px #1b1a19, -29px 29px #1b1a19, -30px 30px #1b1a19, -31px 31px #1b1a19, -32px 32px #1b1a19, -33px 33px #1b1a19, -34px 34px #1b1a19, -35px 35px #1b1a19, -36px 36px #1b1a19, -37px 37px #1b1a19, -38px 38px #1b1a19, -39px 39px #1b1a19, -40px 40px #1b1a19, -41px 41px #1b1a19, -42px 42px #1b1a19, -43px 43px #1b1a19, -44px 44px #1b1a19, -45px 45px #1b1a19, -46px 46px #1b1a19, -47px 47px #1b1a19, -48px 48px #1b1a19, -49px 49px #1b1a19, -50px 50px #1b1a19, -51px 51px #1b1a19, -52px 52px #1b1a19, -53px 53px #1b1a19, -54px 54px #1b1a19, -55px 55px #1b1a19, -56px 56px #1b1a19, -57px 57px #1b1a19, -58px 58px #1b1a19, -59px 59px #1b1a19, -60px 60px #1b1a19, -61px 61px #1b1a19, -62px 62px #1b1a19, -63px 63px #1b1a19, -64px 64px #1b1a19, -65px 65px #1b1a19, -66px 66px #1b1a19, -67px 67px #1b1a19, -68px 68px #1b1a19, -69px 69px #1b1a19, -70px 70px #1b1a19, -71px 71px #1b1a19, -72px 72px #1b1a19, -73px 73px #1b1a19, -74px 74px #1b1a19, -75px 75px #1b1a19, -76px 76px #1b1a19, -77px 77px #1b1a19, -78px 78px #1b1a19, -79px 79px #1b1a19, -80px 80px #1b1a19, -81px 81px #1b1a19, -82px 82px #1b1a19, -83px 83px #1b1a19, -84px 84px #1b1a19, -85px 85px #1b1a19; }
  .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 #7ba349, -1px 1px #7ba349, -2px 2px #7ba349, -3px 3px #7ba349, -4px 4px #7ba349, -5px 5px #7ba349, -6px 6px #7ba349, -7px 7px #7ba349, -8px 8px #7ba349, -9px 9px #7ba349, -10px 10px #7ba349, -11px 11px #7ba349, -12px 12px #7ba349, -13px 13px #7ba349, -14px 14px #7ba349, -15px 15px #7ba349, -16px 16px #7ba349, -17px 17px #7ba349, -18px 18px #7ba349, -19px 19px #7ba349, -20px 20px #7ba349, -21px 21px #7ba349, -22px 22px #7ba349, -23px 23px #7ba349, -24px 24px #7ba349, -25px 25px #7ba349, -26px 26px #7ba349, -27px 27px #7ba349, -28px 28px #7ba349, -29px 29px #7ba349, -30px 30px #7ba349, -31px 31px #7ba349, -32px 32px #7ba349, -33px 33px #7ba349, -34px 34px #7ba349, -35px 35px #7ba349, -36px 36px #7ba349, -37px 37px #7ba349, -38px 38px #7ba349, -39px 39px #7ba349, -40px 40px #7ba349, -41px 41px #7ba349, -42px 42px #7ba349, -43px 43px #7ba349, -44px 44px #7ba349, -45px 45px #7ba349, -46px 46px #7ba349, -47px 47px #7ba349, -48px 48px #7ba349, -49px 49px #7ba349, -50px 50px #7ba349, -51px 51px #7ba349, -52px 52px #7ba349, -53px 53px #7ba349, -54px 54px #7ba349, -55px 55px #7ba349, -56px 56px #7ba349, -57px 57px #7ba349, -58px 58px #7ba349, -59px 59px #7ba349, -60px 60px #7ba349, -61px 61px #7ba349, -62px 62px #7ba349, -63px 63px #7ba349, -64px 64px #7ba349, -65px 65px #7ba349, -66px 66px #7ba349, -67px 67px #7ba349, -68px 68px #7ba349, -69px 69px #7ba349, -70px 70px #7ba349, -71px 71px #7ba349, -72px 72px #7ba349, -73px 73px #7ba349, -74px 74px #7ba349, -75px 75px #7ba349, -76px 76px #7ba349, -77px 77px #7ba349, -78px 78px #7ba349, -79px 79px #7ba349, -80px 80px #7ba349, -81px 81px #7ba349, -82px 82px #7ba349, -83px 83px #7ba349, -84px 84px #7ba349, -85px 85px #7ba349; }
  .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 #1e6e86, -1px 1px #1e6e86, -2px 2px #1e6e86, -3px 3px #1e6e86, -4px 4px #1e6e86, -5px 5px #1e6e86, -6px 6px #1e6e86, -7px 7px #1e6e86, -8px 8px #1e6e86, -9px 9px #1e6e86, -10px 10px #1e6e86, -11px 11px #1e6e86, -12px 12px #1e6e86, -13px 13px #1e6e86, -14px 14px #1e6e86, -15px 15px #1e6e86, -16px 16px #1e6e86, -17px 17px #1e6e86, -18px 18px #1e6e86, -19px 19px #1e6e86, -20px 20px #1e6e86, -21px 21px #1e6e86, -22px 22px #1e6e86, -23px 23px #1e6e86, -24px 24px #1e6e86, -25px 25px #1e6e86, -26px 26px #1e6e86, -27px 27px #1e6e86, -28px 28px #1e6e86, -29px 29px #1e6e86, -30px 30px #1e6e86, -31px 31px #1e6e86, -32px 32px #1e6e86, -33px 33px #1e6e86, -34px 34px #1e6e86, -35px 35px #1e6e86, -36px 36px #1e6e86, -37px 37px #1e6e86, -38px 38px #1e6e86, -39px 39px #1e6e86, -40px 40px #1e6e86, -41px 41px #1e6e86, -42px 42px #1e6e86, -43px 43px #1e6e86, -44px 44px #1e6e86, -45px 45px #1e6e86, -46px 46px #1e6e86, -47px 47px #1e6e86, -48px 48px #1e6e86, -49px 49px #1e6e86, -50px 50px #1e6e86, -51px 51px #1e6e86, -52px 52px #1e6e86, -53px 53px #1e6e86, -54px 54px #1e6e86, -55px 55px #1e6e86, -56px 56px #1e6e86, -57px 57px #1e6e86, -58px 58px #1e6e86, -59px 59px #1e6e86, -60px 60px #1e6e86, -61px 61px #1e6e86, -62px 62px #1e6e86, -63px 63px #1e6e86, -64px 64px #1e6e86, -65px 65px #1e6e86, -66px 66px #1e6e86, -67px 67px #1e6e86, -68px 68px #1e6e86, -69px 69px #1e6e86, -70px 70px #1e6e86, -71px 71px #1e6e86, -72px 72px #1e6e86, -73px 73px #1e6e86, -74px 74px #1e6e86, -75px 75px #1e6e86, -76px 76px #1e6e86, -77px 77px #1e6e86, -78px 78px #1e6e86, -79px 79px #1e6e86, -80px 80px #1e6e86, -81px 81px #1e6e86, -82px 82px #1e6e86, -83px 83px #1e6e86, -84px 84px #1e6e86, -85px 85px #1e6e86; }
  .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 #1d354d, -1px 1px #1d354d, -2px 2px #1d354d, -3px 3px #1d354d, -4px 4px #1d354d, -5px 5px #1d354d, -6px 6px #1d354d, -7px 7px #1d354d, -8px 8px #1d354d, -9px 9px #1d354d, -10px 10px #1d354d, -11px 11px #1d354d, -12px 12px #1d354d, -13px 13px #1d354d, -14px 14px #1d354d, -15px 15px #1d354d, -16px 16px #1d354d, -17px 17px #1d354d, -18px 18px #1d354d, -19px 19px #1d354d, -20px 20px #1d354d, -21px 21px #1d354d, -22px 22px #1d354d, -23px 23px #1d354d, -24px 24px #1d354d, -25px 25px #1d354d, -26px 26px #1d354d, -27px 27px #1d354d, -28px 28px #1d354d, -29px 29px #1d354d, -30px 30px #1d354d, -31px 31px #1d354d, -32px 32px #1d354d, -33px 33px #1d354d, -34px 34px #1d354d, -35px 35px #1d354d, -36px 36px #1d354d, -37px 37px #1d354d, -38px 38px #1d354d, -39px 39px #1d354d, -40px 40px #1d354d, -41px 41px #1d354d, -42px 42px #1d354d, -43px 43px #1d354d, -44px 44px #1d354d, -45px 45px #1d354d, -46px 46px #1d354d, -47px 47px #1d354d, -48px 48px #1d354d, -49px 49px #1d354d, -50px 50px #1d354d, -51px 51px #1d354d, -52px 52px #1d354d, -53px 53px #1d354d, -54px 54px #1d354d, -55px 55px #1d354d, -56px 56px #1d354d, -57px 57px #1d354d, -58px 58px #1d354d, -59px 59px #1d354d, -60px 60px #1d354d, -61px 61px #1d354d, -62px 62px #1d354d, -63px 63px #1d354d, -64px 64px #1d354d, -65px 65px #1d354d, -66px 66px #1d354d, -67px 67px #1d354d, -68px 68px #1d354d, -69px 69px #1d354d, -70px 70px #1d354d, -71px 71px #1d354d, -72px 72px #1d354d, -73px 73px #1d354d, -74px 74px #1d354d, -75px 75px #1d354d, -76px 76px #1d354d, -77px 77px #1d354d, -78px 78px #1d354d, -79px 79px #1d354d, -80px 80px #1d354d, -81px 81px #1d354d, -82px 82px #1d354d, -83px 83px #1d354d, -84px 84px #1d354d, -85px 85px #1d354d; }
  .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; }
