/*--------------------------------------------------------------
 # 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: #121012;
  background-color: #4bc2f4;
  border-color: #4bc2f4;
  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: #121012; }
  .btn:hover, .btn:focus {
    background-color: #59c7f5;
    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: #55beea;
    border-color: #11aef0;
    color: #1bb2f1;
    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: #4bc2f4;
  border-color: #4bc2f4;
  color: #121012; }
  .btn-color-1:visited, .btn-color-1-flat:visited {
    color: #121012; }
  .btn-color-1:hover, .btn-color-1-flat:hover, .btn-color-1:focus, .btn-color-1-flat:focus {
    background-color: #7bd2f7;
    border-color: #7bd2f7;
    color: #121012; }
  .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: #55beea;
    border-color: #55beea;
    color: #1bb2f1; }

.btn-color-2, .btn-color-2-flat {
  background-color: #1899ba;
  border-color: #1899ba;
  color: #fff; }
  .btn-color-2:visited, .btn-color-2-flat:visited {
    color: #fff; }
  .btn-color-2:hover, .btn-color-2-flat:hover, .btn-color-2:focus, .btn-color-2-flat:focus {
    background-color: #22bbe3;
    border-color: #22bbe3;
    color: #fff; }
  .btn-color-2:active, .btn-color-2-flat:active, .btn-color-2.active, .btn-color-2-flat.active, .btn-color-2.is-active, .btn-color-2-flat.is-active {
    background-color: #2393b0;
    border-color: #2393b0;
    color: #12748d; }

.btn-color-3, .btn-color-3-flat {
  background-color: #2a044a;
  border-color: #2a044a;
  color: #fff; }
  .btn-color-3:visited, .btn-color-3-flat:visited {
    color: #fff; }
  .btn-color-3:hover, .btn-color-3-flat:hover, .btn-color-3:focus, .btn-color-3-flat:focus {
    background-color: #45077a;
    border-color: #45077a;
    color: #fff; }
  .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: #2a0846;
    border-color: #2a0846;
    color: #0f011a; }

.btn-color-4, .btn-color-4-flat {
  background-color: #1e73be;
  border-color: #1e73be;
  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: #318dde;
    border-color: #318dde;
    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: #2972b3;
    border-color: #2972b3;
    color: #175892; }

.btn-color-5, .btn-color-5-flat {
  background-color: #07286b;
  border-color: #07286b;
  color: #fff; }
  .btn-color-5:visited, .btn-color-5-flat:visited {
    color: #fff; }
  .btn-color-5:hover, .btn-color-5-flat:hover, .btn-color-5:focus, .btn-color-5-flat:focus {
    background-color: #0a3a9b;
    border-color: #0a3a9b;
    color: #fff; }
  .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: #0d2a65;
    border-color: #0d2a65;
    color: #04163b; }
/*
 * 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(123, 210, 247, 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: #4bc2f4; }
    .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(123, 210, 247, 0.9);
      color: rgba(18, 16, 18, 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(85, 190, 234, 0.7);
      color: rgba(18, 16, 18, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-2, .btn-border-thin.btn-color-2, .btn-border-thick.btn-color-2 {
    color: #1899ba; }
    .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(34, 187, 227, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .btn-border.btn-color-2:active, .btn-border-thin.btn-color-2:active, .btn-border-thick.btn-color-2:active, .btn-border.btn-color-2.active, .btn-border-thin.btn-color-2.active, .btn-border-thick.btn-color-2.active, .btn-border.btn-color-2.is-active, .btn-border-thin.btn-color-2.is-active, .btn-border-thick.btn-color-2.is-active {
      background-color: rgba(35, 147, 176, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-3, .btn-border-thin.btn-color-3, .btn-border-thick.btn-color-3 {
    color: #2a044a; }
    .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(69, 7, 122, 0.9);
      color: rgba(255, 255, 255, 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(42, 8, 70, 0.7);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.3; }
  .btn-border.btn-color-4, .btn-border-thin.btn-color-4, .btn-border-thick.btn-color-4 {
    color: #1e73be; }
    .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(49, 141, 222, 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(41, 114, 179, 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: #07286b; }
    .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(10, 58, 155, 0.9);
      color: rgba(255, 255, 255, 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(13, 42, 101, 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: #4bc2f4;
  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: #4bc2f4; }
  .btn-borderless.btn-color-2 {
    color: #1899ba; }
  .btn-borderless.btn-color-3 {
    color: #2a044a; }
  .btn-borderless.btn-color-4 {
    color: #1e73be; }
  .btn-borderless.btn-color-5 {
    color: #07286b; }
  .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: #33baf3;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear-gradient(#59c7f5, #33baf3);
  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(#71cff6, #29b7f2); }

.btn-raised:active, .btn-raised.active, .btn-raised.is-active {
  background: #55beea;
  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: #33baf3;
  background: linear-gradient(#63caf5, #33baf3); }
  .btn-raised.btn-color-1:hover, .btn-raised.btn-color-1:focus {
    background: linear-gradient(#71cff6, #29b7f2); }
  .btn-raised.btn-color-1:active, .btn-raised.btn-color-1.active, .btn-raised.btn-color-1.is-active {
    border-color: #1bb2f1;
    background: #55beea; }
  .btn-raised.btn-color-2 {
    border-color: #1586a3;
    background: linear-gradient(#1bacd1, #1586a3); }
  .btn-raised.btn-color-2:hover, .btn-raised.btn-color-2:focus {
    background: linear-gradient(#1db7de, #147f9a); }
  .btn-raised.btn-color-2:active, .btn-raised.btn-color-2.active, .btn-raised.btn-color-2.is-active {
    border-color: #12748d;
    background: #2393b0; }
  .btn-raised.btn-color-3 {
    border-color: #1c0332;
    background: linear-gradient(#380562, #1c0332); }
  .btn-raised.btn-color-3:hover, .btn-raised.btn-color-3:focus {
    background: linear-gradient(#400671, #170228); }
  .btn-raised.btn-color-3:active, .btn-raised.btn-color-3.active, .btn-raised.btn-color-3.is-active {
    border-color: #0f011a;
    background: #2a0846; }
  .btn-raised.btn-color-4 {
    border-color: #1b66a8;
    background: linear-gradient(#2180d4, #1b66a8); }
  .btn-raised.btn-color-4:hover, .btn-raised.btn-color-4:focus {
    background: linear-gradient(#2888dd, #19609f); }
  .btn-raised.btn-color-4:active, .btn-raised.btn-color-4.active, .btn-raised.btn-color-4.is-active {
    border-color: #175892;
    background: #2972b3; }
  .btn-raised.btn-color-5 {
    border-color: #051f53;
    background: linear-gradient(#093183, #051f53); }
  .btn-raised.btn-color-5:hover, .btn-raised.btn-color-5:focus {
    background: linear-gradient(#0a3691, #051b49); }
  .btn-raised.btn-color-5:active, .btn-raised.btn-color-5.active, .btn-raised.btn-color-5.is-active {
    border-color: #04163b;
    background: #0d2a65; }
/*
 * 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 #0c94cd, 0 8px 3px rgba(0, 0, 0, 0.2); }

.btn-3d:hover, .btn-3d:focus {
  box-shadow: 0 7px 0 #0c94cd, 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 #0c94cd, 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 #1bb2f1, 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 #11aef0, 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 #0c94cd, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-2 {
    box-shadow: 0 7px 0 #12748d, 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 #116c84, 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 #0c4f60, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-3 {
    box-shadow: 0 7px 0 #0f011a, 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 #090110, 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 #000, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-4 {
    box-shadow: 0 7px 0 #175892, 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 #165389, 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 #103e66, 0 3px 3px rgba(0, 0, 0, 0.2); }
  .btn-3d.btn-color-5 {
    box-shadow: 0 7px 0 #04163b, 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 #031332, 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 #01040b, 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(75, 194, 244, 0.3); }
    50% {
      box-shadow: 0 0 20px rgba(75, 194, 244, 0.8); }
    to {
      box-shadow: 0 0 0 rgba(75, 194, 244, 0.3); } }

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

/*
 * Glowing Keyframes for various colors
 *
 */

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

.btn-glow:active, .btn-glow.active, .btn-glow.is-active {
  animation-name: none; }
/*
 * Glowing Button Colors
 *
 * Create colors for glowing buttons
 */
.btn-glow.btn-color-1 {
  animation-name: glowing-color-1; }
  .btn-glow.btn-color-2 {
    animation-name: glowing-color-2; }
  .btn-glow.btn-color-3 {
    animation-name: glowing-color-3; }
  .btn-glow.btn-color-4 {
    animation-name: glowing-color-4; }
  .btn-glow.btn-color-5 {
    animation-name: glowing-color-5; }
/*
 * Dropdown menu buttons
 *
 * A dropdown menu appears
 * when a button is pressed
 */
/*
 * Dropdown Container
 *
 */
.btn-dropdown {
  position: relative;
  overflow: visible;
  display: inline-block; }
/*
 * Dropdown List Style
 *
 */
.btn-dropdown-list {
  display: none;
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 1000;
  min-width: 100%;
  list-style-type: none;
  background: rgba(123, 210, 247, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #1bb2f1;
  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: #121012;
  text-decoration: none; }
  .btn-dropdown-list > li > a:hover {
    color: #0a090a;
    background: #59c7f5;
    text-decoration: none; }

.btn-dropdown-divider {
  border-top: 1px solid #3dbdf3; }
/*
 * Dropdown Colors
 *
 * Create colors for buttons
 * (.button-primary, .button-secondary, etc.)
 */
.btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list {
  background: rgba(75, 194, 244, 0.95);
  border-color: #1bb2f1; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #29b7f2; }
  .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list > li > a {
    color: #121012; }
    .btn-dropdown.btn-dropdown-color-1 .btn-dropdown-list > li > a:hover {
      color: #050405;
      background: #33baf3; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list {
    background: rgba(24, 153, 186, 0.95);
    border-color: #12748d; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #147f9a; }
  .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list > li > a {
    color: #fff; }
    .btn-dropdown.btn-dropdown-color-2 .btn-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #1586a3; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list {
    background: rgba(42, 4, 74, 0.95);
    border-color: #0f011a; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #170228; }
  .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a {
    color: #fff; }
    .btn-dropdown.btn-dropdown-color-3 .btn-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #1c0332; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list {
    background: rgba(30, 115, 190, 0.95);
    border-color: #175892; }
  .btn-dropdown.btn-dropdown-color-4 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #19609f; }
  .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: #1b66a8; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list {
    background: rgba(7, 40, 107, 0.95);
    border-color: #04163b; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list .btn-dropdown-divider {
    border-color: #051b49; }
  .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a {
    color: #fff; }
    .btn-dropdown.btn-dropdown-color-5 .btn-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #051f53; }
/*
 * 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 #1bb2f1, 1px 1px #1bb2f1, 2px 2px #1bb2f1, 3px 3px #1bb2f1, 4px 4px #1bb2f1, 5px 5px #1bb2f1, 6px 6px #1bb2f1, 7px 7px #1bb2f1, 8px 8px #1bb2f1, 9px 9px #1bb2f1, 10px 10px #1bb2f1, 11px 11px #1bb2f1, 12px 12px #1bb2f1, 13px 13px #1bb2f1, 14px 14px #1bb2f1, 15px 15px #1bb2f1, 16px 16px #1bb2f1, 17px 17px #1bb2f1, 18px 18px #1bb2f1, 19px 19px #1bb2f1, 20px 20px #1bb2f1, 21px 21px #1bb2f1, 22px 22px #1bb2f1, 23px 23px #1bb2f1, 24px 24px #1bb2f1, 25px 25px #1bb2f1, 26px 26px #1bb2f1, 27px 27px #1bb2f1, 28px 28px #1bb2f1, 29px 29px #1bb2f1, 30px 30px #1bb2f1, 31px 31px #1bb2f1, 32px 32px #1bb2f1, 33px 33px #1bb2f1, 34px 34px #1bb2f1, 35px 35px #1bb2f1, 36px 36px #1bb2f1, 37px 37px #1bb2f1, 38px 38px #1bb2f1, 39px 39px #1bb2f1, 40px 40px #1bb2f1, 41px 41px #1bb2f1, 42px 42px #1bb2f1, 43px 43px #1bb2f1, 44px 44px #1bb2f1, 45px 45px #1bb2f1, 46px 46px #1bb2f1, 47px 47px #1bb2f1, 48px 48px #1bb2f1, 49px 49px #1bb2f1, 50px 50px #1bb2f1, 51px 51px #1bb2f1, 52px 52px #1bb2f1, 53px 53px #1bb2f1, 54px 54px #1bb2f1, 55px 55px #1bb2f1, 56px 56px #1bb2f1, 57px 57px #1bb2f1, 58px 58px #1bb2f1, 59px 59px #1bb2f1, 60px 60px #1bb2f1, 61px 61px #1bb2f1, 62px 62px #1bb2f1, 63px 63px #1bb2f1, 64px 64px #1bb2f1, 65px 65px #1bb2f1, 66px 66px #1bb2f1, 67px 67px #1bb2f1, 68px 68px #1bb2f1, 69px 69px #1bb2f1, 70px 70px #1bb2f1, 71px 71px #1bb2f1, 72px 72px #1bb2f1, 73px 73px #1bb2f1, 74px 74px #1bb2f1, 75px 75px #1bb2f1, 76px 76px #1bb2f1, 77px 77px #1bb2f1, 78px 78px #1bb2f1, 79px 79px #1bb2f1, 80px 80px #1bb2f1, 81px 81px #1bb2f1, 82px 82px #1bb2f1, 83px 83px #1bb2f1, 84px 84px #1bb2f1, 85px 85px #1bb2f1; }
  .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 #12748d, 1px 1px #12748d, 2px 2px #12748d, 3px 3px #12748d, 4px 4px #12748d, 5px 5px #12748d, 6px 6px #12748d, 7px 7px #12748d, 8px 8px #12748d, 9px 9px #12748d, 10px 10px #12748d, 11px 11px #12748d, 12px 12px #12748d, 13px 13px #12748d, 14px 14px #12748d, 15px 15px #12748d, 16px 16px #12748d, 17px 17px #12748d, 18px 18px #12748d, 19px 19px #12748d, 20px 20px #12748d, 21px 21px #12748d, 22px 22px #12748d, 23px 23px #12748d, 24px 24px #12748d, 25px 25px #12748d, 26px 26px #12748d, 27px 27px #12748d, 28px 28px #12748d, 29px 29px #12748d, 30px 30px #12748d, 31px 31px #12748d, 32px 32px #12748d, 33px 33px #12748d, 34px 34px #12748d, 35px 35px #12748d, 36px 36px #12748d, 37px 37px #12748d, 38px 38px #12748d, 39px 39px #12748d, 40px 40px #12748d, 41px 41px #12748d, 42px 42px #12748d, 43px 43px #12748d, 44px 44px #12748d, 45px 45px #12748d, 46px 46px #12748d, 47px 47px #12748d, 48px 48px #12748d, 49px 49px #12748d, 50px 50px #12748d, 51px 51px #12748d, 52px 52px #12748d, 53px 53px #12748d, 54px 54px #12748d, 55px 55px #12748d, 56px 56px #12748d, 57px 57px #12748d, 58px 58px #12748d, 59px 59px #12748d, 60px 60px #12748d, 61px 61px #12748d, 62px 62px #12748d, 63px 63px #12748d, 64px 64px #12748d, 65px 65px #12748d, 66px 66px #12748d, 67px 67px #12748d, 68px 68px #12748d, 69px 69px #12748d, 70px 70px #12748d, 71px 71px #12748d, 72px 72px #12748d, 73px 73px #12748d, 74px 74px #12748d, 75px 75px #12748d, 76px 76px #12748d, 77px 77px #12748d, 78px 78px #12748d, 79px 79px #12748d, 80px 80px #12748d, 81px 81px #12748d, 82px 82px #12748d, 83px 83px #12748d, 84px 84px #12748d, 85px 85px #12748d; }
  .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 #0f011a, 1px 1px #0f011a, 2px 2px #0f011a, 3px 3px #0f011a, 4px 4px #0f011a, 5px 5px #0f011a, 6px 6px #0f011a, 7px 7px #0f011a, 8px 8px #0f011a, 9px 9px #0f011a, 10px 10px #0f011a, 11px 11px #0f011a, 12px 12px #0f011a, 13px 13px #0f011a, 14px 14px #0f011a, 15px 15px #0f011a, 16px 16px #0f011a, 17px 17px #0f011a, 18px 18px #0f011a, 19px 19px #0f011a, 20px 20px #0f011a, 21px 21px #0f011a, 22px 22px #0f011a, 23px 23px #0f011a, 24px 24px #0f011a, 25px 25px #0f011a, 26px 26px #0f011a, 27px 27px #0f011a, 28px 28px #0f011a, 29px 29px #0f011a, 30px 30px #0f011a, 31px 31px #0f011a, 32px 32px #0f011a, 33px 33px #0f011a, 34px 34px #0f011a, 35px 35px #0f011a, 36px 36px #0f011a, 37px 37px #0f011a, 38px 38px #0f011a, 39px 39px #0f011a, 40px 40px #0f011a, 41px 41px #0f011a, 42px 42px #0f011a, 43px 43px #0f011a, 44px 44px #0f011a, 45px 45px #0f011a, 46px 46px #0f011a, 47px 47px #0f011a, 48px 48px #0f011a, 49px 49px #0f011a, 50px 50px #0f011a, 51px 51px #0f011a, 52px 52px #0f011a, 53px 53px #0f011a, 54px 54px #0f011a, 55px 55px #0f011a, 56px 56px #0f011a, 57px 57px #0f011a, 58px 58px #0f011a, 59px 59px #0f011a, 60px 60px #0f011a, 61px 61px #0f011a, 62px 62px #0f011a, 63px 63px #0f011a, 64px 64px #0f011a, 65px 65px #0f011a, 66px 66px #0f011a, 67px 67px #0f011a, 68px 68px #0f011a, 69px 69px #0f011a, 70px 70px #0f011a, 71px 71px #0f011a, 72px 72px #0f011a, 73px 73px #0f011a, 74px 74px #0f011a, 75px 75px #0f011a, 76px 76px #0f011a, 77px 77px #0f011a, 78px 78px #0f011a, 79px 79px #0f011a, 80px 80px #0f011a, 81px 81px #0f011a, 82px 82px #0f011a, 83px 83px #0f011a, 84px 84px #0f011a, 85px 85px #0f011a; }
  .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 #175892, 1px 1px #175892, 2px 2px #175892, 3px 3px #175892, 4px 4px #175892, 5px 5px #175892, 6px 6px #175892, 7px 7px #175892, 8px 8px #175892, 9px 9px #175892, 10px 10px #175892, 11px 11px #175892, 12px 12px #175892, 13px 13px #175892, 14px 14px #175892, 15px 15px #175892, 16px 16px #175892, 17px 17px #175892, 18px 18px #175892, 19px 19px #175892, 20px 20px #175892, 21px 21px #175892, 22px 22px #175892, 23px 23px #175892, 24px 24px #175892, 25px 25px #175892, 26px 26px #175892, 27px 27px #175892, 28px 28px #175892, 29px 29px #175892, 30px 30px #175892, 31px 31px #175892, 32px 32px #175892, 33px 33px #175892, 34px 34px #175892, 35px 35px #175892, 36px 36px #175892, 37px 37px #175892, 38px 38px #175892, 39px 39px #175892, 40px 40px #175892, 41px 41px #175892, 42px 42px #175892, 43px 43px #175892, 44px 44px #175892, 45px 45px #175892, 46px 46px #175892, 47px 47px #175892, 48px 48px #175892, 49px 49px #175892, 50px 50px #175892, 51px 51px #175892, 52px 52px #175892, 53px 53px #175892, 54px 54px #175892, 55px 55px #175892, 56px 56px #175892, 57px 57px #175892, 58px 58px #175892, 59px 59px #175892, 60px 60px #175892, 61px 61px #175892, 62px 62px #175892, 63px 63px #175892, 64px 64px #175892, 65px 65px #175892, 66px 66px #175892, 67px 67px #175892, 68px 68px #175892, 69px 69px #175892, 70px 70px #175892, 71px 71px #175892, 72px 72px #175892, 73px 73px #175892, 74px 74px #175892, 75px 75px #175892, 76px 76px #175892, 77px 77px #175892, 78px 78px #175892, 79px 79px #175892, 80px 80px #175892, 81px 81px #175892, 82px 82px #175892, 83px 83px #175892, 84px 84px #175892, 85px 85px #175892; }
  .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 #04163b, 1px 1px #04163b, 2px 2px #04163b, 3px 3px #04163b, 4px 4px #04163b, 5px 5px #04163b, 6px 6px #04163b, 7px 7px #04163b, 8px 8px #04163b, 9px 9px #04163b, 10px 10px #04163b, 11px 11px #04163b, 12px 12px #04163b, 13px 13px #04163b, 14px 14px #04163b, 15px 15px #04163b, 16px 16px #04163b, 17px 17px #04163b, 18px 18px #04163b, 19px 19px #04163b, 20px 20px #04163b, 21px 21px #04163b, 22px 22px #04163b, 23px 23px #04163b, 24px 24px #04163b, 25px 25px #04163b, 26px 26px #04163b, 27px 27px #04163b, 28px 28px #04163b, 29px 29px #04163b, 30px 30px #04163b, 31px 31px #04163b, 32px 32px #04163b, 33px 33px #04163b, 34px 34px #04163b, 35px 35px #04163b, 36px 36px #04163b, 37px 37px #04163b, 38px 38px #04163b, 39px 39px #04163b, 40px 40px #04163b, 41px 41px #04163b, 42px 42px #04163b, 43px 43px #04163b, 44px 44px #04163b, 45px 45px #04163b, 46px 46px #04163b, 47px 47px #04163b, 48px 48px #04163b, 49px 49px #04163b, 50px 50px #04163b, 51px 51px #04163b, 52px 52px #04163b, 53px 53px #04163b, 54px 54px #04163b, 55px 55px #04163b, 56px 56px #04163b, 57px 57px #04163b, 58px 58px #04163b, 59px 59px #04163b, 60px 60px #04163b, 61px 61px #04163b, 62px 62px #04163b, 63px 63px #04163b, 64px 64px #04163b, 65px 65px #04163b, 66px 66px #04163b, 67px 67px #04163b, 68px 68px #04163b, 69px 69px #04163b, 70px 70px #04163b, 71px 71px #04163b, 72px 72px #04163b, 73px 73px #04163b, 74px 74px #04163b, 75px 75px #04163b, 76px 76px #04163b, 77px 77px #04163b, 78px 78px #04163b, 79px 79px #04163b, 80px 80px #04163b, 81px 81px #04163b, 82px 82px #04163b, 83px 83px #04163b, 84px 84px #04163b, 85px 85px #04163b; }
  .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); }
/*
 * Shadow Left
 *
 */
.btn-longshadow-left {
  overflow: hidden; }
  .btn-longshadow-left.btn-color-1 {
    text-shadow: 0px 0px #1bb2f1, -1px 1px #1bb2f1, -2px 2px #1bb2f1, -3px 3px #1bb2f1, -4px 4px #1bb2f1, -5px 5px #1bb2f1, -6px 6px #1bb2f1, -7px 7px #1bb2f1, -8px 8px #1bb2f1, -9px 9px #1bb2f1, -10px 10px #1bb2f1, -11px 11px #1bb2f1, -12px 12px #1bb2f1, -13px 13px #1bb2f1, -14px 14px #1bb2f1, -15px 15px #1bb2f1, -16px 16px #1bb2f1, -17px 17px #1bb2f1, -18px 18px #1bb2f1, -19px 19px #1bb2f1, -20px 20px #1bb2f1, -21px 21px #1bb2f1, -22px 22px #1bb2f1, -23px 23px #1bb2f1, -24px 24px #1bb2f1, -25px 25px #1bb2f1, -26px 26px #1bb2f1, -27px 27px #1bb2f1, -28px 28px #1bb2f1, -29px 29px #1bb2f1, -30px 30px #1bb2f1, -31px 31px #1bb2f1, -32px 32px #1bb2f1, -33px 33px #1bb2f1, -34px 34px #1bb2f1, -35px 35px #1bb2f1, -36px 36px #1bb2f1, -37px 37px #1bb2f1, -38px 38px #1bb2f1, -39px 39px #1bb2f1, -40px 40px #1bb2f1, -41px 41px #1bb2f1, -42px 42px #1bb2f1, -43px 43px #1bb2f1, -44px 44px #1bb2f1, -45px 45px #1bb2f1, -46px 46px #1bb2f1, -47px 47px #1bb2f1, -48px 48px #1bb2f1, -49px 49px #1bb2f1, -50px 50px #1bb2f1, -51px 51px #1bb2f1, -52px 52px #1bb2f1, -53px 53px #1bb2f1, -54px 54px #1bb2f1, -55px 55px #1bb2f1, -56px 56px #1bb2f1, -57px 57px #1bb2f1, -58px 58px #1bb2f1, -59px 59px #1bb2f1, -60px 60px #1bb2f1, -61px 61px #1bb2f1, -62px 62px #1bb2f1, -63px 63px #1bb2f1, -64px 64px #1bb2f1, -65px 65px #1bb2f1, -66px 66px #1bb2f1, -67px 67px #1bb2f1, -68px 68px #1bb2f1, -69px 69px #1bb2f1, -70px 70px #1bb2f1, -71px 71px #1bb2f1, -72px 72px #1bb2f1, -73px 73px #1bb2f1, -74px 74px #1bb2f1, -75px 75px #1bb2f1, -76px 76px #1bb2f1, -77px 77px #1bb2f1, -78px 78px #1bb2f1, -79px 79px #1bb2f1, -80px 80px #1bb2f1, -81px 81px #1bb2f1, -82px 82px #1bb2f1, -83px 83px #1bb2f1, -84px 84px #1bb2f1, -85px 85px #1bb2f1; }
  .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 #12748d, -1px 1px #12748d, -2px 2px #12748d, -3px 3px #12748d, -4px 4px #12748d, -5px 5px #12748d, -6px 6px #12748d, -7px 7px #12748d, -8px 8px #12748d, -9px 9px #12748d, -10px 10px #12748d, -11px 11px #12748d, -12px 12px #12748d, -13px 13px #12748d, -14px 14px #12748d, -15px 15px #12748d, -16px 16px #12748d, -17px 17px #12748d, -18px 18px #12748d, -19px 19px #12748d, -20px 20px #12748d, -21px 21px #12748d, -22px 22px #12748d, -23px 23px #12748d, -24px 24px #12748d, -25px 25px #12748d, -26px 26px #12748d, -27px 27px #12748d, -28px 28px #12748d, -29px 29px #12748d, -30px 30px #12748d, -31px 31px #12748d, -32px 32px #12748d, -33px 33px #12748d, -34px 34px #12748d, -35px 35px #12748d, -36px 36px #12748d, -37px 37px #12748d, -38px 38px #12748d, -39px 39px #12748d, -40px 40px #12748d, -41px 41px #12748d, -42px 42px #12748d, -43px 43px #12748d, -44px 44px #12748d, -45px 45px #12748d, -46px 46px #12748d, -47px 47px #12748d, -48px 48px #12748d, -49px 49px #12748d, -50px 50px #12748d, -51px 51px #12748d, -52px 52px #12748d, -53px 53px #12748d, -54px 54px #12748d, -55px 55px #12748d, -56px 56px #12748d, -57px 57px #12748d, -58px 58px #12748d, -59px 59px #12748d, -60px 60px #12748d, -61px 61px #12748d, -62px 62px #12748d, -63px 63px #12748d, -64px 64px #12748d, -65px 65px #12748d, -66px 66px #12748d, -67px 67px #12748d, -68px 68px #12748d, -69px 69px #12748d, -70px 70px #12748d, -71px 71px #12748d, -72px 72px #12748d, -73px 73px #12748d, -74px 74px #12748d, -75px 75px #12748d, -76px 76px #12748d, -77px 77px #12748d, -78px 78px #12748d, -79px 79px #12748d, -80px 80px #12748d, -81px 81px #12748d, -82px 82px #12748d, -83px 83px #12748d, -84px 84px #12748d, -85px 85px #12748d; }
  .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 #0f011a, -1px 1px #0f011a, -2px 2px #0f011a, -3px 3px #0f011a, -4px 4px #0f011a, -5px 5px #0f011a, -6px 6px #0f011a, -7px 7px #0f011a, -8px 8px #0f011a, -9px 9px #0f011a, -10px 10px #0f011a, -11px 11px #0f011a, -12px 12px #0f011a, -13px 13px #0f011a, -14px 14px #0f011a, -15px 15px #0f011a, -16px 16px #0f011a, -17px 17px #0f011a, -18px 18px #0f011a, -19px 19px #0f011a, -20px 20px #0f011a, -21px 21px #0f011a, -22px 22px #0f011a, -23px 23px #0f011a, -24px 24px #0f011a, -25px 25px #0f011a, -26px 26px #0f011a, -27px 27px #0f011a, -28px 28px #0f011a, -29px 29px #0f011a, -30px 30px #0f011a, -31px 31px #0f011a, -32px 32px #0f011a, -33px 33px #0f011a, -34px 34px #0f011a, -35px 35px #0f011a, -36px 36px #0f011a, -37px 37px #0f011a, -38px 38px #0f011a, -39px 39px #0f011a, -40px 40px #0f011a, -41px 41px #0f011a, -42px 42px #0f011a, -43px 43px #0f011a, -44px 44px #0f011a, -45px 45px #0f011a, -46px 46px #0f011a, -47px 47px #0f011a, -48px 48px #0f011a, -49px 49px #0f011a, -50px 50px #0f011a, -51px 51px #0f011a, -52px 52px #0f011a, -53px 53px #0f011a, -54px 54px #0f011a, -55px 55px #0f011a, -56px 56px #0f011a, -57px 57px #0f011a, -58px 58px #0f011a, -59px 59px #0f011a, -60px 60px #0f011a, -61px 61px #0f011a, -62px 62px #0f011a, -63px 63px #0f011a, -64px 64px #0f011a, -65px 65px #0f011a, -66px 66px #0f011a, -67px 67px #0f011a, -68px 68px #0f011a, -69px 69px #0f011a, -70px 70px #0f011a, -71px 71px #0f011a, -72px 72px #0f011a, -73px 73px #0f011a, -74px 74px #0f011a, -75px 75px #0f011a, -76px 76px #0f011a, -77px 77px #0f011a, -78px 78px #0f011a, -79px 79px #0f011a, -80px 80px #0f011a, -81px 81px #0f011a, -82px 82px #0f011a, -83px 83px #0f011a, -84px 84px #0f011a, -85px 85px #0f011a; }
  .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 #175892, -1px 1px #175892, -2px 2px #175892, -3px 3px #175892, -4px 4px #175892, -5px 5px #175892, -6px 6px #175892, -7px 7px #175892, -8px 8px #175892, -9px 9px #175892, -10px 10px #175892, -11px 11px #175892, -12px 12px #175892, -13px 13px #175892, -14px 14px #175892, -15px 15px #175892, -16px 16px #175892, -17px 17px #175892, -18px 18px #175892, -19px 19px #175892, -20px 20px #175892, -21px 21px #175892, -22px 22px #175892, -23px 23px #175892, -24px 24px #175892, -25px 25px #175892, -26px 26px #175892, -27px 27px #175892, -28px 28px #175892, -29px 29px #175892, -30px 30px #175892, -31px 31px #175892, -32px 32px #175892, -33px 33px #175892, -34px 34px #175892, -35px 35px #175892, -36px 36px #175892, -37px 37px #175892, -38px 38px #175892, -39px 39px #175892, -40px 40px #175892, -41px 41px #175892, -42px 42px #175892, -43px 43px #175892, -44px 44px #175892, -45px 45px #175892, -46px 46px #175892, -47px 47px #175892, -48px 48px #175892, -49px 49px #175892, -50px 50px #175892, -51px 51px #175892, -52px 52px #175892, -53px 53px #175892, -54px 54px #175892, -55px 55px #175892, -56px 56px #175892, -57px 57px #175892, -58px 58px #175892, -59px 59px #175892, -60px 60px #175892, -61px 61px #175892, -62px 62px #175892, -63px 63px #175892, -64px 64px #175892, -65px 65px #175892, -66px 66px #175892, -67px 67px #175892, -68px 68px #175892, -69px 69px #175892, -70px 70px #175892, -71px 71px #175892, -72px 72px #175892, -73px 73px #175892, -74px 74px #175892, -75px 75px #175892, -76px 76px #175892, -77px 77px #175892, -78px 78px #175892, -79px 79px #175892, -80px 80px #175892, -81px 81px #175892, -82px 82px #175892, -83px 83px #175892, -84px 84px #175892, -85px 85px #175892; }
  .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 #04163b, -1px 1px #04163b, -2px 2px #04163b, -3px 3px #04163b, -4px 4px #04163b, -5px 5px #04163b, -6px 6px #04163b, -7px 7px #04163b, -8px 8px #04163b, -9px 9px #04163b, -10px 10px #04163b, -11px 11px #04163b, -12px 12px #04163b, -13px 13px #04163b, -14px 14px #04163b, -15px 15px #04163b, -16px 16px #04163b, -17px 17px #04163b, -18px 18px #04163b, -19px 19px #04163b, -20px 20px #04163b, -21px 21px #04163b, -22px 22px #04163b, -23px 23px #04163b, -24px 24px #04163b, -25px 25px #04163b, -26px 26px #04163b, -27px 27px #04163b, -28px 28px #04163b, -29px 29px #04163b, -30px 30px #04163b, -31px 31px #04163b, -32px 32px #04163b, -33px 33px #04163b, -34px 34px #04163b, -35px 35px #04163b, -36px 36px #04163b, -37px 37px #04163b, -38px 38px #04163b, -39px 39px #04163b, -40px 40px #04163b, -41px 41px #04163b, -42px 42px #04163b, -43px 43px #04163b, -44px 44px #04163b, -45px 45px #04163b, -46px 46px #04163b, -47px 47px #04163b, -48px 48px #04163b, -49px 49px #04163b, -50px 50px #04163b, -51px 51px #04163b, -52px 52px #04163b, -53px 53px #04163b, -54px 54px #04163b, -55px 55px #04163b, -56px 56px #04163b, -57px 57px #04163b, -58px 58px #04163b, -59px 59px #04163b, -60px 60px #04163b, -61px 61px #04163b, -62px 62px #04163b, -63px 63px #04163b, -64px 64px #04163b, -65px 65px #04163b, -66px 66px #04163b, -67px 67px #04163b, -68px 68px #04163b, -69px 69px #04163b, -70px 70px #04163b, -71px 71px #04163b, -72px 72px #04163b, -73px 73px #04163b, -74px 74px #04163b, -75px 75px #04163b, -76px 76px #04163b, -77px 77px #04163b, -78px 78px #04163b, -79px 79px #04163b, -80px 80px #04163b, -81px 81px #04163b, -82px 82px #04163b, -83px 83px #04163b, -84px 84px #04163b, -85px 85px #04163b; }
  .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); }
/*
 * 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; }
