/*--------------------------------------------------------------
 # Buttons.scss - BoldGrid Button Library.
 --------------------------------------------------------------*/
/*! @license
 *
 * Buttons
 * Copyright 2012-2014 Alex Wolfe and Rob Levin
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*
 * Compass (optional)
 *
 * We recommend the use of autoprefixer instead of Compass
 * when using buttons. However, buttons does support Compass.
 * simply change $ubtn-use-compass to true and uncomment the
 * @import 'compass' code below to use Compass.
 */
/*
 * Required Files
 *
 * These files include the variables and options
 * and base css styles that are required to generate buttons.
 */
/*
 * $ubtn prefix (reserved)
 *
 * This prefix stands for Unicorn Button - ubtn
 * We provide a prefix to the Sass Variables to
 * prevent namespace collisions that could occur if
 * you import buttons as part of your Sass build process.
 * We kindly ask you not to use the prefix $ubtn in your project
 * in order to avoid possilbe name conflicts. Thanks!
 */
/*
 * Button Namespace (ex .button or .btn)
 *
 */
/*
 * Button Defaults
 *
 * Some default settings that are used throughout the button library.
 * Changes to these settings will be picked up by all of the other modules.
 * The colors used here are the default colors for the base button (gray).
 * The font size and height are used to set the base size for the buttons.
 * The size values will be used to calculate the larger and smaller button sizes.
 */
/*
 * Button Colors
 *
 * $ubtn-colors is used to generate the different button colors.
 * Edit or add colors to the list below and recompile.
 * Each block contains the (name, background, color)
 * The class is generated using the name: (ex .button-primary)
 */
/*
 * Button Shapes
 *
 * $ubtn-shapes is used to generate the different button shapes.
 * Edit or add shapes to the list below and recompile.
 * Each block contains the (name, border-radius).
 * The class is generated using the name: (ex .button-square).
 */
/*
 * Button Sizes
 *
 * $ubtn-sizes is used to generate the different button sizes.
 * Edit or add colors to the list below and recompile.
 * Each block contains the (name, size multiplier).
 * The class is generated using the name: (ex .button-giant).
 */
/*
 * Color Mixin
 *
 * Iterates through the list of colors and creates
 *
 */
/*
 * No Animation
 *
 * Sets animation property to none
 */
/*
 * Clearfix
 *
 * Clears floats inside the container
 */
/*
 * Base Button Style
 *
 * The default values for the .button class
 */
.btn {
  color: #f4f9fc;
  background-color: #604832;
  border-color: #604832;
  font-weight: inherit;
  font-size: 1em;
  font-family: inherit;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  display: inline-block;
  appearance: none;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  transition-property: all;
  transition-duration: 0.3s;
  /*
   * Disabled State
   *
   * The disabled state uses the class .disabled, is-disabled,
   * and the form attribute disabled="disabled".
   * The use of !important is only added because this is a state
   * that must be applied to all buttons when in a disabled state.
   */ }
  .btn:visited {
    color: #f4f9fc; }
  .btn:hover, .btn:focus {
    background-color: #6a5037;
    text-decoration: none;
    outline: none; }
  .btn:active, .btn.active, .btn.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, .3);
    text-decoration: none;
    background-color: #594839;
    border-color: #382a1d;
    color: #3e2f21;
    transition-duration: 0s;
    box-shadow: inset 0 1px 3px rgba(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: #604832;
  border-color: #604832;
  color: #f4f9fc; }
  .btn-color-1:visited, .btn-color-1-flat:visited {
    color: #f4f9fc; }
  .btn-color-1:hover, .btn-color-1-flat:hover, .btn-color-1:focus, .btn-color-1-flat:focus {
    background-color: #826143;
    border-color: #826143;
    color: #f4f9fc; }
  .btn-color-1:active, .btn-color-1-flat:active, .btn-color-1.active, .btn-color-1-flat.active, .btn-color-1.is-active, .btn-color-1-flat.is-active {
    background-color: #594839;
    border-color: #594839;
    color: #3e2f21; }

.btn-color-2, .btn-color-2-flat {
  background-color: #c1ab8d;
  border-color: #c1ab8d;
  color: #333; }
  .btn-color-2:visited, .btn-color-2-flat:visited {
    color: #333; }
  .btn-color-2:hover, .btn-color-2-flat:hover, .btn-color-2:focus, .btn-color-2-flat:focus {
    background-color: #d3c3ae;
    border-color: #d3c3ae;
    color: #333; }
  .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: #b8aa96;
    border-color: #b8aa96;
    color: #af936c; }

.btn-color-3, .btn-color-3-flat {
  background-color: #977967;
  border-color: #977967;
  color: #f4f9fc; }
  .btn-color-3:visited, .btn-color-3-flat:visited {
    color: #f4f9fc; }
  .btn-color-3:hover, .btn-color-3-flat:hover, .btn-color-3:focus, .btn-color-3-flat:focus {
    background-color: #ac9485;
    border-color: #ac9485;
    color: #f4f9fc; }
  .btn-color-3:active, .btn-color-3-flat:active, .btn-color-3.active, .btn-color-3-flat.active, .btn-color-3.is-active, .btn-color-3-flat.is-active {
    background-color: #8a7c74;
    border-color: #8a7c74;
    color: #796152; }

.btn-color-4, .btn-color-4-flat {
  background-color: #7c7c7c;
  border-color: #7c7c7c;
  color: #f4f9fc; }
  .btn-color-4:visited, .btn-color-4-flat:visited {
    color: #f4f9fc; }
  .btn-color-4:hover, .btn-color-4-flat:hover, .btn-color-4:focus, .btn-color-4-flat:focus {
    background-color: #969696;
    border-color: #969696;
    color: #f4f9fc; }
  .btn-color-4:active, .btn-color-4-flat:active, .btn-color-4.active, .btn-color-4-flat.active, .btn-color-4.is-active, .btn-color-4-flat.is-active {
    background-color: #7c7c7c;
    border-color: #7c7c7c;
    color: #636363; }

.btn-color-5, .btn-color-5-flat {
  background-color: #fffcf7;
  border-color: #fffcf7;
  color: #333; }
  .btn-color-5:visited, .btn-color-5-flat:visited {
    color: #333; }
  .btn-color-5:hover, .btn-color-5-flat:hover, .btn-color-5:focus, .btn-color-5-flat:focus {
    background-color: #fff;
    border-color: #fff;
    color: #333; }
  .btn-color-5:active, .btn-color-5-flat:active, .btn-color-5.active, .btn-color-5-flat.active, .btn-color-5.is-active, .btn-color-5-flat.is-active {
    background-color: #fffcf7;
    border-color: #fffcf7;
    color: #ffe9c4; }
/*
 * 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(130, 97, 67, .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: #604832; }
    .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(130, 97, 67, .9);
      color: rgba(244, 249, 252, .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(89, 72, 57, .7);
      color: rgba(244, 249, 252, .5);
      opacity: 0.3; }
  .btn-border.btn-color-2, .btn-border-thin.btn-color-2, .btn-border-thick.btn-color-2 {
    color: #c1ab8d; }
    .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(211, 195, 174, .9);
      color: rgba(51, 51, 51, .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(184, 170, 150, .7);
      color: rgba(51, 51, 51, .5);
      opacity: 0.3; }
  .btn-border.btn-color-3, .btn-border-thin.btn-color-3, .btn-border-thick.btn-color-3 {
    color: #977967; }
    .btn-border.btn-color-3:hover, .btn-border-thin.btn-color-3:hover, .btn-border-thick.btn-color-3:hover, .btn-border.btn-color-3:focus, .btn-border-thin.btn-color-3:focus, .btn-border-thick.btn-color-3:focus {
      background-color: rgba(172, 148, 133, .9);
      color: rgba(244, 249, 252, .9); }
    .btn-border.btn-color-3:active, .btn-border-thin.btn-color-3:active, .btn-border-thick.btn-color-3:active, .btn-border.btn-color-3.active, .btn-border-thin.btn-color-3.active, .btn-border-thick.btn-color-3.active, .btn-border.btn-color-3.is-active, .btn-border-thin.btn-color-3.is-active, .btn-border-thick.btn-color-3.is-active {
      background-color: rgba(138, 124, 116, .7);
      color: rgba(244, 249, 252, .5);
      opacity: 0.3; }
  .btn-border.btn-color-4, .btn-border-thin.btn-color-4, .btn-border-thick.btn-color-4 {
    color: #7c7c7c; }
    .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(150, 150, 150, .9);
      color: rgba(244, 249, 252, .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(124, 124, 124, .7);
      color: rgba(244, 249, 252, .5);
      opacity: 0.3; }
  .btn-border.btn-color-5, .btn-border-thin.btn-color-5, .btn-border-thick.btn-color-5 {
    color: #fffcf7; }
    .btn-border.btn-color-5:hover, .btn-border-thin.btn-color-5:hover, .btn-border-thick.btn-color-5:hover, .btn-border.btn-color-5:focus, .btn-border-thin.btn-color-5:focus, .btn-border-thick.btn-color-5:focus {
      background-color: rgba(255, 255, 255, .9);
      color: rgba(51, 51, 51, .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(255, 252, 247, .7);
      color: rgba(51, 51, 51, .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: #604832;
  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: #604832; }
  .btn-borderless.btn-color-2 {
    color: #c1ab8d; }
  .btn-borderless.btn-color-3 {
    color: #977967; }
  .btn-borderless.btn-color-4 {
    color: #7c7c7c; }
  .btn-borderless.btn-color-5 {
    color: #fffcf7; }
  .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: #4f3b29;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#6a5037, #4f3b29);
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, .3), 0 1px 2px rgba(0, 0, 0, .15); }

.btn-raised:hover, .btn-raised:focus {
  background: linear-gradient(#7b5c40, #493626); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #594839;
  box-shadow: inset 0px 1px 3px rgba(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: #4f3b29;
  background: linear-gradient(#71553b, #4f3b29); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#7b5c40, #493626); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #3e2f21;
    background: #594839; }
  .btn-raised.btn-color-2 {
    border-color: #b89f7c;
    background: linear-gradient(#cab79e, #b89f7c); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#cfbea7, #b49a76); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #af936c;
    background: #b8aa96; }
  .btn-raised.btn-color-3 {
    border-color: #886d5d;
    background: linear-gradient(#a28676, #886d5d); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#a88e7f, #826859); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #796152;
    background: #8a7c74; }
  .btn-raised.btn-color-4 {
    border-color: #6f6f6f;
    background: linear-gradient(#898989, #6f6f6f); }
  .btn-raised.btn-color-4:hover, .btn-raised.btn-color-4:focus {
    background: linear-gradient(#909090, #6a6a6a); }
  .btn-raised.btn-color-4:active, .btn-raised.btn-color-4.active, .btn-raised.btn-color-4.is-active {
    border-color: #636363;
    background: #7c7c7c; }
  .btn-raised.btn-color-5 {
    border-color: #fff2de;
    background: linear-gradient(#fff, #fff2de); }
  .btn-raised.btn-color-5:hover, .btn-raised.btn-color-5:focus {
    background: linear-gradient(#fff, #ffefd3); }
  .btn-raised.btn-color-5:active, .btn-raised.btn-color-5.active, .btn-raised.btn-color-5.is-active {
    border-color: #ffe9c4;
    background: #fffcf7; }
/*
 * 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 #1d160f, 0 8px 3px rgba(0, 0, 0, .2); }

.btn-3d:hover, .btn-3d:focus {
  box-shadow: 0 7px 0 #1d160f, 0 8px 3px rgba(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 #1d160f, 0 3px 3px rgba(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 #3e2f21, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-color-1:hover, .btn-3d.btn-color-1:focus {
    box-shadow: 0 7px 0 #382a1d, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-color-1:active, .btn-3d.btn-color-1.active, .btn-3d.btn-color-1.is-active {
    box-shadow: 0 2px 0 #1d160f, 0 3px 3px rgba(0, 0, 0, .2); }
  .btn-3d.btn-color-2 {
    box-shadow: 0 7px 0 #af936c, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-color-2:hover, .btn-3d.btn-color-2:focus {
    box-shadow: 0 7px 0 #ab8e65, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-color-2:active, .btn-3d.btn-color-2.active, .btn-3d.btn-color-2.is-active {
    box-shadow: 0 2px 0 #967952, 0 3px 3px rgba(0, 0, 0, .2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #796152, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-color-3:hover, .btn-3d.btn-color-3:focus {
    box-shadow: 0 7px 0 #735c4e, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-color-3:active, .btn-3d.btn-color-3.active, .btn-3d.btn-color-3.is-active {
    box-shadow: 0 2px 0 #5a483e, 0 3px 3px rgba(0, 0, 0, .2); }
  .btn-3d.btn-color-4 {
    box-shadow: 0 7px 0 #636363, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-color-4:hover, .btn-3d.btn-color-4:focus {
    box-shadow: 0 7px 0 #5d5d5d, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-color-4:active, .btn-3d.btn-color-4.active, .btn-3d.btn-color-4.is-active {
    box-shadow: 0 2px 0 #494949, 0 3px 3px rgba(0, 0, 0, .2); }
  .btn-3d.btn-color-5 {
    box-shadow: 0 7px 0 #ffe9c4, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-color-5:hover, .btn-3d.btn-color-5:focus {
    box-shadow: 0 7px 0 #ffe5ba, 0 8px 3px rgba(0, 0, 0, .30); }
  .btn-3d.btn-color-5:active, .btn-3d.btn-color-5.active, .btn-3d.btn-color-5.is-active {
    box-shadow: 0 2px 0 #ffd691, 0 3px 3px rgba(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(96, 72, 50, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(96, 72, 50, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(96, 72, 50, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-color-5 {
    from {
      box-shadow: 0 0 0 rgba(255, 252, 247, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(255, 252, 247, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(255, 252, 247, 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(130, 97, 67, .95);
  border-style: solid;
  border-width: 1px;
  border-color: #3e2f21;
  font-family: inherit;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  box-sizing: border-box;
  /*
   * Dropdown Above
   *
   */ }

.btn-dropdown-list.is-below {
  /*
   * Dropdown Below
   *
   */
  top: 100%;
  border-top: none;
  border-radius: 0 0 3px 3px; }

.btn-dropdown-list.is-above {
  bottom: 100%;
  top: auto;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 -2px 7px rgba(0, 0, 0, 0.2); }
/*
 * Dropdown Buttons
 *
 */
.btn-dropdown-list > li {
  padding: 0;
  margin: 0;
  display: block; }

.btn-dropdown-list > li > a {
  display: block;
  line-height: 40px;
  font-size: 0.8em;
  padding: 5px 10px;
  float: none;
  color: #f4f9fc;
  text-decoration: none; }
  .btn-dropdown-list > li > a:hover {
    color: #e8f2f9;
    background: #6a5037;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #56402d; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(96, 72, 50, .95);
  border-color: #3e2f21; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #493626; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list > li > a {
    color: #f4f9fc; }
    .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list > li > a:hover {
      color: #e0eef7;
      background: #4f3b29; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(193, 171, 141, .95);
    border-color: #af936c; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #b49a76; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list > li > a {
    color: #333; }
    .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list > li > a:hover {
      color: #262626;
      background: #b89f7c; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(151, 121, 103, .95);
    border-color: #796152; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #826859; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a {
    color: #f4f9fc; }
    .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a:hover {
      color: #e0eef7;
      background: #886d5d; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list {
    background: rgba(124, 124, 124, .95);
    border-color: #636363; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #6a6a6a; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a {
    color: #f4f9fc; }
    .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a:hover {
      color: #e0eef7;
      background: #6f6f6f; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list {
    background: rgba(255, 252, 247, .95);
    border-color: #ffe9c4; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #ffefd3; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a {
    color: #333; }
    .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a:hover {
      color: #262626;
      background: #fff2de; }
/*
 * 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 #3e2f21, 1px 1px #3e2f21, 2px 2px #3e2f21, 3px 3px #3e2f21, 4px 4px #3e2f21, 5px 5px #3e2f21, 6px 6px #3e2f21, 7px 7px #3e2f21, 8px 8px #3e2f21, 9px 9px #3e2f21, 10px 10px #3e2f21, 11px 11px #3e2f21, 12px 12px #3e2f21, 13px 13px #3e2f21, 14px 14px #3e2f21, 15px 15px #3e2f21, 16px 16px #3e2f21, 17px 17px #3e2f21, 18px 18px #3e2f21, 19px 19px #3e2f21, 20px 20px #3e2f21, 21px 21px #3e2f21, 22px 22px #3e2f21, 23px 23px #3e2f21, 24px 24px #3e2f21, 25px 25px #3e2f21, 26px 26px #3e2f21, 27px 27px #3e2f21, 28px 28px #3e2f21, 29px 29px #3e2f21, 30px 30px #3e2f21, 31px 31px #3e2f21, 32px 32px #3e2f21, 33px 33px #3e2f21, 34px 34px #3e2f21, 35px 35px #3e2f21, 36px 36px #3e2f21, 37px 37px #3e2f21, 38px 38px #3e2f21, 39px 39px #3e2f21, 40px 40px #3e2f21, 41px 41px #3e2f21, 42px 42px #3e2f21, 43px 43px #3e2f21, 44px 44px #3e2f21, 45px 45px #3e2f21, 46px 46px #3e2f21, 47px 47px #3e2f21, 48px 48px #3e2f21, 49px 49px #3e2f21, 50px 50px #3e2f21, 51px 51px #3e2f21, 52px 52px #3e2f21, 53px 53px #3e2f21, 54px 54px #3e2f21, 55px 55px #3e2f21, 56px 56px #3e2f21, 57px 57px #3e2f21, 58px 58px #3e2f21, 59px 59px #3e2f21, 60px 60px #3e2f21, 61px 61px #3e2f21, 62px 62px #3e2f21, 63px 63px #3e2f21, 64px 64px #3e2f21, 65px 65px #3e2f21, 66px 66px #3e2f21, 67px 67px #3e2f21, 68px 68px #3e2f21, 69px 69px #3e2f21, 70px 70px #3e2f21, 71px 71px #3e2f21, 72px 72px #3e2f21, 73px 73px #3e2f21, 74px 74px #3e2f21, 75px 75px #3e2f21, 76px 76px #3e2f21, 77px 77px #3e2f21, 78px 78px #3e2f21, 79px 79px #3e2f21, 80px 80px #3e2f21, 81px 81px #3e2f21, 82px 82px #3e2f21, 83px 83px #3e2f21, 84px 84px #3e2f21, 85px 85px #3e2f21; }
  .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, .4); }
  .btn-longshadow.btn-color-2, .btn-longshadow-right.btn-color-2 {
    text-shadow: 0px 0px #af936c, 1px 1px #af936c, 2px 2px #af936c, 3px 3px #af936c, 4px 4px #af936c, 5px 5px #af936c, 6px 6px #af936c, 7px 7px #af936c, 8px 8px #af936c, 9px 9px #af936c, 10px 10px #af936c, 11px 11px #af936c, 12px 12px #af936c, 13px 13px #af936c, 14px 14px #af936c, 15px 15px #af936c, 16px 16px #af936c, 17px 17px #af936c, 18px 18px #af936c, 19px 19px #af936c, 20px 20px #af936c, 21px 21px #af936c, 22px 22px #af936c, 23px 23px #af936c, 24px 24px #af936c, 25px 25px #af936c, 26px 26px #af936c, 27px 27px #af936c, 28px 28px #af936c, 29px 29px #af936c, 30px 30px #af936c, 31px 31px #af936c, 32px 32px #af936c, 33px 33px #af936c, 34px 34px #af936c, 35px 35px #af936c, 36px 36px #af936c, 37px 37px #af936c, 38px 38px #af936c, 39px 39px #af936c, 40px 40px #af936c, 41px 41px #af936c, 42px 42px #af936c, 43px 43px #af936c, 44px 44px #af936c, 45px 45px #af936c, 46px 46px #af936c, 47px 47px #af936c, 48px 48px #af936c, 49px 49px #af936c, 50px 50px #af936c, 51px 51px #af936c, 52px 52px #af936c, 53px 53px #af936c, 54px 54px #af936c, 55px 55px #af936c, 56px 56px #af936c, 57px 57px #af936c, 58px 58px #af936c, 59px 59px #af936c, 60px 60px #af936c, 61px 61px #af936c, 62px 62px #af936c, 63px 63px #af936c, 64px 64px #af936c, 65px 65px #af936c, 66px 66px #af936c, 67px 67px #af936c, 68px 68px #af936c, 69px 69px #af936c, 70px 70px #af936c, 71px 71px #af936c, 72px 72px #af936c, 73px 73px #af936c, 74px 74px #af936c, 75px 75px #af936c, 76px 76px #af936c, 77px 77px #af936c, 78px 78px #af936c, 79px 79px #af936c, 80px 80px #af936c, 81px 81px #af936c, 82px 82px #af936c, 83px 83px #af936c, 84px 84px #af936c, 85px 85px #af936c; }
  .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, .4); }
  .btn-longshadow.btn-color-3, .btn-longshadow-right.btn-color-3 {
    text-shadow: 0px 0px #796152, 1px 1px #796152, 2px 2px #796152, 3px 3px #796152, 4px 4px #796152, 5px 5px #796152, 6px 6px #796152, 7px 7px #796152, 8px 8px #796152, 9px 9px #796152, 10px 10px #796152, 11px 11px #796152, 12px 12px #796152, 13px 13px #796152, 14px 14px #796152, 15px 15px #796152, 16px 16px #796152, 17px 17px #796152, 18px 18px #796152, 19px 19px #796152, 20px 20px #796152, 21px 21px #796152, 22px 22px #796152, 23px 23px #796152, 24px 24px #796152, 25px 25px #796152, 26px 26px #796152, 27px 27px #796152, 28px 28px #796152, 29px 29px #796152, 30px 30px #796152, 31px 31px #796152, 32px 32px #796152, 33px 33px #796152, 34px 34px #796152, 35px 35px #796152, 36px 36px #796152, 37px 37px #796152, 38px 38px #796152, 39px 39px #796152, 40px 40px #796152, 41px 41px #796152, 42px 42px #796152, 43px 43px #796152, 44px 44px #796152, 45px 45px #796152, 46px 46px #796152, 47px 47px #796152, 48px 48px #796152, 49px 49px #796152, 50px 50px #796152, 51px 51px #796152, 52px 52px #796152, 53px 53px #796152, 54px 54px #796152, 55px 55px #796152, 56px 56px #796152, 57px 57px #796152, 58px 58px #796152, 59px 59px #796152, 60px 60px #796152, 61px 61px #796152, 62px 62px #796152, 63px 63px #796152, 64px 64px #796152, 65px 65px #796152, 66px 66px #796152, 67px 67px #796152, 68px 68px #796152, 69px 69px #796152, 70px 70px #796152, 71px 71px #796152, 72px 72px #796152, 73px 73px #796152, 74px 74px #796152, 75px 75px #796152, 76px 76px #796152, 77px 77px #796152, 78px 78px #796152, 79px 79px #796152, 80px 80px #796152, 81px 81px #796152, 82px 82px #796152, 83px 83px #796152, 84px 84px #796152, 85px 85px #796152; }
  .btn-longshadow.btn-color-3:active, .btn-longshadow-right.btn-color-3:active, .btn-longshadow.btn-color-3.active, .btn-longshadow-right.btn-color-3.active, .btn-longshadow.btn-color-3.is-active, .btn-longshadow-right.btn-color-3.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, .4); }
  .btn-longshadow.btn-color-4, .btn-longshadow-right.btn-color-4 {
    text-shadow: 0px 0px #636363, 1px 1px #636363, 2px 2px #636363, 3px 3px #636363, 4px 4px #636363, 5px 5px #636363, 6px 6px #636363, 7px 7px #636363, 8px 8px #636363, 9px 9px #636363, 10px 10px #636363, 11px 11px #636363, 12px 12px #636363, 13px 13px #636363, 14px 14px #636363, 15px 15px #636363, 16px 16px #636363, 17px 17px #636363, 18px 18px #636363, 19px 19px #636363, 20px 20px #636363, 21px 21px #636363, 22px 22px #636363, 23px 23px #636363, 24px 24px #636363, 25px 25px #636363, 26px 26px #636363, 27px 27px #636363, 28px 28px #636363, 29px 29px #636363, 30px 30px #636363, 31px 31px #636363, 32px 32px #636363, 33px 33px #636363, 34px 34px #636363, 35px 35px #636363, 36px 36px #636363, 37px 37px #636363, 38px 38px #636363, 39px 39px #636363, 40px 40px #636363, 41px 41px #636363, 42px 42px #636363, 43px 43px #636363, 44px 44px #636363, 45px 45px #636363, 46px 46px #636363, 47px 47px #636363, 48px 48px #636363, 49px 49px #636363, 50px 50px #636363, 51px 51px #636363, 52px 52px #636363, 53px 53px #636363, 54px 54px #636363, 55px 55px #636363, 56px 56px #636363, 57px 57px #636363, 58px 58px #636363, 59px 59px #636363, 60px 60px #636363, 61px 61px #636363, 62px 62px #636363, 63px 63px #636363, 64px 64px #636363, 65px 65px #636363, 66px 66px #636363, 67px 67px #636363, 68px 68px #636363, 69px 69px #636363, 70px 70px #636363, 71px 71px #636363, 72px 72px #636363, 73px 73px #636363, 74px 74px #636363, 75px 75px #636363, 76px 76px #636363, 77px 77px #636363, 78px 78px #636363, 79px 79px #636363, 80px 80px #636363, 81px 81px #636363, 82px 82px #636363, 83px 83px #636363, 84px 84px #636363, 85px 85px #636363; }
  .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, .4); }
  .btn-longshadow.btn-color-5, .btn-longshadow-right.btn-color-5 {
    text-shadow: 0px 0px #ffe9c4, 1px 1px #ffe9c4, 2px 2px #ffe9c4, 3px 3px #ffe9c4, 4px 4px #ffe9c4, 5px 5px #ffe9c4, 6px 6px #ffe9c4, 7px 7px #ffe9c4, 8px 8px #ffe9c4, 9px 9px #ffe9c4, 10px 10px #ffe9c4, 11px 11px #ffe9c4, 12px 12px #ffe9c4, 13px 13px #ffe9c4, 14px 14px #ffe9c4, 15px 15px #ffe9c4, 16px 16px #ffe9c4, 17px 17px #ffe9c4, 18px 18px #ffe9c4, 19px 19px #ffe9c4, 20px 20px #ffe9c4, 21px 21px #ffe9c4, 22px 22px #ffe9c4, 23px 23px #ffe9c4, 24px 24px #ffe9c4, 25px 25px #ffe9c4, 26px 26px #ffe9c4, 27px 27px #ffe9c4, 28px 28px #ffe9c4, 29px 29px #ffe9c4, 30px 30px #ffe9c4, 31px 31px #ffe9c4, 32px 32px #ffe9c4, 33px 33px #ffe9c4, 34px 34px #ffe9c4, 35px 35px #ffe9c4, 36px 36px #ffe9c4, 37px 37px #ffe9c4, 38px 38px #ffe9c4, 39px 39px #ffe9c4, 40px 40px #ffe9c4, 41px 41px #ffe9c4, 42px 42px #ffe9c4, 43px 43px #ffe9c4, 44px 44px #ffe9c4, 45px 45px #ffe9c4, 46px 46px #ffe9c4, 47px 47px #ffe9c4, 48px 48px #ffe9c4, 49px 49px #ffe9c4, 50px 50px #ffe9c4, 51px 51px #ffe9c4, 52px 52px #ffe9c4, 53px 53px #ffe9c4, 54px 54px #ffe9c4, 55px 55px #ffe9c4, 56px 56px #ffe9c4, 57px 57px #ffe9c4, 58px 58px #ffe9c4, 59px 59px #ffe9c4, 60px 60px #ffe9c4, 61px 61px #ffe9c4, 62px 62px #ffe9c4, 63px 63px #ffe9c4, 64px 64px #ffe9c4, 65px 65px #ffe9c4, 66px 66px #ffe9c4, 67px 67px #ffe9c4, 68px 68px #ffe9c4, 69px 69px #ffe9c4, 70px 70px #ffe9c4, 71px 71px #ffe9c4, 72px 72px #ffe9c4, 73px 73px #ffe9c4, 74px 74px #ffe9c4, 75px 75px #ffe9c4, 76px 76px #ffe9c4, 77px 77px #ffe9c4, 78px 78px #ffe9c4, 79px 79px #ffe9c4, 80px 80px #ffe9c4, 81px 81px #ffe9c4, 82px 82px #ffe9c4, 83px 83px #ffe9c4, 84px 84px #ffe9c4, 85px 85px #ffe9c4; }
  .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, .4); }
/*
 * Shadow Left
 *
 */
.btn-longshadow-left {
  overflow: hidden; }
  .btn-longshadow-left.btn-color-1 {
    text-shadow: 0px 0px #3e2f21, -1px 1px #3e2f21, -2px 2px #3e2f21, -3px 3px #3e2f21, -4px 4px #3e2f21, -5px 5px #3e2f21, -6px 6px #3e2f21, -7px 7px #3e2f21, -8px 8px #3e2f21, -9px 9px #3e2f21, -10px 10px #3e2f21, -11px 11px #3e2f21, -12px 12px #3e2f21, -13px 13px #3e2f21, -14px 14px #3e2f21, -15px 15px #3e2f21, -16px 16px #3e2f21, -17px 17px #3e2f21, -18px 18px #3e2f21, -19px 19px #3e2f21, -20px 20px #3e2f21, -21px 21px #3e2f21, -22px 22px #3e2f21, -23px 23px #3e2f21, -24px 24px #3e2f21, -25px 25px #3e2f21, -26px 26px #3e2f21, -27px 27px #3e2f21, -28px 28px #3e2f21, -29px 29px #3e2f21, -30px 30px #3e2f21, -31px 31px #3e2f21, -32px 32px #3e2f21, -33px 33px #3e2f21, -34px 34px #3e2f21, -35px 35px #3e2f21, -36px 36px #3e2f21, -37px 37px #3e2f21, -38px 38px #3e2f21, -39px 39px #3e2f21, -40px 40px #3e2f21, -41px 41px #3e2f21, -42px 42px #3e2f21, -43px 43px #3e2f21, -44px 44px #3e2f21, -45px 45px #3e2f21, -46px 46px #3e2f21, -47px 47px #3e2f21, -48px 48px #3e2f21, -49px 49px #3e2f21, -50px 50px #3e2f21, -51px 51px #3e2f21, -52px 52px #3e2f21, -53px 53px #3e2f21, -54px 54px #3e2f21, -55px 55px #3e2f21, -56px 56px #3e2f21, -57px 57px #3e2f21, -58px 58px #3e2f21, -59px 59px #3e2f21, -60px 60px #3e2f21, -61px 61px #3e2f21, -62px 62px #3e2f21, -63px 63px #3e2f21, -64px 64px #3e2f21, -65px 65px #3e2f21, -66px 66px #3e2f21, -67px 67px #3e2f21, -68px 68px #3e2f21, -69px 69px #3e2f21, -70px 70px #3e2f21, -71px 71px #3e2f21, -72px 72px #3e2f21, -73px 73px #3e2f21, -74px 74px #3e2f21, -75px 75px #3e2f21, -76px 76px #3e2f21, -77px 77px #3e2f21, -78px 78px #3e2f21, -79px 79px #3e2f21, -80px 80px #3e2f21, -81px 81px #3e2f21, -82px 82px #3e2f21, -83px 83px #3e2f21, -84px 84px #3e2f21, -85px 85px #3e2f21; }
  .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, .4); }
  .btn-longshadow-left.btn-color-2 {
    text-shadow: 0px 0px #af936c, -1px 1px #af936c, -2px 2px #af936c, -3px 3px #af936c, -4px 4px #af936c, -5px 5px #af936c, -6px 6px #af936c, -7px 7px #af936c, -8px 8px #af936c, -9px 9px #af936c, -10px 10px #af936c, -11px 11px #af936c, -12px 12px #af936c, -13px 13px #af936c, -14px 14px #af936c, -15px 15px #af936c, -16px 16px #af936c, -17px 17px #af936c, -18px 18px #af936c, -19px 19px #af936c, -20px 20px #af936c, -21px 21px #af936c, -22px 22px #af936c, -23px 23px #af936c, -24px 24px #af936c, -25px 25px #af936c, -26px 26px #af936c, -27px 27px #af936c, -28px 28px #af936c, -29px 29px #af936c, -30px 30px #af936c, -31px 31px #af936c, -32px 32px #af936c, -33px 33px #af936c, -34px 34px #af936c, -35px 35px #af936c, -36px 36px #af936c, -37px 37px #af936c, -38px 38px #af936c, -39px 39px #af936c, -40px 40px #af936c, -41px 41px #af936c, -42px 42px #af936c, -43px 43px #af936c, -44px 44px #af936c, -45px 45px #af936c, -46px 46px #af936c, -47px 47px #af936c, -48px 48px #af936c, -49px 49px #af936c, -50px 50px #af936c, -51px 51px #af936c, -52px 52px #af936c, -53px 53px #af936c, -54px 54px #af936c, -55px 55px #af936c, -56px 56px #af936c, -57px 57px #af936c, -58px 58px #af936c, -59px 59px #af936c, -60px 60px #af936c, -61px 61px #af936c, -62px 62px #af936c, -63px 63px #af936c, -64px 64px #af936c, -65px 65px #af936c, -66px 66px #af936c, -67px 67px #af936c, -68px 68px #af936c, -69px 69px #af936c, -70px 70px #af936c, -71px 71px #af936c, -72px 72px #af936c, -73px 73px #af936c, -74px 74px #af936c, -75px 75px #af936c, -76px 76px #af936c, -77px 77px #af936c, -78px 78px #af936c, -79px 79px #af936c, -80px 80px #af936c, -81px 81px #af936c, -82px 82px #af936c, -83px 83px #af936c, -84px 84px #af936c, -85px 85px #af936c; }
  .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, .4); }
  .btn-longshadow-left.btn-color-3 {
    text-shadow: 0px 0px #796152, -1px 1px #796152, -2px 2px #796152, -3px 3px #796152, -4px 4px #796152, -5px 5px #796152, -6px 6px #796152, -7px 7px #796152, -8px 8px #796152, -9px 9px #796152, -10px 10px #796152, -11px 11px #796152, -12px 12px #796152, -13px 13px #796152, -14px 14px #796152, -15px 15px #796152, -16px 16px #796152, -17px 17px #796152, -18px 18px #796152, -19px 19px #796152, -20px 20px #796152, -21px 21px #796152, -22px 22px #796152, -23px 23px #796152, -24px 24px #796152, -25px 25px #796152, -26px 26px #796152, -27px 27px #796152, -28px 28px #796152, -29px 29px #796152, -30px 30px #796152, -31px 31px #796152, -32px 32px #796152, -33px 33px #796152, -34px 34px #796152, -35px 35px #796152, -36px 36px #796152, -37px 37px #796152, -38px 38px #796152, -39px 39px #796152, -40px 40px #796152, -41px 41px #796152, -42px 42px #796152, -43px 43px #796152, -44px 44px #796152, -45px 45px #796152, -46px 46px #796152, -47px 47px #796152, -48px 48px #796152, -49px 49px #796152, -50px 50px #796152, -51px 51px #796152, -52px 52px #796152, -53px 53px #796152, -54px 54px #796152, -55px 55px #796152, -56px 56px #796152, -57px 57px #796152, -58px 58px #796152, -59px 59px #796152, -60px 60px #796152, -61px 61px #796152, -62px 62px #796152, -63px 63px #796152, -64px 64px #796152, -65px 65px #796152, -66px 66px #796152, -67px 67px #796152, -68px 68px #796152, -69px 69px #796152, -70px 70px #796152, -71px 71px #796152, -72px 72px #796152, -73px 73px #796152, -74px 74px #796152, -75px 75px #796152, -76px 76px #796152, -77px 77px #796152, -78px 78px #796152, -79px 79px #796152, -80px 80px #796152, -81px 81px #796152, -82px 82px #796152, -83px 83px #796152, -84px 84px #796152, -85px 85px #796152; }
  .btn-longshadow-left.btn-color-3:active, .btn-longshadow-left.btn-color-3.active, .btn-longshadow-left.btn-color-3.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, .4); }
  .btn-longshadow-left.btn-color-4 {
    text-shadow: 0px 0px #636363, -1px 1px #636363, -2px 2px #636363, -3px 3px #636363, -4px 4px #636363, -5px 5px #636363, -6px 6px #636363, -7px 7px #636363, -8px 8px #636363, -9px 9px #636363, -10px 10px #636363, -11px 11px #636363, -12px 12px #636363, -13px 13px #636363, -14px 14px #636363, -15px 15px #636363, -16px 16px #636363, -17px 17px #636363, -18px 18px #636363, -19px 19px #636363, -20px 20px #636363, -21px 21px #636363, -22px 22px #636363, -23px 23px #636363, -24px 24px #636363, -25px 25px #636363, -26px 26px #636363, -27px 27px #636363, -28px 28px #636363, -29px 29px #636363, -30px 30px #636363, -31px 31px #636363, -32px 32px #636363, -33px 33px #636363, -34px 34px #636363, -35px 35px #636363, -36px 36px #636363, -37px 37px #636363, -38px 38px #636363, -39px 39px #636363, -40px 40px #636363, -41px 41px #636363, -42px 42px #636363, -43px 43px #636363, -44px 44px #636363, -45px 45px #636363, -46px 46px #636363, -47px 47px #636363, -48px 48px #636363, -49px 49px #636363, -50px 50px #636363, -51px 51px #636363, -52px 52px #636363, -53px 53px #636363, -54px 54px #636363, -55px 55px #636363, -56px 56px #636363, -57px 57px #636363, -58px 58px #636363, -59px 59px #636363, -60px 60px #636363, -61px 61px #636363, -62px 62px #636363, -63px 63px #636363, -64px 64px #636363, -65px 65px #636363, -66px 66px #636363, -67px 67px #636363, -68px 68px #636363, -69px 69px #636363, -70px 70px #636363, -71px 71px #636363, -72px 72px #636363, -73px 73px #636363, -74px 74px #636363, -75px 75px #636363, -76px 76px #636363, -77px 77px #636363, -78px 78px #636363, -79px 79px #636363, -80px 80px #636363, -81px 81px #636363, -82px 82px #636363, -83px 83px #636363, -84px 84px #636363, -85px 85px #636363; }
  .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, .4); }
  .btn-longshadow-left.btn-color-5 {
    text-shadow: 0px 0px #ffe9c4, -1px 1px #ffe9c4, -2px 2px #ffe9c4, -3px 3px #ffe9c4, -4px 4px #ffe9c4, -5px 5px #ffe9c4, -6px 6px #ffe9c4, -7px 7px #ffe9c4, -8px 8px #ffe9c4, -9px 9px #ffe9c4, -10px 10px #ffe9c4, -11px 11px #ffe9c4, -12px 12px #ffe9c4, -13px 13px #ffe9c4, -14px 14px #ffe9c4, -15px 15px #ffe9c4, -16px 16px #ffe9c4, -17px 17px #ffe9c4, -18px 18px #ffe9c4, -19px 19px #ffe9c4, -20px 20px #ffe9c4, -21px 21px #ffe9c4, -22px 22px #ffe9c4, -23px 23px #ffe9c4, -24px 24px #ffe9c4, -25px 25px #ffe9c4, -26px 26px #ffe9c4, -27px 27px #ffe9c4, -28px 28px #ffe9c4, -29px 29px #ffe9c4, -30px 30px #ffe9c4, -31px 31px #ffe9c4, -32px 32px #ffe9c4, -33px 33px #ffe9c4, -34px 34px #ffe9c4, -35px 35px #ffe9c4, -36px 36px #ffe9c4, -37px 37px #ffe9c4, -38px 38px #ffe9c4, -39px 39px #ffe9c4, -40px 40px #ffe9c4, -41px 41px #ffe9c4, -42px 42px #ffe9c4, -43px 43px #ffe9c4, -44px 44px #ffe9c4, -45px 45px #ffe9c4, -46px 46px #ffe9c4, -47px 47px #ffe9c4, -48px 48px #ffe9c4, -49px 49px #ffe9c4, -50px 50px #ffe9c4, -51px 51px #ffe9c4, -52px 52px #ffe9c4, -53px 53px #ffe9c4, -54px 54px #ffe9c4, -55px 55px #ffe9c4, -56px 56px #ffe9c4, -57px 57px #ffe9c4, -58px 58px #ffe9c4, -59px 59px #ffe9c4, -60px 60px #ffe9c4, -61px 61px #ffe9c4, -62px 62px #ffe9c4, -63px 63px #ffe9c4, -64px 64px #ffe9c4, -65px 65px #ffe9c4, -66px 66px #ffe9c4, -67px 67px #ffe9c4, -68px 68px #ffe9c4, -69px 69px #ffe9c4, -70px 70px #ffe9c4, -71px 71px #ffe9c4, -72px 72px #ffe9c4, -73px 73px #ffe9c4, -74px 74px #ffe9c4, -75px 75px #ffe9c4, -76px 76px #ffe9c4, -77px 77px #ffe9c4, -78px 78px #ffe9c4, -79px 79px #ffe9c4, -80px 80px #ffe9c4, -81px 81px #ffe9c4, -82px 82px #ffe9c4, -83px 83px #ffe9c4, -84px 84px #ffe9c4, -85px 85px #ffe9c4; }
  .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, .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; }
