/*--------------------------------------------------------------
 # 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: #333;
  background-color: #cacca6;
  border-color: #cacca6;
  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: #333; }
  .btn:hover, .btn:focus {
    background-color: #d0d2b0;
    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: #c4c5ad;
    border-color: #b3b67f;
    color: #b7b986;
    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: #cacca6;
  border-color: #cacca6;
  color: #333; }
  .btn-color-1:visited, .btn-color-1-flat:visited {
    color: #333; }
  .btn-color-1:hover, .btn-color-1-flat:hover, .btn-color-1:focus, .btn-color-1-flat:focus {
    background-color: #dddfc6;
    border-color: #dddfc6;
    color: #333; }
  .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: #c4c5ad;
    border-color: #c4c5ad;
    color: #b7b986; }

.btn-color-2, .btn-color-2-flat {
  background-color: #ffdd9b;
  border-color: #ffdd9b;
  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: #ffeece;
    border-color: #ffeece;
    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: #fadba0;
    border-color: #fadba0;
    color: #ffcc68; }

.btn-color-3, .btn-color-3-flat {
  background-color: #ad9a6f;
  border-color: #ad9a6f;
  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: #c0b18f;
    border-color: #c0b18f;
    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: #a2967a;
    border-color: #a2967a;
    color: #948155; }
/*
 * 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(221, 223, 198, 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: #cacca6; }
    .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(221, 223, 198, 0.9);
      color: rgba(51, 51, 51, 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(196, 197, 173, 0.7);
      color: rgba(51, 51, 51, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-2, .btn-border-thin.btn-color-2, .btn-border-thick.btn-color-2 {
    color: #ffdd9b; }
    .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, 238, 206, 0.9);
      color: rgba(51, 51, 51, 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(250, 219, 160, 0.7);
      color: rgba(51, 51, 51, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-3, .btn-border-thin.btn-color-3, .btn-border-thick.btn-color-3 {
    color: #ad9a6f; }
    .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(192, 177, 143, 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(162, 150, 122, 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: #cacca6;
  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: #cacca6; }
  .btn-borderless.btn-color-2 {
    color: #ffdd9b; }
  .btn-borderless.btn-color-3 {
    color: #ad9a6f; }
  .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: #c0c396;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#d0d2b0, #c0c396);
  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(#d9dbc0, #bcbf8f); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #c4c5ad;
  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: #c0c396;
  background: linear-gradient(#d4d5b6, #c0c396); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#d9dbc0, #bcbf8f); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #b7b986;
    background: #c4c5ad; }
  .btn-raised.btn-color-2 {
    border-color: #ffd482;
    background: linear-gradient(#ffe6b5, #ffd482); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#ffebc4, #ffd177); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #ffcc68;
    background: #fadba0; }
  .btn-raised.btn-color-3 {
    border-color: #a48f5f;
    background: linear-gradient(#b6a57f, #a48f5f); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#bcac89, #9e895a); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #948155;
    background: #a2967a; }
/*
 * 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 #a3a765, 0 8px 3px rgba(0, 0, 0, 0.2); }

.btn-3d:hover, .btn-3d:focus {
  box-shadow: 0 7px 0 #a3a765, 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 #a3a765, 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 #b7b986, 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 #b3b67f, 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 #a3a765, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-2 {
    box-shadow: 0 7px 0 #ffcc68, 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 #ffc85e, 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 #ffba35, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #948155, 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 #8e7b51, 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 #746542, 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(202, 204, 166, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(202, 204, 166, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(202, 204, 166, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-color-3 {
    from {
      box-shadow: 0 0 0 rgba(173, 154, 111, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(173, 154, 111, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(173, 154, 111, 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; }
/*
 * 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(221, 223, 198, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #b7b986;
  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: #333;
  text-decoration: none; }
  .btn-dropdown-list > li > a:hover {
    color: #2b2b2b;
    background: #d0d2b0;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #c4c69c; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(202, 204, 166, 0.95);
  border-color: #b7b986; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #bcbf8f; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list > li > a {
    color: #333; }
    .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list > li > a:hover {
      color: #262626;
      background: #c0c396; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(255, 221, 155, 0.95);
    border-color: #ffcc68; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #ffd177; }
  .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: #ffd482; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(173, 154, 111, 0.95);
    border-color: #948155; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #9e895a; }
  .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: #a48f5f; }
/*
 * 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 #b7b986, 1px 1px #b7b986, 2px 2px #b7b986, 3px 3px #b7b986, 4px 4px #b7b986, 5px 5px #b7b986, 6px 6px #b7b986, 7px 7px #b7b986, 8px 8px #b7b986, 9px 9px #b7b986, 10px 10px #b7b986, 11px 11px #b7b986, 12px 12px #b7b986, 13px 13px #b7b986, 14px 14px #b7b986, 15px 15px #b7b986, 16px 16px #b7b986, 17px 17px #b7b986, 18px 18px #b7b986, 19px 19px #b7b986, 20px 20px #b7b986, 21px 21px #b7b986, 22px 22px #b7b986, 23px 23px #b7b986, 24px 24px #b7b986, 25px 25px #b7b986, 26px 26px #b7b986, 27px 27px #b7b986, 28px 28px #b7b986, 29px 29px #b7b986, 30px 30px #b7b986, 31px 31px #b7b986, 32px 32px #b7b986, 33px 33px #b7b986, 34px 34px #b7b986, 35px 35px #b7b986, 36px 36px #b7b986, 37px 37px #b7b986, 38px 38px #b7b986, 39px 39px #b7b986, 40px 40px #b7b986, 41px 41px #b7b986, 42px 42px #b7b986, 43px 43px #b7b986, 44px 44px #b7b986, 45px 45px #b7b986, 46px 46px #b7b986, 47px 47px #b7b986, 48px 48px #b7b986, 49px 49px #b7b986, 50px 50px #b7b986, 51px 51px #b7b986, 52px 52px #b7b986, 53px 53px #b7b986, 54px 54px #b7b986, 55px 55px #b7b986, 56px 56px #b7b986, 57px 57px #b7b986, 58px 58px #b7b986, 59px 59px #b7b986, 60px 60px #b7b986, 61px 61px #b7b986, 62px 62px #b7b986, 63px 63px #b7b986, 64px 64px #b7b986, 65px 65px #b7b986, 66px 66px #b7b986, 67px 67px #b7b986, 68px 68px #b7b986, 69px 69px #b7b986, 70px 70px #b7b986, 71px 71px #b7b986, 72px 72px #b7b986, 73px 73px #b7b986, 74px 74px #b7b986, 75px 75px #b7b986, 76px 76px #b7b986, 77px 77px #b7b986, 78px 78px #b7b986, 79px 79px #b7b986, 80px 80px #b7b986, 81px 81px #b7b986, 82px 82px #b7b986, 83px 83px #b7b986, 84px 84px #b7b986, 85px 85px #b7b986; }
  .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 #ffcc68, 1px 1px #ffcc68, 2px 2px #ffcc68, 3px 3px #ffcc68, 4px 4px #ffcc68, 5px 5px #ffcc68, 6px 6px #ffcc68, 7px 7px #ffcc68, 8px 8px #ffcc68, 9px 9px #ffcc68, 10px 10px #ffcc68, 11px 11px #ffcc68, 12px 12px #ffcc68, 13px 13px #ffcc68, 14px 14px #ffcc68, 15px 15px #ffcc68, 16px 16px #ffcc68, 17px 17px #ffcc68, 18px 18px #ffcc68, 19px 19px #ffcc68, 20px 20px #ffcc68, 21px 21px #ffcc68, 22px 22px #ffcc68, 23px 23px #ffcc68, 24px 24px #ffcc68, 25px 25px #ffcc68, 26px 26px #ffcc68, 27px 27px #ffcc68, 28px 28px #ffcc68, 29px 29px #ffcc68, 30px 30px #ffcc68, 31px 31px #ffcc68, 32px 32px #ffcc68, 33px 33px #ffcc68, 34px 34px #ffcc68, 35px 35px #ffcc68, 36px 36px #ffcc68, 37px 37px #ffcc68, 38px 38px #ffcc68, 39px 39px #ffcc68, 40px 40px #ffcc68, 41px 41px #ffcc68, 42px 42px #ffcc68, 43px 43px #ffcc68, 44px 44px #ffcc68, 45px 45px #ffcc68, 46px 46px #ffcc68, 47px 47px #ffcc68, 48px 48px #ffcc68, 49px 49px #ffcc68, 50px 50px #ffcc68, 51px 51px #ffcc68, 52px 52px #ffcc68, 53px 53px #ffcc68, 54px 54px #ffcc68, 55px 55px #ffcc68, 56px 56px #ffcc68, 57px 57px #ffcc68, 58px 58px #ffcc68, 59px 59px #ffcc68, 60px 60px #ffcc68, 61px 61px #ffcc68, 62px 62px #ffcc68, 63px 63px #ffcc68, 64px 64px #ffcc68, 65px 65px #ffcc68, 66px 66px #ffcc68, 67px 67px #ffcc68, 68px 68px #ffcc68, 69px 69px #ffcc68, 70px 70px #ffcc68, 71px 71px #ffcc68, 72px 72px #ffcc68, 73px 73px #ffcc68, 74px 74px #ffcc68, 75px 75px #ffcc68, 76px 76px #ffcc68, 77px 77px #ffcc68, 78px 78px #ffcc68, 79px 79px #ffcc68, 80px 80px #ffcc68, 81px 81px #ffcc68, 82px 82px #ffcc68, 83px 83px #ffcc68, 84px 84px #ffcc68, 85px 85px #ffcc68; }
  .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 #948155, 1px 1px #948155, 2px 2px #948155, 3px 3px #948155, 4px 4px #948155, 5px 5px #948155, 6px 6px #948155, 7px 7px #948155, 8px 8px #948155, 9px 9px #948155, 10px 10px #948155, 11px 11px #948155, 12px 12px #948155, 13px 13px #948155, 14px 14px #948155, 15px 15px #948155, 16px 16px #948155, 17px 17px #948155, 18px 18px #948155, 19px 19px #948155, 20px 20px #948155, 21px 21px #948155, 22px 22px #948155, 23px 23px #948155, 24px 24px #948155, 25px 25px #948155, 26px 26px #948155, 27px 27px #948155, 28px 28px #948155, 29px 29px #948155, 30px 30px #948155, 31px 31px #948155, 32px 32px #948155, 33px 33px #948155, 34px 34px #948155, 35px 35px #948155, 36px 36px #948155, 37px 37px #948155, 38px 38px #948155, 39px 39px #948155, 40px 40px #948155, 41px 41px #948155, 42px 42px #948155, 43px 43px #948155, 44px 44px #948155, 45px 45px #948155, 46px 46px #948155, 47px 47px #948155, 48px 48px #948155, 49px 49px #948155, 50px 50px #948155, 51px 51px #948155, 52px 52px #948155, 53px 53px #948155, 54px 54px #948155, 55px 55px #948155, 56px 56px #948155, 57px 57px #948155, 58px 58px #948155, 59px 59px #948155, 60px 60px #948155, 61px 61px #948155, 62px 62px #948155, 63px 63px #948155, 64px 64px #948155, 65px 65px #948155, 66px 66px #948155, 67px 67px #948155, 68px 68px #948155, 69px 69px #948155, 70px 70px #948155, 71px 71px #948155, 72px 72px #948155, 73px 73px #948155, 74px 74px #948155, 75px 75px #948155, 76px 76px #948155, 77px 77px #948155, 78px 78px #948155, 79px 79px #948155, 80px 80px #948155, 81px 81px #948155, 82px 82px #948155, 83px 83px #948155, 84px 84px #948155, 85px 85px #948155; }
  .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); }
/*
 * Shadow Left
 *
 */
.btn-longshadow-left {
  overflow: hidden; }
  .btn-longshadow-left.btn-color-1 {
    text-shadow: 0px 0px #b7b986, -1px 1px #b7b986, -2px 2px #b7b986, -3px 3px #b7b986, -4px 4px #b7b986, -5px 5px #b7b986, -6px 6px #b7b986, -7px 7px #b7b986, -8px 8px #b7b986, -9px 9px #b7b986, -10px 10px #b7b986, -11px 11px #b7b986, -12px 12px #b7b986, -13px 13px #b7b986, -14px 14px #b7b986, -15px 15px #b7b986, -16px 16px #b7b986, -17px 17px #b7b986, -18px 18px #b7b986, -19px 19px #b7b986, -20px 20px #b7b986, -21px 21px #b7b986, -22px 22px #b7b986, -23px 23px #b7b986, -24px 24px #b7b986, -25px 25px #b7b986, -26px 26px #b7b986, -27px 27px #b7b986, -28px 28px #b7b986, -29px 29px #b7b986, -30px 30px #b7b986, -31px 31px #b7b986, -32px 32px #b7b986, -33px 33px #b7b986, -34px 34px #b7b986, -35px 35px #b7b986, -36px 36px #b7b986, -37px 37px #b7b986, -38px 38px #b7b986, -39px 39px #b7b986, -40px 40px #b7b986, -41px 41px #b7b986, -42px 42px #b7b986, -43px 43px #b7b986, -44px 44px #b7b986, -45px 45px #b7b986, -46px 46px #b7b986, -47px 47px #b7b986, -48px 48px #b7b986, -49px 49px #b7b986, -50px 50px #b7b986, -51px 51px #b7b986, -52px 52px #b7b986, -53px 53px #b7b986, -54px 54px #b7b986, -55px 55px #b7b986, -56px 56px #b7b986, -57px 57px #b7b986, -58px 58px #b7b986, -59px 59px #b7b986, -60px 60px #b7b986, -61px 61px #b7b986, -62px 62px #b7b986, -63px 63px #b7b986, -64px 64px #b7b986, -65px 65px #b7b986, -66px 66px #b7b986, -67px 67px #b7b986, -68px 68px #b7b986, -69px 69px #b7b986, -70px 70px #b7b986, -71px 71px #b7b986, -72px 72px #b7b986, -73px 73px #b7b986, -74px 74px #b7b986, -75px 75px #b7b986, -76px 76px #b7b986, -77px 77px #b7b986, -78px 78px #b7b986, -79px 79px #b7b986, -80px 80px #b7b986, -81px 81px #b7b986, -82px 82px #b7b986, -83px 83px #b7b986, -84px 84px #b7b986, -85px 85px #b7b986; }
  .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 #ffcc68, -1px 1px #ffcc68, -2px 2px #ffcc68, -3px 3px #ffcc68, -4px 4px #ffcc68, -5px 5px #ffcc68, -6px 6px #ffcc68, -7px 7px #ffcc68, -8px 8px #ffcc68, -9px 9px #ffcc68, -10px 10px #ffcc68, -11px 11px #ffcc68, -12px 12px #ffcc68, -13px 13px #ffcc68, -14px 14px #ffcc68, -15px 15px #ffcc68, -16px 16px #ffcc68, -17px 17px #ffcc68, -18px 18px #ffcc68, -19px 19px #ffcc68, -20px 20px #ffcc68, -21px 21px #ffcc68, -22px 22px #ffcc68, -23px 23px #ffcc68, -24px 24px #ffcc68, -25px 25px #ffcc68, -26px 26px #ffcc68, -27px 27px #ffcc68, -28px 28px #ffcc68, -29px 29px #ffcc68, -30px 30px #ffcc68, -31px 31px #ffcc68, -32px 32px #ffcc68, -33px 33px #ffcc68, -34px 34px #ffcc68, -35px 35px #ffcc68, -36px 36px #ffcc68, -37px 37px #ffcc68, -38px 38px #ffcc68, -39px 39px #ffcc68, -40px 40px #ffcc68, -41px 41px #ffcc68, -42px 42px #ffcc68, -43px 43px #ffcc68, -44px 44px #ffcc68, -45px 45px #ffcc68, -46px 46px #ffcc68, -47px 47px #ffcc68, -48px 48px #ffcc68, -49px 49px #ffcc68, -50px 50px #ffcc68, -51px 51px #ffcc68, -52px 52px #ffcc68, -53px 53px #ffcc68, -54px 54px #ffcc68, -55px 55px #ffcc68, -56px 56px #ffcc68, -57px 57px #ffcc68, -58px 58px #ffcc68, -59px 59px #ffcc68, -60px 60px #ffcc68, -61px 61px #ffcc68, -62px 62px #ffcc68, -63px 63px #ffcc68, -64px 64px #ffcc68, -65px 65px #ffcc68, -66px 66px #ffcc68, -67px 67px #ffcc68, -68px 68px #ffcc68, -69px 69px #ffcc68, -70px 70px #ffcc68, -71px 71px #ffcc68, -72px 72px #ffcc68, -73px 73px #ffcc68, -74px 74px #ffcc68, -75px 75px #ffcc68, -76px 76px #ffcc68, -77px 77px #ffcc68, -78px 78px #ffcc68, -79px 79px #ffcc68, -80px 80px #ffcc68, -81px 81px #ffcc68, -82px 82px #ffcc68, -83px 83px #ffcc68, -84px 84px #ffcc68, -85px 85px #ffcc68; }
  .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 #948155, -1px 1px #948155, -2px 2px #948155, -3px 3px #948155, -4px 4px #948155, -5px 5px #948155, -6px 6px #948155, -7px 7px #948155, -8px 8px #948155, -9px 9px #948155, -10px 10px #948155, -11px 11px #948155, -12px 12px #948155, -13px 13px #948155, -14px 14px #948155, -15px 15px #948155, -16px 16px #948155, -17px 17px #948155, -18px 18px #948155, -19px 19px #948155, -20px 20px #948155, -21px 21px #948155, -22px 22px #948155, -23px 23px #948155, -24px 24px #948155, -25px 25px #948155, -26px 26px #948155, -27px 27px #948155, -28px 28px #948155, -29px 29px #948155, -30px 30px #948155, -31px 31px #948155, -32px 32px #948155, -33px 33px #948155, -34px 34px #948155, -35px 35px #948155, -36px 36px #948155, -37px 37px #948155, -38px 38px #948155, -39px 39px #948155, -40px 40px #948155, -41px 41px #948155, -42px 42px #948155, -43px 43px #948155, -44px 44px #948155, -45px 45px #948155, -46px 46px #948155, -47px 47px #948155, -48px 48px #948155, -49px 49px #948155, -50px 50px #948155, -51px 51px #948155, -52px 52px #948155, -53px 53px #948155, -54px 54px #948155, -55px 55px #948155, -56px 56px #948155, -57px 57px #948155, -58px 58px #948155, -59px 59px #948155, -60px 60px #948155, -61px 61px #948155, -62px 62px #948155, -63px 63px #948155, -64px 64px #948155, -65px 65px #948155, -66px 66px #948155, -67px 67px #948155, -68px 68px #948155, -69px 69px #948155, -70px 70px #948155, -71px 71px #948155, -72px 72px #948155, -73px 73px #948155, -74px 74px #948155, -75px 75px #948155, -76px 76px #948155, -77px 77px #948155, -78px 78px #948155, -79px 79px #948155, -80px 80px #948155, -81px 81px #948155, -82px 82px #948155, -83px 83px #948155, -84px 84px #948155, -85px 85px #948155; }
  .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); }
/*
 * 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; }
