/*--------------------------------------------------------------
 # 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: #3c0;
  border-color: #3c0;
  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: #37db00;
    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: #38c20a;
    border-color: #248f00;
    color: #269900;
    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: #3c0;
  border-color: #3c0;
  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: #40ff00;
    border-color: #40ff00;
    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: #38c20a;
    border-color: #38c20a;
    color: #269900; }

.btn-color-2, .btn-color-2-flat {
  background-color: #390;
  border-color: #390;
  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: #4c0;
    border-color: #4c0;
    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: #369108;
    border-color: #369108;
    color: #260; }

.btn-color-3, .btn-color-3-flat {
  background-color: #0d6759;
  border-color: #0d6759;
  color: #fff; }
  .btn-color-3:visited, .btn-color-3-flat:visited {
    color: #fff; }
  .btn-color-3:hover, .btn-color-3-flat:hover, .btn-color-3:focus, .btn-color-3-flat:focus {
    background-color: #139480;
    border-color: #139480;
    color: #fff; }
  .btn-color-3:active, .btn-color-3-flat:active, .btn-color-3.active, .btn-color-3-flat.active, .btn-color-3.is-active, .btn-color-3-flat.is-active {
    background-color: #136155;
    border-color: #136155;
    color: #073a32; }

.btn-color-4, .btn-color-4-flat {
  background-color: #390;
  border-color: #390;
  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: #4c0;
    border-color: #4c0;
    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: #369108;
    border-color: #369108;
    color: #260; }

.btn-color-5, .btn-color-5-flat {
  background-color: #a0c55f;
  border-color: #a0c55f;
  color: #4d4d4d; }
  .btn-color-5:visited, .btn-color-5-flat:visited {
    color: #4d4d4d; }
  .btn-color-5:hover, .btn-color-5-flat:hover, .btn-color-5:focus, .btn-color-5-flat:focus {
    background-color: #b6d384;
    border-color: #b6d384;
    color: #4d4d4d; }
  .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: #9dba6a;
    border-color: #9dba6a;
    color: #88b140; }

.btn-neutral-color, .btn-neutral-color-flat {
  background-color: #fdfdf0;
  border-color: #fdfdf0;
  color: #4d4d4d; }
  .btn-neutral-color:visited, .btn-neutral-color-flat:visited {
    color: #4d4d4d; }
  .btn-neutral-color:hover, .btn-neutral-color-flat:hover, .btn-neutral-color:focus, .btn-neutral-color-flat:focus {
    background-color: #fff;
    border-color: #fff;
    color: #4d4d4d; }
  .btn-neutral-color:active, .btn-neutral-color-flat:active, .btn-neutral-color.active, .btn-neutral-color-flat.active, .btn-neutral-color.is-active, .btn-neutral-color-flat.is-active {
    background-color: #fcfcf1;
    border-color: #fcfcf1;
    color: #f7f7c3; }
/*
 * 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, 255, 0, 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: #3c0; }
    .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, 255, 0, 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(56, 194, 10, 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: #390; }
    .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(68, 204, 0, 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(54, 145, 8, 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: #0d6759; }
    .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(19, 148, 128, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .btn-border.btn-color-3:active, .btn-border-thin.btn-color-3:active, .btn-border-thick.btn-color-3:active, .btn-border.btn-color-3.active, .btn-border-thin.btn-color-3.active, .btn-border-thick.btn-color-3.active, .btn-border.btn-color-3.is-active, .btn-border-thin.btn-color-3.is-active, .btn-border-thick.btn-color-3.is-active {
      background-color: rgba(19, 97, 85, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-4, .btn-border-thin.btn-color-4, .btn-border-thick.btn-color-4 {
    color: #390; }
    .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(68, 204, 0, 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(54, 145, 8, 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: #a0c55f; }
    .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(182, 211, 132, 0.9);
      color: rgba(77, 77, 77, 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(157, 186, 106, 0.7);
      color: rgba(77, 77, 77, 0.5);
      opacity: 0.3; }
  .btn-border.btn-neutral-color, .btn-border-thin.btn-neutral-color, .btn-border-thick.btn-neutral-color {
    color: #fdfdf0; }
    .btn-border.btn-neutral-color:hover, .btn-border-thin.btn-neutral-color:hover, .btn-border-thick.btn-neutral-color:hover, .btn-border.btn-neutral-color:focus, .btn-border-thin.btn-neutral-color:focus, .btn-border-thick.btn-neutral-color:focus {
      background-color: rgba(255, 255, 255, 0.9);
      color: rgba(77, 77, 77, 0.9); }
    .btn-border.btn-neutral-color:active, .btn-border-thin.btn-neutral-color:active, .btn-border-thick.btn-neutral-color:active, .btn-border.btn-neutral-color.active, .btn-border-thin.btn-neutral-color.active, .btn-border-thick.btn-neutral-color.active, .btn-border.btn-neutral-color.is-active, .btn-border-thin.btn-neutral-color.is-active, .btn-border-thick.btn-neutral-color.is-active {
      background-color: rgba(252, 252, 241, 0.7);
      color: rgba(77, 77, 77, 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: #3c0;
  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: #3c0; }
  .btn-borderless.btn-color-2 {
    color: #390; }
  .btn-borderless.btn-color-3 {
    color: #0d6759; }
  .btn-borderless.btn-color-4 {
    color: #390; }
  .btn-borderless.btn-color-5 {
    color: #a0c55f; }
  .btn-borderless.btn-neutral-color {
    color: #fdfdf0; }
  .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: #2db300;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#37db00, #2db300);
  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(#3df500, #2aa800); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #38c20a;
  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: #2db300;
  background: linear-gradient(#39e600, #2db300); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#3df500, #2aa800); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #269900;
    background: #38c20a; }
  .btn-raised.btn-color-2 {
    border-color: #2a8000;
    background: linear-gradient(#3bb300, #2a8000); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#41c200, #277500); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #260;
    background: #369108; }
  .btn-raised.btn-color-3 {
    border-color: #0a5045;
    background: linear-gradient(#107e6d, #0a5045); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#128b78, #09473e); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #073a32;
    background: #136155; }
  .btn-raised.btn-color-4 {
    border-color: #2a8000;
    background: linear-gradient(#3bb300, #2a8000); }
  .btn-raised.btn-color-4:hover, .btn-raised.btn-color-4:focus {
    background: linear-gradient(#41c200, #277500); }
  .btn-raised.btn-color-4:active, .btn-raised.btn-color-4.active, .btn-raised.btn-color-4.is-active {
    border-color: #260;
    background: #369108; }
  .btn-raised.btn-color-5 {
    border-color: #95be4c;
    background: linear-gradient(#abcc72, #95be4c); }
  .btn-raised.btn-color-5:hover, .btn-raised.btn-color-5:focus {
    background: linear-gradient(#b2d07d, #90bc45); }
  .btn-raised.btn-color-5:active, .btn-raised.btn-color-5.active, .btn-raised.btn-color-5.is-active {
    border-color: #88b140;
    background: #9dba6a; }
  .btn-raised.btn-neutral-color {
    border-color: #fafada;
    background: linear-gradient(#fff, #fafada); }
  .btn-raised.btn-neutral-color:hover, .btn-raised.btn-neutral-color:focus {
    background: linear-gradient(#fff, #f9f9d1); }
  .btn-raised.btn-neutral-color:active, .btn-raised.btn-neutral-color.active, .btn-raised.btn-neutral-color.is-active {
    border-color: #f7f7c3;
    background: #fcfcf1; }
/*
 * 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 #196600, 0 8px 3px rgba(0, 0, 0, 0.2); }

.btn-3d:hover, .btn-3d:focus {
  box-shadow: 0 7px 0 #196600, 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 #196600, 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 #269900, 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 #248f00, 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 #196600, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-2 {
    box-shadow: 0 7px 0 #260, 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 #1f5c00, 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 #130, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #073a32, 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 #06312a, 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 #020c0b, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-4 {
    box-shadow: 0 7px 0 #260, 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 #1f5c00, 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 #130, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-5 {
    box-shadow: 0 7px 0 #88b140, 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 #82a93d, 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 #6b8b33, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-neutral-color {
    box-shadow: 0 7px 0 #f7f7c3, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-neutral-color:hover, .btn-3d.btn-neutral-color:focus {
    box-shadow: 0 7px 0 #f6f6ba, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-neutral-color:active, .btn-3d.btn-neutral-color.active, .btn-3d.btn-neutral-color.is-active {
    box-shadow: 0 2px 0 #f1f196, 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(51, 204, 0, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(51, 204, 0, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(51, 204, 0, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-neutral-color {
    from {
      box-shadow: 0 0 0 rgba(253, 253, 240, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(253, 253, 240, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(253, 253, 240, 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; }
  .btn-glow.btn-neutral-color {
    animation-name: glowing-neutral-color; }
/*
 * Dropdown menu buttons
 *
 * A dropdown menu appears
 * when a button is pressed
 */
/*
 * Dropdown Container
 *
 */
.btn-dropdown {
  position: relative;
  overflow: visible;
  display: inline-block; }
/*
 * Dropdown List Style
 *
 */
.btn-dropdown-list {
  display: none;
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 1000;
  min-width: 100%;
  list-style-type: none;
  background: rgba(64, 255, 0, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #269900;
  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: #37db00;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #2fbd00; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(51, 204, 0, 0.95);
  border-color: #269900; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #2aa800; }
  .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: #2db300; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(51, 153, 0, 0.95);
    border-color: #260; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #277500; }
  .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: #2a8000; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(13, 103, 89, 0.95);
    border-color: #073a32; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #09473e; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a {
    color: #fff; }
    .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #0a5045; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list {
    background: rgba(51, 153, 0, 0.95);
    border-color: #260; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #277500; }
  .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: #2a8000; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list {
    background: rgba(160, 197, 95, 0.95);
    border-color: #88b140; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #90bc45; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a {
    color: #4d4d4d; }
    .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a:hover {
      color: #404040;
      background: #95be4c; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list {
    background: rgba(253, 253, 240, 0.95);
    border-color: #f7f7c3; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list .btn-dropdown-divider {
    border-color: #f9f9d1; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list > li > a {
    color: #4d4d4d; }
    .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list > li > a:hover {
      color: #404040;
      background: #fafada; }
/*
 * 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 #269900, 1px 1px #269900, 2px 2px #269900, 3px 3px #269900, 4px 4px #269900, 5px 5px #269900, 6px 6px #269900, 7px 7px #269900, 8px 8px #269900, 9px 9px #269900, 10px 10px #269900, 11px 11px #269900, 12px 12px #269900, 13px 13px #269900, 14px 14px #269900, 15px 15px #269900, 16px 16px #269900, 17px 17px #269900, 18px 18px #269900, 19px 19px #269900, 20px 20px #269900, 21px 21px #269900, 22px 22px #269900, 23px 23px #269900, 24px 24px #269900, 25px 25px #269900, 26px 26px #269900, 27px 27px #269900, 28px 28px #269900, 29px 29px #269900, 30px 30px #269900, 31px 31px #269900, 32px 32px #269900, 33px 33px #269900, 34px 34px #269900, 35px 35px #269900, 36px 36px #269900, 37px 37px #269900, 38px 38px #269900, 39px 39px #269900, 40px 40px #269900, 41px 41px #269900, 42px 42px #269900, 43px 43px #269900, 44px 44px #269900, 45px 45px #269900, 46px 46px #269900, 47px 47px #269900, 48px 48px #269900, 49px 49px #269900, 50px 50px #269900, 51px 51px #269900, 52px 52px #269900, 53px 53px #269900, 54px 54px #269900, 55px 55px #269900, 56px 56px #269900, 57px 57px #269900, 58px 58px #269900, 59px 59px #269900, 60px 60px #269900, 61px 61px #269900, 62px 62px #269900, 63px 63px #269900, 64px 64px #269900, 65px 65px #269900, 66px 66px #269900, 67px 67px #269900, 68px 68px #269900, 69px 69px #269900, 70px 70px #269900, 71px 71px #269900, 72px 72px #269900, 73px 73px #269900, 74px 74px #269900, 75px 75px #269900, 76px 76px #269900, 77px 77px #269900, 78px 78px #269900, 79px 79px #269900, 80px 80px #269900, 81px 81px #269900, 82px 82px #269900, 83px 83px #269900, 84px 84px #269900, 85px 85px #269900; }
  .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 #260, 1px 1px #260, 2px 2px #260, 3px 3px #260, 4px 4px #260, 5px 5px #260, 6px 6px #260, 7px 7px #260, 8px 8px #260, 9px 9px #260, 10px 10px #260, 11px 11px #260, 12px 12px #260, 13px 13px #260, 14px 14px #260, 15px 15px #260, 16px 16px #260, 17px 17px #260, 18px 18px #260, 19px 19px #260, 20px 20px #260, 21px 21px #260, 22px 22px #260, 23px 23px #260, 24px 24px #260, 25px 25px #260, 26px 26px #260, 27px 27px #260, 28px 28px #260, 29px 29px #260, 30px 30px #260, 31px 31px #260, 32px 32px #260, 33px 33px #260, 34px 34px #260, 35px 35px #260, 36px 36px #260, 37px 37px #260, 38px 38px #260, 39px 39px #260, 40px 40px #260, 41px 41px #260, 42px 42px #260, 43px 43px #260, 44px 44px #260, 45px 45px #260, 46px 46px #260, 47px 47px #260, 48px 48px #260, 49px 49px #260, 50px 50px #260, 51px 51px #260, 52px 52px #260, 53px 53px #260, 54px 54px #260, 55px 55px #260, 56px 56px #260, 57px 57px #260, 58px 58px #260, 59px 59px #260, 60px 60px #260, 61px 61px #260, 62px 62px #260, 63px 63px #260, 64px 64px #260, 65px 65px #260, 66px 66px #260, 67px 67px #260, 68px 68px #260, 69px 69px #260, 70px 70px #260, 71px 71px #260, 72px 72px #260, 73px 73px #260, 74px 74px #260, 75px 75px #260, 76px 76px #260, 77px 77px #260, 78px 78px #260, 79px 79px #260, 80px 80px #260, 81px 81px #260, 82px 82px #260, 83px 83px #260, 84px 84px #260, 85px 85px #260; }
  .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 #073a32, 1px 1px #073a32, 2px 2px #073a32, 3px 3px #073a32, 4px 4px #073a32, 5px 5px #073a32, 6px 6px #073a32, 7px 7px #073a32, 8px 8px #073a32, 9px 9px #073a32, 10px 10px #073a32, 11px 11px #073a32, 12px 12px #073a32, 13px 13px #073a32, 14px 14px #073a32, 15px 15px #073a32, 16px 16px #073a32, 17px 17px #073a32, 18px 18px #073a32, 19px 19px #073a32, 20px 20px #073a32, 21px 21px #073a32, 22px 22px #073a32, 23px 23px #073a32, 24px 24px #073a32, 25px 25px #073a32, 26px 26px #073a32, 27px 27px #073a32, 28px 28px #073a32, 29px 29px #073a32, 30px 30px #073a32, 31px 31px #073a32, 32px 32px #073a32, 33px 33px #073a32, 34px 34px #073a32, 35px 35px #073a32, 36px 36px #073a32, 37px 37px #073a32, 38px 38px #073a32, 39px 39px #073a32, 40px 40px #073a32, 41px 41px #073a32, 42px 42px #073a32, 43px 43px #073a32, 44px 44px #073a32, 45px 45px #073a32, 46px 46px #073a32, 47px 47px #073a32, 48px 48px #073a32, 49px 49px #073a32, 50px 50px #073a32, 51px 51px #073a32, 52px 52px #073a32, 53px 53px #073a32, 54px 54px #073a32, 55px 55px #073a32, 56px 56px #073a32, 57px 57px #073a32, 58px 58px #073a32, 59px 59px #073a32, 60px 60px #073a32, 61px 61px #073a32, 62px 62px #073a32, 63px 63px #073a32, 64px 64px #073a32, 65px 65px #073a32, 66px 66px #073a32, 67px 67px #073a32, 68px 68px #073a32, 69px 69px #073a32, 70px 70px #073a32, 71px 71px #073a32, 72px 72px #073a32, 73px 73px #073a32, 74px 74px #073a32, 75px 75px #073a32, 76px 76px #073a32, 77px 77px #073a32, 78px 78px #073a32, 79px 79px #073a32, 80px 80px #073a32, 81px 81px #073a32, 82px 82px #073a32, 83px 83px #073a32, 84px 84px #073a32, 85px 85px #073a32; }
  .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 #260, 1px 1px #260, 2px 2px #260, 3px 3px #260, 4px 4px #260, 5px 5px #260, 6px 6px #260, 7px 7px #260, 8px 8px #260, 9px 9px #260, 10px 10px #260, 11px 11px #260, 12px 12px #260, 13px 13px #260, 14px 14px #260, 15px 15px #260, 16px 16px #260, 17px 17px #260, 18px 18px #260, 19px 19px #260, 20px 20px #260, 21px 21px #260, 22px 22px #260, 23px 23px #260, 24px 24px #260, 25px 25px #260, 26px 26px #260, 27px 27px #260, 28px 28px #260, 29px 29px #260, 30px 30px #260, 31px 31px #260, 32px 32px #260, 33px 33px #260, 34px 34px #260, 35px 35px #260, 36px 36px #260, 37px 37px #260, 38px 38px #260, 39px 39px #260, 40px 40px #260, 41px 41px #260, 42px 42px #260, 43px 43px #260, 44px 44px #260, 45px 45px #260, 46px 46px #260, 47px 47px #260, 48px 48px #260, 49px 49px #260, 50px 50px #260, 51px 51px #260, 52px 52px #260, 53px 53px #260, 54px 54px #260, 55px 55px #260, 56px 56px #260, 57px 57px #260, 58px 58px #260, 59px 59px #260, 60px 60px #260, 61px 61px #260, 62px 62px #260, 63px 63px #260, 64px 64px #260, 65px 65px #260, 66px 66px #260, 67px 67px #260, 68px 68px #260, 69px 69px #260, 70px 70px #260, 71px 71px #260, 72px 72px #260, 73px 73px #260, 74px 74px #260, 75px 75px #260, 76px 76px #260, 77px 77px #260, 78px 78px #260, 79px 79px #260, 80px 80px #260, 81px 81px #260, 82px 82px #260, 83px 83px #260, 84px 84px #260, 85px 85px #260; }
  .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 #88b140, 1px 1px #88b140, 2px 2px #88b140, 3px 3px #88b140, 4px 4px #88b140, 5px 5px #88b140, 6px 6px #88b140, 7px 7px #88b140, 8px 8px #88b140, 9px 9px #88b140, 10px 10px #88b140, 11px 11px #88b140, 12px 12px #88b140, 13px 13px #88b140, 14px 14px #88b140, 15px 15px #88b140, 16px 16px #88b140, 17px 17px #88b140, 18px 18px #88b140, 19px 19px #88b140, 20px 20px #88b140, 21px 21px #88b140, 22px 22px #88b140, 23px 23px #88b140, 24px 24px #88b140, 25px 25px #88b140, 26px 26px #88b140, 27px 27px #88b140, 28px 28px #88b140, 29px 29px #88b140, 30px 30px #88b140, 31px 31px #88b140, 32px 32px #88b140, 33px 33px #88b140, 34px 34px #88b140, 35px 35px #88b140, 36px 36px #88b140, 37px 37px #88b140, 38px 38px #88b140, 39px 39px #88b140, 40px 40px #88b140, 41px 41px #88b140, 42px 42px #88b140, 43px 43px #88b140, 44px 44px #88b140, 45px 45px #88b140, 46px 46px #88b140, 47px 47px #88b140, 48px 48px #88b140, 49px 49px #88b140, 50px 50px #88b140, 51px 51px #88b140, 52px 52px #88b140, 53px 53px #88b140, 54px 54px #88b140, 55px 55px #88b140, 56px 56px #88b140, 57px 57px #88b140, 58px 58px #88b140, 59px 59px #88b140, 60px 60px #88b140, 61px 61px #88b140, 62px 62px #88b140, 63px 63px #88b140, 64px 64px #88b140, 65px 65px #88b140, 66px 66px #88b140, 67px 67px #88b140, 68px 68px #88b140, 69px 69px #88b140, 70px 70px #88b140, 71px 71px #88b140, 72px 72px #88b140, 73px 73px #88b140, 74px 74px #88b140, 75px 75px #88b140, 76px 76px #88b140, 77px 77px #88b140, 78px 78px #88b140, 79px 79px #88b140, 80px 80px #88b140, 81px 81px #88b140, 82px 82px #88b140, 83px 83px #88b140, 84px 84px #88b140, 85px 85px #88b140; }
  .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); }
  .btn-longshadow.btn-neutral-color, .btn-longshadow-right.btn-neutral-color {
    text-shadow: 0px 0px #f7f7c3, 1px 1px #f7f7c3, 2px 2px #f7f7c3, 3px 3px #f7f7c3, 4px 4px #f7f7c3, 5px 5px #f7f7c3, 6px 6px #f7f7c3, 7px 7px #f7f7c3, 8px 8px #f7f7c3, 9px 9px #f7f7c3, 10px 10px #f7f7c3, 11px 11px #f7f7c3, 12px 12px #f7f7c3, 13px 13px #f7f7c3, 14px 14px #f7f7c3, 15px 15px #f7f7c3, 16px 16px #f7f7c3, 17px 17px #f7f7c3, 18px 18px #f7f7c3, 19px 19px #f7f7c3, 20px 20px #f7f7c3, 21px 21px #f7f7c3, 22px 22px #f7f7c3, 23px 23px #f7f7c3, 24px 24px #f7f7c3, 25px 25px #f7f7c3, 26px 26px #f7f7c3, 27px 27px #f7f7c3, 28px 28px #f7f7c3, 29px 29px #f7f7c3, 30px 30px #f7f7c3, 31px 31px #f7f7c3, 32px 32px #f7f7c3, 33px 33px #f7f7c3, 34px 34px #f7f7c3, 35px 35px #f7f7c3, 36px 36px #f7f7c3, 37px 37px #f7f7c3, 38px 38px #f7f7c3, 39px 39px #f7f7c3, 40px 40px #f7f7c3, 41px 41px #f7f7c3, 42px 42px #f7f7c3, 43px 43px #f7f7c3, 44px 44px #f7f7c3, 45px 45px #f7f7c3, 46px 46px #f7f7c3, 47px 47px #f7f7c3, 48px 48px #f7f7c3, 49px 49px #f7f7c3, 50px 50px #f7f7c3, 51px 51px #f7f7c3, 52px 52px #f7f7c3, 53px 53px #f7f7c3, 54px 54px #f7f7c3, 55px 55px #f7f7c3, 56px 56px #f7f7c3, 57px 57px #f7f7c3, 58px 58px #f7f7c3, 59px 59px #f7f7c3, 60px 60px #f7f7c3, 61px 61px #f7f7c3, 62px 62px #f7f7c3, 63px 63px #f7f7c3, 64px 64px #f7f7c3, 65px 65px #f7f7c3, 66px 66px #f7f7c3, 67px 67px #f7f7c3, 68px 68px #f7f7c3, 69px 69px #f7f7c3, 70px 70px #f7f7c3, 71px 71px #f7f7c3, 72px 72px #f7f7c3, 73px 73px #f7f7c3, 74px 74px #f7f7c3, 75px 75px #f7f7c3, 76px 76px #f7f7c3, 77px 77px #f7f7c3, 78px 78px #f7f7c3, 79px 79px #f7f7c3, 80px 80px #f7f7c3, 81px 81px #f7f7c3, 82px 82px #f7f7c3, 83px 83px #f7f7c3, 84px 84px #f7f7c3, 85px 85px #f7f7c3; }
  .btn-longshadow.btn-neutral-color:active, .btn-longshadow-right.btn-neutral-color:active, .btn-longshadow.btn-neutral-color.active, .btn-longshadow-right.btn-neutral-color.active, .btn-longshadow.btn-neutral-color.is-active, .btn-longshadow-right.btn-neutral-color.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
/*
 * Shadow Left
 *
 */
.btn-longshadow-left {
  overflow: hidden; }
  .btn-longshadow-left.btn-color-1 {
    text-shadow: 0px 0px #269900, -1px 1px #269900, -2px 2px #269900, -3px 3px #269900, -4px 4px #269900, -5px 5px #269900, -6px 6px #269900, -7px 7px #269900, -8px 8px #269900, -9px 9px #269900, -10px 10px #269900, -11px 11px #269900, -12px 12px #269900, -13px 13px #269900, -14px 14px #269900, -15px 15px #269900, -16px 16px #269900, -17px 17px #269900, -18px 18px #269900, -19px 19px #269900, -20px 20px #269900, -21px 21px #269900, -22px 22px #269900, -23px 23px #269900, -24px 24px #269900, -25px 25px #269900, -26px 26px #269900, -27px 27px #269900, -28px 28px #269900, -29px 29px #269900, -30px 30px #269900, -31px 31px #269900, -32px 32px #269900, -33px 33px #269900, -34px 34px #269900, -35px 35px #269900, -36px 36px #269900, -37px 37px #269900, -38px 38px #269900, -39px 39px #269900, -40px 40px #269900, -41px 41px #269900, -42px 42px #269900, -43px 43px #269900, -44px 44px #269900, -45px 45px #269900, -46px 46px #269900, -47px 47px #269900, -48px 48px #269900, -49px 49px #269900, -50px 50px #269900, -51px 51px #269900, -52px 52px #269900, -53px 53px #269900, -54px 54px #269900, -55px 55px #269900, -56px 56px #269900, -57px 57px #269900, -58px 58px #269900, -59px 59px #269900, -60px 60px #269900, -61px 61px #269900, -62px 62px #269900, -63px 63px #269900, -64px 64px #269900, -65px 65px #269900, -66px 66px #269900, -67px 67px #269900, -68px 68px #269900, -69px 69px #269900, -70px 70px #269900, -71px 71px #269900, -72px 72px #269900, -73px 73px #269900, -74px 74px #269900, -75px 75px #269900, -76px 76px #269900, -77px 77px #269900, -78px 78px #269900, -79px 79px #269900, -80px 80px #269900, -81px 81px #269900, -82px 82px #269900, -83px 83px #269900, -84px 84px #269900, -85px 85px #269900; }
  .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 #260, -1px 1px #260, -2px 2px #260, -3px 3px #260, -4px 4px #260, -5px 5px #260, -6px 6px #260, -7px 7px #260, -8px 8px #260, -9px 9px #260, -10px 10px #260, -11px 11px #260, -12px 12px #260, -13px 13px #260, -14px 14px #260, -15px 15px #260, -16px 16px #260, -17px 17px #260, -18px 18px #260, -19px 19px #260, -20px 20px #260, -21px 21px #260, -22px 22px #260, -23px 23px #260, -24px 24px #260, -25px 25px #260, -26px 26px #260, -27px 27px #260, -28px 28px #260, -29px 29px #260, -30px 30px #260, -31px 31px #260, -32px 32px #260, -33px 33px #260, -34px 34px #260, -35px 35px #260, -36px 36px #260, -37px 37px #260, -38px 38px #260, -39px 39px #260, -40px 40px #260, -41px 41px #260, -42px 42px #260, -43px 43px #260, -44px 44px #260, -45px 45px #260, -46px 46px #260, -47px 47px #260, -48px 48px #260, -49px 49px #260, -50px 50px #260, -51px 51px #260, -52px 52px #260, -53px 53px #260, -54px 54px #260, -55px 55px #260, -56px 56px #260, -57px 57px #260, -58px 58px #260, -59px 59px #260, -60px 60px #260, -61px 61px #260, -62px 62px #260, -63px 63px #260, -64px 64px #260, -65px 65px #260, -66px 66px #260, -67px 67px #260, -68px 68px #260, -69px 69px #260, -70px 70px #260, -71px 71px #260, -72px 72px #260, -73px 73px #260, -74px 74px #260, -75px 75px #260, -76px 76px #260, -77px 77px #260, -78px 78px #260, -79px 79px #260, -80px 80px #260, -81px 81px #260, -82px 82px #260, -83px 83px #260, -84px 84px #260, -85px 85px #260; }
  .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 #073a32, -1px 1px #073a32, -2px 2px #073a32, -3px 3px #073a32, -4px 4px #073a32, -5px 5px #073a32, -6px 6px #073a32, -7px 7px #073a32, -8px 8px #073a32, -9px 9px #073a32, -10px 10px #073a32, -11px 11px #073a32, -12px 12px #073a32, -13px 13px #073a32, -14px 14px #073a32, -15px 15px #073a32, -16px 16px #073a32, -17px 17px #073a32, -18px 18px #073a32, -19px 19px #073a32, -20px 20px #073a32, -21px 21px #073a32, -22px 22px #073a32, -23px 23px #073a32, -24px 24px #073a32, -25px 25px #073a32, -26px 26px #073a32, -27px 27px #073a32, -28px 28px #073a32, -29px 29px #073a32, -30px 30px #073a32, -31px 31px #073a32, -32px 32px #073a32, -33px 33px #073a32, -34px 34px #073a32, -35px 35px #073a32, -36px 36px #073a32, -37px 37px #073a32, -38px 38px #073a32, -39px 39px #073a32, -40px 40px #073a32, -41px 41px #073a32, -42px 42px #073a32, -43px 43px #073a32, -44px 44px #073a32, -45px 45px #073a32, -46px 46px #073a32, -47px 47px #073a32, -48px 48px #073a32, -49px 49px #073a32, -50px 50px #073a32, -51px 51px #073a32, -52px 52px #073a32, -53px 53px #073a32, -54px 54px #073a32, -55px 55px #073a32, -56px 56px #073a32, -57px 57px #073a32, -58px 58px #073a32, -59px 59px #073a32, -60px 60px #073a32, -61px 61px #073a32, -62px 62px #073a32, -63px 63px #073a32, -64px 64px #073a32, -65px 65px #073a32, -66px 66px #073a32, -67px 67px #073a32, -68px 68px #073a32, -69px 69px #073a32, -70px 70px #073a32, -71px 71px #073a32, -72px 72px #073a32, -73px 73px #073a32, -74px 74px #073a32, -75px 75px #073a32, -76px 76px #073a32, -77px 77px #073a32, -78px 78px #073a32, -79px 79px #073a32, -80px 80px #073a32, -81px 81px #073a32, -82px 82px #073a32, -83px 83px #073a32, -84px 84px #073a32, -85px 85px #073a32; }
  .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 #260, -1px 1px #260, -2px 2px #260, -3px 3px #260, -4px 4px #260, -5px 5px #260, -6px 6px #260, -7px 7px #260, -8px 8px #260, -9px 9px #260, -10px 10px #260, -11px 11px #260, -12px 12px #260, -13px 13px #260, -14px 14px #260, -15px 15px #260, -16px 16px #260, -17px 17px #260, -18px 18px #260, -19px 19px #260, -20px 20px #260, -21px 21px #260, -22px 22px #260, -23px 23px #260, -24px 24px #260, -25px 25px #260, -26px 26px #260, -27px 27px #260, -28px 28px #260, -29px 29px #260, -30px 30px #260, -31px 31px #260, -32px 32px #260, -33px 33px #260, -34px 34px #260, -35px 35px #260, -36px 36px #260, -37px 37px #260, -38px 38px #260, -39px 39px #260, -40px 40px #260, -41px 41px #260, -42px 42px #260, -43px 43px #260, -44px 44px #260, -45px 45px #260, -46px 46px #260, -47px 47px #260, -48px 48px #260, -49px 49px #260, -50px 50px #260, -51px 51px #260, -52px 52px #260, -53px 53px #260, -54px 54px #260, -55px 55px #260, -56px 56px #260, -57px 57px #260, -58px 58px #260, -59px 59px #260, -60px 60px #260, -61px 61px #260, -62px 62px #260, -63px 63px #260, -64px 64px #260, -65px 65px #260, -66px 66px #260, -67px 67px #260, -68px 68px #260, -69px 69px #260, -70px 70px #260, -71px 71px #260, -72px 72px #260, -73px 73px #260, -74px 74px #260, -75px 75px #260, -76px 76px #260, -77px 77px #260, -78px 78px #260, -79px 79px #260, -80px 80px #260, -81px 81px #260, -82px 82px #260, -83px 83px #260, -84px 84px #260, -85px 85px #260; }
  .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 #88b140, -1px 1px #88b140, -2px 2px #88b140, -3px 3px #88b140, -4px 4px #88b140, -5px 5px #88b140, -6px 6px #88b140, -7px 7px #88b140, -8px 8px #88b140, -9px 9px #88b140, -10px 10px #88b140, -11px 11px #88b140, -12px 12px #88b140, -13px 13px #88b140, -14px 14px #88b140, -15px 15px #88b140, -16px 16px #88b140, -17px 17px #88b140, -18px 18px #88b140, -19px 19px #88b140, -20px 20px #88b140, -21px 21px #88b140, -22px 22px #88b140, -23px 23px #88b140, -24px 24px #88b140, -25px 25px #88b140, -26px 26px #88b140, -27px 27px #88b140, -28px 28px #88b140, -29px 29px #88b140, -30px 30px #88b140, -31px 31px #88b140, -32px 32px #88b140, -33px 33px #88b140, -34px 34px #88b140, -35px 35px #88b140, -36px 36px #88b140, -37px 37px #88b140, -38px 38px #88b140, -39px 39px #88b140, -40px 40px #88b140, -41px 41px #88b140, -42px 42px #88b140, -43px 43px #88b140, -44px 44px #88b140, -45px 45px #88b140, -46px 46px #88b140, -47px 47px #88b140, -48px 48px #88b140, -49px 49px #88b140, -50px 50px #88b140, -51px 51px #88b140, -52px 52px #88b140, -53px 53px #88b140, -54px 54px #88b140, -55px 55px #88b140, -56px 56px #88b140, -57px 57px #88b140, -58px 58px #88b140, -59px 59px #88b140, -60px 60px #88b140, -61px 61px #88b140, -62px 62px #88b140, -63px 63px #88b140, -64px 64px #88b140, -65px 65px #88b140, -66px 66px #88b140, -67px 67px #88b140, -68px 68px #88b140, -69px 69px #88b140, -70px 70px #88b140, -71px 71px #88b140, -72px 72px #88b140, -73px 73px #88b140, -74px 74px #88b140, -75px 75px #88b140, -76px 76px #88b140, -77px 77px #88b140, -78px 78px #88b140, -79px 79px #88b140, -80px 80px #88b140, -81px 81px #88b140, -82px 82px #88b140, -83px 83px #88b140, -84px 84px #88b140, -85px 85px #88b140; }
  .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); }
  .btn-longshadow-left.btn-neutral-color {
    text-shadow: 0px 0px #f7f7c3, -1px 1px #f7f7c3, -2px 2px #f7f7c3, -3px 3px #f7f7c3, -4px 4px #f7f7c3, -5px 5px #f7f7c3, -6px 6px #f7f7c3, -7px 7px #f7f7c3, -8px 8px #f7f7c3, -9px 9px #f7f7c3, -10px 10px #f7f7c3, -11px 11px #f7f7c3, -12px 12px #f7f7c3, -13px 13px #f7f7c3, -14px 14px #f7f7c3, -15px 15px #f7f7c3, -16px 16px #f7f7c3, -17px 17px #f7f7c3, -18px 18px #f7f7c3, -19px 19px #f7f7c3, -20px 20px #f7f7c3, -21px 21px #f7f7c3, -22px 22px #f7f7c3, -23px 23px #f7f7c3, -24px 24px #f7f7c3, -25px 25px #f7f7c3, -26px 26px #f7f7c3, -27px 27px #f7f7c3, -28px 28px #f7f7c3, -29px 29px #f7f7c3, -30px 30px #f7f7c3, -31px 31px #f7f7c3, -32px 32px #f7f7c3, -33px 33px #f7f7c3, -34px 34px #f7f7c3, -35px 35px #f7f7c3, -36px 36px #f7f7c3, -37px 37px #f7f7c3, -38px 38px #f7f7c3, -39px 39px #f7f7c3, -40px 40px #f7f7c3, -41px 41px #f7f7c3, -42px 42px #f7f7c3, -43px 43px #f7f7c3, -44px 44px #f7f7c3, -45px 45px #f7f7c3, -46px 46px #f7f7c3, -47px 47px #f7f7c3, -48px 48px #f7f7c3, -49px 49px #f7f7c3, -50px 50px #f7f7c3, -51px 51px #f7f7c3, -52px 52px #f7f7c3, -53px 53px #f7f7c3, -54px 54px #f7f7c3, -55px 55px #f7f7c3, -56px 56px #f7f7c3, -57px 57px #f7f7c3, -58px 58px #f7f7c3, -59px 59px #f7f7c3, -60px 60px #f7f7c3, -61px 61px #f7f7c3, -62px 62px #f7f7c3, -63px 63px #f7f7c3, -64px 64px #f7f7c3, -65px 65px #f7f7c3, -66px 66px #f7f7c3, -67px 67px #f7f7c3, -68px 68px #f7f7c3, -69px 69px #f7f7c3, -70px 70px #f7f7c3, -71px 71px #f7f7c3, -72px 72px #f7f7c3, -73px 73px #f7f7c3, -74px 74px #f7f7c3, -75px 75px #f7f7c3, -76px 76px #f7f7c3, -77px 77px #f7f7c3, -78px 78px #f7f7c3, -79px 79px #f7f7c3, -80px 80px #f7f7c3, -81px 81px #f7f7c3, -82px 82px #f7f7c3, -83px 83px #f7f7c3, -84px 84px #f7f7c3, -85px 85px #f7f7c3; }
  .btn-longshadow-left.btn-neutral-color:active, .btn-longshadow-left.btn-neutral-color.active, .btn-longshadow-left.btn-neutral-color.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
/*
 * Button Sizes
 *
 * This file creates the various button sizes
 * (ex. .button-large, .button-small, etc.)
 */
.btn-giant {
  font-size: 1.75em;
  height: 70px;
  line-height: 70px;
  padding: 0 70px; }

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

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

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

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

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