/*--------------------------------------------------------------
 # 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: #f66510;
  border-color: #f66510;
  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: #f76f1f;
    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: #ea681c;
    border-color: #c24c07;
    color: #cb5008;
    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: #f66510;
  border-color: #f66510;
  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: #f88541;
    border-color: #f88541;
    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: #ea681c;
    border-color: #ea681c;
    color: #cb5008; }

.btn-color-2, .btn-color-2-flat {
  background-color: #101740;
  border-color: #101740;
  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: #1a2669;
    border-color: #1a2669;
    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: #141a3c;
    border-color: #141a3c;
    color: #060817; }

.btn-color-3, .btn-color-3-flat {
  background-color: #9b9b9b;
  border-color: #9b9b9b;
  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: #b5b5b5;
    border-color: #b5b5b5;
    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: #9b9b9b;
    border-color: #9b9b9b;
    color: #828282; }

.btn-color-4, .btn-color-4-flat {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
  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: #fff;
    border-color: #fff;
    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: #f0f0f0;
    border-color: #f0f0f0;
    color: #d7d7d7; }
/*
 * 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(248, 133, 65, 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: #f66510; }
    .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(248, 133, 65, 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(234, 104, 28, 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: #101740; }
    .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(26, 38, 105, 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(20, 26, 60, 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: #9b9b9b; }
    .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(181, 181, 181, 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(155, 155, 155, 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: #f0f0f0; }
    .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, 255, 255, 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(240, 240, 240, 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: #f66510;
  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: #f66510; }
  .btn-borderless.btn-color-2 {
    color: #101740; }
  .btn-borderless.btn-color-3 {
    color: #9b9b9b; }
  .btn-borderless.btn-color-4 {
    color: #f0f0f0; }
  .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: #e45a09;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#f76f1f, #e45a09);
  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(#f77e37, #da5608); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #ea681c;
  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: #e45a09;
  background: linear-gradient(#f77529, #e45a09); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#f77e37, #da5608); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #cb5008;
    background: #ea681c; }
  .btn-raised.btn-color-2 {
    border-color: #0b102c;
    background: linear-gradient(#151e54, #0b102c); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#182361, #090d23); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #060817;
    background: #141a3c; }
  .btn-raised.btn-color-3 {
    border-color: #8e8e8e;
    background: linear-gradient(#a8a8a8, #8e8e8e); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#afafaf, #898989); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #828282;
    background: #9b9b9b; }
  .btn-raised.btn-color-4 {
    border-color: #e3e3e3;
    background: linear-gradient(#fdfdfd, #e3e3e3); }
  .btn-raised.btn-color-4:hover, .btn-raised.btn-color-4:focus {
    background: linear-gradient(#fff, #dedede); }
  .btn-raised.btn-color-4:active, .btn-raised.btn-color-4.active, .btn-raised.btn-color-4.is-active {
    border-color: #d7d7d7;
    background: #f0f0f0; }
/*
 * 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 #9a3d06, 0 8px 3px rgba(0, 0, 0, 0.2); }

.btn-3d:hover, .btn-3d:focus {
  box-shadow: 0 7px 0 #9a3d06, 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 #9a3d06, 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 #cb5008, 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 #c24c07, 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 #9a3d06, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-2 {
    box-shadow: 0 7px 0 #060817, 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 #04050f, 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 #000, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #828282, 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 #7c7c7c, 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 #686868, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-4 {
    box-shadow: 0 7px 0 #d7d7d7, 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 #d1d1d1, 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 #bdbdbd, 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(246, 101, 16, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(246, 101, 16, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(246, 101, 16, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-color-4 {
    from {
      box-shadow: 0 0 0 rgba(240, 240, 240, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(240, 240, 240, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(240, 240, 240, 0.3); } }
/*
 * Glowing Buttons Base Styes
 *
 * A pulse like glow that appears
 * rythmically around the edges of
 * a button.
 */
.btn-glow {
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: glowing; }

.btn-glow:active, .btn-glow.active, .btn-glow.is-active {
  animation-name: none; }
/*
 * Glowing Button Colors
 *
 * Create colors for glowing buttons
 */
.btn-glow.btn-color-1 {
  animation-name: glowing-color-1; }
  .btn-glow.btn-color-2 {
    animation-name: glowing-color-2; }
  .btn-glow.btn-color-3 {
    animation-name: glowing-color-3; }
  .btn-glow.btn-color-4 {
    animation-name: glowing-color-4; }
/*
 * 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(248, 133, 65, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #cb5008;
  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: #f76f1f;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #ee5e09; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(246, 101, 16, 0.95);
  border-color: #cb5008; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #da5608; }
  .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: #e45a09; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(16, 23, 64, 0.95);
    border-color: #060817; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #090d23; }
  .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: #0b102c; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(155, 155, 155, 0.95);
    border-color: #828282; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #898989; }
  .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: #8e8e8e; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list {
    background: rgba(240, 240, 240, 0.95);
    border-color: #d7d7d7; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #dedede; }
  .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: #e3e3e3; }
/*
 * 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 #cb5008, 1px 1px #cb5008, 2px 2px #cb5008, 3px 3px #cb5008, 4px 4px #cb5008, 5px 5px #cb5008, 6px 6px #cb5008, 7px 7px #cb5008, 8px 8px #cb5008, 9px 9px #cb5008, 10px 10px #cb5008, 11px 11px #cb5008, 12px 12px #cb5008, 13px 13px #cb5008, 14px 14px #cb5008, 15px 15px #cb5008, 16px 16px #cb5008, 17px 17px #cb5008, 18px 18px #cb5008, 19px 19px #cb5008, 20px 20px #cb5008, 21px 21px #cb5008, 22px 22px #cb5008, 23px 23px #cb5008, 24px 24px #cb5008, 25px 25px #cb5008, 26px 26px #cb5008, 27px 27px #cb5008, 28px 28px #cb5008, 29px 29px #cb5008, 30px 30px #cb5008, 31px 31px #cb5008, 32px 32px #cb5008, 33px 33px #cb5008, 34px 34px #cb5008, 35px 35px #cb5008, 36px 36px #cb5008, 37px 37px #cb5008, 38px 38px #cb5008, 39px 39px #cb5008, 40px 40px #cb5008, 41px 41px #cb5008, 42px 42px #cb5008, 43px 43px #cb5008, 44px 44px #cb5008, 45px 45px #cb5008, 46px 46px #cb5008, 47px 47px #cb5008, 48px 48px #cb5008, 49px 49px #cb5008, 50px 50px #cb5008, 51px 51px #cb5008, 52px 52px #cb5008, 53px 53px #cb5008, 54px 54px #cb5008, 55px 55px #cb5008, 56px 56px #cb5008, 57px 57px #cb5008, 58px 58px #cb5008, 59px 59px #cb5008, 60px 60px #cb5008, 61px 61px #cb5008, 62px 62px #cb5008, 63px 63px #cb5008, 64px 64px #cb5008, 65px 65px #cb5008, 66px 66px #cb5008, 67px 67px #cb5008, 68px 68px #cb5008, 69px 69px #cb5008, 70px 70px #cb5008, 71px 71px #cb5008, 72px 72px #cb5008, 73px 73px #cb5008, 74px 74px #cb5008, 75px 75px #cb5008, 76px 76px #cb5008, 77px 77px #cb5008, 78px 78px #cb5008, 79px 79px #cb5008, 80px 80px #cb5008, 81px 81px #cb5008, 82px 82px #cb5008, 83px 83px #cb5008, 84px 84px #cb5008, 85px 85px #cb5008; }
  .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 #060817, 1px 1px #060817, 2px 2px #060817, 3px 3px #060817, 4px 4px #060817, 5px 5px #060817, 6px 6px #060817, 7px 7px #060817, 8px 8px #060817, 9px 9px #060817, 10px 10px #060817, 11px 11px #060817, 12px 12px #060817, 13px 13px #060817, 14px 14px #060817, 15px 15px #060817, 16px 16px #060817, 17px 17px #060817, 18px 18px #060817, 19px 19px #060817, 20px 20px #060817, 21px 21px #060817, 22px 22px #060817, 23px 23px #060817, 24px 24px #060817, 25px 25px #060817, 26px 26px #060817, 27px 27px #060817, 28px 28px #060817, 29px 29px #060817, 30px 30px #060817, 31px 31px #060817, 32px 32px #060817, 33px 33px #060817, 34px 34px #060817, 35px 35px #060817, 36px 36px #060817, 37px 37px #060817, 38px 38px #060817, 39px 39px #060817, 40px 40px #060817, 41px 41px #060817, 42px 42px #060817, 43px 43px #060817, 44px 44px #060817, 45px 45px #060817, 46px 46px #060817, 47px 47px #060817, 48px 48px #060817, 49px 49px #060817, 50px 50px #060817, 51px 51px #060817, 52px 52px #060817, 53px 53px #060817, 54px 54px #060817, 55px 55px #060817, 56px 56px #060817, 57px 57px #060817, 58px 58px #060817, 59px 59px #060817, 60px 60px #060817, 61px 61px #060817, 62px 62px #060817, 63px 63px #060817, 64px 64px #060817, 65px 65px #060817, 66px 66px #060817, 67px 67px #060817, 68px 68px #060817, 69px 69px #060817, 70px 70px #060817, 71px 71px #060817, 72px 72px #060817, 73px 73px #060817, 74px 74px #060817, 75px 75px #060817, 76px 76px #060817, 77px 77px #060817, 78px 78px #060817, 79px 79px #060817, 80px 80px #060817, 81px 81px #060817, 82px 82px #060817, 83px 83px #060817, 84px 84px #060817, 85px 85px #060817; }
  .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 #828282, 1px 1px #828282, 2px 2px #828282, 3px 3px #828282, 4px 4px #828282, 5px 5px #828282, 6px 6px #828282, 7px 7px #828282, 8px 8px #828282, 9px 9px #828282, 10px 10px #828282, 11px 11px #828282, 12px 12px #828282, 13px 13px #828282, 14px 14px #828282, 15px 15px #828282, 16px 16px #828282, 17px 17px #828282, 18px 18px #828282, 19px 19px #828282, 20px 20px #828282, 21px 21px #828282, 22px 22px #828282, 23px 23px #828282, 24px 24px #828282, 25px 25px #828282, 26px 26px #828282, 27px 27px #828282, 28px 28px #828282, 29px 29px #828282, 30px 30px #828282, 31px 31px #828282, 32px 32px #828282, 33px 33px #828282, 34px 34px #828282, 35px 35px #828282, 36px 36px #828282, 37px 37px #828282, 38px 38px #828282, 39px 39px #828282, 40px 40px #828282, 41px 41px #828282, 42px 42px #828282, 43px 43px #828282, 44px 44px #828282, 45px 45px #828282, 46px 46px #828282, 47px 47px #828282, 48px 48px #828282, 49px 49px #828282, 50px 50px #828282, 51px 51px #828282, 52px 52px #828282, 53px 53px #828282, 54px 54px #828282, 55px 55px #828282, 56px 56px #828282, 57px 57px #828282, 58px 58px #828282, 59px 59px #828282, 60px 60px #828282, 61px 61px #828282, 62px 62px #828282, 63px 63px #828282, 64px 64px #828282, 65px 65px #828282, 66px 66px #828282, 67px 67px #828282, 68px 68px #828282, 69px 69px #828282, 70px 70px #828282, 71px 71px #828282, 72px 72px #828282, 73px 73px #828282, 74px 74px #828282, 75px 75px #828282, 76px 76px #828282, 77px 77px #828282, 78px 78px #828282, 79px 79px #828282, 80px 80px #828282, 81px 81px #828282, 82px 82px #828282, 83px 83px #828282, 84px 84px #828282, 85px 85px #828282; }
  .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 #d7d7d7, 1px 1px #d7d7d7, 2px 2px #d7d7d7, 3px 3px #d7d7d7, 4px 4px #d7d7d7, 5px 5px #d7d7d7, 6px 6px #d7d7d7, 7px 7px #d7d7d7, 8px 8px #d7d7d7, 9px 9px #d7d7d7, 10px 10px #d7d7d7, 11px 11px #d7d7d7, 12px 12px #d7d7d7, 13px 13px #d7d7d7, 14px 14px #d7d7d7, 15px 15px #d7d7d7, 16px 16px #d7d7d7, 17px 17px #d7d7d7, 18px 18px #d7d7d7, 19px 19px #d7d7d7, 20px 20px #d7d7d7, 21px 21px #d7d7d7, 22px 22px #d7d7d7, 23px 23px #d7d7d7, 24px 24px #d7d7d7, 25px 25px #d7d7d7, 26px 26px #d7d7d7, 27px 27px #d7d7d7, 28px 28px #d7d7d7, 29px 29px #d7d7d7, 30px 30px #d7d7d7, 31px 31px #d7d7d7, 32px 32px #d7d7d7, 33px 33px #d7d7d7, 34px 34px #d7d7d7, 35px 35px #d7d7d7, 36px 36px #d7d7d7, 37px 37px #d7d7d7, 38px 38px #d7d7d7, 39px 39px #d7d7d7, 40px 40px #d7d7d7, 41px 41px #d7d7d7, 42px 42px #d7d7d7, 43px 43px #d7d7d7, 44px 44px #d7d7d7, 45px 45px #d7d7d7, 46px 46px #d7d7d7, 47px 47px #d7d7d7, 48px 48px #d7d7d7, 49px 49px #d7d7d7, 50px 50px #d7d7d7, 51px 51px #d7d7d7, 52px 52px #d7d7d7, 53px 53px #d7d7d7, 54px 54px #d7d7d7, 55px 55px #d7d7d7, 56px 56px #d7d7d7, 57px 57px #d7d7d7, 58px 58px #d7d7d7, 59px 59px #d7d7d7, 60px 60px #d7d7d7, 61px 61px #d7d7d7, 62px 62px #d7d7d7, 63px 63px #d7d7d7, 64px 64px #d7d7d7, 65px 65px #d7d7d7, 66px 66px #d7d7d7, 67px 67px #d7d7d7, 68px 68px #d7d7d7, 69px 69px #d7d7d7, 70px 70px #d7d7d7, 71px 71px #d7d7d7, 72px 72px #d7d7d7, 73px 73px #d7d7d7, 74px 74px #d7d7d7, 75px 75px #d7d7d7, 76px 76px #d7d7d7, 77px 77px #d7d7d7, 78px 78px #d7d7d7, 79px 79px #d7d7d7, 80px 80px #d7d7d7, 81px 81px #d7d7d7, 82px 82px #d7d7d7, 83px 83px #d7d7d7, 84px 84px #d7d7d7, 85px 85px #d7d7d7; }
  .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 #cb5008, -1px 1px #cb5008, -2px 2px #cb5008, -3px 3px #cb5008, -4px 4px #cb5008, -5px 5px #cb5008, -6px 6px #cb5008, -7px 7px #cb5008, -8px 8px #cb5008, -9px 9px #cb5008, -10px 10px #cb5008, -11px 11px #cb5008, -12px 12px #cb5008, -13px 13px #cb5008, -14px 14px #cb5008, -15px 15px #cb5008, -16px 16px #cb5008, -17px 17px #cb5008, -18px 18px #cb5008, -19px 19px #cb5008, -20px 20px #cb5008, -21px 21px #cb5008, -22px 22px #cb5008, -23px 23px #cb5008, -24px 24px #cb5008, -25px 25px #cb5008, -26px 26px #cb5008, -27px 27px #cb5008, -28px 28px #cb5008, -29px 29px #cb5008, -30px 30px #cb5008, -31px 31px #cb5008, -32px 32px #cb5008, -33px 33px #cb5008, -34px 34px #cb5008, -35px 35px #cb5008, -36px 36px #cb5008, -37px 37px #cb5008, -38px 38px #cb5008, -39px 39px #cb5008, -40px 40px #cb5008, -41px 41px #cb5008, -42px 42px #cb5008, -43px 43px #cb5008, -44px 44px #cb5008, -45px 45px #cb5008, -46px 46px #cb5008, -47px 47px #cb5008, -48px 48px #cb5008, -49px 49px #cb5008, -50px 50px #cb5008, -51px 51px #cb5008, -52px 52px #cb5008, -53px 53px #cb5008, -54px 54px #cb5008, -55px 55px #cb5008, -56px 56px #cb5008, -57px 57px #cb5008, -58px 58px #cb5008, -59px 59px #cb5008, -60px 60px #cb5008, -61px 61px #cb5008, -62px 62px #cb5008, -63px 63px #cb5008, -64px 64px #cb5008, -65px 65px #cb5008, -66px 66px #cb5008, -67px 67px #cb5008, -68px 68px #cb5008, -69px 69px #cb5008, -70px 70px #cb5008, -71px 71px #cb5008, -72px 72px #cb5008, -73px 73px #cb5008, -74px 74px #cb5008, -75px 75px #cb5008, -76px 76px #cb5008, -77px 77px #cb5008, -78px 78px #cb5008, -79px 79px #cb5008, -80px 80px #cb5008, -81px 81px #cb5008, -82px 82px #cb5008, -83px 83px #cb5008, -84px 84px #cb5008, -85px 85px #cb5008; }
  .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 #060817, -1px 1px #060817, -2px 2px #060817, -3px 3px #060817, -4px 4px #060817, -5px 5px #060817, -6px 6px #060817, -7px 7px #060817, -8px 8px #060817, -9px 9px #060817, -10px 10px #060817, -11px 11px #060817, -12px 12px #060817, -13px 13px #060817, -14px 14px #060817, -15px 15px #060817, -16px 16px #060817, -17px 17px #060817, -18px 18px #060817, -19px 19px #060817, -20px 20px #060817, -21px 21px #060817, -22px 22px #060817, -23px 23px #060817, -24px 24px #060817, -25px 25px #060817, -26px 26px #060817, -27px 27px #060817, -28px 28px #060817, -29px 29px #060817, -30px 30px #060817, -31px 31px #060817, -32px 32px #060817, -33px 33px #060817, -34px 34px #060817, -35px 35px #060817, -36px 36px #060817, -37px 37px #060817, -38px 38px #060817, -39px 39px #060817, -40px 40px #060817, -41px 41px #060817, -42px 42px #060817, -43px 43px #060817, -44px 44px #060817, -45px 45px #060817, -46px 46px #060817, -47px 47px #060817, -48px 48px #060817, -49px 49px #060817, -50px 50px #060817, -51px 51px #060817, -52px 52px #060817, -53px 53px #060817, -54px 54px #060817, -55px 55px #060817, -56px 56px #060817, -57px 57px #060817, -58px 58px #060817, -59px 59px #060817, -60px 60px #060817, -61px 61px #060817, -62px 62px #060817, -63px 63px #060817, -64px 64px #060817, -65px 65px #060817, -66px 66px #060817, -67px 67px #060817, -68px 68px #060817, -69px 69px #060817, -70px 70px #060817, -71px 71px #060817, -72px 72px #060817, -73px 73px #060817, -74px 74px #060817, -75px 75px #060817, -76px 76px #060817, -77px 77px #060817, -78px 78px #060817, -79px 79px #060817, -80px 80px #060817, -81px 81px #060817, -82px 82px #060817, -83px 83px #060817, -84px 84px #060817, -85px 85px #060817; }
  .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 #828282, -1px 1px #828282, -2px 2px #828282, -3px 3px #828282, -4px 4px #828282, -5px 5px #828282, -6px 6px #828282, -7px 7px #828282, -8px 8px #828282, -9px 9px #828282, -10px 10px #828282, -11px 11px #828282, -12px 12px #828282, -13px 13px #828282, -14px 14px #828282, -15px 15px #828282, -16px 16px #828282, -17px 17px #828282, -18px 18px #828282, -19px 19px #828282, -20px 20px #828282, -21px 21px #828282, -22px 22px #828282, -23px 23px #828282, -24px 24px #828282, -25px 25px #828282, -26px 26px #828282, -27px 27px #828282, -28px 28px #828282, -29px 29px #828282, -30px 30px #828282, -31px 31px #828282, -32px 32px #828282, -33px 33px #828282, -34px 34px #828282, -35px 35px #828282, -36px 36px #828282, -37px 37px #828282, -38px 38px #828282, -39px 39px #828282, -40px 40px #828282, -41px 41px #828282, -42px 42px #828282, -43px 43px #828282, -44px 44px #828282, -45px 45px #828282, -46px 46px #828282, -47px 47px #828282, -48px 48px #828282, -49px 49px #828282, -50px 50px #828282, -51px 51px #828282, -52px 52px #828282, -53px 53px #828282, -54px 54px #828282, -55px 55px #828282, -56px 56px #828282, -57px 57px #828282, -58px 58px #828282, -59px 59px #828282, -60px 60px #828282, -61px 61px #828282, -62px 62px #828282, -63px 63px #828282, -64px 64px #828282, -65px 65px #828282, -66px 66px #828282, -67px 67px #828282, -68px 68px #828282, -69px 69px #828282, -70px 70px #828282, -71px 71px #828282, -72px 72px #828282, -73px 73px #828282, -74px 74px #828282, -75px 75px #828282, -76px 76px #828282, -77px 77px #828282, -78px 78px #828282, -79px 79px #828282, -80px 80px #828282, -81px 81px #828282, -82px 82px #828282, -83px 83px #828282, -84px 84px #828282, -85px 85px #828282; }
  .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 #d7d7d7, -1px 1px #d7d7d7, -2px 2px #d7d7d7, -3px 3px #d7d7d7, -4px 4px #d7d7d7, -5px 5px #d7d7d7, -6px 6px #d7d7d7, -7px 7px #d7d7d7, -8px 8px #d7d7d7, -9px 9px #d7d7d7, -10px 10px #d7d7d7, -11px 11px #d7d7d7, -12px 12px #d7d7d7, -13px 13px #d7d7d7, -14px 14px #d7d7d7, -15px 15px #d7d7d7, -16px 16px #d7d7d7, -17px 17px #d7d7d7, -18px 18px #d7d7d7, -19px 19px #d7d7d7, -20px 20px #d7d7d7, -21px 21px #d7d7d7, -22px 22px #d7d7d7, -23px 23px #d7d7d7, -24px 24px #d7d7d7, -25px 25px #d7d7d7, -26px 26px #d7d7d7, -27px 27px #d7d7d7, -28px 28px #d7d7d7, -29px 29px #d7d7d7, -30px 30px #d7d7d7, -31px 31px #d7d7d7, -32px 32px #d7d7d7, -33px 33px #d7d7d7, -34px 34px #d7d7d7, -35px 35px #d7d7d7, -36px 36px #d7d7d7, -37px 37px #d7d7d7, -38px 38px #d7d7d7, -39px 39px #d7d7d7, -40px 40px #d7d7d7, -41px 41px #d7d7d7, -42px 42px #d7d7d7, -43px 43px #d7d7d7, -44px 44px #d7d7d7, -45px 45px #d7d7d7, -46px 46px #d7d7d7, -47px 47px #d7d7d7, -48px 48px #d7d7d7, -49px 49px #d7d7d7, -50px 50px #d7d7d7, -51px 51px #d7d7d7, -52px 52px #d7d7d7, -53px 53px #d7d7d7, -54px 54px #d7d7d7, -55px 55px #d7d7d7, -56px 56px #d7d7d7, -57px 57px #d7d7d7, -58px 58px #d7d7d7, -59px 59px #d7d7d7, -60px 60px #d7d7d7, -61px 61px #d7d7d7, -62px 62px #d7d7d7, -63px 63px #d7d7d7, -64px 64px #d7d7d7, -65px 65px #d7d7d7, -66px 66px #d7d7d7, -67px 67px #d7d7d7, -68px 68px #d7d7d7, -69px 69px #d7d7d7, -70px 70px #d7d7d7, -71px 71px #d7d7d7, -72px 72px #d7d7d7, -73px 73px #d7d7d7, -74px 74px #d7d7d7, -75px 75px #d7d7d7, -76px 76px #d7d7d7, -77px 77px #d7d7d7, -78px 78px #d7d7d7, -79px 79px #d7d7d7, -80px 80px #d7d7d7, -81px 81px #d7d7d7, -82px 82px #d7d7d7, -83px 83px #d7d7d7, -84px 84px #d7d7d7, -85px 85px #d7d7d7; }
  .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; }
