/*--------------------------------------------------------------
 # 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 '/web/20210917213610cs_/https://www.battlegamesnfts.com/wp-content/themes/boldgrid-swifty/css/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, .palette-primary .button-primary, .palette-primary .woocommerce .button, .palette-primary .button-secondary, .palette-primary .woocommerce .alt.button {
  color: #fff;
  background-color: #ba0031;
  border-color: #ba0031;
  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, .palette-primary .button-primary:visited, .palette-primary .woocommerce .button:visited, .palette-primary .button-secondary:visited, .palette-primary .woocommerce .alt.button:visited {
    color: #fff; }
  .btn:hover, .palette-primary .button-primary:hover, .palette-primary .woocommerce .button:hover, .palette-primary .button-secondary:hover, .palette-primary .woocommerce .alt.button:hover, .btn:focus, .palette-primary .button-primary:focus, .palette-primary .woocommerce .button:focus, .palette-primary .button-secondary:focus, .palette-primary .woocommerce .alt.button:focus {
    background-color: #c90035;
    text-decoration: none;
    outline: none; }
  .btn:active, .palette-primary .button-primary:active, .palette-primary .woocommerce .button:active, .palette-primary .button-secondary:active, .palette-primary .woocommerce .alt.button:active, .btn.active, .palette-primary .button-primary.active, .palette-primary .woocommerce .button.active, .palette-primary .button-secondary.active, .palette-primary .woocommerce .alt.button.active, .btn.is-active, .palette-primary .button-primary.is-active, .palette-primary .woocommerce .button.is-active, .palette-primary .button-secondary.is-active, .palette-primary .woocommerce .alt.button.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
    text-decoration: none;
    background-color: #b10935;
    border-color: #7d0021;
    color: #870024;
    transition-duration: 0s;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2); }
  .btn.disabled, .palette-primary .button-primary.disabled, .palette-primary .woocommerce .button.disabled, .palette-primary .button-secondary.disabled, .palette-primary .woocommerce .alt.button.disabled, .btn.is-disabled, .palette-primary .button-primary.is-disabled, .palette-primary .woocommerce .button.is-disabled, .palette-primary .button-secondary.is-disabled, .palette-primary .woocommerce .alt.button.is-disabled, .btn:disabled, .palette-primary .button-primary:disabled, .palette-primary .woocommerce .button:disabled, .palette-primary .button-secondary:disabled, .palette-primary .woocommerce .alt.button: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, .palette-primary .button-primary.disabled else, .palette-primary .woocommerce .button.disabled else, .palette-primary .button-secondary.disabled else, .palette-primary .woocommerce .alt.button.disabled else, .btn.is-disabled else, .palette-primary .button-primary.is-disabled else, .palette-primary .woocommerce .button.is-disabled else, .palette-primary .button-secondary.is-disabled else, .palette-primary .woocommerce .alt.button.is-disabled else, .btn:disabled else, .palette-primary .button-primary:disabled else, .palette-primary .woocommerce .button:disabled else, .palette-primary .button-secondary:disabled else, .palette-primary .woocommerce .alt.button: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, .palette-primary .button-primary, .palette-primary .woocommerce .button, .btn-color-1-flat {
  background-color: #ba0031;
  border-color: #ba0031;
  color: #fff; }
  .btn-color-1:visited, .palette-primary .button-primary:visited, .palette-primary .woocommerce .button:visited, .btn-color-1-flat:visited {
    color: #fff; }
  .btn-color-1:hover, .palette-primary .button-primary:hover, .palette-primary .woocommerce .button:hover, .btn-color-1-flat:hover, .btn-color-1:focus, .palette-primary .button-primary:focus, .palette-primary .woocommerce .button:focus, .btn-color-1-flat:focus {
    background-color: #ed003e;
    border-color: #ed003e;
    color: #fff; }
  .btn-color-1:active, .palette-primary .button-primary:active, .palette-primary .woocommerce .button:active, .btn-color-1-flat:active, .btn-color-1.active, .palette-primary .button-primary.active, .palette-primary .woocommerce .button.active, .btn-color-1-flat.active, .btn-color-1.is-active, .palette-primary .button-primary.is-active, .palette-primary .woocommerce .button.is-active, .btn-color-1-flat.is-active {
    background-color: #b10935;
    border-color: #b10935;
    color: #870024; }

.btn-color-2, .palette-primary .button-secondary, .palette-primary .woocommerce .alt.button, .btn-color-2-flat {
  background-color: #57e567;
  border-color: #57e567;
  color: #333; }
  .btn-color-2:visited, .palette-primary .button-secondary:visited, .palette-primary .woocommerce .alt.button:visited, .btn-color-2-flat:visited {
    color: #333; }
  .btn-color-2:hover, .palette-primary .button-secondary:hover, .palette-primary .woocommerce .alt.button:hover, .btn-color-2-flat:hover, .btn-color-2:focus, .palette-primary .button-secondary:focus, .palette-primary .woocommerce .alt.button:focus, .btn-color-2-flat:focus {
    background-color: #83ec8f;
    border-color: #83ec8f;
    color: #333; }
  .btn-color-2:active, .palette-primary .button-secondary:active, .palette-primary .woocommerce .alt.button:active, .btn-color-2-flat:active, .btn-color-2.active, .palette-primary .button-secondary.active, .palette-primary .woocommerce .alt.button.active, .btn-color-2-flat.active, .btn-color-2.is-active, .palette-primary .button-secondary.is-active, .palette-primary .woocommerce .alt.button.is-active, .btn-color-2-flat.is-active {
    background-color: #61db6f;
    border-color: #61db6f;
    color: #2bde3f; }

.btn-color-3, .btn-color-3-flat {
  background-color: #9dff00;
  border-color: #9dff00;
  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: #b1ff33;
    border-color: #b1ff33;
    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: #9af20d;
    border-color: #9af20d;
    color: #7ecc00; }

.btn-color-4, .btn-color-4-flat {
  background-color: #4d1d4d;
  border-color: #4d1d4d;
  color: #fff; }
  .btn-color-4:visited, .btn-color-4-flat:visited {
    color: #fff; }
  .btn-color-4:hover, .btn-color-4-flat:hover, .btn-color-4:focus, .btn-color-4-flat:focus {
    background-color: #722b72;
    border-color: #722b72;
    color: #fff; }
  .btn-color-4:active, .btn-color-4-flat:active, .btn-color-4.active, .btn-color-4-flat.active, .btn-color-4.is-active, .btn-color-4-flat.is-active {
    background-color: #482248;
    border-color: #482248;
    color: #280f28; }

.btn-color-5, .btn-color-5-flat {
  background-color: #ebc288;
  border-color: #ebc288;
  color: #333; }
  .btn-color-5:visited, .btn-color-5-flat:visited {
    color: #333; }
  .btn-color-5:hover, .btn-color-5-flat:hover, .btn-color-5:focus, .btn-color-5-flat:focus {
    background-color: #f2d8b4;
    border-color: #f2d8b4;
    color: #333; }
  .btn-color-5:active, .btn-color-5-flat:active, .btn-color-5.active, .btn-color-5-flat.active, .btn-color-5.is-active, .btn-color-5-flat.is-active {
    background-color: #e4c18f;
    border-color: #e4c18f;
    color: #e4ac5c; }

.btn-neutral-color, .btn-neutral-color-flat {
  background-color: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff; }
  .btn-neutral-color:visited, .btn-neutral-color-flat:visited {
    color: #fff; }
  .btn-neutral-color:hover, .btn-neutral-color-flat:hover, .btn-neutral-color:focus, .btn-neutral-color-flat:focus {
    background-color: #242424;
    border-color: #242424;
    color: #fff; }
  .btn-neutral-color:active, .btn-neutral-color-flat:active, .btn-neutral-color.active, .btn-neutral-color-flat.active, .btn-neutral-color.is-active, .btn-neutral-color-flat.is-active {
    background-color: #0a0a0a;
    border-color: #0a0a0a;
    color: #000; }
/*
 * 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(237, 0, 62, 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, .palette-primary .button-primary.btn-border-thin, .palette-primary .woocommerce .button.btn-border-thin, .btn-border-thick.btn-color-1, .palette-primary .button-primary.btn-border-thick, .palette-primary .woocommerce .button.btn-border-thick, .palette-primary .button-primary.btn-border, .palette-primary .btn-border-thin.button-primary, .palette-primary .btn-border-thick.button-primary, .palette-primary .woocommerce .button.btn-border, .palette-primary .woocommerce .btn-border-thin.button, .palette-primary .woocommerce .btn-border-thick.button {
    color: #ba0031; }
    .btn-border.btn-color-1:hover, .btn-border-thin.btn-color-1:hover, .palette-primary .button-primary.btn-border-thin:hover, .palette-primary .woocommerce .button.btn-border-thin:hover, .btn-border-thick.btn-color-1:hover, .palette-primary .button-primary.btn-border-thick:hover, .palette-primary .woocommerce .button.btn-border-thick:hover, .palette-primary .button-primary.btn-border:hover, .palette-primary .btn-border-thin.button-primary:hover, .palette-primary .btn-border-thick.button-primary:hover, .palette-primary .woocommerce .button.btn-border:hover, .palette-primary .woocommerce .btn-border-thin.button:hover, .palette-primary .woocommerce .btn-border-thick.button:hover, .btn-border.btn-color-1:focus, .btn-border-thin.btn-color-1:focus, .palette-primary .button-primary.btn-border-thin:focus, .palette-primary .woocommerce .button.btn-border-thin:focus, .btn-border-thick.btn-color-1:focus, .palette-primary .button-primary.btn-border-thick:focus, .palette-primary .woocommerce .button.btn-border-thick:focus, .palette-primary .button-primary.btn-border:focus, .palette-primary .btn-border-thin.button-primary:focus, .palette-primary .btn-border-thick.button-primary:focus, .palette-primary .woocommerce .button.btn-border:focus, .palette-primary .woocommerce .btn-border-thin.button:focus, .palette-primary .woocommerce .btn-border-thick.button:focus {
      background-color: rgba(237, 0, 62, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .btn-border.btn-color-1:active, .btn-border-thin.btn-color-1:active, .palette-primary .button-primary.btn-border-thin:active, .palette-primary .woocommerce .button.btn-border-thin:active, .btn-border-thick.btn-color-1:active, .palette-primary .button-primary.btn-border-thick:active, .palette-primary .woocommerce .button.btn-border-thick:active, .palette-primary .button-primary.btn-border:active, .palette-primary .btn-border-thin.button-primary:active, .palette-primary .btn-border-thick.button-primary:active, .palette-primary .woocommerce .button.btn-border:active, .palette-primary .woocommerce .btn-border-thin.button:active, .palette-primary .woocommerce .btn-border-thick.button:active, .btn-border.btn-color-1.active, .btn-border-thin.btn-color-1.active, .palette-primary .button-primary.btn-border-thin.active, .palette-primary .woocommerce .button.btn-border-thin.active, .btn-border-thick.btn-color-1.active, .palette-primary .button-primary.btn-border-thick.active, .palette-primary .woocommerce .button.btn-border-thick.active, .palette-primary .button-primary.btn-border.active, .palette-primary .btn-border-thin.button-primary.active, .palette-primary .btn-border-thick.button-primary.active, .palette-primary .woocommerce .button.btn-border.active, .palette-primary .woocommerce .btn-border-thin.button.active, .palette-primary .woocommerce .btn-border-thick.button.active, .btn-border.btn-color-1.is-active, .btn-border-thin.btn-color-1.is-active, .palette-primary .button-primary.btn-border-thin.is-active, .palette-primary .woocommerce .button.btn-border-thin.is-active, .btn-border-thick.btn-color-1.is-active, .palette-primary .button-primary.btn-border-thick.is-active, .palette-primary .woocommerce .button.btn-border-thick.is-active, .palette-primary .button-primary.btn-border.is-active, .palette-primary .btn-border-thin.button-primary.is-active, .palette-primary .btn-border-thick.button-primary.is-active, .palette-primary .woocommerce .button.btn-border.is-active, .palette-primary .woocommerce .btn-border-thin.button.is-active, .palette-primary .woocommerce .btn-border-thick.button.is-active {
      background-color: rgba(177, 9, 53, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-2, .btn-border-thin.btn-color-2, .palette-primary .button-secondary.btn-border-thin, .palette-primary .woocommerce .alt.button.btn-border-thin, .btn-border-thick.btn-color-2, .palette-primary .button-secondary.btn-border-thick, .palette-primary .woocommerce .alt.button.btn-border-thick, .palette-primary .button-secondary.btn-border, .palette-primary .btn-border-thin.button-secondary, .palette-primary .btn-border-thick.button-secondary, .palette-primary .woocommerce .alt.button.btn-border, .palette-primary .woocommerce .btn-border-thin.alt.button, .palette-primary .woocommerce .btn-border-thick.alt.button {
    color: #57e567; }
    .btn-border.btn-color-2:hover, .btn-border-thin.btn-color-2:hover, .palette-primary .button-secondary.btn-border-thin:hover, .palette-primary .woocommerce .alt.button.btn-border-thin:hover, .btn-border-thick.btn-color-2:hover, .palette-primary .button-secondary.btn-border-thick:hover, .palette-primary .woocommerce .alt.button.btn-border-thick:hover, .palette-primary .button-secondary.btn-border:hover, .palette-primary .btn-border-thin.button-secondary:hover, .palette-primary .btn-border-thick.button-secondary:hover, .palette-primary .woocommerce .alt.button.btn-border:hover, .palette-primary .woocommerce .btn-border-thin.alt.button:hover, .palette-primary .woocommerce .btn-border-thick.alt.button:hover, .btn-border.btn-color-2:focus, .btn-border-thin.btn-color-2:focus, .palette-primary .button-secondary.btn-border-thin:focus, .palette-primary .woocommerce .alt.button.btn-border-thin:focus, .btn-border-thick.btn-color-2:focus, .palette-primary .button-secondary.btn-border-thick:focus, .palette-primary .woocommerce .alt.button.btn-border-thick:focus, .palette-primary .button-secondary.btn-border:focus, .palette-primary .btn-border-thin.button-secondary:focus, .palette-primary .btn-border-thick.button-secondary:focus, .palette-primary .woocommerce .alt.button.btn-border:focus, .palette-primary .woocommerce .btn-border-thin.alt.button:focus, .palette-primary .woocommerce .btn-border-thick.alt.button:focus {
      background-color: rgba(131, 236, 143, 0.9);
      color: rgba(51, 51, 51, 0.9); }
    .btn-border.btn-color-2:active, .btn-border-thin.btn-color-2:active, .palette-primary .button-secondary.btn-border-thin:active, .palette-primary .woocommerce .alt.button.btn-border-thin:active, .btn-border-thick.btn-color-2:active, .palette-primary .button-secondary.btn-border-thick:active, .palette-primary .woocommerce .alt.button.btn-border-thick:active, .palette-primary .button-secondary.btn-border:active, .palette-primary .btn-border-thin.button-secondary:active, .palette-primary .btn-border-thick.button-secondary:active, .palette-primary .woocommerce .alt.button.btn-border:active, .palette-primary .woocommerce .btn-border-thin.alt.button:active, .palette-primary .woocommerce .btn-border-thick.alt.button:active, .btn-border.btn-color-2.active, .btn-border-thin.btn-color-2.active, .palette-primary .button-secondary.btn-border-thin.active, .palette-primary .woocommerce .alt.button.btn-border-thin.active, .btn-border-thick.btn-color-2.active, .palette-primary .button-secondary.btn-border-thick.active, .palette-primary .woocommerce .alt.button.btn-border-thick.active, .palette-primary .button-secondary.btn-border.active, .palette-primary .btn-border-thin.button-secondary.active, .palette-primary .btn-border-thick.button-secondary.active, .palette-primary .woocommerce .alt.button.btn-border.active, .palette-primary .woocommerce .btn-border-thin.alt.button.active, .palette-primary .woocommerce .btn-border-thick.alt.button.active, .btn-border.btn-color-2.is-active, .btn-border-thin.btn-color-2.is-active, .palette-primary .button-secondary.btn-border-thin.is-active, .palette-primary .woocommerce .alt.button.btn-border-thin.is-active, .btn-border-thick.btn-color-2.is-active, .palette-primary .button-secondary.btn-border-thick.is-active, .palette-primary .woocommerce .alt.button.btn-border-thick.is-active, .palette-primary .button-secondary.btn-border.is-active, .palette-primary .btn-border-thin.button-secondary.is-active, .palette-primary .btn-border-thick.button-secondary.is-active, .palette-primary .woocommerce .alt.button.btn-border.is-active, .palette-primary .woocommerce .btn-border-thin.alt.button.is-active, .palette-primary .woocommerce .btn-border-thick.alt.button.is-active {
      background-color: rgba(97, 219, 111, 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: #9dff00; }
    .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(177, 255, 51, 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(154, 242, 13, 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: #4d1d4d; }
    .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(114, 43, 114, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .btn-border.btn-color-4:active, .btn-border-thin.btn-color-4:active, .btn-border-thick.btn-color-4:active, .btn-border.btn-color-4.active, .btn-border-thin.btn-color-4.active, .btn-border-thick.btn-color-4.active, .btn-border.btn-color-4.is-active, .btn-border-thin.btn-color-4.is-active, .btn-border-thick.btn-color-4.is-active {
      background-color: rgba(72, 34, 72, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-5, .btn-border-thin.btn-color-5, .btn-border-thick.btn-color-5 {
    color: #ebc288; }
    .btn-border.btn-color-5:hover, .btn-border-thin.btn-color-5:hover, .btn-border-thick.btn-color-5:hover, .btn-border.btn-color-5:focus, .btn-border-thin.btn-color-5:focus, .btn-border-thick.btn-color-5:focus {
      background-color: rgba(242, 216, 180, 0.9);
      color: rgba(51, 51, 51, 0.9); }
    .btn-border.btn-color-5:active, .btn-border-thin.btn-color-5:active, .btn-border-thick.btn-color-5:active, .btn-border.btn-color-5.active, .btn-border-thin.btn-color-5.active, .btn-border-thick.btn-color-5.active, .btn-border.btn-color-5.is-active, .btn-border-thin.btn-color-5.is-active, .btn-border-thick.btn-color-5.is-active {
      background-color: rgba(228, 193, 143, 0.7);
      color: rgba(51, 51, 51, 0.5);
      opacity: 0.3; }
  .btn-border.btn-neutral-color, .btn-border-thin.btn-neutral-color, .btn-border-thick.btn-neutral-color {
    color: #0a0a0a; }
    .btn-border.btn-neutral-color:hover, .btn-border-thin.btn-neutral-color:hover, .btn-border-thick.btn-neutral-color:hover, .btn-border.btn-neutral-color:focus, .btn-border-thin.btn-neutral-color:focus, .btn-border-thick.btn-neutral-color:focus {
      background-color: rgba(36, 36, 36, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .btn-border.btn-neutral-color:active, .btn-border-thin.btn-neutral-color:active, .btn-border-thick.btn-neutral-color:active, .btn-border.btn-neutral-color.active, .btn-border-thin.btn-neutral-color.active, .btn-border-thick.btn-neutral-color.active, .btn-border.btn-neutral-color.is-active, .btn-border-thin.btn-neutral-color.is-active, .btn-border-thick.btn-neutral-color.is-active {
      background-color: rgba(10, 10, 10, 0.7);
      color: rgba(255, 255, 255, 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: #ba0031;
  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, .palette-primary .button-primary.btn-borderless, .palette-primary .woocommerce .button.btn-borderless {
    color: #ba0031; }
  .btn-borderless.btn-color-2, .palette-primary .button-secondary.btn-borderless, .palette-primary .woocommerce .alt.button.btn-borderless {
    color: #57e567; }
  .btn-borderless.btn-color-3 {
    color: #9dff00; }
  .btn-borderless.btn-color-4 {
    color: #4d1d4d; }
  .btn-borderless.btn-color-5 {
    color: #ebc288; }
  .btn-borderless.btn-neutral-color {
    color: #0a0a0a; }
  .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: #a1002a;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#c90035, #a1002a);
  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(#e3003c, #960028); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #b10935;
  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, .palette-primary .button-primary.btn-raised, .palette-primary .woocommerce .button.btn-raised {
  border-color: #a1002a;
  background: linear-gradient(#d40038, #a1002a); }
  .btn-raised.btn-color-1:hover, .palette-primary .button-primary.btn-raised:hover, .palette-primary .woocommerce .button.btn-raised:hover, .btn-raised.btn-color-1:focus, .palette-primary .button-primary.btn-raised:focus, .palette-primary .woocommerce .button.btn-raised:focus {
    background: linear-gradient(#e3003c, #960028); }
  .btn-raised.btn-color-1:active, .palette-primary .button-primary.btn-raised:active, .palette-primary .woocommerce .button.btn-raised:active, .btn-raised.btn-color-1.active, .palette-primary .button-primary.btn-raised.active, .palette-primary .woocommerce .button.btn-raised.active, .btn-raised.btn-color-1.is-active, .palette-primary .button-primary.btn-raised.is-active, .palette-primary .woocommerce .button.btn-raised.is-active {
    border-color: #870024;
    background: #b10935; }
  .btn-raised.btn-color-2, .palette-primary .button-secondary.btn-raised, .palette-primary .woocommerce .alt.button.btn-raised {
    border-color: #41e253;
    background: linear-gradient(#6de87b, #41e253); }
  .btn-raised.btn-color-2:hover, .palette-primary .button-secondary.btn-raised:hover, .palette-primary .woocommerce .alt.button.btn-raised:hover, .btn-raised.btn-color-2:focus, .palette-primary .button-secondary.btn-raised:focus, .palette-primary .woocommerce .alt.button.btn-raised:focus {
    background: linear-gradient(#7aea87, #38e04b); }
  .btn-raised.btn-color-2:active, .palette-primary .button-secondary.btn-raised:active, .palette-primary .woocommerce .alt.button.btn-raised:active, .btn-raised.btn-color-2.active, .palette-primary .button-secondary.btn-raised.active, .palette-primary .woocommerce .alt.button.btn-raised.active, .btn-raised.btn-color-2.is-active, .palette-primary .button-secondary.btn-raised.is-active, .palette-primary .woocommerce .alt.button.btn-raised.is-active {
    border-color: #2bde3f;
    background: #61db6f; }
  .btn-raised.btn-color-3 {
    border-color: #8de600;
    background: linear-gradient(#a7ff1a, #8de600); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#adff29, #87db00); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #7ecc00;
    background: #9af20d; }
  .btn-raised.btn-color-4 {
    border-color: #3a163a;
    background: linear-gradient(#602460, #3a163a); }
  .btn-raised.btn-color-4:hover, .btn-raised.btn-color-4:focus {
    background: linear-gradient(#6b286b, #331333); }
  .btn-raised.btn-color-4:active, .btn-raised.btn-color-4.active, .btn-raised.btn-color-4.is-active {
    border-color: #280f28;
    background: #482248; }
  .btn-raised.btn-color-5 {
    border-color: #e7b772;
    background: linear-gradient(#efcd9e, #e7b772); }
  .btn-raised.btn-color-5:hover, .btn-raised.btn-color-5:focus {
    background: linear-gradient(#f1d4ab, #e6b269); }
  .btn-raised.btn-color-5:active, .btn-raised.btn-color-5.active, .btn-raised.btn-color-5.is-active {
    border-color: #e4ac5c;
    background: #e4c18f; }
  .btn-raised.btn-neutral-color {
    border-color: #000;
    background: linear-gradient(#171717, #000); }
  .btn-raised.btn-neutral-color:hover, .btn-raised.btn-neutral-color:focus {
    background: linear-gradient(#1e1e1e, #000); }
  .btn-raised.btn-neutral-color:active, .btn-raised.btn-neutral-color.active, .btn-raised.btn-neutral-color.is-active {
    border-color: #000;
    background: #0a0a0a; }
/*
 * 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 #540016, 0 8px 3px rgba(0, 0, 0, 0.2); }

.btn-3d:hover, .btn-3d:focus {
  box-shadow: 0 7px 0 #540016, 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 #540016, 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, .palette-primary .button-primary.btn-3d, .palette-primary .woocommerce .button.btn-3d {
  box-shadow: 0 7px 0 #870024, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-1:hover, .palette-primary .button-primary.btn-3d:hover, .palette-primary .woocommerce .button.btn-3d:hover, .btn-3d.btn-color-1:focus, .palette-primary .button-primary.btn-3d:focus, .palette-primary .woocommerce .button.btn-3d:focus {
    box-shadow: 0 7px 0 #7d0021, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-1:active, .palette-primary .button-primary.btn-3d:active, .palette-primary .woocommerce .button.btn-3d:active, .btn-3d.btn-color-1.active, .palette-primary .button-primary.btn-3d.active, .palette-primary .woocommerce .button.btn-3d.active, .btn-3d.btn-color-1.is-active, .palette-primary .button-primary.btn-3d.is-active, .palette-primary .woocommerce .button.btn-3d.is-active {
    box-shadow: 0 2px 0 #540016, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-2, .palette-primary .button-secondary.btn-3d, .palette-primary .woocommerce .alt.button.btn-3d {
    box-shadow: 0 7px 0 #2bde3f, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-2:hover, .palette-primary .button-secondary.btn-3d:hover, .palette-primary .woocommerce .alt.button.btn-3d:hover, .btn-3d.btn-color-2:focus, .palette-primary .button-secondary.btn-3d:focus, .palette-primary .woocommerce .alt.button.btn-3d:focus {
    box-shadow: 0 7px 0 #22dd37, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-2:active, .palette-primary .button-secondary.btn-3d:active, .palette-primary .woocommerce .alt.button.btn-3d:active, .btn-3d.btn-color-2.active, .palette-primary .button-secondary.btn-3d.active, .palette-primary .woocommerce .alt.button.btn-3d.active, .btn-3d.btn-color-2.is-active, .palette-primary .button-secondary.btn-3d.is-active, .palette-primary .woocommerce .alt.button.btn-3d.is-active {
    box-shadow: 0 2px 0 #1db92e, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #7ecc00, 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 #77c200, 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 #5e9900, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-4 {
    box-shadow: 0 7px 0 #280f28, 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 #210c21, 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 #030103, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-5 {
    box-shadow: 0 7px 0 #e4ac5c, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-5:hover, .btn-3d.btn-color-5:focus {
    box-shadow: 0 7px 0 #e2a754, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-color-5:active, .btn-3d.btn-color-5.active, .btn-3d.btn-color-5.is-active {
    box-shadow: 0 2px 0 #dc9531, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-neutral-color {
    box-shadow: 0 7px 0 #000, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-neutral-color:hover, .btn-3d.btn-neutral-color:focus {
    box-shadow: 0 7px 0 #000, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .btn-3d.btn-neutral-color:active, .btn-3d.btn-neutral-color.active, .btn-3d.btn-neutral-color.is-active {
    box-shadow: 0 2px 0 #000, 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(186, 0, 49, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(186, 0, 49, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(186, 0, 49, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

@keyframes glowing-neutral-color {
    from {
      box-shadow: 0 0 0 rgba(10, 10, 10, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(10, 10, 10, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(10, 10, 10, 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, .palette-primary .button-primary.btn-glow, .palette-primary .woocommerce .button.btn-glow {
  animation-name: glowing-color-1; }
  .btn-glow.btn-color-2, .palette-primary .button-secondary.btn-glow, .palette-primary .woocommerce .alt.button.btn-glow {
    animation-name: glowing-color-2; }
  .btn-glow.btn-color-3 {
    animation-name: glowing-color-3; }
  .btn-glow.btn-color-4 {
    animation-name: glowing-color-4; }
  .btn-glow.btn-color-5 {
    animation-name: glowing-color-5; }
  .btn-glow.btn-neutral-color {
    animation-name: glowing-neutral-color; }
/*
 * Dropdown menu buttons
 *
 * A dropdown menu appears
 * when a button is pressed
 */
/*
 * Dropdown Container
 *
 */
.btn-dropdown {
  position: relative;
  overflow: visible;
  display: inline-block; }
/*
 * Dropdown List Style
 *
 */
.btn-dropdown-list {
  display: none;
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 1000;
  min-width: 100%;
  list-style-type: none;
  background: rgba(237, 0, 62, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #870024;
  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: #c90035;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #ab002d; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(186, 0, 49, 0.95);
  border-color: #870024; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #960028; }
  .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: #a1002a; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(87, 229, 103, 0.95);
    border-color: #2bde3f; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #38e04b; }
  .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: #41e253; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(157, 255, 0, 0.95);
    border-color: #7ecc00; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #87db00; }
  .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: #8de600; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list {
    background: rgba(77, 29, 77, 0.95);
    border-color: #280f28; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #331333; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a {
    color: #fff; }
    .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #3a163a; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list {
    background: rgba(235, 194, 136, 0.95);
    border-color: #e4ac5c; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #e6b269; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a {
    color: #333; }
    .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a:hover {
      color: #262626;
      background: #e7b772; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list {
    background: rgba(10, 10, 10, 0.95);
    border-color: #000; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list .btn-dropdown-divider {
    border-color: #000; }
  .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list > li > a {
    color: #fff; }
    .btn-dropdown.btn-dropdown-neutral-color .btn-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #000; }
/*
 * 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 .palette-primary .button-primary, .palette-primary .btn-group .button-primary, .btn-group .palette-primary .woocommerce .button, .palette-primary .woocommerce .btn-group .button, .btn-group .palette-primary .button-secondary, .palette-primary .btn-group .button-secondary, .btn-group .palette-primary .woocommerce .alt.button, .palette-primary .woocommerce .btn-group .alt.button, .btn-group .btn-dropdown {
  float: left; }
  .btn-group .btn:not(:first-child):not(:last-child), .btn-group .palette-primary .button-primary:not(:first-child):not(:last-child), .palette-primary .btn-group .button-primary:not(:first-child):not(:last-child), .btn-group .palette-primary .woocommerce .button:not(:first-child):not(:last-child), .palette-primary .woocommerce .btn-group .button:not(:first-child):not(:last-child), .btn-group .palette-primary .button-secondary:not(:first-child):not(:last-child), .palette-primary .btn-group .button-secondary:not(:first-child):not(:last-child), .btn-group .palette-primary .woocommerce .alt.button:not(:first-child):not(:last-child), .palette-primary .woocommerce .btn-group .alt.button: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 .palette-primary .button-primary:first-child, .palette-primary .btn-group .button-primary:first-child, .btn-group .palette-primary .woocommerce .button:first-child, .palette-primary .woocommerce .btn-group .button:first-child, .btn-group .palette-primary .button-secondary:first-child, .palette-primary .btn-group .button-secondary:first-child, .btn-group .palette-primary .woocommerce .alt.button:first-child, .palette-primary .woocommerce .btn-group .alt.button: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 .palette-primary .button-primary:last-child, .palette-primary .btn-group .button-primary:last-child, .btn-group .palette-primary .woocommerce .button:last-child, .palette-primary .woocommerce .btn-group .button:last-child, .btn-group .palette-primary .button-secondary:last-child, .palette-primary .btn-group .button-secondary:last-child, .btn-group .palette-primary .woocommerce .alt.button:last-child, .palette-primary .woocommerce .btn-group .alt.button: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, .palette-primary .button-primary.btn-longshadow, .palette-primary .woocommerce .button.btn-longshadow, .btn-longshadow-right.btn-color-1, .palette-primary .button-primary.btn-longshadow-right, .palette-primary .woocommerce .button.btn-longshadow-right {
    text-shadow: 0px 0px #870024, 1px 1px #870024, 2px 2px #870024, 3px 3px #870024, 4px 4px #870024, 5px 5px #870024, 6px 6px #870024, 7px 7px #870024, 8px 8px #870024, 9px 9px #870024, 10px 10px #870024, 11px 11px #870024, 12px 12px #870024, 13px 13px #870024, 14px 14px #870024, 15px 15px #870024, 16px 16px #870024, 17px 17px #870024, 18px 18px #870024, 19px 19px #870024, 20px 20px #870024, 21px 21px #870024, 22px 22px #870024, 23px 23px #870024, 24px 24px #870024, 25px 25px #870024, 26px 26px #870024, 27px 27px #870024, 28px 28px #870024, 29px 29px #870024, 30px 30px #870024, 31px 31px #870024, 32px 32px #870024, 33px 33px #870024, 34px 34px #870024, 35px 35px #870024, 36px 36px #870024, 37px 37px #870024, 38px 38px #870024, 39px 39px #870024, 40px 40px #870024, 41px 41px #870024, 42px 42px #870024, 43px 43px #870024, 44px 44px #870024, 45px 45px #870024, 46px 46px #870024, 47px 47px #870024, 48px 48px #870024, 49px 49px #870024, 50px 50px #870024, 51px 51px #870024, 52px 52px #870024, 53px 53px #870024, 54px 54px #870024, 55px 55px #870024, 56px 56px #870024, 57px 57px #870024, 58px 58px #870024, 59px 59px #870024, 60px 60px #870024, 61px 61px #870024, 62px 62px #870024, 63px 63px #870024, 64px 64px #870024, 65px 65px #870024, 66px 66px #870024, 67px 67px #870024, 68px 68px #870024, 69px 69px #870024, 70px 70px #870024, 71px 71px #870024, 72px 72px #870024, 73px 73px #870024, 74px 74px #870024, 75px 75px #870024, 76px 76px #870024, 77px 77px #870024, 78px 78px #870024, 79px 79px #870024, 80px 80px #870024, 81px 81px #870024, 82px 82px #870024, 83px 83px #870024, 84px 84px #870024, 85px 85px #870024; }
  .btn-longshadow.btn-color-1:active, .palette-primary .button-primary.btn-longshadow:active, .palette-primary .woocommerce .button.btn-longshadow:active, .btn-longshadow-right.btn-color-1:active, .palette-primary .button-primary.btn-longshadow-right:active, .palette-primary .woocommerce .button.btn-longshadow-right:active, .btn-longshadow.btn-color-1.active, .palette-primary .button-primary.btn-longshadow.active, .palette-primary .woocommerce .button.btn-longshadow.active, .btn-longshadow-right.btn-color-1.active, .palette-primary .button-primary.btn-longshadow-right.active, .palette-primary .woocommerce .button.btn-longshadow-right.active, .btn-longshadow.btn-color-1.is-active, .palette-primary .button-primary.btn-longshadow.is-active, .palette-primary .woocommerce .button.btn-longshadow.is-active, .btn-longshadow-right.btn-color-1.is-active, .palette-primary .button-primary.btn-longshadow-right.is-active, .palette-primary .woocommerce .button.btn-longshadow-right.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow.btn-color-2, .palette-primary .button-secondary.btn-longshadow, .palette-primary .woocommerce .alt.button.btn-longshadow, .btn-longshadow-right.btn-color-2, .palette-primary .button-secondary.btn-longshadow-right, .palette-primary .woocommerce .alt.button.btn-longshadow-right {
    text-shadow: 0px 0px #2bde3f, 1px 1px #2bde3f, 2px 2px #2bde3f, 3px 3px #2bde3f, 4px 4px #2bde3f, 5px 5px #2bde3f, 6px 6px #2bde3f, 7px 7px #2bde3f, 8px 8px #2bde3f, 9px 9px #2bde3f, 10px 10px #2bde3f, 11px 11px #2bde3f, 12px 12px #2bde3f, 13px 13px #2bde3f, 14px 14px #2bde3f, 15px 15px #2bde3f, 16px 16px #2bde3f, 17px 17px #2bde3f, 18px 18px #2bde3f, 19px 19px #2bde3f, 20px 20px #2bde3f, 21px 21px #2bde3f, 22px 22px #2bde3f, 23px 23px #2bde3f, 24px 24px #2bde3f, 25px 25px #2bde3f, 26px 26px #2bde3f, 27px 27px #2bde3f, 28px 28px #2bde3f, 29px 29px #2bde3f, 30px 30px #2bde3f, 31px 31px #2bde3f, 32px 32px #2bde3f, 33px 33px #2bde3f, 34px 34px #2bde3f, 35px 35px #2bde3f, 36px 36px #2bde3f, 37px 37px #2bde3f, 38px 38px #2bde3f, 39px 39px #2bde3f, 40px 40px #2bde3f, 41px 41px #2bde3f, 42px 42px #2bde3f, 43px 43px #2bde3f, 44px 44px #2bde3f, 45px 45px #2bde3f, 46px 46px #2bde3f, 47px 47px #2bde3f, 48px 48px #2bde3f, 49px 49px #2bde3f, 50px 50px #2bde3f, 51px 51px #2bde3f, 52px 52px #2bde3f, 53px 53px #2bde3f, 54px 54px #2bde3f, 55px 55px #2bde3f, 56px 56px #2bde3f, 57px 57px #2bde3f, 58px 58px #2bde3f, 59px 59px #2bde3f, 60px 60px #2bde3f, 61px 61px #2bde3f, 62px 62px #2bde3f, 63px 63px #2bde3f, 64px 64px #2bde3f, 65px 65px #2bde3f, 66px 66px #2bde3f, 67px 67px #2bde3f, 68px 68px #2bde3f, 69px 69px #2bde3f, 70px 70px #2bde3f, 71px 71px #2bde3f, 72px 72px #2bde3f, 73px 73px #2bde3f, 74px 74px #2bde3f, 75px 75px #2bde3f, 76px 76px #2bde3f, 77px 77px #2bde3f, 78px 78px #2bde3f, 79px 79px #2bde3f, 80px 80px #2bde3f, 81px 81px #2bde3f, 82px 82px #2bde3f, 83px 83px #2bde3f, 84px 84px #2bde3f, 85px 85px #2bde3f; }
  .btn-longshadow.btn-color-2:active, .palette-primary .button-secondary.btn-longshadow:active, .palette-primary .woocommerce .alt.button.btn-longshadow:active, .btn-longshadow-right.btn-color-2:active, .palette-primary .button-secondary.btn-longshadow-right:active, .palette-primary .woocommerce .alt.button.btn-longshadow-right:active, .btn-longshadow.btn-color-2.active, .palette-primary .button-secondary.btn-longshadow.active, .palette-primary .woocommerce .alt.button.btn-longshadow.active, .btn-longshadow-right.btn-color-2.active, .palette-primary .button-secondary.btn-longshadow-right.active, .palette-primary .woocommerce .alt.button.btn-longshadow-right.active, .btn-longshadow.btn-color-2.is-active, .palette-primary .button-secondary.btn-longshadow.is-active, .palette-primary .woocommerce .alt.button.btn-longshadow.is-active, .btn-longshadow-right.btn-color-2.is-active, .palette-primary .button-secondary.btn-longshadow-right.is-active, .palette-primary .woocommerce .alt.button.btn-longshadow-right.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 #7ecc00, 1px 1px #7ecc00, 2px 2px #7ecc00, 3px 3px #7ecc00, 4px 4px #7ecc00, 5px 5px #7ecc00, 6px 6px #7ecc00, 7px 7px #7ecc00, 8px 8px #7ecc00, 9px 9px #7ecc00, 10px 10px #7ecc00, 11px 11px #7ecc00, 12px 12px #7ecc00, 13px 13px #7ecc00, 14px 14px #7ecc00, 15px 15px #7ecc00, 16px 16px #7ecc00, 17px 17px #7ecc00, 18px 18px #7ecc00, 19px 19px #7ecc00, 20px 20px #7ecc00, 21px 21px #7ecc00, 22px 22px #7ecc00, 23px 23px #7ecc00, 24px 24px #7ecc00, 25px 25px #7ecc00, 26px 26px #7ecc00, 27px 27px #7ecc00, 28px 28px #7ecc00, 29px 29px #7ecc00, 30px 30px #7ecc00, 31px 31px #7ecc00, 32px 32px #7ecc00, 33px 33px #7ecc00, 34px 34px #7ecc00, 35px 35px #7ecc00, 36px 36px #7ecc00, 37px 37px #7ecc00, 38px 38px #7ecc00, 39px 39px #7ecc00, 40px 40px #7ecc00, 41px 41px #7ecc00, 42px 42px #7ecc00, 43px 43px #7ecc00, 44px 44px #7ecc00, 45px 45px #7ecc00, 46px 46px #7ecc00, 47px 47px #7ecc00, 48px 48px #7ecc00, 49px 49px #7ecc00, 50px 50px #7ecc00, 51px 51px #7ecc00, 52px 52px #7ecc00, 53px 53px #7ecc00, 54px 54px #7ecc00, 55px 55px #7ecc00, 56px 56px #7ecc00, 57px 57px #7ecc00, 58px 58px #7ecc00, 59px 59px #7ecc00, 60px 60px #7ecc00, 61px 61px #7ecc00, 62px 62px #7ecc00, 63px 63px #7ecc00, 64px 64px #7ecc00, 65px 65px #7ecc00, 66px 66px #7ecc00, 67px 67px #7ecc00, 68px 68px #7ecc00, 69px 69px #7ecc00, 70px 70px #7ecc00, 71px 71px #7ecc00, 72px 72px #7ecc00, 73px 73px #7ecc00, 74px 74px #7ecc00, 75px 75px #7ecc00, 76px 76px #7ecc00, 77px 77px #7ecc00, 78px 78px #7ecc00, 79px 79px #7ecc00, 80px 80px #7ecc00, 81px 81px #7ecc00, 82px 82px #7ecc00, 83px 83px #7ecc00, 84px 84px #7ecc00, 85px 85px #7ecc00; }
  .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 #280f28, 1px 1px #280f28, 2px 2px #280f28, 3px 3px #280f28, 4px 4px #280f28, 5px 5px #280f28, 6px 6px #280f28, 7px 7px #280f28, 8px 8px #280f28, 9px 9px #280f28, 10px 10px #280f28, 11px 11px #280f28, 12px 12px #280f28, 13px 13px #280f28, 14px 14px #280f28, 15px 15px #280f28, 16px 16px #280f28, 17px 17px #280f28, 18px 18px #280f28, 19px 19px #280f28, 20px 20px #280f28, 21px 21px #280f28, 22px 22px #280f28, 23px 23px #280f28, 24px 24px #280f28, 25px 25px #280f28, 26px 26px #280f28, 27px 27px #280f28, 28px 28px #280f28, 29px 29px #280f28, 30px 30px #280f28, 31px 31px #280f28, 32px 32px #280f28, 33px 33px #280f28, 34px 34px #280f28, 35px 35px #280f28, 36px 36px #280f28, 37px 37px #280f28, 38px 38px #280f28, 39px 39px #280f28, 40px 40px #280f28, 41px 41px #280f28, 42px 42px #280f28, 43px 43px #280f28, 44px 44px #280f28, 45px 45px #280f28, 46px 46px #280f28, 47px 47px #280f28, 48px 48px #280f28, 49px 49px #280f28, 50px 50px #280f28, 51px 51px #280f28, 52px 52px #280f28, 53px 53px #280f28, 54px 54px #280f28, 55px 55px #280f28, 56px 56px #280f28, 57px 57px #280f28, 58px 58px #280f28, 59px 59px #280f28, 60px 60px #280f28, 61px 61px #280f28, 62px 62px #280f28, 63px 63px #280f28, 64px 64px #280f28, 65px 65px #280f28, 66px 66px #280f28, 67px 67px #280f28, 68px 68px #280f28, 69px 69px #280f28, 70px 70px #280f28, 71px 71px #280f28, 72px 72px #280f28, 73px 73px #280f28, 74px 74px #280f28, 75px 75px #280f28, 76px 76px #280f28, 77px 77px #280f28, 78px 78px #280f28, 79px 79px #280f28, 80px 80px #280f28, 81px 81px #280f28, 82px 82px #280f28, 83px 83px #280f28, 84px 84px #280f28, 85px 85px #280f28; }
  .btn-longshadow.btn-color-4:active, .btn-longshadow-right.btn-color-4:active, .btn-longshadow.btn-color-4.active, .btn-longshadow-right.btn-color-4.active, .btn-longshadow.btn-color-4.is-active, .btn-longshadow-right.btn-color-4.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow.btn-color-5, .btn-longshadow-right.btn-color-5 {
    text-shadow: 0px 0px #e4ac5c, 1px 1px #e4ac5c, 2px 2px #e4ac5c, 3px 3px #e4ac5c, 4px 4px #e4ac5c, 5px 5px #e4ac5c, 6px 6px #e4ac5c, 7px 7px #e4ac5c, 8px 8px #e4ac5c, 9px 9px #e4ac5c, 10px 10px #e4ac5c, 11px 11px #e4ac5c, 12px 12px #e4ac5c, 13px 13px #e4ac5c, 14px 14px #e4ac5c, 15px 15px #e4ac5c, 16px 16px #e4ac5c, 17px 17px #e4ac5c, 18px 18px #e4ac5c, 19px 19px #e4ac5c, 20px 20px #e4ac5c, 21px 21px #e4ac5c, 22px 22px #e4ac5c, 23px 23px #e4ac5c, 24px 24px #e4ac5c, 25px 25px #e4ac5c, 26px 26px #e4ac5c, 27px 27px #e4ac5c, 28px 28px #e4ac5c, 29px 29px #e4ac5c, 30px 30px #e4ac5c, 31px 31px #e4ac5c, 32px 32px #e4ac5c, 33px 33px #e4ac5c, 34px 34px #e4ac5c, 35px 35px #e4ac5c, 36px 36px #e4ac5c, 37px 37px #e4ac5c, 38px 38px #e4ac5c, 39px 39px #e4ac5c, 40px 40px #e4ac5c, 41px 41px #e4ac5c, 42px 42px #e4ac5c, 43px 43px #e4ac5c, 44px 44px #e4ac5c, 45px 45px #e4ac5c, 46px 46px #e4ac5c, 47px 47px #e4ac5c, 48px 48px #e4ac5c, 49px 49px #e4ac5c, 50px 50px #e4ac5c, 51px 51px #e4ac5c, 52px 52px #e4ac5c, 53px 53px #e4ac5c, 54px 54px #e4ac5c, 55px 55px #e4ac5c, 56px 56px #e4ac5c, 57px 57px #e4ac5c, 58px 58px #e4ac5c, 59px 59px #e4ac5c, 60px 60px #e4ac5c, 61px 61px #e4ac5c, 62px 62px #e4ac5c, 63px 63px #e4ac5c, 64px 64px #e4ac5c, 65px 65px #e4ac5c, 66px 66px #e4ac5c, 67px 67px #e4ac5c, 68px 68px #e4ac5c, 69px 69px #e4ac5c, 70px 70px #e4ac5c, 71px 71px #e4ac5c, 72px 72px #e4ac5c, 73px 73px #e4ac5c, 74px 74px #e4ac5c, 75px 75px #e4ac5c, 76px 76px #e4ac5c, 77px 77px #e4ac5c, 78px 78px #e4ac5c, 79px 79px #e4ac5c, 80px 80px #e4ac5c, 81px 81px #e4ac5c, 82px 82px #e4ac5c, 83px 83px #e4ac5c, 84px 84px #e4ac5c, 85px 85px #e4ac5c; }
  .btn-longshadow.btn-color-5:active, .btn-longshadow-right.btn-color-5:active, .btn-longshadow.btn-color-5.active, .btn-longshadow-right.btn-color-5.active, .btn-longshadow.btn-color-5.is-active, .btn-longshadow-right.btn-color-5.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow.btn-neutral-color, .btn-longshadow-right.btn-neutral-color {
    text-shadow: 0px 0px #000, 1px 1px #000, 2px 2px #000, 3px 3px #000, 4px 4px #000, 5px 5px #000, 6px 6px #000, 7px 7px #000, 8px 8px #000, 9px 9px #000, 10px 10px #000, 11px 11px #000, 12px 12px #000, 13px 13px #000, 14px 14px #000, 15px 15px #000, 16px 16px #000, 17px 17px #000, 18px 18px #000, 19px 19px #000, 20px 20px #000, 21px 21px #000, 22px 22px #000, 23px 23px #000, 24px 24px #000, 25px 25px #000, 26px 26px #000, 27px 27px #000, 28px 28px #000, 29px 29px #000, 30px 30px #000, 31px 31px #000, 32px 32px #000, 33px 33px #000, 34px 34px #000, 35px 35px #000, 36px 36px #000, 37px 37px #000, 38px 38px #000, 39px 39px #000, 40px 40px #000, 41px 41px #000, 42px 42px #000, 43px 43px #000, 44px 44px #000, 45px 45px #000, 46px 46px #000, 47px 47px #000, 48px 48px #000, 49px 49px #000, 50px 50px #000, 51px 51px #000, 52px 52px #000, 53px 53px #000, 54px 54px #000, 55px 55px #000, 56px 56px #000, 57px 57px #000, 58px 58px #000, 59px 59px #000, 60px 60px #000, 61px 61px #000, 62px 62px #000, 63px 63px #000, 64px 64px #000, 65px 65px #000, 66px 66px #000, 67px 67px #000, 68px 68px #000, 69px 69px #000, 70px 70px #000, 71px 71px #000, 72px 72px #000, 73px 73px #000, 74px 74px #000, 75px 75px #000, 76px 76px #000, 77px 77px #000, 78px 78px #000, 79px 79px #000, 80px 80px #000, 81px 81px #000, 82px 82px #000, 83px 83px #000, 84px 84px #000, 85px 85px #000; }
  .btn-longshadow.btn-neutral-color:active, .btn-longshadow-right.btn-neutral-color:active, .btn-longshadow.btn-neutral-color.active, .btn-longshadow-right.btn-neutral-color.active, .btn-longshadow.btn-neutral-color.is-active, .btn-longshadow-right.btn-neutral-color.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
/*
 * Shadow Left
 *
 */
.btn-longshadow-left {
  overflow: hidden; }
  .btn-longshadow-left.btn-color-1, .palette-primary .button-primary.btn-longshadow-left, .palette-primary .woocommerce .button.btn-longshadow-left {
    text-shadow: 0px 0px #870024, -1px 1px #870024, -2px 2px #870024, -3px 3px #870024, -4px 4px #870024, -5px 5px #870024, -6px 6px #870024, -7px 7px #870024, -8px 8px #870024, -9px 9px #870024, -10px 10px #870024, -11px 11px #870024, -12px 12px #870024, -13px 13px #870024, -14px 14px #870024, -15px 15px #870024, -16px 16px #870024, -17px 17px #870024, -18px 18px #870024, -19px 19px #870024, -20px 20px #870024, -21px 21px #870024, -22px 22px #870024, -23px 23px #870024, -24px 24px #870024, -25px 25px #870024, -26px 26px #870024, -27px 27px #870024, -28px 28px #870024, -29px 29px #870024, -30px 30px #870024, -31px 31px #870024, -32px 32px #870024, -33px 33px #870024, -34px 34px #870024, -35px 35px #870024, -36px 36px #870024, -37px 37px #870024, -38px 38px #870024, -39px 39px #870024, -40px 40px #870024, -41px 41px #870024, -42px 42px #870024, -43px 43px #870024, -44px 44px #870024, -45px 45px #870024, -46px 46px #870024, -47px 47px #870024, -48px 48px #870024, -49px 49px #870024, -50px 50px #870024, -51px 51px #870024, -52px 52px #870024, -53px 53px #870024, -54px 54px #870024, -55px 55px #870024, -56px 56px #870024, -57px 57px #870024, -58px 58px #870024, -59px 59px #870024, -60px 60px #870024, -61px 61px #870024, -62px 62px #870024, -63px 63px #870024, -64px 64px #870024, -65px 65px #870024, -66px 66px #870024, -67px 67px #870024, -68px 68px #870024, -69px 69px #870024, -70px 70px #870024, -71px 71px #870024, -72px 72px #870024, -73px 73px #870024, -74px 74px #870024, -75px 75px #870024, -76px 76px #870024, -77px 77px #870024, -78px 78px #870024, -79px 79px #870024, -80px 80px #870024, -81px 81px #870024, -82px 82px #870024, -83px 83px #870024, -84px 84px #870024, -85px 85px #870024; }
  .btn-longshadow-left.btn-color-1:active, .palette-primary .button-primary.btn-longshadow-left:active, .palette-primary .woocommerce .button.btn-longshadow-left:active, .btn-longshadow-left.btn-color-1.active, .palette-primary .button-primary.btn-longshadow-left.active, .palette-primary .woocommerce .button.btn-longshadow-left.active, .btn-longshadow-left.btn-color-1.is-active, .palette-primary .button-primary.btn-longshadow-left.is-active, .palette-primary .woocommerce .button.btn-longshadow-left.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow-left.btn-color-2, .palette-primary .button-secondary.btn-longshadow-left, .palette-primary .woocommerce .alt.button.btn-longshadow-left {
    text-shadow: 0px 0px #2bde3f, -1px 1px #2bde3f, -2px 2px #2bde3f, -3px 3px #2bde3f, -4px 4px #2bde3f, -5px 5px #2bde3f, -6px 6px #2bde3f, -7px 7px #2bde3f, -8px 8px #2bde3f, -9px 9px #2bde3f, -10px 10px #2bde3f, -11px 11px #2bde3f, -12px 12px #2bde3f, -13px 13px #2bde3f, -14px 14px #2bde3f, -15px 15px #2bde3f, -16px 16px #2bde3f, -17px 17px #2bde3f, -18px 18px #2bde3f, -19px 19px #2bde3f, -20px 20px #2bde3f, -21px 21px #2bde3f, -22px 22px #2bde3f, -23px 23px #2bde3f, -24px 24px #2bde3f, -25px 25px #2bde3f, -26px 26px #2bde3f, -27px 27px #2bde3f, -28px 28px #2bde3f, -29px 29px #2bde3f, -30px 30px #2bde3f, -31px 31px #2bde3f, -32px 32px #2bde3f, -33px 33px #2bde3f, -34px 34px #2bde3f, -35px 35px #2bde3f, -36px 36px #2bde3f, -37px 37px #2bde3f, -38px 38px #2bde3f, -39px 39px #2bde3f, -40px 40px #2bde3f, -41px 41px #2bde3f, -42px 42px #2bde3f, -43px 43px #2bde3f, -44px 44px #2bde3f, -45px 45px #2bde3f, -46px 46px #2bde3f, -47px 47px #2bde3f, -48px 48px #2bde3f, -49px 49px #2bde3f, -50px 50px #2bde3f, -51px 51px #2bde3f, -52px 52px #2bde3f, -53px 53px #2bde3f, -54px 54px #2bde3f, -55px 55px #2bde3f, -56px 56px #2bde3f, -57px 57px #2bde3f, -58px 58px #2bde3f, -59px 59px #2bde3f, -60px 60px #2bde3f, -61px 61px #2bde3f, -62px 62px #2bde3f, -63px 63px #2bde3f, -64px 64px #2bde3f, -65px 65px #2bde3f, -66px 66px #2bde3f, -67px 67px #2bde3f, -68px 68px #2bde3f, -69px 69px #2bde3f, -70px 70px #2bde3f, -71px 71px #2bde3f, -72px 72px #2bde3f, -73px 73px #2bde3f, -74px 74px #2bde3f, -75px 75px #2bde3f, -76px 76px #2bde3f, -77px 77px #2bde3f, -78px 78px #2bde3f, -79px 79px #2bde3f, -80px 80px #2bde3f, -81px 81px #2bde3f, -82px 82px #2bde3f, -83px 83px #2bde3f, -84px 84px #2bde3f, -85px 85px #2bde3f; }
  .btn-longshadow-left.btn-color-2:active, .palette-primary .button-secondary.btn-longshadow-left:active, .palette-primary .woocommerce .alt.button.btn-longshadow-left:active, .btn-longshadow-left.btn-color-2.active, .palette-primary .button-secondary.btn-longshadow-left.active, .palette-primary .woocommerce .alt.button.btn-longshadow-left.active, .btn-longshadow-left.btn-color-2.is-active, .palette-primary .button-secondary.btn-longshadow-left.is-active, .palette-primary .woocommerce .alt.button.btn-longshadow-left.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow-left.btn-color-3 {
    text-shadow: 0px 0px #7ecc00, -1px 1px #7ecc00, -2px 2px #7ecc00, -3px 3px #7ecc00, -4px 4px #7ecc00, -5px 5px #7ecc00, -6px 6px #7ecc00, -7px 7px #7ecc00, -8px 8px #7ecc00, -9px 9px #7ecc00, -10px 10px #7ecc00, -11px 11px #7ecc00, -12px 12px #7ecc00, -13px 13px #7ecc00, -14px 14px #7ecc00, -15px 15px #7ecc00, -16px 16px #7ecc00, -17px 17px #7ecc00, -18px 18px #7ecc00, -19px 19px #7ecc00, -20px 20px #7ecc00, -21px 21px #7ecc00, -22px 22px #7ecc00, -23px 23px #7ecc00, -24px 24px #7ecc00, -25px 25px #7ecc00, -26px 26px #7ecc00, -27px 27px #7ecc00, -28px 28px #7ecc00, -29px 29px #7ecc00, -30px 30px #7ecc00, -31px 31px #7ecc00, -32px 32px #7ecc00, -33px 33px #7ecc00, -34px 34px #7ecc00, -35px 35px #7ecc00, -36px 36px #7ecc00, -37px 37px #7ecc00, -38px 38px #7ecc00, -39px 39px #7ecc00, -40px 40px #7ecc00, -41px 41px #7ecc00, -42px 42px #7ecc00, -43px 43px #7ecc00, -44px 44px #7ecc00, -45px 45px #7ecc00, -46px 46px #7ecc00, -47px 47px #7ecc00, -48px 48px #7ecc00, -49px 49px #7ecc00, -50px 50px #7ecc00, -51px 51px #7ecc00, -52px 52px #7ecc00, -53px 53px #7ecc00, -54px 54px #7ecc00, -55px 55px #7ecc00, -56px 56px #7ecc00, -57px 57px #7ecc00, -58px 58px #7ecc00, -59px 59px #7ecc00, -60px 60px #7ecc00, -61px 61px #7ecc00, -62px 62px #7ecc00, -63px 63px #7ecc00, -64px 64px #7ecc00, -65px 65px #7ecc00, -66px 66px #7ecc00, -67px 67px #7ecc00, -68px 68px #7ecc00, -69px 69px #7ecc00, -70px 70px #7ecc00, -71px 71px #7ecc00, -72px 72px #7ecc00, -73px 73px #7ecc00, -74px 74px #7ecc00, -75px 75px #7ecc00, -76px 76px #7ecc00, -77px 77px #7ecc00, -78px 78px #7ecc00, -79px 79px #7ecc00, -80px 80px #7ecc00, -81px 81px #7ecc00, -82px 82px #7ecc00, -83px 83px #7ecc00, -84px 84px #7ecc00, -85px 85px #7ecc00; }
  .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 #280f28, -1px 1px #280f28, -2px 2px #280f28, -3px 3px #280f28, -4px 4px #280f28, -5px 5px #280f28, -6px 6px #280f28, -7px 7px #280f28, -8px 8px #280f28, -9px 9px #280f28, -10px 10px #280f28, -11px 11px #280f28, -12px 12px #280f28, -13px 13px #280f28, -14px 14px #280f28, -15px 15px #280f28, -16px 16px #280f28, -17px 17px #280f28, -18px 18px #280f28, -19px 19px #280f28, -20px 20px #280f28, -21px 21px #280f28, -22px 22px #280f28, -23px 23px #280f28, -24px 24px #280f28, -25px 25px #280f28, -26px 26px #280f28, -27px 27px #280f28, -28px 28px #280f28, -29px 29px #280f28, -30px 30px #280f28, -31px 31px #280f28, -32px 32px #280f28, -33px 33px #280f28, -34px 34px #280f28, -35px 35px #280f28, -36px 36px #280f28, -37px 37px #280f28, -38px 38px #280f28, -39px 39px #280f28, -40px 40px #280f28, -41px 41px #280f28, -42px 42px #280f28, -43px 43px #280f28, -44px 44px #280f28, -45px 45px #280f28, -46px 46px #280f28, -47px 47px #280f28, -48px 48px #280f28, -49px 49px #280f28, -50px 50px #280f28, -51px 51px #280f28, -52px 52px #280f28, -53px 53px #280f28, -54px 54px #280f28, -55px 55px #280f28, -56px 56px #280f28, -57px 57px #280f28, -58px 58px #280f28, -59px 59px #280f28, -60px 60px #280f28, -61px 61px #280f28, -62px 62px #280f28, -63px 63px #280f28, -64px 64px #280f28, -65px 65px #280f28, -66px 66px #280f28, -67px 67px #280f28, -68px 68px #280f28, -69px 69px #280f28, -70px 70px #280f28, -71px 71px #280f28, -72px 72px #280f28, -73px 73px #280f28, -74px 74px #280f28, -75px 75px #280f28, -76px 76px #280f28, -77px 77px #280f28, -78px 78px #280f28, -79px 79px #280f28, -80px 80px #280f28, -81px 81px #280f28, -82px 82px #280f28, -83px 83px #280f28, -84px 84px #280f28, -85px 85px #280f28; }
  .btn-longshadow-left.btn-color-4:active, .btn-longshadow-left.btn-color-4.active, .btn-longshadow-left.btn-color-4.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow-left.btn-color-5 {
    text-shadow: 0px 0px #e4ac5c, -1px 1px #e4ac5c, -2px 2px #e4ac5c, -3px 3px #e4ac5c, -4px 4px #e4ac5c, -5px 5px #e4ac5c, -6px 6px #e4ac5c, -7px 7px #e4ac5c, -8px 8px #e4ac5c, -9px 9px #e4ac5c, -10px 10px #e4ac5c, -11px 11px #e4ac5c, -12px 12px #e4ac5c, -13px 13px #e4ac5c, -14px 14px #e4ac5c, -15px 15px #e4ac5c, -16px 16px #e4ac5c, -17px 17px #e4ac5c, -18px 18px #e4ac5c, -19px 19px #e4ac5c, -20px 20px #e4ac5c, -21px 21px #e4ac5c, -22px 22px #e4ac5c, -23px 23px #e4ac5c, -24px 24px #e4ac5c, -25px 25px #e4ac5c, -26px 26px #e4ac5c, -27px 27px #e4ac5c, -28px 28px #e4ac5c, -29px 29px #e4ac5c, -30px 30px #e4ac5c, -31px 31px #e4ac5c, -32px 32px #e4ac5c, -33px 33px #e4ac5c, -34px 34px #e4ac5c, -35px 35px #e4ac5c, -36px 36px #e4ac5c, -37px 37px #e4ac5c, -38px 38px #e4ac5c, -39px 39px #e4ac5c, -40px 40px #e4ac5c, -41px 41px #e4ac5c, -42px 42px #e4ac5c, -43px 43px #e4ac5c, -44px 44px #e4ac5c, -45px 45px #e4ac5c, -46px 46px #e4ac5c, -47px 47px #e4ac5c, -48px 48px #e4ac5c, -49px 49px #e4ac5c, -50px 50px #e4ac5c, -51px 51px #e4ac5c, -52px 52px #e4ac5c, -53px 53px #e4ac5c, -54px 54px #e4ac5c, -55px 55px #e4ac5c, -56px 56px #e4ac5c, -57px 57px #e4ac5c, -58px 58px #e4ac5c, -59px 59px #e4ac5c, -60px 60px #e4ac5c, -61px 61px #e4ac5c, -62px 62px #e4ac5c, -63px 63px #e4ac5c, -64px 64px #e4ac5c, -65px 65px #e4ac5c, -66px 66px #e4ac5c, -67px 67px #e4ac5c, -68px 68px #e4ac5c, -69px 69px #e4ac5c, -70px 70px #e4ac5c, -71px 71px #e4ac5c, -72px 72px #e4ac5c, -73px 73px #e4ac5c, -74px 74px #e4ac5c, -75px 75px #e4ac5c, -76px 76px #e4ac5c, -77px 77px #e4ac5c, -78px 78px #e4ac5c, -79px 79px #e4ac5c, -80px 80px #e4ac5c, -81px 81px #e4ac5c, -82px 82px #e4ac5c, -83px 83px #e4ac5c, -84px 84px #e4ac5c, -85px 85px #e4ac5c; }
  .btn-longshadow-left.btn-color-5:active, .btn-longshadow-left.btn-color-5.active, .btn-longshadow-left.btn-color-5.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .btn-longshadow-left.btn-neutral-color {
    text-shadow: 0px 0px #000, -1px 1px #000, -2px 2px #000, -3px 3px #000, -4px 4px #000, -5px 5px #000, -6px 6px #000, -7px 7px #000, -8px 8px #000, -9px 9px #000, -10px 10px #000, -11px 11px #000, -12px 12px #000, -13px 13px #000, -14px 14px #000, -15px 15px #000, -16px 16px #000, -17px 17px #000, -18px 18px #000, -19px 19px #000, -20px 20px #000, -21px 21px #000, -22px 22px #000, -23px 23px #000, -24px 24px #000, -25px 25px #000, -26px 26px #000, -27px 27px #000, -28px 28px #000, -29px 29px #000, -30px 30px #000, -31px 31px #000, -32px 32px #000, -33px 33px #000, -34px 34px #000, -35px 35px #000, -36px 36px #000, -37px 37px #000, -38px 38px #000, -39px 39px #000, -40px 40px #000, -41px 41px #000, -42px 42px #000, -43px 43px #000, -44px 44px #000, -45px 45px #000, -46px 46px #000, -47px 47px #000, -48px 48px #000, -49px 49px #000, -50px 50px #000, -51px 51px #000, -52px 52px #000, -53px 53px #000, -54px 54px #000, -55px 55px #000, -56px 56px #000, -57px 57px #000, -58px 58px #000, -59px 59px #000, -60px 60px #000, -61px 61px #000, -62px 62px #000, -63px 63px #000, -64px 64px #000, -65px 65px #000, -66px 66px #000, -67px 67px #000, -68px 68px #000, -69px 69px #000, -70px 70px #000, -71px 71px #000, -72px 72px #000, -73px 73px #000, -74px 74px #000, -75px 75px #000, -76px 76px #000, -77px 77px #000, -78px 78px #000, -79px 79px #000, -80px 80px #000, -81px 81px #000, -82px 82px #000, -83px 83px #000, -84px 84px #000, -85px 85px #000; }
  .btn-longshadow-left.btn-neutral-color:active, .btn-longshadow-left.btn-neutral-color.active, .btn-longshadow-left.btn-neutral-color.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
/*
 * Button Sizes
 *
 * This file creates the various button sizes
 * (ex. .button-large, .button-small, etc.)
 */
.btn-giant {
  font-size: 1.75em;
  height: 70px;
  line-height: 70px;
  padding: 0 70px; }

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

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

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

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

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

/*
     FILE ARCHIVED ON 21:36:10 Sep 17, 2021 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 13:34:18 Nov 27, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.855
  exclusion.robots: 0.101
  exclusion.robots.policy: 0.088
  esindex: 0.011
  cdx.remote: 278.362
  LoadShardBlock: 413.188 (3)
  PetaboxLoader3.datanode: 374.636 (5)
  PetaboxLoader3.resolve: 245.468 (2)
  load_resource: 222.507
  loaddict: 41.823
*/