/*--------------------------------------------------------------
 # 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: #913f33;
  border-color: #913f33;
  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: #9c4437;
    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: #87463d;
    border-color: #642b23;
    color: #6b2f26;
    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: #913f33;
  border-color: #913f33;
  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: #b74f40;
    border-color: #b74f40;
    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: #87463d;
    border-color: #87463d;
    color: #6b2f26; }

.btn-color-2, .btn-color-2-flat {
  background-color: #ff705f;
  border-color: #ff705f;
  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: #ff9e92;
    border-color: #ff9e92;
    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: #f77667;
    border-color: #f77667;
    color: #ff422c; }

.btn-color-3, .btn-color-3-flat {
  background-color: #ffaa67;
  border-color: #ffaa67;
  color: #333; }
  .btn-color-3:visited, .btn-color-3-flat:visited {
    color: #333; }
  .btn-color-3:hover, .btn-color-3-flat:hover, .btn-color-3:focus, .btn-color-3-flat:focus {
    background-color: #ffc79a;
    border-color: #ffc79a;
    color: #333; }
  .btn-color-3:active, .btn-color-3-flat:active, .btn-color-3.active, .btn-color-3-flat.active, .btn-color-3.is-active, .btn-color-3-flat.is-active {
    background-color: #f7ab6f;
    border-color: #f7ab6f;
    color: #ff8d34; }

.btn-color-4, .btn-color-4-flat {
  background-color: #ffdfab;
  border-color: #ffdfab;
  color: #333; }
  .btn-color-4:visited, .btn-color-4-flat:visited {
    color: #333; }
  .btn-color-4:hover, .btn-color-4-flat:hover, .btn-color-4:focus, .btn-color-4-flat:focus {
    background-color: #fff2de;
    border-color: #fff2de;
    color: #333; }
  .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: #fbdeaf;
    border-color: #fbdeaf;
    color: #ffcc78; }
/*
 * 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(183, 79, 64, 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: #913f33; }
    .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(183, 79, 64, 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(135, 70, 61, 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: #ff705f; }
    .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(255, 158, 146, 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(247, 118, 103, 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: #ffaa67; }
    .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(255, 199, 154, 0.9);
      color: rgba(51, 51, 51, 0.9); }
    .btn-border.btn-color-3:active, .btn-border-thin.btn-color-3:active, .btn-border-thick.btn-color-3:active, .btn-border.btn-color-3.active, .btn-border-thin.btn-color-3.active, .btn-border-thick.btn-color-3.active, .btn-border.btn-color-3.is-active, .btn-border-thin.btn-color-3.is-active, .btn-border-thick.btn-color-3.is-active {
      background-color: rgba(247, 171, 111, 0.7);
      color: rgba(51, 51, 51, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-4, .btn-border-thin.btn-color-4, .btn-border-thick.btn-color-4 {
    color: #ffdfab; }
    .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(255, 242, 222, 0.9);
      color: rgba(51, 51, 51, 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(251, 222, 175, 0.7);
      color: rgba(51, 51, 51, 0.5);
      opacity: 0.3; }
  .btn-border.btn-giant, .btn-border-thin.btn-giant, .btn-border-thick.btn-giant {
    line-height: 66px; }
  .btn-border.btn-jumbo, .btn-border-thin.btn-jumbo, .btn-border-thick.btn-jumbo {
    line-height: 56px; }
  .btn-border.btn-large, .btn-border-thin.btn-large, .btn-border-thick.btn-large {
    line-height: 46px; }
  .btn-border.btn-normal, .btn-border-thin.btn-normal, .btn-border-thick.btn-normal {
    line-height: 36px; }
  .btn-border.btn-small, .btn-border-thin.btn-small, .btn-border-thick.btn-small {
    line-height: 26px; }
  .btn-border.btn-tiny, .btn-border-thin.btn-tiny, .btn-border-thick.btn-tiny {
    line-height: 20px; }
/*
 * Border Buttons
 *
 * These buttons have no fill they only have a
 * border to define their hit target.
 */
.btn-borderless {
  background: none;
  border: none;
  padding: 0 8px !important;
  color: #913f33;
  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: #913f33; }
  .btn-borderless.btn-color-2 {
    color: #ff705f; }
  .btn-borderless.btn-color-3 {
    color: #ffaa67; }
  .btn-borderless.btn-color-4 {
    color: #ffdfab; }
  .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: #7e372c;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#9c4437, #7e372c);
  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(#af4c3e, #77342a); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #87463d;
  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: #7e372c;
  background: linear-gradient(#a4473a, #7e372c); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#af4c3e, #77342a); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #6b2f26;
    background: #87463d; }
  .btn-raised.btn-color-2 {
    border-color: #ff5946;
    background: linear-gradient(#ff8779, #ff5946); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#ff9488, #ff503b); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #ff422c;
    background: #f77667; }
  .btn-raised.btn-color-3 {
    border-color: #ff9c4e;
    background: linear-gradient(#ffb881, #ff9c4e); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#ffc190, #ff9643); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #ff8d34;
    background: #f7ab6f; }
  .btn-raised.btn-color-4 {
    border-color: #ffd592;
    background: linear-gradient(#ffe9c5, #ffd592); }
  .btn-raised.btn-color-4:hover, .btn-raised.btn-color-4:focus {
    background: linear-gradient(#ffefd4, #ffd187); }
  .btn-raised.btn-color-4:active, .btn-raised.btn-color-4.active, .btn-raised.btn-color-4.is-active {
    border-color: #ffcc78;
    background: #fbdeaf; }
/*
 * 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 #461e18, 0 8px 3px rgba(0, 0, 0, 0.2); }

.btn-3d:hover, .btn-3d:focus {
  box-shadow: 0 7px 0 #461e18, 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 #461e18, 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 #6b2f26, 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 #642b23, 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 #461e18, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-2 {
    box-shadow: 0 7px 0 #ff422c, 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 #ff3922, 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 #f81a00, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #ff8d34, 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 #ff882a, 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 #ff7101, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-4 {
    box-shadow: 0 7px 0 #ffcc78, 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 #ffc86e, 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 #ffb845, 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(145, 63, 51, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(145, 63, 51, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(145, 63, 51, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-color-4 {
    from {
      box-shadow: 0 0 0 rgba(255, 223, 171, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(255, 223, 171, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(255, 223, 171, 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; }
/*
 * 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(183, 79, 64, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #6b2f26;
  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: #9c4437;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #863a2f; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(145, 63, 51, 0.95);
  border-color: #6b2f26; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #77342a; }
  .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: #7e372c; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(255, 112, 95, 0.95);
    border-color: #ff422c; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #ff503b; }
  .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: #ff5946; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(255, 170, 103, 0.95);
    border-color: #ff8d34; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #ff9643; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a {
    color: #333; }
    .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a:hover {
      color: #262626;
      background: #ff9c4e; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list {
    background: rgba(255, 223, 171, 0.95);
    border-color: #ffcc78; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #ffd187; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a {
    color: #333; }
    .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a:hover {
      color: #262626;
      background: #ffd592; }
/*
 * 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 #6b2f26, 1px 1px #6b2f26, 2px 2px #6b2f26, 3px 3px #6b2f26, 4px 4px #6b2f26, 5px 5px #6b2f26, 6px 6px #6b2f26, 7px 7px #6b2f26, 8px 8px #6b2f26, 9px 9px #6b2f26, 10px 10px #6b2f26, 11px 11px #6b2f26, 12px 12px #6b2f26, 13px 13px #6b2f26, 14px 14px #6b2f26, 15px 15px #6b2f26, 16px 16px #6b2f26, 17px 17px #6b2f26, 18px 18px #6b2f26, 19px 19px #6b2f26, 20px 20px #6b2f26, 21px 21px #6b2f26, 22px 22px #6b2f26, 23px 23px #6b2f26, 24px 24px #6b2f26, 25px 25px #6b2f26, 26px 26px #6b2f26, 27px 27px #6b2f26, 28px 28px #6b2f26, 29px 29px #6b2f26, 30px 30px #6b2f26, 31px 31px #6b2f26, 32px 32px #6b2f26, 33px 33px #6b2f26, 34px 34px #6b2f26, 35px 35px #6b2f26, 36px 36px #6b2f26, 37px 37px #6b2f26, 38px 38px #6b2f26, 39px 39px #6b2f26, 40px 40px #6b2f26, 41px 41px #6b2f26, 42px 42px #6b2f26, 43px 43px #6b2f26, 44px 44px #6b2f26, 45px 45px #6b2f26, 46px 46px #6b2f26, 47px 47px #6b2f26, 48px 48px #6b2f26, 49px 49px #6b2f26, 50px 50px #6b2f26, 51px 51px #6b2f26, 52px 52px #6b2f26, 53px 53px #6b2f26, 54px 54px #6b2f26, 55px 55px #6b2f26, 56px 56px #6b2f26, 57px 57px #6b2f26, 58px 58px #6b2f26, 59px 59px #6b2f26, 60px 60px #6b2f26, 61px 61px #6b2f26, 62px 62px #6b2f26, 63px 63px #6b2f26, 64px 64px #6b2f26, 65px 65px #6b2f26, 66px 66px #6b2f26, 67px 67px #6b2f26, 68px 68px #6b2f26, 69px 69px #6b2f26, 70px 70px #6b2f26, 71px 71px #6b2f26, 72px 72px #6b2f26, 73px 73px #6b2f26, 74px 74px #6b2f26, 75px 75px #6b2f26, 76px 76px #6b2f26, 77px 77px #6b2f26, 78px 78px #6b2f26, 79px 79px #6b2f26, 80px 80px #6b2f26, 81px 81px #6b2f26, 82px 82px #6b2f26, 83px 83px #6b2f26, 84px 84px #6b2f26, 85px 85px #6b2f26; }
  .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 #ff422c, 1px 1px #ff422c, 2px 2px #ff422c, 3px 3px #ff422c, 4px 4px #ff422c, 5px 5px #ff422c, 6px 6px #ff422c, 7px 7px #ff422c, 8px 8px #ff422c, 9px 9px #ff422c, 10px 10px #ff422c, 11px 11px #ff422c, 12px 12px #ff422c, 13px 13px #ff422c, 14px 14px #ff422c, 15px 15px #ff422c, 16px 16px #ff422c, 17px 17px #ff422c, 18px 18px #ff422c, 19px 19px #ff422c, 20px 20px #ff422c, 21px 21px #ff422c, 22px 22px #ff422c, 23px 23px #ff422c, 24px 24px #ff422c, 25px 25px #ff422c, 26px 26px #ff422c, 27px 27px #ff422c, 28px 28px #ff422c, 29px 29px #ff422c, 30px 30px #ff422c, 31px 31px #ff422c, 32px 32px #ff422c, 33px 33px #ff422c, 34px 34px #ff422c, 35px 35px #ff422c, 36px 36px #ff422c, 37px 37px #ff422c, 38px 38px #ff422c, 39px 39px #ff422c, 40px 40px #ff422c, 41px 41px #ff422c, 42px 42px #ff422c, 43px 43px #ff422c, 44px 44px #ff422c, 45px 45px #ff422c, 46px 46px #ff422c, 47px 47px #ff422c, 48px 48px #ff422c, 49px 49px #ff422c, 50px 50px #ff422c, 51px 51px #ff422c, 52px 52px #ff422c, 53px 53px #ff422c, 54px 54px #ff422c, 55px 55px #ff422c, 56px 56px #ff422c, 57px 57px #ff422c, 58px 58px #ff422c, 59px 59px #ff422c, 60px 60px #ff422c, 61px 61px #ff422c, 62px 62px #ff422c, 63px 63px #ff422c, 64px 64px #ff422c, 65px 65px #ff422c, 66px 66px #ff422c, 67px 67px #ff422c, 68px 68px #ff422c, 69px 69px #ff422c, 70px 70px #ff422c, 71px 71px #ff422c, 72px 72px #ff422c, 73px 73px #ff422c, 74px 74px #ff422c, 75px 75px #ff422c, 76px 76px #ff422c, 77px 77px #ff422c, 78px 78px #ff422c, 79px 79px #ff422c, 80px 80px #ff422c, 81px 81px #ff422c, 82px 82px #ff422c, 83px 83px #ff422c, 84px 84px #ff422c, 85px 85px #ff422c; }
  .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 #ff8d34, 1px 1px #ff8d34, 2px 2px #ff8d34, 3px 3px #ff8d34, 4px 4px #ff8d34, 5px 5px #ff8d34, 6px 6px #ff8d34, 7px 7px #ff8d34, 8px 8px #ff8d34, 9px 9px #ff8d34, 10px 10px #ff8d34, 11px 11px #ff8d34, 12px 12px #ff8d34, 13px 13px #ff8d34, 14px 14px #ff8d34, 15px 15px #ff8d34, 16px 16px #ff8d34, 17px 17px #ff8d34, 18px 18px #ff8d34, 19px 19px #ff8d34, 20px 20px #ff8d34, 21px 21px #ff8d34, 22px 22px #ff8d34, 23px 23px #ff8d34, 24px 24px #ff8d34, 25px 25px #ff8d34, 26px 26px #ff8d34, 27px 27px #ff8d34, 28px 28px #ff8d34, 29px 29px #ff8d34, 30px 30px #ff8d34, 31px 31px #ff8d34, 32px 32px #ff8d34, 33px 33px #ff8d34, 34px 34px #ff8d34, 35px 35px #ff8d34, 36px 36px #ff8d34, 37px 37px #ff8d34, 38px 38px #ff8d34, 39px 39px #ff8d34, 40px 40px #ff8d34, 41px 41px #ff8d34, 42px 42px #ff8d34, 43px 43px #ff8d34, 44px 44px #ff8d34, 45px 45px #ff8d34, 46px 46px #ff8d34, 47px 47px #ff8d34, 48px 48px #ff8d34, 49px 49px #ff8d34, 50px 50px #ff8d34, 51px 51px #ff8d34, 52px 52px #ff8d34, 53px 53px #ff8d34, 54px 54px #ff8d34, 55px 55px #ff8d34, 56px 56px #ff8d34, 57px 57px #ff8d34, 58px 58px #ff8d34, 59px 59px #ff8d34, 60px 60px #ff8d34, 61px 61px #ff8d34, 62px 62px #ff8d34, 63px 63px #ff8d34, 64px 64px #ff8d34, 65px 65px #ff8d34, 66px 66px #ff8d34, 67px 67px #ff8d34, 68px 68px #ff8d34, 69px 69px #ff8d34, 70px 70px #ff8d34, 71px 71px #ff8d34, 72px 72px #ff8d34, 73px 73px #ff8d34, 74px 74px #ff8d34, 75px 75px #ff8d34, 76px 76px #ff8d34, 77px 77px #ff8d34, 78px 78px #ff8d34, 79px 79px #ff8d34, 80px 80px #ff8d34, 81px 81px #ff8d34, 82px 82px #ff8d34, 83px 83px #ff8d34, 84px 84px #ff8d34, 85px 85px #ff8d34; }
  .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 #ffcc78, 1px 1px #ffcc78, 2px 2px #ffcc78, 3px 3px #ffcc78, 4px 4px #ffcc78, 5px 5px #ffcc78, 6px 6px #ffcc78, 7px 7px #ffcc78, 8px 8px #ffcc78, 9px 9px #ffcc78, 10px 10px #ffcc78, 11px 11px #ffcc78, 12px 12px #ffcc78, 13px 13px #ffcc78, 14px 14px #ffcc78, 15px 15px #ffcc78, 16px 16px #ffcc78, 17px 17px #ffcc78, 18px 18px #ffcc78, 19px 19px #ffcc78, 20px 20px #ffcc78, 21px 21px #ffcc78, 22px 22px #ffcc78, 23px 23px #ffcc78, 24px 24px #ffcc78, 25px 25px #ffcc78, 26px 26px #ffcc78, 27px 27px #ffcc78, 28px 28px #ffcc78, 29px 29px #ffcc78, 30px 30px #ffcc78, 31px 31px #ffcc78, 32px 32px #ffcc78, 33px 33px #ffcc78, 34px 34px #ffcc78, 35px 35px #ffcc78, 36px 36px #ffcc78, 37px 37px #ffcc78, 38px 38px #ffcc78, 39px 39px #ffcc78, 40px 40px #ffcc78, 41px 41px #ffcc78, 42px 42px #ffcc78, 43px 43px #ffcc78, 44px 44px #ffcc78, 45px 45px #ffcc78, 46px 46px #ffcc78, 47px 47px #ffcc78, 48px 48px #ffcc78, 49px 49px #ffcc78, 50px 50px #ffcc78, 51px 51px #ffcc78, 52px 52px #ffcc78, 53px 53px #ffcc78, 54px 54px #ffcc78, 55px 55px #ffcc78, 56px 56px #ffcc78, 57px 57px #ffcc78, 58px 58px #ffcc78, 59px 59px #ffcc78, 60px 60px #ffcc78, 61px 61px #ffcc78, 62px 62px #ffcc78, 63px 63px #ffcc78, 64px 64px #ffcc78, 65px 65px #ffcc78, 66px 66px #ffcc78, 67px 67px #ffcc78, 68px 68px #ffcc78, 69px 69px #ffcc78, 70px 70px #ffcc78, 71px 71px #ffcc78, 72px 72px #ffcc78, 73px 73px #ffcc78, 74px 74px #ffcc78, 75px 75px #ffcc78, 76px 76px #ffcc78, 77px 77px #ffcc78, 78px 78px #ffcc78, 79px 79px #ffcc78, 80px 80px #ffcc78, 81px 81px #ffcc78, 82px 82px #ffcc78, 83px 83px #ffcc78, 84px 84px #ffcc78, 85px 85px #ffcc78; }
  .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); }
/*
 * Shadow Left
 *
 */
.btn-longshadow-left {
  overflow: hidden; }
  .btn-longshadow-left.btn-color-1 {
    text-shadow: 0px 0px #6b2f26, -1px 1px #6b2f26, -2px 2px #6b2f26, -3px 3px #6b2f26, -4px 4px #6b2f26, -5px 5px #6b2f26, -6px 6px #6b2f26, -7px 7px #6b2f26, -8px 8px #6b2f26, -9px 9px #6b2f26, -10px 10px #6b2f26, -11px 11px #6b2f26, -12px 12px #6b2f26, -13px 13px #6b2f26, -14px 14px #6b2f26, -15px 15px #6b2f26, -16px 16px #6b2f26, -17px 17px #6b2f26, -18px 18px #6b2f26, -19px 19px #6b2f26, -20px 20px #6b2f26, -21px 21px #6b2f26, -22px 22px #6b2f26, -23px 23px #6b2f26, -24px 24px #6b2f26, -25px 25px #6b2f26, -26px 26px #6b2f26, -27px 27px #6b2f26, -28px 28px #6b2f26, -29px 29px #6b2f26, -30px 30px #6b2f26, -31px 31px #6b2f26, -32px 32px #6b2f26, -33px 33px #6b2f26, -34px 34px #6b2f26, -35px 35px #6b2f26, -36px 36px #6b2f26, -37px 37px #6b2f26, -38px 38px #6b2f26, -39px 39px #6b2f26, -40px 40px #6b2f26, -41px 41px #6b2f26, -42px 42px #6b2f26, -43px 43px #6b2f26, -44px 44px #6b2f26, -45px 45px #6b2f26, -46px 46px #6b2f26, -47px 47px #6b2f26, -48px 48px #6b2f26, -49px 49px #6b2f26, -50px 50px #6b2f26, -51px 51px #6b2f26, -52px 52px #6b2f26, -53px 53px #6b2f26, -54px 54px #6b2f26, -55px 55px #6b2f26, -56px 56px #6b2f26, -57px 57px #6b2f26, -58px 58px #6b2f26, -59px 59px #6b2f26, -60px 60px #6b2f26, -61px 61px #6b2f26, -62px 62px #6b2f26, -63px 63px #6b2f26, -64px 64px #6b2f26, -65px 65px #6b2f26, -66px 66px #6b2f26, -67px 67px #6b2f26, -68px 68px #6b2f26, -69px 69px #6b2f26, -70px 70px #6b2f26, -71px 71px #6b2f26, -72px 72px #6b2f26, -73px 73px #6b2f26, -74px 74px #6b2f26, -75px 75px #6b2f26, -76px 76px #6b2f26, -77px 77px #6b2f26, -78px 78px #6b2f26, -79px 79px #6b2f26, -80px 80px #6b2f26, -81px 81px #6b2f26, -82px 82px #6b2f26, -83px 83px #6b2f26, -84px 84px #6b2f26, -85px 85px #6b2f26; }
  .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 #ff422c, -1px 1px #ff422c, -2px 2px #ff422c, -3px 3px #ff422c, -4px 4px #ff422c, -5px 5px #ff422c, -6px 6px #ff422c, -7px 7px #ff422c, -8px 8px #ff422c, -9px 9px #ff422c, -10px 10px #ff422c, -11px 11px #ff422c, -12px 12px #ff422c, -13px 13px #ff422c, -14px 14px #ff422c, -15px 15px #ff422c, -16px 16px #ff422c, -17px 17px #ff422c, -18px 18px #ff422c, -19px 19px #ff422c, -20px 20px #ff422c, -21px 21px #ff422c, -22px 22px #ff422c, -23px 23px #ff422c, -24px 24px #ff422c, -25px 25px #ff422c, -26px 26px #ff422c, -27px 27px #ff422c, -28px 28px #ff422c, -29px 29px #ff422c, -30px 30px #ff422c, -31px 31px #ff422c, -32px 32px #ff422c, -33px 33px #ff422c, -34px 34px #ff422c, -35px 35px #ff422c, -36px 36px #ff422c, -37px 37px #ff422c, -38px 38px #ff422c, -39px 39px #ff422c, -40px 40px #ff422c, -41px 41px #ff422c, -42px 42px #ff422c, -43px 43px #ff422c, -44px 44px #ff422c, -45px 45px #ff422c, -46px 46px #ff422c, -47px 47px #ff422c, -48px 48px #ff422c, -49px 49px #ff422c, -50px 50px #ff422c, -51px 51px #ff422c, -52px 52px #ff422c, -53px 53px #ff422c, -54px 54px #ff422c, -55px 55px #ff422c, -56px 56px #ff422c, -57px 57px #ff422c, -58px 58px #ff422c, -59px 59px #ff422c, -60px 60px #ff422c, -61px 61px #ff422c, -62px 62px #ff422c, -63px 63px #ff422c, -64px 64px #ff422c, -65px 65px #ff422c, -66px 66px #ff422c, -67px 67px #ff422c, -68px 68px #ff422c, -69px 69px #ff422c, -70px 70px #ff422c, -71px 71px #ff422c, -72px 72px #ff422c, -73px 73px #ff422c, -74px 74px #ff422c, -75px 75px #ff422c, -76px 76px #ff422c, -77px 77px #ff422c, -78px 78px #ff422c, -79px 79px #ff422c, -80px 80px #ff422c, -81px 81px #ff422c, -82px 82px #ff422c, -83px 83px #ff422c, -84px 84px #ff422c, -85px 85px #ff422c; }
  .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 #ff8d34, -1px 1px #ff8d34, -2px 2px #ff8d34, -3px 3px #ff8d34, -4px 4px #ff8d34, -5px 5px #ff8d34, -6px 6px #ff8d34, -7px 7px #ff8d34, -8px 8px #ff8d34, -9px 9px #ff8d34, -10px 10px #ff8d34, -11px 11px #ff8d34, -12px 12px #ff8d34, -13px 13px #ff8d34, -14px 14px #ff8d34, -15px 15px #ff8d34, -16px 16px #ff8d34, -17px 17px #ff8d34, -18px 18px #ff8d34, -19px 19px #ff8d34, -20px 20px #ff8d34, -21px 21px #ff8d34, -22px 22px #ff8d34, -23px 23px #ff8d34, -24px 24px #ff8d34, -25px 25px #ff8d34, -26px 26px #ff8d34, -27px 27px #ff8d34, -28px 28px #ff8d34, -29px 29px #ff8d34, -30px 30px #ff8d34, -31px 31px #ff8d34, -32px 32px #ff8d34, -33px 33px #ff8d34, -34px 34px #ff8d34, -35px 35px #ff8d34, -36px 36px #ff8d34, -37px 37px #ff8d34, -38px 38px #ff8d34, -39px 39px #ff8d34, -40px 40px #ff8d34, -41px 41px #ff8d34, -42px 42px #ff8d34, -43px 43px #ff8d34, -44px 44px #ff8d34, -45px 45px #ff8d34, -46px 46px #ff8d34, -47px 47px #ff8d34, -48px 48px #ff8d34, -49px 49px #ff8d34, -50px 50px #ff8d34, -51px 51px #ff8d34, -52px 52px #ff8d34, -53px 53px #ff8d34, -54px 54px #ff8d34, -55px 55px #ff8d34, -56px 56px #ff8d34, -57px 57px #ff8d34, -58px 58px #ff8d34, -59px 59px #ff8d34, -60px 60px #ff8d34, -61px 61px #ff8d34, -62px 62px #ff8d34, -63px 63px #ff8d34, -64px 64px #ff8d34, -65px 65px #ff8d34, -66px 66px #ff8d34, -67px 67px #ff8d34, -68px 68px #ff8d34, -69px 69px #ff8d34, -70px 70px #ff8d34, -71px 71px #ff8d34, -72px 72px #ff8d34, -73px 73px #ff8d34, -74px 74px #ff8d34, -75px 75px #ff8d34, -76px 76px #ff8d34, -77px 77px #ff8d34, -78px 78px #ff8d34, -79px 79px #ff8d34, -80px 80px #ff8d34, -81px 81px #ff8d34, -82px 82px #ff8d34, -83px 83px #ff8d34, -84px 84px #ff8d34, -85px 85px #ff8d34; }
  .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 #ffcc78, -1px 1px #ffcc78, -2px 2px #ffcc78, -3px 3px #ffcc78, -4px 4px #ffcc78, -5px 5px #ffcc78, -6px 6px #ffcc78, -7px 7px #ffcc78, -8px 8px #ffcc78, -9px 9px #ffcc78, -10px 10px #ffcc78, -11px 11px #ffcc78, -12px 12px #ffcc78, -13px 13px #ffcc78, -14px 14px #ffcc78, -15px 15px #ffcc78, -16px 16px #ffcc78, -17px 17px #ffcc78, -18px 18px #ffcc78, -19px 19px #ffcc78, -20px 20px #ffcc78, -21px 21px #ffcc78, -22px 22px #ffcc78, -23px 23px #ffcc78, -24px 24px #ffcc78, -25px 25px #ffcc78, -26px 26px #ffcc78, -27px 27px #ffcc78, -28px 28px #ffcc78, -29px 29px #ffcc78, -30px 30px #ffcc78, -31px 31px #ffcc78, -32px 32px #ffcc78, -33px 33px #ffcc78, -34px 34px #ffcc78, -35px 35px #ffcc78, -36px 36px #ffcc78, -37px 37px #ffcc78, -38px 38px #ffcc78, -39px 39px #ffcc78, -40px 40px #ffcc78, -41px 41px #ffcc78, -42px 42px #ffcc78, -43px 43px #ffcc78, -44px 44px #ffcc78, -45px 45px #ffcc78, -46px 46px #ffcc78, -47px 47px #ffcc78, -48px 48px #ffcc78, -49px 49px #ffcc78, -50px 50px #ffcc78, -51px 51px #ffcc78, -52px 52px #ffcc78, -53px 53px #ffcc78, -54px 54px #ffcc78, -55px 55px #ffcc78, -56px 56px #ffcc78, -57px 57px #ffcc78, -58px 58px #ffcc78, -59px 59px #ffcc78, -60px 60px #ffcc78, -61px 61px #ffcc78, -62px 62px #ffcc78, -63px 63px #ffcc78, -64px 64px #ffcc78, -65px 65px #ffcc78, -66px 66px #ffcc78, -67px 67px #ffcc78, -68px 68px #ffcc78, -69px 69px #ffcc78, -70px 70px #ffcc78, -71px 71px #ffcc78, -72px 72px #ffcc78, -73px 73px #ffcc78, -74px 74px #ffcc78, -75px 75px #ffcc78, -76px 76px #ffcc78, -77px 77px #ffcc78, -78px 78px #ffcc78, -79px 79px #ffcc78, -80px 80px #ffcc78, -81px 81px #ffcc78, -82px 82px #ffcc78, -83px 83px #ffcc78, -84px 84px #ffcc78, -85px 85px #ffcc78; }
  .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); }
/*
 * 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; }
