@charset "UTF-8";
/*------------------------------------*\
    STYLE.CSS
\*------------------------------------*/
/**
 *
 * sass --watch style.scss:style.min.css --style compressed
 *
 * Here we pull in some variables, include the inuit.css framework, then add our
 * project-specific components afterwards.
 */
/**
 * Setup
 */
/*------------------------------------*\
    VARS.SCSS
\*------------------------------------*/
/**
 * Any variables you find set in inuit.css’ `_vars.scss` that you do not wish to
 * keep, simply redefine here. This means that if inuit.css, for example, sets
 * your `$base-font-size` at 16px and you wish it to be 14px, simply redeclare
 * that variable in this file. inuit.css ignores its own variables in favour of
 * using your own, so you can completely modify how inuit.css works without ever
 * having to alter the framework itself.
 */
/*------------------------------------*\
    $OBJECTS-AND-ABSTRACTIONS
\*------------------------------------*/
/**
 * All of inuit.css’ objects and abstractions are initially turned off by
 * default. This means that you start any project with as little as possible,
 * and introducing objects and abstractions is as simple as switching the
 * following variables to `true`.
 */
/*------------------------------------*\
    $OVERRIDES
\*------------------------------------*/
/**
 * Place any variables that should override inuit.css’ defaults here.
 */
/*------------------------------------*\
    $CUSTOM
\*------------------------------------*/
/**
 * Place any of your own variables that sit on top of inuit.css here.
 */
/*------------------------------------*\
    INUIT.CSS
\*------------------------------------*/
/*!*
 *
 * inuitcss.com -- @inuitcss -- @csswizardry
 *
 */
/**
 * inuit.css acts as a base stylesheet which you should extend with your own
 * theme stylesheet.
 *
 * inuit.css aims to do the heavy lifting; sorting objects and abstractions,
 * design patterns and fiddly bits of CSS, whilst leaving as much design as
 * possible to you. inuit.css is the scaffolding to your decorator.
 *
 * This stylesheet is heavily documented and contains lots of comments, please
 * take care to read and refer to them as you build. For further support please
 * tweet at @inuitcss.
 *
 * Owing to the amount of comments please only ever use minified CSS in
 * production. This file is purely a dev document.
 *
 * The table of contents below maps to section titles of the same name, to jump
 * to any section simply run a find for $[SECTION-TITLE].
 *
 * Most objects and abstractions come with a chunk of markup that you should be
 * able to paste into any view to quickly see how the CSS works in conjunction
 * with the correct HTML.
 *
 * inuit.css is written to this standard: github.com/csswizardry/CSS-Guidelines
 *
 * LICENSE
 *
 * Copyright 2013 Harry Roberts
 *
 * 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://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.
 *
 * Thank you for choosing inuit.css. May your web fonts render perfectly.
 */
/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * CONTENTS............You’re reading it!
 * WARNING.............Here be dragons!
 * IMPORTS.............Begin importing the sections below
 *
 * MIXINS..............Super-simple Sass stuff
 * NORMALIZE...........normalize.css
 * RESET...............Set some defaults
 * CLEARFIX............
 * SHARED..............Shared declarations
 *
 * MAIN................High-level elements like `html`, `body`, etc.
 * HEADINGS............Double-stranded heading hierarchy
 * PARAGRAPHS..........
 * SMALLPRINT..........Smaller text elements like `small`
 * QUOTES..............
 * CODE................
 * LISTS...............
 * IMAGES..............
 * TABLES..............
 * FORMS...............
 *
 * GRIDS...............Fluid, proportional and nestable grids
 * FLEXBOX.............Crudely emulate flexbox
 * COLUMNS.............CSS3 columns
 * NAV.................A simple abstraction to put a list in horizontal nav mode
 * OPTIONS.............Grouped nav items
 * PAGINATION..........Very stripped back, basic paginator
 * BREADCRUMB..........Simple breadcrumb trail object
 * MEDIA...............Media object
 * MARGINALIA..........Simple marginalia content
 * ISLAND..............Boxed off content
 * BLOCK-LIST..........Blocky lists of content
 * MATRIX..............Gridded lists
 * SPLIT...............A simple split-in-two object
 * THIS-OR-THIS........Options object
 * LINK-COMPLEX........
 * FLYOUT..............Flyout-on-hover object
 * ARROWS..............CSS arrows
 * SPRITE..............Generic spriting element
 * ICON-TEXT...........Icon and text couplings
 * BEAUTONS............Use the beautons micro library
 * LOZENGES............Basic lozenge styles
 * RULES...............Horizontal rules
 * STATS...............Simple stats object
 * GREYBOX.............Wireframing styles
 *
 * WIDTHS..............Width classes for use alongside the grid system etc.
 * PUSH................Push classes for manipulating grids
 * PULL................Pull classes for manipulating grids
 * BRAND...............Helper class to apply brand treatment to elements
 * HELPER..............A series of helper classes to use arbitrarily
 * DEBUG...............Enable to add visual flags for debugging purposes
 */
/*------------------------------------*\
    $WARNING
\*------------------------------------*/
/*
 * inuit.css, being an OO framework, works in keeping with the open/closed
 * principle. The variables you set previously are now being used throughout
 * inuit.css to style everything we need for a base. Any custom styles SHOULD
 * NOT be added or modified in inuit.css directly, but added via your theme
 * stylesheet as per the open/closed principle:
 *
 * csswizardry.com/2012/06/the-open-closed-principle-applied-to-css
 *
 * Try not to edit any CSS beyond this point; if you find you need to do so
 * it is a failing of the framework so please tweet at @inuitcss.
 */
/*------------------------------------*\
    $IMPORTS
\*------------------------------------*/
/**
 * Generic utility styles etc.
 */
/*------------------------------------*\
    $DEFAULTS
\*------------------------------------*/
/**
 * inuit.css’ default variables. Redefine these in your `_vars.scss` file (found
 * in the inuit.css-web-template) to override them.
 */
/*------------------------------------*\
    $DEBUG
\*------------------------------------*/
/**
 * Debug mode will visually highlight any potential markup/accessibility quirks
 * in the browser. Set to `true` or `false`.
 */
/*------------------------------------*\
    $BORDER-BOX
\*------------------------------------*/
/**
 * Do you want all elements to adopt `box-sizing:border-box;` as per
 * paulirish.com/2012/box-sizing-border-box-ftw ?
 */
/*------------------------------------*\
    $BASE
\*------------------------------------*/
/**
 * Base stuff
 */
/**
 * Base font-family.
 */
/**
 * Default colour for objects’ borders etc.
 */
/*------------------------------------*\
    $RESPONSIVE
\*------------------------------------*/
/**
 * Responsiveness?
 */
/**
 * Responsiveness for widescreen/high resolution desktop monitors and beyond?
 * Note: `$responsive` variable above must be set to true before enabling this.
 */
/**
 * Responsive push and pull produce a LOT of code, only turn them on if you
 * definitely need them.
 */
/**
 * Note: `$push` variable above must be set to true before enabling these.
 */
/**
 * Note: `$pull` variable above must be set to true before enabling these.
 */
/**
 * Tell inuit.css when breakpoints start.
 */
/*------------------------------------*\
    $FONT-SIZES
\*------------------------------------*/
/**
 * Font-sizes (in pixels). Refer to relevant sections for their implementations.
 */
/*------------------------------------*\
    $QUOTES
\*------------------------------------*/
/**
 * English quote marks?
 */
/**
 * If you want English quotes then please do not edit these; they’re only here
 * because Sass needs them.
 */
/**
 * If you need non-English quotes, please alter the following values accordingly:
 */
/*------------------------------------*\
    $BRAND
\*------------------------------------*/
/**
 * Brand stuff
 */
/**
 * How big would you like round corners to be by default?
 */
/*------------------------------------*\
    $OBJECTS AND ABSTRACTIONS
\*------------------------------------*/
/**
 * Which objects and abstractions would you like to use?
 */
/*------------------------------------*\
    $FRAMEWORK
\*------------------------------------*/
/**
 * inuit.css will work these next ones out for use within the framework.
 *
 * Assign our `$base-line-height` to a new spacing var for more transparency.
 */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/**
 * Create a fully formed type style (sizing and vertical rhythm) by passing in a
 * single value, e.g.:
 *
   `@include font-size(10px);`
 *
 * Thanks to @redclov3r for the `line-height` Sass:
 * twitter.com/redclov3r/status/250301539321798657
 */
/**
 * Style any number of headings in one fell swoop, e.g.:
 *
   .foo{
       @include headings(1, 3){
           color:#BADA55;
       }
    }
 *
 * With thanks to @lar_zzz, @paranoida, @rowanmanning and ultimately
 * @thierrylemoulec for refining and improving my initial mixin.
 */
/**
 * Create vendor-prefixed CSS in one go, e.g.
 *
   `@include vendor(border-radius, 4px);`
 *
 */
/**
 * Create CSS keyframe animations for all vendors in one go, e.g.:
 *
   .foo{
       @include vendor(animation, shrink 3s);
   }

   @include keyframe(shrink){
       from{
           font-size:5em;
       }
   }
 *
 * Courtesy of @integralist: twitter.com/integralist/status/260484115315437569
 */
/**
 * Force overly long spans of text to truncate, e.g.:
 *
   `@include truncate(100%);`
 *
 * Where `$truncation-boundary` is a united measurement.
 */
/**
 * CSS arrows!!! But... before you read on, you might want to grab a coffee...
 *
 * This mixin creates a CSS arrow on a given element. We can have the arrow
 * appear in one of 12 locations, thus:
 *
 *       01    02    03
 *    +------------------+
 * 12 |                  | 04
 *    |                  |
 * 11 |                  | 05
 *    |                  |
 * 10 |                  | 06
 *    +------------------+
 *       09    08    07
 *
 * You pass this position in along with a desired arrow color and optional
 * border color, for example:
 *
 * `@include arrow(top, left, red)`
 *
 * for just a single, red arrow, or:
 *
 * `@include arrow(bottom, center, red, black)`
 *
 * which will create a red triangle with a black border which sits at the bottom
 * center of the element. Call the mixin thus:
 *
   .foo{
       background-color:#BADA55;
       border:1px solid #ACE;
       @include arrow(top, left, #BADA55, #ACE);
   }
 *
 */
/**
 * Media query mixin.
 *
 * It’s not great practice to define solid breakpoints up-front, preferring to
 * modify your design when it needs it, rather than assuming you’ll want a
 * change at ‘mobile’. However, as inuit.css is required to take a hands off
 * approach to design decisions, this is the closest we can get to baked-in
 * responsiveness. It’s flexible enough to allow you to set your own breakpoints
 * but solid enough to be frameworkified.
 *
 * We define some broad breakpoints in our vars file that are picked up here
 * for use in a simple media query mixin. Our options are:
 *
 * palm
 * lap
 * lap-and-up
 * portable
 * desk
 * desk-wide
 *
 * Not using a media query will, naturally, serve styles to all devices.
 *
 * `@include media-query(palm){ [styles here] }`
 *
 * We work out your end points for you:
 */
/*! normalize.css v2.1.0 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Correct `block` display not defined in IE 8/9.
 */
@import url("https://fonts.googleapis.com/css?family=Raleway:400,700");
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/*
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/*
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Address styling not present in IE 8/9.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/*
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1, .h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/*
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/*
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/*
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/*
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/*
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/*
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/*
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/*
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/*
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/*
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/*
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/*
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/*
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/*
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*------------------------------------*\
    $RESET
\*------------------------------------*/
/**
 * A more considered reset; more of a restart...
 * As per: csswizardry.com/2011/10/reset-restarted
 */
/**
* Let’s make the box model all nice, shall we...?
*/
*, *:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

/**
 * The usual...
 */
h1, .h1, h2, .h2, h3, .dlist-title, .h3, .checkout-section h2, .checkout-section .h2, h4, .h4, h5, .list-filter__title, .h5, .order-summary h3, h6, .h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
}

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */
abbr[title], dfn[title] {
  cursor: help;
}

/**
 * Remove underlines from potentially troublesome elements.
 */
u, ins {
  text-decoration: none;
}

/**
 * Apply faux underline via `border-bottom`.
 */
ins {
  border-bottom: 1px solid;
}

/**
 * So that `alt` text is visually offset if images don’t load.
 */
img {
  font-style: italic;
}

/**
 * Give form elements some cursor interactions...
 */
label,
input,
textarea,
button,
select,
option {
  cursor: pointer;
}

.text-input:active,
.text-input:focus,
textarea:active,
textarea:focus {
  cursor: text;
  outline: none;
}

/*------------------------------------*\
    $CLEARFIX
\*------------------------------------*/
/**
 * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
 * Extend the clearfix class with Sass to avoid the `.cf` class appearing over
 * and over in your markup.
 */
.cf:after, #content-main .content-container:after, .sharing--auction-display:after, .auction-info ul:after, .auction-title:after, .home__content-areas .home__content-areas__promos:after, .nav-primary:after, .masthead:after, .order-summary:after, .sharing--item-display:after, .item-info ul:after, .item-main:after, .item-title:after, .breadcrumbs:after, .headings-bar:after, .listing-mode-switch--tabs .listing-mode-switch ul:after, .listing-mode-switch--tabs:after, .item-list__item .item-list__partner-price:after, .sort-paginate:after, .partners-bar:after, .prd-bid:after, .bid-select-address:after, .site-search:after, .content:after, #page:after, .item-list__item:after, .table-responsive td:after, fieldset > ul > li:after, .content-container__home:after, .content-container:after, .media:after, .nav:after {
  content: "";
  display: table;
  clear: both;
}

/*------------------------------------*\
    $SHARED
\*------------------------------------*/
/**
 * Where `margin-bottom` is concerned, this value will be the same as the
 * base line-height. This allows us to keep a consistent vertical rhythm.
 * As per: csswizardry.com/2012/06/single-direction-margin-declarations
 */
/**
 * Base elements
 */
h1, .h1, h2, .h2, h3, .dlist-title, .h3, .checkout-section h2, .checkout-section .h2, h4, .h4, h5, .list-filter__title, .h5, .order-summary h3, h6, .h6, hgroup,
ul, ol, dl,
blockquote, p, address,
table,
fieldset, figure,
pre,
.form-fields > li,
.media,
.island,
.islet {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.islet h1, .islet .h1, .islet h2, .islet .h2, .islet h3, .islet .dlist-title, .islet .h3, .islet h4, .islet .h4, .islet h5, .islet .list-filter__title, .islet .h5, .islet h6, .islet .h6, .islet hgroup,
.islet ul, .islet ol, .islet dl,
.islet blockquote, .islet p, .islet address,
.islet table,
.islet fieldset, .islet figure,
.islet pre,
.islet .form-fields > li,
.islet .media,
.islet .island,
.islet .islet {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

/**
 * Doubled up `margin-bottom` helper class.
 */
.landmark {
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

/**
 * `hr` elements only take up a few pixels, so we need to give them special
 * treatment regarding vertical rhythm.
 */
hr {
  margin-bottom: 22px;
  margin-bottom: 1.375rem;
}

/**
 * Where `margin-left` is concerned we want to try and indent certain elements
 * by a consistent amount. Define that amount once, here.
 */
ul, ol, dd {
  margin-left: 48px;
  margin-left: 3rem;
}

/**
 * Base styles; unclassed HTML elements etc.
 */
/*------------------------------------*\
    $MAIN
\*------------------------------------*/
html {
  font: 1em/1.5 "rockwell", serif;
  overflow-y: scroll;
  min-height: 100%;
}

/*------------------------------------*\
    $HEADINGS
\*------------------------------------*/
/**
 * As per: csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 *
 * When we define a heading we also define a corresponding class to go with it.
 * This allows us to apply, say, `class=alpha` to a `h3`; a double-stranded
 * heading hierarchy.
 */
h1, .h1, .alpha {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.3333333333;
}

h2, .h2, .beta {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.6;
}

h3, .dlist-title, .h3, .checkout-section h2, .checkout-section .h2, .gamma {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}

h4, .h4, .delta {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}

h5, .list-filter__title, .h5, .order-summary h3, .order-summary .dlist-title, .order-summary .h3, .order-summary .checkout-section h2, .checkout-section .order-summary h2, .order-summary .checkout-section .h2, .checkout-section .order-summary .h2, .epsilon {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h6, .h6, .zeta {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

/**
 * Heading groups and generic any-heading class.
 * To target any heading of any level simply apply a class of `.hN`, e.g.:
 *
   <hgroup>
       <h1 class=hN>inuit.css</h1>
       <h2 class=hN>Best. Framework. Ever!</h2>
   </hgroup>
 *
 */
hgroup .hN {
  margin-bottom: 0;
}

/**
 * A series of classes for setting massive type; for use in heroes, mastheads,
 * promos, etc.
 */
.giga {
  font-size: 96px;
  font-size: 6rem;
  line-height: 1;
}

.mega {
  font-size: 72px;
  font-size: 4.5rem;
  line-height: 1;
}

.kilo {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1;
}

/*------------------------------------*\
    $PARAGRAPHS
\*------------------------------------*/
/**
 * The `.lede` class is used to make the introductory text (usually a paragraph)
 * of a document slightly larger.
 */
.lede,
.lead {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}

/*------------------------------------*\
    $SMALLPRINT
\*------------------------------------*/
/**
 * A series of classes for setting tiny type; for use in smallprint etc.
 */
.smallprint,
.milli {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
}

.micro {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 2.4;
}

/*------------------------------------*\
    $QUOTES
\*------------------------------------*/
/**
 * If English quotes are set in `_vars.scss`, define them here.
 */
/**
 * Big up @boblet: html5doctor.com/blockquote-q-cite
 */
/**
 * Inline quotes.
 */
q {
  quotes: "‘" "’" "“" "”";
}
q:before {
  content: "‘";
  content: open-quote;
}
q:after {
  content: "’";
  content: close-quote;
}
q q:before {
  content: "“";
  content: open-quote;
}
q q:after {
  content: "”";
  content: close-quote;
}

blockquote {
  quotes: "“" "”";
}
blockquote p:before {
  content: "“";
  content: open-quote;
}
blockquote p:after {
  content: "";
  content: no-close-quote;
}
blockquote p:last-of-type:after {
  content: "”";
  content: close-quote;
}
blockquote q:before {
  content: "‘";
  content: open-quote;
}
blockquote q:after {
  content: "’";
  content: close-quote;
}

/**
 *
   <blockquote>
       <p>Insanity: doing the same thing over and over again and expecting
       different results.</p>
       <b class=source>Albert Einstein</b>
   </blockquote>
 *
 */
blockquote {
  /**
   * .4em is roughly equal to the width of the opening “ that we wish to hang.
   */
  text-indent: -0.41em;
}
blockquote p:last-of-type {
  margin-bottom: 0;
}

.source {
  display: block;
  text-indent: 0;
}
.source:before {
  content: "—";
}

/*------------------------------------*\
    $CODE
\*------------------------------------*/
/**
 * Use an explicit font stack to ensure browsers render correct `line-height`.
 */
pre {
  overflow: auto;
}

pre mark {
  background: none;
  border-bottom: 1px solid;
  color: inherit;
}

/**
 * Add comments to your code examples, e.g.:
 *
   <code>&lt;/div&gt;<span class=code-comment>&lt;!-- /wrapper --&gt;</span></code>
 *
 */
.code-comment {
  /**
   * Override this setting in your theme stylesheet
   */
  opacity: 0.75;
  filter: alpha(opacity=75);
}

/**
 * You can add line numbers to your code examples but be warned, it requires
 * some pretty funky looking markup, e.g.:
 *
   <ol class=line-numbers>
       <li><code>.nav{</code></li>
       <li><code>    list-style:none;</code></li>
       <li><code>    margin-left:0;</code></li>
       <li><code>}</code></li>
       <li><code>    .nav > li,</code></li>
       <li><code>        .nav > li > a{</code></li>
       <li><code>            display:inline-block;</code></li>
       <li><code>           *display:inline-block;</code></li>
       <li><code>            zoom:1;</code></li>
       <li><code>        }</code></li>
   </ol>
 *
 * 1. Make the list look like code.
 * 2. Give the list flush numbers with a leading zero.
 * 3. Make sure lines of code don’t wrap.
 * 4. Give the code form by forcing the `code` to honour white-space.
 */
.line-numbers {
  font-family: monospace, serif;
  /* [1] */
  list-style: decimal-leading-zero inside;
  /* [2] */
  white-space: nowrap;
  /* [3] */
  overflow: auto;
  /* [3] */
  margin-left: 0;
}

.line-numbers code {
  white-space: pre;
  /* [4] */
}

/*------------------------------------*\
    $IMAGES
\*------------------------------------*/
/**
 * Demo: jsfiddle.net/inuitcss/yMtur
 */
/**
 * Fluid images.
 */
img {
  max-width: 100%;
}

/**
 * Non-fluid images if you specify `width` and/or `height` attributes.
 */
img[width],
img[height] {
  max-width: none;
}

/**
 * Rounded images.
 */
.img--round {
  border-radius: 4px;
}

/**
 * Image placement variations.
 */
.img--right {
  float: right;
  margin-bottom: 24px;
  margin-left: 24px;
}

.img--left {
  float: left;
  margin-right: 24px;
  margin-bottom: 24px;
}

.img--center {
  display: block;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
}

/**
 * Keep your images on your baseline.
 *
 * Please note, these will not work too nicely with fluid images and will
 * distort when resized below a certain width. Use with caution.
 */
.img--short {
  height: 120px;
}

.img--medium {
  height: 240px;
}

.img--tall {
  height: 360px;
}

/**
 * Images in `figure` elements.
 */
figure > img {
  display: block;
}

/*------------------------------------*\
    $LISTS
\*------------------------------------*/
/**
 * Remove vertical spacing from nested lists.
 */
li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Have a numbered `ul` without the semantics implied by using an `ol`.
 */
/*ul*/
.numbered-list {
  list-style-type: decimal;
}

/*------------------------------------*\
    $TABLES
\*------------------------------------*/
/**
 * We have a lot at our disposal for making very complex table constructs, e.g.:
 *
   <table class="table--bordered  table--striped  table--data">
       <colgroup>
           <col class=t10>
           <col class=t10>
           <col class=t10>
           <col>
       </colgroup>
       <thead>
           <tr>
               <th colspan=3>Foo</th>
               <th>Bar</th>
           </tr>
           <tr>
               <th>Lorem</th>
               <th>Ipsum</th>
               <th class=numerical>Dolor</th>
               <th>Sit</th>
           </tr>
       </thead>
       <tbody>
           <tr>
               <th rowspan=3>Sit</th>
               <td>Dolor</td>
               <td class=numerical>03.788</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>32.210</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>47.797</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <th rowspan=2>Sit</th>
               <td>Dolor</td>
               <td class=numerical>09.640</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>12.117</td>
               <td>Lorem</td>
           </tr>
       </tbody>
   </table>
 *
 */
table {
  width: 100%;
}

th,
td {
  padding: 6px;
  text-align: left;
}
@media screen and (min-width: 480px) {
  th,
td {
    padding: 12px;
  }
}

/**
 * Cell alignments
 */
[colspan] {
  text-align: center;
}

[colspan="1"] {
  text-align: left;
}

[rowspan] {
  vertical-align: middle;
}

[rowspan="1"] {
  vertical-align: top;
}

.numerical {
  text-align: right;
}

/**
 * In the HTML above we see several `col` elements with classes whose numbers
 * represent a percentage width for that column. We leave one column free of a
 * class so that column can soak up the effects of any accidental breakage in
 * the table.
 */
.t5 {
  width: 5%;
}

.t10 {
  width: 10%;
}

.t12 {
  width: 12.5%;
}

/* 1/8 */
.t15 {
  width: 15%;
}

.t20 {
  width: 20%;
}

.t25 {
  width: 25%;
}

/* 1/4 */
.t30 {
  width: 30%;
}

.t33 {
  width: 33.333%;
}

/* 1/3 */
.t35 {
  width: 35%;
}

.t37 {
  width: 37.5%;
}

/* 3/8 */
.t40 {
  width: 40%;
}

.t45 {
  width: 45%;
}

.t50 {
  width: 50%;
}

/* 1/2 */
.t55 {
  width: 55%;
}

.t60 {
  width: 60%;
}

.t62 {
  width: 62.5%;
}

/* 5/8 */
.t65 {
  width: 65%;
}

.t66 {
  width: 66.666%;
}

/* 2/3 */
.t70 {
  width: 70%;
}

.t75 {
  width: 75%;
}

/* 3/4*/
.t80 {
  width: 80%;
}

.t85 {
  width: 85%;
}

.t87 {
  width: 87.5%;
}

/* 7/8 */
.t90 {
  width: 90%;
}

.t95 {
  width: 95%;
}

/**
 * Bordered tables
 */
.table--bordered th,
.table--bordered td {
  border: 1px solid #ccc;
}
.table--bordered th:empty,
.table--bordered td:empty {
  border: none;
}
.table--bordered thead tr:last-child th {
  border-bottom-width: 2px;
}
.table--bordered tbody tr th:last-of-type {
  border-right-width: 2px;
}

/**
 * Striped tables
 */
.table--striped tbody tr:nth-of-type(odd) {
  background-color: #ffc;
  /* Override this color in your theme stylesheet */
}

/**
 * Data table
 */
.table--data {
  font: 12px/1.5 sans-serif;
}

/*------------------------------------*\
    $FORMS
\*------------------------------------*/
/**
 *
 * Demo: jsfiddle.net/inuitcss/MhHHU
 *
 */
fieldset {
  padding: 24px;
}

/**
 * Text inputs
 *
 * Instead of a `[type]` selector for each kind of form input, we just use a
 * class to target any/every one, e.g.:
   <input type=text class=text-input>
   <input type=email class=text-input>
   <input type=password class=text-input>
 *
 */
.text-input,
textarea {
  /**
   * Style these via your theme stylesheet.
   */
  margin: 15px 0;
}

/**
 * Group sets of form fields in a list, e.g.:
 *
   <ul class=form-fields>
       <li>
           <label />
           <input />
       </li>
       <li>
           <label />
           <select />
       </li>
       <li>
           <label />
           <input />
       </li>
   </ul>
 *
 */
.form-fields {
  list-style: none;
  margin: 0;
}

.form-fields > li:last-child {
  margin-bottom: 0;
}

/**
 * Labels
 *
 * Define a `.label` class as well as a `label` element. This means we can apply
 * label-like styling to meta-labels for groups of options where a `label`
 * element is not suitable, e.g.:
 *
   <li>
       <span class=label>Select an option below:</span>
       <ul class="multi-list  four-cols">
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
label,
.label {
  display: block;
}

/**
 * Extra help text in `label`s, e.g.:
 *
   <label>Card number <small class=additional>No spaces</small></label>
 *
 */
.additional {
  display: block;
  font-weight: normal;
}

/*
 * Groups of checkboxes and radios, e.g.:
 *
   <li>
       <ul class=check-list>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
.check-list {
  list-style: none;
  margin: 0;
}

/*
 * Labels in check-lists
 */
.check-label,
.check-list label,
.check-list .label {
  display: inline-block;
}

/**
 * Spoken forms are for forms that read like spoken word, e.g.:
 *
   <li class=spoken-form>
       Hello, my <label for=spoken-name>name</label> is
       <input type=text class=text-input id=spoken-name>. My home
       <label for=country>country</label> is
       <select id=country>
           <option>UK</option>
           <option>US</option>
           <option>Other</option>
       </select>
   </li>
 *
 */
.spoken-form label {
  display: inline-block;
  font: inherit;
}

/**
 * Extra help text displayed after a field when that field is in focus, e.g.:
 *
   <label for=email>Email:</label>
   <input type=email class=text-input id=email>
   <small class=extra-help>.edu emails only</small>
 *
 * We leave the help text in the document flow and merely set it to
 * `visibility:hidden;`. This means that it won’t interfere with anything once
 * it reappears.
 *
 */
/*small*/
.extra-help {
  display: inline-block;
  visibility: hidden;
}

.text-input:active + .extra-help,
.text-input:focus + .extra-help {
  visibility: visible;
}

/**
 * Objects and abstractions
 */
/*------------------------------------*\
    $GRIDS
\*------------------------------------*/
/**
 * Fluid and nestable grid system, e.g.:
 *
   <div class="grid">

       <div class="grid__item  one-third">
           <p>One third grid</p>
       </div><!--

    --><div class="grid__item  two-thirds">
           <p>Two thirds grid</p>
       </div><!--

    --><div class="grid__item  one-half">
           <p>One half grid</p>
       </div><!--

    --><div class="grid__item  one-quarter">
           <p>One quarter grid</p>
       </div><!--

    --><div class="grid__item  one-quarter">
           <p>One quarter grid</p>
       </div>

   </div>
 *
 * Demo: jsfiddle.net/inuitcss/CLYUC
 *
 */
/**
 * Grid wrapper
 */
.grid {
  margin-left: -24px;
  list-style: none;
  margin-bottom: 0;
}

/**
 * Very infrequently occuring grid wrappers as children of grid wrappers.
 */
.grid > .grid {
  margin-left: 0;
}

/**
 * Grid
 */
.grid__item {
  display: inline-block;
  width: 100%;
  padding-left: 24px;
  vertical-align: top;
}

/*------------------------------------*\
    $NAV
\*------------------------------------*/
/**
 * Nav abstraction as per: csswizardry.com/2011/09/the-nav-abstraction
 * When used on an `ol` or `ul`, this class throws the list into horizontal mode
 * e.g.:
 *
   <ul class=nav>
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 * Demo: jsfiddle.net/inuitcss/Vnph4
 *
 */
.nav {
  list-style: none;
  margin-left: 0;
}
.nav > li,
.nav > li > a {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

/**
 * `.nav--stacked` extends `.nav` and throws the list into vertical mode, e.g.:
 *
   <ul class="nav  nav--stacked">
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 */
.nav--stacked > li {
  display: list-item;
}
.nav--stacked > li > a {
  display: block;
}

/**
 * `.nav--banner` extends `.nav` and centres the list, e.g.:
 *
   <ul class="nav  nav--banner">
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 */
.nav--banner {
  text-align: center;
}

/**
 * Give nav links a big, blocky hit area. Extends `.nav`, e.g.:
 *
   <ul class="nav  nav--block">
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 */
.nav--block {
  line-height: 1;
  /**
   * Remove whitespace caused by `inline-block`.
   */
  letter-spacing: -0.31em;
  word-spacing: -0.43em;
  white-space: nowrap;
}
.nav--block > li {
  letter-spacing: normal;
  word-spacing: normal;
}
.nav--block > li > a {
  padding: 12px;
}

/**
 * Force a nav to occupy 100% of the available width of its parent. Extends
 * `.nav`, e.g.:
 *
   <ul class="nav  nav--fit">
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 * Thanks to @pimpl for this idea!
 */
.nav--fit {
  display: table;
  width: 100%;
}
.nav--fit > li {
  display: table-cell;
}
.nav--fit > li > a {
  display: block;
}

/**
 * Make a list of keywords. Extends `.nav`, e.g.:
 *
   `<ul class="nav  nav--keywords>`
 *
 */
.nav--keywords > li:after {
  content: "," " ";
}
.nav--keywords > li:last-child:after {
  display: none;
}

/*------------------------------------*\
    $PAGINATION
\*------------------------------------*/
/**
 * Basic pagination object, extends `.nav`.
 * Requires some funky commenting to collapse any white-space caused by the
 * `display:inline-block;` rules.
 *
   <ol class="nav  pagination">
       <li class=pagination__first>First</li>
       <li class=pagination__prev>Previous</li>
       <li><a href=/page/1>1</a></li>
       <li><a href=/page/2>2</a></li>
       <li class=current><a href=/page/3>3</a></li>
       <li><a href=/page/4>4</a></li>
       <li><a href=/page/5>5</a></li>
       <li class=pagination__next><a href=/page/next>Next</a></li>
       <li class=pagination__last><a href=/page/last>Last</a></li>
   </ol>
 *
 * Demo: jsfiddle.net/inuitcss/9Y6PU
 *
 */
.pagination {
  text-align: center;
  /**
   * Remove whitespace caused by `inline-block`.
   */
  letter-spacing: -0.31em;
  word-spacing: -0.43em;
}

.pagination > li {
  padding: 12px;
  letter-spacing: normal;
  word-spacing: normal;
}

.pagination > li > a {
  padding: 12px;
  margin: -12px;
}

.pagination__first a:before {
  content: "«" " ";
}

.pagination__last a:after {
  content: " " "»";
}

/*------------------------------------*\
    $MEDIA
\*------------------------------------*/
/**
 * Place any image- and text-like content side-by-side, as per:
 * stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
 * E.g.:
 *
   <div class=media>
       <img src=http://placekitten.com/200/300 alt="" class=media__img>
       <p class=media__body>Lorem ipsum dolor sit amet, consectetur adipisicing elit,
       sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
   </div>
 *
 * Demo: jsfiddle.net/inuitcss/cf4Qs
 *
 */
.media {
  display: block;
}

.media__img {
  float: left;
  margin-right: 24px;
}

/**
 * Reversed image location (right instead of left).
 */
.media__img--rev {
  float: right;
  margin-left: 24px;
}

.media__img img,
.media__img--rev img {
  display: block;
}

.media__body {
  overflow: hidden;
}

.media__body,
.media__body > :last-child {
  margin-bottom: 0;
}

/**
 * `.img`s in `.islet`s need an appropriately sized margin.
 */
.islet .media__img {
  margin-right: 12px;
}

.islet .media__img--rev {
  margin-left: 12px;
}

/*------------------------------------*\
    $BEAUTONS.CSS
\*------------------------------------*/
/**
 * beautons is a beautifully simple button toolkit.
 *
 * LICENSE
 * 
 * Copyright 2013 Harry Roberts
 * 
 * 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://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.
 * 
 */
/*!*
 * 
 * @csswizardry -- csswizardry.com/beautons
 * 
 */
/*------------------------------------*\
    $BASE
\*------------------------------------*/
/**
 * Base button styles.
 *
 * 1. Allow us to better style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Stop buttons wrapping and looking broken.
 * 4. Make buttons inherit font styles.
 * 5. Force all elements using beautons to appear clickable.
 * 6. Normalise box model styles.
 * 7. If the button’s text is 1em, and the button is (3 * font-size) tall, then
 *    there is 1em of space above and below that text. We therefore apply 1em
 *    of space to the left and right, as padding, to keep consistent spacing.
 * 8. Basic cosmetics for default buttons. Change or override at will.
 * 9. Don’t allow buttons to have underlines; it kinda ruins the illusion.
 */
.btn, .headings-bar__box .listing-mode-switch li a {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  white-space: nowrap;
  /* [3] */
  font-family: inherit;
  /* [4] */
  font-size: 100%;
  /* [4] */
  cursor: pointer;
  /* [5] */
  border: none;
  /* [6] */
  margin: 0;
  /* [6] */
  padding-top: 0;
  /* [6] */
  padding-bottom: 0;
  /* [6] */
  line-height: 3;
  /* [7] */
  padding-right: 1em;
  /* [7] */
  padding-left: 1em;
  /* [7] */
  border-radius: 4px;
  /* [8] */
}

.btn, .headings-bar__box .listing-mode-switch li a, .btn:hover {
  text-decoration: none;
  /* [9] */
}
.btn:active, .headings-bar__box .listing-mode-switch li a:active, .btn:focus, .headings-bar__box .listing-mode-switch li a:focus {
  outline: none;
}

/*------------------------------------*\
    $SIZES
\*------------------------------------*/
/**
 * Button size modifiers.
 *
 * These all follow the same sizing rules as above; text is 1em, space around it
 * remains uniform.
 */
.btn--small, .btn--mini,
.btn--tiny {
  padding-right: 0.5em;
  padding-left: 0.5em;
  line-height: 2;
}

.btn--large {
  padding-right: 1.5em;
  padding-left: 1.5em;
  line-height: 4;
}

.btn--huge {
  padding-right: 2em;
  padding-left: 2em;
  line-height: 5;
}

/**
 * These buttons will fill the entirety of their container.
 *
 * 1. Remove padding so that widths and paddings don’t conflict.
 */
.btn--full {
  width: 100%;
  padding-right: 0;
  /* [1] */
  padding-left: 0;
  /* [1] */
  text-align: center;
}

/*------------------------------------*\
    $FONT-SIZES
\*------------------------------------*/
/**
 * Button font-size modifiers.
 */
.btn--alpha {
  font-size: 3rem;
}

.btn--beta {
  font-size: 2rem;
}

.btn--gamma {
  font-size: 1rem;
}

/**
 * Make the button inherit sizing from its parent.
 */
.btn--natural {
  vertical-align: baseline;
  font-size: inherit;
  line-height: inherit;
  padding-right: 0.5em;
  padding-left: 0.5em;
}

/*------------------------------------*\
    $FUNCTIONS
\*------------------------------------*/
/**
 * Button function modifiers.
 */
/**
 * Positive actions; e.g. sign in, purchase, submit, etc.
 */
.btn--positive {
  background-color: #4A993E;
  color: #fff;
}

/**
 * Negative actions; e.g. close account, delete photo, remove friend, etc.
 */
.btn--negative {
  background-color: #b33630;
  color: #fff;
}

/**
 * Inactive, disabled buttons.
 * 
 * 1. Make the button look like normal text when hovered.
 */
.btn--inactive,
.btn--inactive:hover,
.btn--inactive:active,
.btn--inactive:focus {
  background-color: #ddd;
  color: #777;
  cursor: text;
  /* [1] */
}

/*------------------------------------*\
    $STYLES
\*------------------------------------*/
/**
 * Button style modifiers.
 *
 * 1. Use an overly-large number to ensure completely rounded, pill-like ends.
 */
.btn--soft {
  border-radius: 200px;
  /* [1] */
}

.btn--hard {
  border-radius: 0;
}

/**
 * Style trumps; helper and brand classes
 */
/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/
/**
 * Sizes in human readable format. These are used in conjunction with other
 * objects and abstractions found in inuit.css, most commonly the grid system
 * and faux flexbox.
 *
 * We have a mixin to generate our widths and their breakpoint-specific
 * variations.
 */
/**
* Whole
*/
.one-whole {
  width: 100%;
}

/**
* Halves
*/
.one-half, .six-twelfths, .five-tenths, .four-eighths, .three-sixths, .two-quarters {
  width: 50%;
}

/**
* Thirds
*/
.one-third, .four-twelfths, .two-sixths {
  width: 33.333%;
}

.two-thirds, .eight-twelfths, .four-sixths {
  width: 66.666%;
}

/**
* Quarters
*/
.one-quarter, .three-twelfths, .two-eighths {
  width: 25%;
}

.three-quarters, .nine-twelfths, .six-eighths {
  width: 75%;
}

/**
* Fifths
*/
.one-fifth, .two-tenths {
  width: 20%;
}

.two-fifths, .four-tenths {
  width: 40%;
}

.three-fifths, .six-tenths {
  width: 60%;
}

.four-fifths, .eight-tenths {
  width: 80%;
}

/**
* Sixths
*/
.one-sixth, .two-twelfths {
  width: 16.666%;
}

.five-sixths, .ten-twelfths {
  width: 83.333%;
}

/**
* Eighths
*/
.one-eighth {
  width: 12.5%;
}

.three-eighths {
  width: 37.5%;
}

.five-eighths {
  width: 62.5%;
}

.seven-eighths {
  width: 87.5%;
}

/**
* Tenths
*/
.one-tenth {
  width: 10%;
}

.three-tenths {
  width: 30%;
}

.seven-tenths {
  width: 70%;
}

.nine-tenths {
  width: 90%;
}

/**
* Twelfths
*/
.one-twelfth {
  width: 8.333%;
}

.five-twelfths {
  width: 41.666%;
}

.seven-twelfths {
  width: 58.333%;
}

.eleven-twelfths {
  width: 91.666%;
}

/**
 * If you have set `$responsive` to ‘true’ in `_vars.scss` then you now have
 * access to these classes. You can define at which breakpoint you’d like an
 * element to be a certain size, e.g.:
 *
 * `<div class="g  one-quarter  lap-one-half  palm-one-whole"> ... </div>`
 *
 * This would create a `div` that, at ‘desktop’ sizes, takes up a quarter of the
 * horizontal space, a half of that space at ‘tablet’ sizes, and goes full width
 * at ‘mobile’ sizes.
 *
 * Demo: jsfiddle.net/inuitcss/WS4Ge
 *
 */
@media only screen and (max-width: 479px) {
  /**
  * Whole
  */
  .palm-one-whole {
    width: 100%;
  }

  /**
  * Halves
  */
  .palm-one-half, .palm-six-twelfths, .palm-five-tenths, .palm-four-eighths, .palm-three-sixths, .palm-two-quarters {
    width: 50%;
  }

  /**
  * Thirds
  */
  .palm-one-third, .palm-four-twelfths, .palm-two-sixths {
    width: 33.333%;
  }

  .palm-two-thirds, .palm-eight-twelfths, .palm-four-sixths {
    width: 66.666%;
  }

  /**
  * Quarters
  */
  .palm-one-quarter, .palm-three-twelfths, .palm-two-eighths {
    width: 25%;
  }

  .palm-three-quarters, .palm-nine-twelfths, .palm-six-eighths {
    width: 75%;
  }

  /**
  * Fifths
  */
  .palm-one-fifth, .palm-two-tenths {
    width: 20%;
  }

  .palm-two-fifths, .palm-four-tenths {
    width: 40%;
  }

  .palm-three-fifths, .palm-six-tenths {
    width: 60%;
  }

  .palm-four-fifths, .palm-eight-tenths {
    width: 80%;
  }

  /**
  * Sixths
  */
  .palm-one-sixth, .palm-two-twelfths {
    width: 16.666%;
  }

  .palm-five-sixths, .palm-ten-twelfths {
    width: 83.333%;
  }

  /**
  * Eighths
  */
  .palm-one-eighth {
    width: 12.5%;
  }

  .palm-three-eighths {
    width: 37.5%;
  }

  .palm-five-eighths {
    width: 62.5%;
  }

  .palm-seven-eighths {
    width: 87.5%;
  }

  /**
  * Tenths
  */
  .palm-one-tenth {
    width: 10%;
  }

  .palm-three-tenths {
    width: 30%;
  }

  .palm-seven-tenths {
    width: 70%;
  }

  .palm-nine-tenths {
    width: 90%;
  }

  /**
  * Twelfths
  */
  .palm-one-twelfth {
    width: 8.333%;
  }

  .palm-five-twelfths {
    width: 41.666%;
  }

  .palm-seven-twelfths {
    width: 58.333%;
  }

  .palm-eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1029px) {
  /**
  * Whole
  */
  .lap-one-whole {
    width: 100%;
  }

  /**
  * Halves
  */
  .lap-one-half, .lap-six-twelfths, .lap-five-tenths, .lap-four-eighths, .lap-three-sixths, .lap-two-quarters {
    width: 50%;
  }

  /**
  * Thirds
  */
  .lap-one-third, .lap-four-twelfths, .lap-two-sixths {
    width: 33.333%;
  }

  .lap-two-thirds, .lap-eight-twelfths, .lap-four-sixths {
    width: 66.666%;
  }

  /**
  * Quarters
  */
  .lap-one-quarter, .lap-three-twelfths, .lap-two-eighths {
    width: 25%;
  }

  .lap-three-quarters, .lap-nine-twelfths, .lap-six-eighths {
    width: 75%;
  }

  /**
  * Fifths
  */
  .lap-one-fifth, .lap-two-tenths {
    width: 20%;
  }

  .lap-two-fifths, .lap-four-tenths {
    width: 40%;
  }

  .lap-three-fifths, .lap-six-tenths {
    width: 60%;
  }

  .lap-four-fifths, .lap-eight-tenths {
    width: 80%;
  }

  /**
  * Sixths
  */
  .lap-one-sixth, .lap-two-twelfths {
    width: 16.666%;
  }

  .lap-five-sixths, .lap-ten-twelfths {
    width: 83.333%;
  }

  /**
  * Eighths
  */
  .lap-one-eighth {
    width: 12.5%;
  }

  .lap-three-eighths {
    width: 37.5%;
  }

  .lap-five-eighths {
    width: 62.5%;
  }

  .lap-seven-eighths {
    width: 87.5%;
  }

  /**
  * Tenths
  */
  .lap-one-tenth {
    width: 10%;
  }

  .lap-three-tenths {
    width: 30%;
  }

  .lap-seven-tenths {
    width: 70%;
  }

  .lap-nine-tenths {
    width: 90%;
  }

  /**
  * Twelfths
  */
  .lap-one-twelfth {
    width: 8.333%;
  }

  .lap-five-twelfths {
    width: 41.666%;
  }

  .lap-seven-twelfths {
    width: 58.333%;
  }

  .lap-eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 480px) {
  /**
  * Whole
  */
  .lap-and-up-one-whole {
    width: 100%;
  }

  /**
  * Halves
  */
  .lap-and-up-one-half, .lap-and-up-six-twelfths, .lap-and-up-five-tenths, .lap-and-up-four-eighths, .lap-and-up-three-sixths, .lap-and-up-two-quarters {
    width: 50%;
  }

  /**
  * Thirds
  */
  .lap-and-up-one-third, .lap-and-up-four-twelfths, .lap-and-up-two-sixths {
    width: 33.333%;
  }

  .lap-and-up-two-thirds, .lap-and-up-eight-twelfths, .lap-and-up-four-sixths {
    width: 66.666%;
  }

  /**
  * Quarters
  */
  .lap-and-up-one-quarter, .lap-and-up-three-twelfths, .lap-and-up-two-eighths {
    width: 25%;
  }

  .lap-and-up-three-quarters, .lap-and-up-nine-twelfths, .lap-and-up-six-eighths {
    width: 75%;
  }

  /**
  * Fifths
  */
  .lap-and-up-one-fifth, .lap-and-up-two-tenths {
    width: 20%;
  }

  .lap-and-up-two-fifths, .lap-and-up-four-tenths {
    width: 40%;
  }

  .lap-and-up-three-fifths, .lap-and-up-six-tenths {
    width: 60%;
  }

  .lap-and-up-four-fifths, .lap-and-up-eight-tenths {
    width: 80%;
  }

  /**
  * Sixths
  */
  .lap-and-up-one-sixth, .lap-and-up-two-twelfths {
    width: 16.666%;
  }

  .lap-and-up-five-sixths, .lap-and-up-ten-twelfths {
    width: 83.333%;
  }

  /**
  * Eighths
  */
  .lap-and-up-one-eighth {
    width: 12.5%;
  }

  .lap-and-up-three-eighths {
    width: 37.5%;
  }

  .lap-and-up-five-eighths {
    width: 62.5%;
  }

  .lap-and-up-seven-eighths {
    width: 87.5%;
  }

  /**
  * Tenths
  */
  .lap-and-up-one-tenth {
    width: 10%;
  }

  .lap-and-up-three-tenths {
    width: 30%;
  }

  .lap-and-up-seven-tenths {
    width: 70%;
  }

  .lap-and-up-nine-tenths {
    width: 90%;
  }

  /**
  * Twelfths
  */
  .lap-and-up-one-twelfth {
    width: 8.333%;
  }

  .lap-and-up-five-twelfths {
    width: 41.666%;
  }

  .lap-and-up-seven-twelfths {
    width: 58.333%;
  }

  .lap-and-up-eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (max-width: 1029px) {
  /**
  * Whole
  */
  .portable-one-whole {
    width: 100%;
  }

  /**
  * Halves
  */
  .portable-one-half, .portable-six-twelfths, .portable-five-tenths, .portable-four-eighths, .portable-three-sixths, .portable-two-quarters {
    width: 50%;
  }

  /**
  * Thirds
  */
  .portable-one-third, .portable-four-twelfths, .portable-two-sixths {
    width: 33.333%;
  }

  .portable-two-thirds, .portable-eight-twelfths, .portable-four-sixths {
    width: 66.666%;
  }

  /**
  * Quarters
  */
  .portable-one-quarter, .portable-three-twelfths, .portable-two-eighths {
    width: 25%;
  }

  .portable-three-quarters, .portable-nine-twelfths, .portable-six-eighths {
    width: 75%;
  }

  /**
  * Fifths
  */
  .portable-one-fifth, .portable-two-tenths {
    width: 20%;
  }

  .portable-two-fifths, .portable-four-tenths {
    width: 40%;
  }

  .portable-three-fifths, .portable-six-tenths {
    width: 60%;
  }

  .portable-four-fifths, .portable-eight-tenths {
    width: 80%;
  }

  /**
  * Sixths
  */
  .portable-one-sixth, .portable-two-twelfths {
    width: 16.666%;
  }

  .portable-five-sixths, .portable-ten-twelfths {
    width: 83.333%;
  }

  /**
  * Eighths
  */
  .portable-one-eighth {
    width: 12.5%;
  }

  .portable-three-eighths {
    width: 37.5%;
  }

  .portable-five-eighths {
    width: 62.5%;
  }

  .portable-seven-eighths {
    width: 87.5%;
  }

  /**
  * Tenths
  */
  .portable-one-tenth {
    width: 10%;
  }

  .portable-three-tenths {
    width: 30%;
  }

  .portable-seven-tenths {
    width: 70%;
  }

  .portable-nine-tenths {
    width: 90%;
  }

  /**
  * Twelfths
  */
  .portable-one-twelfth {
    width: 8.333%;
  }

  .portable-five-twelfths {
    width: 41.666%;
  }

  .portable-seven-twelfths {
    width: 58.333%;
  }

  .portable-eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 1030px) {
  /**
  * Whole
  */
  .desk-one-whole {
    width: 100%;
  }

  /**
  * Halves
  */
  .desk-one-half, .desk-six-twelfths, .desk-five-tenths, .desk-four-eighths, .desk-three-sixths, .desk-two-quarters {
    width: 50%;
  }

  /**
  * Thirds
  */
  .desk-one-third, .desk-four-twelfths, .desk-two-sixths {
    width: 33.333%;
  }

  .desk-two-thirds, .desk-eight-twelfths, .desk-four-sixths {
    width: 66.666%;
  }

  /**
  * Quarters
  */
  .desk-one-quarter, .desk-three-twelfths, .desk-two-eighths {
    width: 25%;
  }

  .desk-three-quarters, .desk-nine-twelfths, .desk-six-eighths {
    width: 75%;
  }

  /**
  * Fifths
  */
  .desk-one-fifth, .desk-two-tenths {
    width: 20%;
  }

  .desk-two-fifths, .desk-four-tenths {
    width: 40%;
  }

  .desk-three-fifths, .desk-six-tenths {
    width: 60%;
  }

  .desk-four-fifths, .desk-eight-tenths {
    width: 80%;
  }

  /**
  * Sixths
  */
  .desk-one-sixth, .desk-two-twelfths {
    width: 16.666%;
  }

  .desk-five-sixths, .desk-ten-twelfths {
    width: 83.333%;
  }

  /**
  * Eighths
  */
  .desk-one-eighth {
    width: 12.5%;
  }

  .desk-three-eighths {
    width: 37.5%;
  }

  .desk-five-eighths {
    width: 62.5%;
  }

  .desk-seven-eighths {
    width: 87.5%;
  }

  /**
  * Tenths
  */
  .desk-one-tenth {
    width: 10%;
  }

  .desk-three-tenths {
    width: 30%;
  }

  .desk-seven-tenths {
    width: 70%;
  }

  .desk-nine-tenths {
    width: 90%;
  }

  /**
  * Twelfths
  */
  .desk-one-twelfth {
    width: 8.333%;
  }

  .desk-five-twelfths {
    width: 41.666%;
  }

  .desk-seven-twelfths {
    width: 58.333%;
  }

  .desk-eleven-twelfths {
    width: 91.666%;
  }
}
/**
 * If you have set the additional `$responsive-extra` variable to ‘true’ in
 * `_vars.scss` then you now have access to the following class available to
 * accomodate much larger screen resolutions.
 */
/* endif */
/*------------------------------------*\
    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $BRAND
\*------------------------------------*/
/**
 * `.brand` is a quick and simple way to apply your brand face and/or color to
 * any element using a handy helper class.
 */
.brand {
  font-family: "rockwell", serif!important;
  color: #1d2e5c!important;
}

.brand-face {
  font-family: "rockwell", serif!important;
}

.brand-color,
.brand-colour {
  color: #1d2e5c!important;
}

/*------------------------------------*\
    $HELPER
\*------------------------------------*/
/**
 * A series of helper classes to use arbitrarily. Only use a helper class if an
 * element/component doesn’t already have a class to which you could apply this
 * styling, e.g. if you need to float `.main-nav` left then add `float:left;` to
 * that ruleset as opposed to adding the `.float--left` class to the markup.
 *
 * A lot of these classes carry `!important` as you will always want them to win
 * out over other selectors.
 */
/**
 * Add/remove floats
 */
.float--right {
  float: right !important;
}

.float--left {
  float: left !important;
}

.float--none {
  float: none !important;
}

/**
 * Text alignment
 */
.text--left {
  text-align: left !important;
}

.text--center {
  text-align: center !important;
}

.text--right {
  text-align: right !important;
}

/**
 * Font weights
 */
.weight--light {
  font-weight: 300 !important;
}

.weight--normal {
  font-weight: 400 !important;
}

.weight--semibold {
  font-weight: 600 !important;
}

/**
 * Add/remove margins
 */
.push {
  margin: 24px !important;
}

.push--top {
  margin-top: 24px !important;
}

.push--right {
  margin-right: 24px !important;
}

.push--bottom {
  margin-bottom: 24px !important;
}

.push--left {
  margin-left: 24px !important;
}

.push--ends {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.push--sides {
  margin-right: 24px !important;
  margin-left: 24px !important;
}

.push-half {
  margin: 12px !important;
}

.push-half--top {
  margin-top: 12px !important;
}

.push-half--right {
  margin-right: 12px !important;
}

.push-half--bottom {
  margin-bottom: 12px !important;
}

.push-half--left {
  margin-left: 12px !important;
}

.push-half--ends {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.push-half--sides {
  margin-right: 12px !important;
  margin-left: 12px !important;
}

.flush {
  margin: 0 !important;
}

.flush--top {
  margin-top: 0 !important;
}

.flush--right {
  margin-right: 0 !important;
}

.flush--bottom {
  margin-bottom: 0 !important;
}

.flush--left {
  margin-left: 0 !important;
}

.flush--ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.flush--sides {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/**
 * Add/remove paddings
 */
.soft {
  padding: 24px !important;
}

.soft--top {
  padding-top: 24px !important;
}

.soft--right {
  padding-right: 24px !important;
}

.soft--bottom {
  padding-bottom: 24px !important;
}

.soft--left {
  padding-left: 24px !important;
}

.soft--ends {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.soft--sides {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

.soft-half {
  padding: 12px !important;
}

.soft-half--top {
  padding-top: 12px !important;
}

.soft-half--right {
  padding-right: 12px !important;
}

.soft-half--bottom {
  padding-bottom: 12px !important;
}

.soft-half--left {
  padding-left: 12px !important;
}

.soft-half--ends {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.soft-half--sides {
  padding-right: 12px !important;
  padding-left: 12px !important;
}

.hard {
  padding: 0 !important;
}

.hard--top {
  padding-top: 0 !important;
}

.hard--right {
  padding-right: 0 !important;
}

.hard--bottom {
  padding-bottom: 0 !important;
}

.hard--left {
  padding-left: 0 !important;
}

.hard--ends {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hard--sides {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/**
 * Pull items full width of `.island` parents.
 */
.full-bleed {
  margin-right: -24px !important;
  margin-left: -24px !important;
}
.islet .full-bleed {
  margin-right: -12px !important;
  margin-left: -12px !important;
}

/**
 * Add a help cursor to any element that gives the user extra information on
 * `:hover`.
 */
.informative {
  cursor: help !important;
}

/**
 * Mute an object by reducing its opacity.
 */
.muted {
  opacity: 0.5 !important;
  filter: alpha(opacity=50) !important;
}

/**
 * Align items to the right where they imply progression/movement forward, e.g.:
 *
   <p class=proceed><a href=#>Read more...</a></p>
 *
 */
.proceed {
  text-align: right !important;
}

/**
 * Add a right-angled quote to links that imply movement, e.g.:
 *
   <a href=# class=go>Read more</a>
 *
 */
.go:after {
  content: " " "»" !important;
}

/**
 * Apply capital case to an element (usually a `strong`).
 */
.caps {
  text-transform: uppercase !important;
}

/**
 * Hide content off-screen without resorting to `display:none;`, also provide
 * breakpoint specific hidden elements.
 */
.accessibility,
.visuallyhidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

@media only screen and (max-width: 479px) {
  .accessibility--palm,
.visuallyhidden--palm {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1029px) {
  .accessibility--lap,
.visuallyhidden--lap {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}
@media only screen and (min-width: 480px) {
  .accessibility--lap-and-up,
.visuallyhidden--lap-and-up {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}
@media only screen and (max-width: 1029px) {
  .accessibility--portable,
.visuallyhidden--portable {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}
@media only screen and (min-width: 1030px) {
  .accessibility--desk,
.visuallyhidden--desk {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}
@media only screen and (min-width: 1284px) {
  .accessibility--desk-wide,
.visuallyhidden--desk-wide {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}
/* endif */
/**
 * She’s all yours, cap’n... Begin importing your stuff here.
 */
/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .slides {
  display: block;
}

* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block;
}

/* FlexSlider Default Theme
*********************************/
.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  zoom: 1;
}

.flex-viewport {
  max-height: 2000px;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
}

.carousel li {
  margin-right: 5px;
}

/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  width: 30px;
  height: 30px;
  margin: -20px 0 0;
  display: block;
  background: url(images/bg_direction_nav.png) no-repeat 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  text-indent: -9999px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
}

.flex-direction-nav .flex-next {
  background-position: 100% 0;
  right: -36px;
}

.flex-direction-nav .flex-prev {
  left: -36px;
}

.flexslider:hover .flex-next {
  opacity: 0.8;
  right: 5px;
}

.flexslider:hover .flex-prev {
  opacity: 0.8;
  left: 5px;
}

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: 0.3 !important;
  filter: alpha(opacity=30);
  cursor: default;
}

/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 20px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: 0.25;
  cursor: pointer;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 0;
  }

  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 0;
  }
}
.fcontrols .flex-control-nav {
  position: static;
}
.fcontrols .flex-control-nav li {
  display: inline-block !important;
  padding: 0 !important;
}
.fcontrols .flex-direction-nav .flex-prev {
  opacity: 1;
  left: 5px;
}
.fcontrols .flex-direction-nav .flex-next {
  opacity: 1;
  right: 5px;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 502;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 503;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  height: 100%;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 505;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 504;
}

.mfp-preloader a {
  color: #cccccc;
}

.mfp-preloader a:hover {
  color: white;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  padding: 0;
  z-index: 506;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
}

.mfp-arrow {
  position: absolute;
  top: 0;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: solid transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  opacity: 0.8;
  border-top-width: 12px;
  border-bottom-width: 12px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 20px;
  border-bottom-width: 20px;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 12px solid black;
  left: 5px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  border-right: 20px solid white;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 12px solid black;
  left: 3px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 20px solid white;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.mfp-figure {
  line-height: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-break: break-word;
  padding-right: 36px;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  /* The shadow behind the image */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
}
@media all and (max-width: 800px) {
  .mfp-arrow {
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    transform-origin: 0;
  }

  .mfp-arrow-right {
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/* Z-INDEX */
.formError {
  z-index: 990;
}

.formError .formErrorContent {
  z-index: 991;
}

.formError .formErrorArrow {
  z-index: 996;
}

.ui-dialog .formError {
  z-index: 5000;
}

.ui-dialog .formError .formErrorContent {
  z-index: 5001;
}

.ui-dialog .formError .formErrorArrow {
  z-index: 5006;
}

.inputContainer {
  position: relative;
  float: left;
}

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left;
}

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
}

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none;
}

.formError .formErrorContent {
  width: 100%;
  background: #D50A0A;
  /*background: #ee0101;*/
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 12px;
  /*border: 2px solid #ddd;*/
  box-shadow: 0 0 2px #000;
  -moz-box-shadow: 0 0 2px #000;
  -webkit-box-shadow: 0 0 2px #000;
  -o-box-shadow: 0 0 2px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
}

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
}

.greenPopup .formErrorContent {
  background: #33be40;
}

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative;
}

body[dir=rtl] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0;
}

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px;
}

.formError .formErrorArrow div {
  /*border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;*/
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block;
}

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
}

.greenPopup .formErrorArrow div {
  background: #33be40;
}

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow .line10 {
  width: 15px;
  border: none;
}

.formError .formErrorArrow .line9 {
  width: 13px;
  border: none;
}

.formError .formErrorArrow .line8 {
  width: 11px;
}

.formError .formErrorArrow .line7 {
  width: 9px;
}

.formError .formErrorArrow .line6 {
  width: 7px;
}

.formError .formErrorArrow .line5 {
  width: 5px;
}

.formError .formErrorArrow .line4 {
  width: 3px;
}

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd;
}

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd;
}

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd;
}

/*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
  /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: 0.5em 0.5em 0.5em 0.7em;
  font-size: 100%;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}

.ui-menu .ui-menu {
  position: absolute;
}

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px 0.4em;
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}

/* icon support */
.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.2em;
  margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-button {
  padding: 0.4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
  /* Support: IE <= 11 */
  overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: 0.4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-controlgroup {
  vertical-align: middle;
  display: inline-block;
}

.ui-controlgroup > .ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
  z-index: 9999;
}

.ui-controlgroup-vertical > .ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

.ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box;
}

.ui-controlgroup .ui-controlgroup-label {
  padding: 0.4em 1em;
}

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}

.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
  border-left: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
  border-top: none;
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {
  /* Support: IE8 only, Android < 4.4 only */
  width: 75%;
  width: calc( 100% - 2.4em );
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: 0.12em;
  border: none;
}

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}

.ui-checkboxradio-disabled {
  pointer-events: none;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: 0.5em;
  top: 0.3em;
}

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle {
  touch-action: none;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25);
  /* support: IE8 */
  opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-selectable {
  touch-action: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}

.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-sortable-handle {
  touch-action: none;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0.222em 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 2em;
}

.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}

.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

.ui-tabs {
  position: relative;
  /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: 0.2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}

body .ui-tooltip {
  border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70);
  /* support: IE8 */
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35);
  /* support: IE8 */
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
  /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("images/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.png");
}

/* positioning */
.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: 0.3;
  filter: Alpha(Opacity=30);
  /* support: IE8 */
}

.ui-widget-shadow {
  box-shadow: 0px 0px 5px #666666;
}

/*!
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome/fontawesome-webfont.eot?v=4.0.3");
  src: url("../fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.0.3") format("embedded-opentype"), url("../fonts/fontawesome/fontawesome-webfont.woff?v=4.0.3") format("woff"), url("../fonts/fontawesome/fontawesome-webfont.ttf?v=4.0.3") format("truetype"), url("../fonts/fontawesome/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: spin 2s infinite linear;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  transform: scale(1, -1);
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before, .breadcrumbs .caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-asc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-desc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-reply-all:before {
  content: "";
}

.fa-mail-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

@font-face {
  font-family: "rockwell";
  src: url("../fonts/rockwell/rockwell_standard/73e6c08f-deb5-4d6f-827b-597a84046aa4.eot");
  src: url("../fonts/rockwell/rockwell_standard/73e6c08f-deb5-4d6f-827b-597a84046aa4.eot?#iefix") format("embedded-opentype"), url("../fonts/rockwell/rockwell_standard/de4b0540-9702-4662-8f3a-228419485257.woff") format("woff"), url("../fonts/rockwell/rockwell_standard/bc34c4cd-af2c-400d-b4d0-726e2d89f690.ttf") format("truetype"), url("../fonts/rockwell/rockwell_standard/59c05ddc-99f9-44db-82ce-cb7f503b5110.svg#Rockwell%20W01") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "rockwell";
  src: url("../fonts/rockwell/rockwell_italic/d34aec13-9ff7-4660-9396-4537a6c7fd1a.eot");
  src: url("../fonts/rockwell/rockwell_italic/d34aec13-9ff7-4660-9396-4537a6c7fd1a.eot?#iefix") format("embedded-opentype"), url("../fonts/rockwell/rockwell_italic/f0c81ebb-e6f4-4a1f-9354-06ac9ad7b262.woff") format("woff"), url("../fonts/rockwell/rockwell_italic/080109cd-e993-4dc4-9c21-b34766eba5aa.ttf") format("truetype"), url("../fonts/rockwell/rockwell_italic/34153597-0d00-4984-ac4e-e9cdc8e6cc0c.svg#Rockwell%20W01%20Italic") format("svg");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "rockwell";
  src: url("../fonts/rockwell/rockwell_bold/864373f8-943b-449d-a730-462eb66d7058.eot");
  src: url("../fonts/rockwell/rockwell_bold/864373f8-943b-449d-a730-462eb66d7058.eot?#iefix") format("embedded-opentype"), url("../fonts/rockwell/rockwell_bold/49ff3af5-13b2-4add-8470-4cdac3cf650e.woff") format("woff"), url("../fonts/rockwell/rockwell_bold/7d69578b-ab0e-4986-af19-428861ada4e4.ttf") format("truetype"), url("../fonts/rockwell/rockwell_bold/2848532f-bf3e-4430-aae1-bc0d1367eb84.svg#Rockwell%20W01%20Bold") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "rockwell";
  src: url("../fonts/rockwell/rockwell_bold_italic/197ebbbd-d981-48a3-9e9a-8d21cc6fff21.eot");
  src: url("../fonts/rockwell/rockwell_bold_italic/197ebbbd-d981-48a3-9e9a-8d21cc6fff21.eot?#iefix") format("embedded-opentype"), url("../fonts/rockwell/rockwell_bold_italic/689e269c-72ae-41f7-9ba9-97e17f883bd5.woff") format("woff"), url("../fonts/rockwell/rockwell_bold_italic/a6940b46-a224-4791-84c5-372aced917b7.ttf") format("truetype"), url("../fonts/rockwell/rockwell_bold_italic/298a903d-4a78-456b-bbcc-f4f6c36611f5#Rockwell%20W01%20Bold%20Italic") format("svg");
  font-weight: bold;
  font-style: italic;
}
.flexslider {
  border-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

p {
  margin-bottom: 1em;
}

ul, ol {
  list-style: none;
  margin: 0;
}

a {
  color: #1d2e5c;
  text-decoration: none;
}
a:hover {
  color: #294183;
}

.heading__link {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: normal;
}
.heading__link a {
  text-decoration: underline;
}

h1, .h1, h2, .h2, h3, .dlist-title, .h3, .checkout-section h2, .checkout-section .h2, h4, .h4, h5, .list-filter__title, .h5, .order-summary h3, h6, .h6 {
  font-family: "rockwell", serif;
}

h2, .h2 {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  color: #003366;
}

.content > h2, .content > .h2 {
  padding-left: 16px;
  padding-left: 1rem;
}
@media screen and (max-width: 1029px) {
  .content > h2, .content > .h2 {
    padding-left: 8px;
    padding-left: 0.5rem;
  }
}

h3, .dlist-title, .h3, .checkout-section h2, .checkout-section .h2 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  color: #003366;
}

object {
  display: block;
}

.content-container {
  padding: 16px;
  padding: 1rem;
}
@media screen and (max-width: 1029px) {
  .content-container {
    padding: 8px;
  }
}

.content-container__home {
  float: left;
  width: 50%;
}
@media screen and (max-width: 1030px) {
  .content-container__home {
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 1029px) {
  .content-container__home {
    padding: 8px;
  }
}

.content-container__left {
  padding: 0 12px 0 0;
}
@media screen and (max-width: 1030px) {
  .content-container__left {
    padding: 0;
  }
}

.content-container__right {
  padding: 0 0 0 12px;
}
@media screen and (max-width: 1030px) {
  .content-container__right {
    padding: 0;
  }
}

.content-noitems {
  min-height: 14em;
}
@media screen and (max-width: 1029px) {
  .content-noitems {
    min-height: none;
  }
}

.breadcrumbs + .content-container {
  padding-top: 0;
}

.content-container1 {
  padding-bottom: 16px;
}

.headings__bar {
  background: #DEDEDE;
  padding: 8px 15px;
  margin-bottom: 10px;
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  -ms-box-shadow: 0 4px 8px -4px black;
  -o-box-shadow: 0 4px 8px -4px black;
  box-shadow: 0 4px 8px -4px black;
}
.headings__bar h1, .headings__bar .h1 {
  float: left;
  margin: 0;
  font-size: 28px;
  font-size: 1.9rem;
  color: #003366;
}
.headings__bar .team-search-cat-list {
  float: left;
  margin-left: 20px;
  margin-top: 12px;
}
.headings__bar .team-search-cat-list span {
  font-size: 13px;
  font-size: 0.813rem;
  font-weight: bold;
}
.headings__bar .sorts {
  float: right;
}
.headings__bar .sorts span {
  font-size: 12px;
  font-size: 0.8125rem;
}
.headings__bar select {
  font-size: 14px;
  font-size: 0.875rem;
}
.headings__bar .sort-team {
  display: inline-block;
  padding: 12px 0 0 0;
  margin: 0;
  margin-right: 16px;
  margin-right: 1rem;
}
.headings__bar .sort-by {
  display: inline-block;
  padding: 12px 0 0 0;
  margin: 0;
}
@media screen and (max-width: 1029px) {
  .headings__bar {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.breadcrumbs {
  padding: 4px 0 0 15px;
  font-size: 14px;
  font-size: 0.875rem;
}
.breadcrumbs .caret-right {
  font-size: 11px;
  font-size: 0.7rem;
}

form {
  font-size: 14px;
}
form .required {
  color: #cc0000;
  font-weight: bold;
}

fieldset {
  padding: 0;
  border: none;
}
fieldset > ul > li {
  margin-bottom: 1em;
}

label {
  display: block;
  font-size: 14px;
}

.field-hint {
  font-size: 13px;
  display: block;
}

.alert-text {
  font-size: 13px;
  color: #cc0000;
  font-weight: bold;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
textarea {
  border: 1px solid #c5c6c9;
  padding: 0.8em 0.5em;
  width: 100%;
  max-width: 30em;
}

textarea {
  min-height: 8em;
  padding: 0.5em;
}

.standardform fieldset > ul > li {
  margin-bottom: 0;
}
.standardform fieldset > ul > li > span {
  margin-bottom: 1em;
  width: 100%;
  max-width: 26em;
  margin-right: 1em;
}
@media screen and (max-width: 1029px) {
  .standardform fieldset > ul > li > span {
    max-width: 22em;
  }
}
@media screen and (max-width: 680px) {
  .standardform fieldset > ul > li > span {
    max-width: none;
  }
}
.standardform input[type=text],
.standardform input[type=password],
.standardform input[type=email],
.standardform input[type=tel],
.standardform textarea {
  max-width: none;
}
.standardform .captcha {
  clear: both;
  margin-bottom: 0;
}
.standardform .standardform__info {
  max-width: none;
}

#reg_country {
  max-width: 300px;
}

.btn, .headings-bar__box .listing-mode-switch li a {
  background: #d94040;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #d94040 0%, #b14040 50%, #940101 51%, #610101 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFD94040", endColorstr="#FF610101",GradientType=0 );
  /* IE6-8 */
  line-height: 2.5;
  color: white;
  font-family: "rockwell", serif;
  text-transform: uppercase;
  border: 1px solid white;
  border-radius: 0.5em;
  -ms-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}
.btn:hover, .headings-bar__box .listing-mode-switch li a:hover {
  background: #7f0101;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #7f0101 0%, #b20101 50%, #b14040 51%, #d94040 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF7F0101", endColorstr="#FFD94040",GradientType=0 );
  /* IE6-8 */
  color: white;
}
@media screen and (max-width: 1029px) {
  .btn, .headings-bar__box .listing-mode-switch li a {
    font-size: 0.875em;
  }
}

.btn-action:after,
input.btn-action:after {
  content: " ";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 0.5em;
  position: relative;
  top: -0.1em;
}
.btn-action:before,
input.btn-action:before {
  content: "";
  margin-left: 0.3em;
}

.btn--action:after,
input.btn--action:after {
  content: " ";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 0.5em;
  position: relative;
  top: -0.1em;
}
.btn--action:before,
input.btn--action:before {
  content: "";
  margin-left: 0.3em;
}
.btn--action.disabled,
input.btn--action.disabled {
  background: #ddd;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #ddd 0%, #ccc 50%, #afafaf 51%, #999 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFDDDDDD", endColorstr="#FF999999",GradientType=0 );
  /* IE6-8 */
}

.btn--small, .btn--mini,
.btn--tiny {
  font-size: 14px;
  line-height: 1.8;
  font-weight: normal;
  padding: 0 1em;
}

.btn--mini,
.btn--tiny {
  font-size: 12px;
}

.btn--primary, .headings-bar__box .listing-mode-switch li.current a {
  background: #d94040;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #d94040 0%, #b14040 50%, #940101 51%, #610101 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFD94040", endColorstr="#FF610101",GradientType=0 );
  /* IE6-8 */
  color: white;
  text-shadow: none;
  border-color: white;
}
.btn--primary:hover, .headings-bar__box .listing-mode-switch li.current a:hover {
  background: #7f0101;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #7f0101 0%, #b20101 50%, #b14040 51%, #d94040 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF7F0101", endColorstr="#FFD94040",GradientType=0 );
  /* IE6-8 */
  color: white;
}

.btn--secondary, .headings-bar__box .listing-mode-switch li a {
  background: #ddd;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #ddd 0%, #ccc 50%, #afafaf 51%, #999 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFDDDDDD", endColorstr="#FF999999",GradientType=0 );
  /* IE6-8 */
  color: #444;
  border-color: #999;
  text-shadow: 0 1px 0 #ddd;
  -ms-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.3);
  -o-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.3);
  box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.3);
}
.btn--secondary:hover, .headings-bar__box .listing-mode-switch li a:hover {
  background: #999;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #999 0%, #afafaf 50%, #ccc 51%, #ddd 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF999999", endColorstr="#FFDDDDDD",GradientType=0 );
  /* IE6-8 */
  color: #444;
}

.btn--disabled {
  background: #ddd;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #ddd 0%, #ccc 50%, #afafaf 51%, #999 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFDDDDDD", endColorstr="#FF999999",GradientType=0 );
  /* IE6-8 */
  color: #444;
  border-color: #999;
  text-shadow: 0 1px 0 #ddd;
  -ms-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.3);
  -o-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.3);
  box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.3);
}
.btn--disabled:hover {
  background: #ddd;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #ddd 0%, #ccc 50%, #afafaf 51%, #999 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFDDDDDD", endColorstr="#FF999999",GradientType=0 );
  /* IE6-8 */
  color: #444;
  cursor: default;
}

.btn-action-buy {
  background: #4079b2;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #4079b2 0%, #3f6f9f 50%, #003f7f 51%, #003367 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF4079B2", endColorstr="#FF003367",GradientType=0 );
  /* IE6-8 */
  -ms-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.3);
  -o-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.3);
  box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.3);
}
.btn-action-buy:hover {
  background: #003367;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #003367 0%, #003f7f 50%, #3f6f9f 51%, #4079b2 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF003367", endColorstr="#FF4079B2",GradientType=0 );
  /* IE6-8 */
}

.btn--action-buy {
  background: #4079b2;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #4079b2 0%, #3f6f9f 50%, #003f7f 51%, #003367 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF4079B2", endColorstr="#FF003367",GradientType=0 );
  /* IE6-8 */
  -ms-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.3);
  -o-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.3);
  box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.3);
}
.btn--action-buy:hover {
  background: #003367;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #003367 0%, #003f7f 50%, #3f6f9f 51%, #4079b2 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF003367", endColorstr="#FF4079B2",GradientType=0 );
  /* IE6-8 */
}

.ie8 .btn, .ie8 .headings-bar__box .listing-mode-switch li a, .headings-bar__box .listing-mode-switch li .ie8 a {
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  border: none;
}

.curated {
  position: absolute;
  width: 100px;
  height: 30px;
  top: 3px;
  background: #04aeef;
  font-size: 12px;
  color: #ffffff;
  left: 2px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.reveal-trigger:after {
  content: "";
  margin-left: 8px;
  font-family: fontAwesome;
}
.reveal-trigger.reveal-is-active:after {
  content: "";
}

@media screen and (max-width: 479px) {
  .reveal-trigger-palm:after {
    content: "";
    margin-left: 8px;
    font-family: fontAwesome;
  }
}
.reveal-trigger-palm.reveal-is-active:after {
  content: "";
}

@media screen and (min-width: 480px) and (max-width: 1029px) {
  .reveal-trigger-lap:after {
    content: "";
    margin-left: 8px;
    font-family: fontAwesome;
  }
}
.reveal-trigger-lap.reveal-is-active:after {
  content: "";
}

.reveal-info {
  font-size: 14px;
}

.tooltip {
  position: relative;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 150px;
  text-transform: capitalize;
  background-color: #fff;
  opacity: 0.9;
  color: #000;
  text-align: center;
  font-size: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  top: -66%;
  left: 60%;
}
.tooltip .tooltiptext a {
  padding: 4px !important;
  border-radius: 0.5em !important;
  font-size: 11px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -10px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent #e0e0e0 transparent transparent;
}

.tooltip .tooltipshow {
  visibility: visible;
}

.table-base {
  font-size: 14px;
  margin-bottom: 16px;
}
.table-base th {
  padding: 0.5em;
  font-weight: bold;
  border-bottom: 1px solid #c5c6c9;
}
.table-base th:first-child {
  padding-left: 0;
}
.table-base td {
  vertical-align: top;
  padding: 0.5em;
  border-bottom: 1px solid #c5c6c9;
}
.table-base td:first-child {
  padding-left: 0;
}

.ie8 .table-base td:first-child,
.ie8 .table-base th:first-child {
  padding-left: 0;
}

.table-responsive {
  width: 100%;
}
.table-responsive thead th {
  display: none;
}
.table-responsive tr {
  display: block;
  border-bottom: 1px solid #c5c6c9;
  padding: 0.5em;
  margin-bottom: 0.5em;
}
.table-responsive td {
  display: block;
  padding: 0;
  border: none;
  overflow: auto;
}
.table-responsive tfoot tr {
  border: none;
  padding: 0;
  margin: 0;
}
.table-responsive tfoot td {
  display: inline-block;
}
.table-responsive .checkout-spacer {
  display: none;
}
.table-responsive tfoot th {
  display: inline-block;
  padding: 0 0 0 0.5em;
  font-weight: bold;
  width: 6em;
  border: none;
}
.table-responsive .item_value {
  padding: 0 0.5em 0 0;
  width: 4em;
  text-align: right;
}
.table-responsive .table-responsive-main-cell {
  padding: 0.5em;
}
@media screen and (max-width: 479px) {
  .table-responsive td[headers]:before {
    font-weight: bold;
  }
  .table-responsive td[headers=bids]:before {
    content: "Bids: ";
  }
  .table-responsive td[headers=current-bid]:before {
    content: "Current Bid: ";
  }
  .table-responsive td[headers=remaining]:before {
    content: "Remaining: ";
  }
  .table-responsive td[headers=quantity]:before {
    content: "Quantity: ";
  }
  .table-responsive td[headers=total]:before {
    content: "Total: ";
  }
  .table-responsive td[headers=name]:before {
    content: "Name: ";
  }
  .table-responsive td[headers=date]:before {
    content: "Date: ";
  }
  .table-responsive td[headers=bid]:before {
    content: "Bid: ";
  }
}
@media (min-width: 480px) {
  .table-responsive tr {
    display: table-row;
    border: none;
  }
  .table-responsive thead th,
.table-responsive td {
    display: table-cell;
    padding: 0.5em;
    border-bottom: 1px solid #c5c6c9;
    width: auto;
  }
  .table-responsive td[headers]:before {
    content: "";
  }
  .table-responsive .numeric {
    text-align: right;
  }
  .table-responsive tfoot td,
.table-responsive tfoot th {
    display: table-cell;
    border: none;
    padding: 0 0.5em;
  }
  .table-responsive .checkout-spacer {
    display: table-cell;
  }
}

.ie8 .table-responsive tr {
  display: table-row;
  border: none;
}
.ie8 .table-responsive thead th,
.ie8 .table-responsive td {
  display: table-cell;
  padding: 0.5em;
  border-bottom: 1px solid #c5c6c9;
  width: auto;
}
.ie8 .table-responsive td[headers]:before {
  content: "";
}
.ie8 .table-responsive .numeric {
  text-align: right;
}
.ie8 .table-responsive tfoot td,
.ie8 .table-responsive tfoot th {
  display: table-cell;
  border: none;
  padding: 0 0.5em;
}
.ie8 .table-responsive .checkout-spacer {
  display: table-cell;
}

.msg {
  padding: 8px 8px 0;
  margin-top: 1em;
  margin-bottom: 16px;
  border: 1px solid #c5c6c9;
  border-radius: 4px;
  background: white;
  position: relative;
}
.msg p {
  font-size: 0.875em;
  margin-bottom: 8px;
}
.msg .remove-parent {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
}
.msg.msg-error {
  color: #cc0000;
  border-color: #ff3333;
}
.msg.msg-error .icon-remove-sign {
  color: #cc0000;
}
.msg.msg-success {
  color: #003366;
  border-color: #004d99;
}
.msg.msg-success .icon-remove-sign {
  color: #003366;
}
.msg.content-container {
  padding: 0.5em 1.5em 0 0.5em;
  padding-bottom: 0;
  margin-left: 16px;
  margin-right: 16px;
}
@media screen and (max-width: 1029px) {
  .msg.content-container {
    margin-left: 8px;
    margin-right: 8px;
  }
}
.todo,
.todo * {
  background: yellow;
}

.user-warning {
  font-weight: bold;
  color: #cc0000;
}

.white-popup-block {
  background: white;
  max-width: 40em;
  font-size: 0.875em;
  margin: 0 auto;
  padding: 1em;
  position: relative;
}
.white-popup-block h1, .white-popup-block .h1 {
  font-size: 1.4em;
}

#livebid-note h4, #livebid-note .h4 {
  margin: 10px 0;
}
#livebid-note p {
  margin-bottom: 16px;
}
#livebid-note ul li {
  display: inline-block;
  padding: 0 16px 0 0;
}

.popup-nav {
  text-align: center;
  margin-bottom: 0;
}
.popup-nav .btn, .popup-nav .headings-bar__box .listing-mode-switch li a, .headings-bar__box .listing-mode-switch li .popup-nav a {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
@media screen and (max-width: 480px) {
  .popup-nav .btn, .popup-nav .headings-bar__box .listing-mode-switch li a, .headings-bar__box .listing-mode-switch li .popup-nav a {
    width: 100%;
    display: block;
    margin: 0 0 1rem;
  }
  .popup-nav .btn:last-child, .popup-nav .headings-bar__box .listing-mode-switch li a:last-child, .headings-bar__box .listing-mode-switch li .popup-nav a:last-child {
    margin-bottom: 0;
  }
}

iframe {
  width: 100%;
}

.oc-seller-item {
  -webkit-transition: opacity 0.3s ease;
}
.oc-seller-item--disabled {
  opacity: 0.3;
}
.oc-seller-item--disabled .prd__checkbox input,
.oc-seller-item--disabled .prd__remove,
.oc-seller-item--disabled .updown {
  display: none;
}
.ie8 .oc-seller-item--disabled h3 a, .ie8 .oc-seller-item--disabled .dlist-title a, .ie8 .oc-seller-item--disabled .h3 a, .ie8 .oc-seller-item--disabled .checkout-section h2 a, .checkout-section .ie8 .oc-seller-item--disabled h2 a, .ie8 .oc-seller-item--disabled .checkout-section .h2 a, .checkout-section .ie8 .oc-seller-item--disabled .h2 a, .ie8 .oc-seller-item--disabled td, .ie8 .oc-seller-item--disabled td * {
  color: #bbb;
}

.hide, .is-hidden {
  display: none;
}

@media (max-width: 479px) {
  .hide-palm, .main-header .user-widget .user-cart-display, .user-widget {
    display: none !important;
  }
}

@media (max-width: 1029px) and (min-width: 480px) {
  .hide-lap, .main-header .user-widget .user-cart-display, .user-widget {
    display: none !important;
  }
}

@media (min-width: 1030px) {
  .hide-desk, .nav-primary > ul > li.nav-home-link {
    display: none;
  }
}

@media (min-width: 1284px) {
  .hide-desk-wide, .nav-search > ul > li.nav-teams {
    display: none;
  }
}

.ie8 .hide-desk, .ie8 .nav-primary > ul > li.nav-home-link {
  display: none;
}

.flexslider {
  border-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

.dev {
  background: white !important;
  color: #333 !important;
  padding: 1rem !important;
}

.shipping-message {
  border: 1px solid #04aeef;
  padding: 16px;
  padding: 1rem;
  margin: 16px 0;
  margin: 1rem 0;
}
.shipping-message ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 32px;
  padding-left: 2rem;
  margin: 16px 0;
  margin: 1rem 0;
}
.shipping-message ol a {
  text-decoration: underline;
}
.shipping-message label {
  font-size: 12px;
  font-weight: bold;
}
.shipping-message :last-child {
  margin-bottom: 0;
}

@media screen {
  .sr-only {
    display: none;
  }
}

.item-list__container {
  background: white;
}

.item-list__title_main {
  background: #dedede;
  font-size: 24px;
  border-bottom: 1px solid white;
  margin-bottom: 0;
  -ms-box-shadow: 0 3px 3px #ccc;
  -o-box-shadow: 0 3px 3px #ccc;
  box-shadow: 0 3px 3px #ccc;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #036;
  padding: 0.1em 8px;
  line-height: 1.5em;
}

.item-list__item {
  margin-bottom: 16px;
  padding: 16px;
  border-bottom: 1px solid #909398;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 479px) {
  .item-list__item {
    margin: 0;
    padding: 8px;
  }
}
.item-list__item .item-list__item__image {
  float: left;
  width: 32%;
  max-width: 175px;
  padding-right: 16px;
  padding-right: 1rem;
}
.item-list__item .item-list__item__content {
  padding-left: 195px;
}
@media screen and (max-width: 595px) {
  .item-list__item .item-list__item__content {
    float: none;
    padding-left: 32%;
  }
}
.item-list__item .item-list__item__title {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 479px) {
  .item-list__item .item-list__item__title {
    font-size: 16px;
    margin-bottom: 4px;
  }
}
.item-list__item .item-list__item__title a {
  color: #cc0000;
}
.item-list__item .item-list__item__mobrefId {
  font-size: 14px;
  font-size: 0.7em;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  font-weight: bold;
}
@media screen and (min-width: 1030px) {
  .item-list__item .item-list__item__mobrefId {
    font-size: 0.875rem;
  }
}
.item-list__item .item-list__item__time-close {
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1029px) {
  .item-list__item .item-list__item__time-close {
    margin-bottom: 0;
  }
}
.item-list__item .item-list__item__partner-logo {
  float: left;
  width: 100px;
  height: 58px;
  margin-right: 1em;
}
.item-list__item .item-list__item__current-bid {
  float: left;
  height: 58px;
  line-height: 58px;
  font-family: "rockwell", serif;
  color: #003366;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem;
}
.item-list__item .item-list__item__current-bid > span {
  padding-left: 10px;
  font-size: 11px;
}
.item-list__item .item-list__item__current-bid > span.met:after {
  content: " ";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 1.5em;
  color: #81a66b;
  position: relative;
  top: 0.1em;
}
.item-list__item .item-list__item__current-bid > span.not-met:after {
  content: " ";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 1.5em;
  color: #D04040;
  position: relative;
  top: 0.1em;
}
@media screen and (max-width: 479px) {
  .item-list__item .item-list__item__current-bid {
    height: auto;
    line-height: 1;
    font-size: 14px;
  }
}
.item-list__item .item-list__item__action {
  float: right;
  text-align: right;
}
.item-list__item .item-list__item__action > span {
  display: block;
  font-size: 0.8125em;
  text-transform: uppercase;
  margin-bottom: 8px;
  margin-bottom: 2px;
  line-height: 1;
}
@media screen and (max-width: 650px) {
  .item-list__item .item-list__item__action {
    display: none;
  }
}
@media screen and (max-width: 1029px) {
  .item-list__item .item-list__item__partner-logo {
    display: none;
  }
}
@media screen and (max-width: 479px) {
  .item-list__item .item-list__item__time-close,
.item-list__item .item-list__item__action {
    display: none;
  }
}

.item-list__footer {
  margin: 16px;
}
@media screen and (max-width: 479px) {
  .item-list__footer {
    margin: 8px;
  }
}

.item-list__item--home {
  margin-bottom: 10px;
  padding: 10px 16px;
}
.item-list__item--home .item-list__item__title {
  min-height: 110px;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.2rem;
}
@media screen and (max-width: 479px) {
  .item-list__item--home .item-list__item__title {
    font-size: 16px;
    margin-bottom: 4px;
  }
}
.item-list__item--home .item-list__item__title a {
  color: #cc0000;
}
.item-list__item--home .item-list__item__time-close {
  font-size: 0.85rem;
}
.item-list__item--home .item-list__item__action {
  min-height: 60px;
}

.breadcrumbs {
  padding: 0;
  margin-bottom: 16px;
}
.breadcrumbs .caret-right {
  font-family: fontAwesome;
}

.content > .breadcrumbs {
  padding: 0 16px;
  text-transform: capitalize;
}
@media screen and (max-width: 1029px) {
  .content > .breadcrumbs {
    padding: 0 8px;
  }
}

.vcard {
  margin-bottom: 16px;
}
.vcard p {
  margin: 0;
}

.content-container.vcard {
  margin-bottom: 0;
}

.content-container.vcard + .content-container {
  padding-top: 0;
}

.prd {
  overflow: auto;
}

.prd-header img {
  max-width: 150px;
}
.prd-header > h3, .prd-header > .dlist-title, .prd-header > .h3, .checkout-section .prd-header > h2, .checkout-section .prd-header > .h2 {
  font-size: 1.2em;
}

.prd-img {
  float: left;
  max-height: 150px;
  width: auto;
  margin: 0 1em 0 0;
  border: 1px solid #c5c6c9;
}

.prd-max-bid {
  font-weight: bold;
  color: #cc0000;
}

.prd-current-bid {
  font-weight: bold;
}

.sharing__social {
  text-align: center;
  font-size: 14px;
}
.sharing__social li {
  display: inline-block;
  margin: 0 0.5em;
  height: 31px;
  vertical-align: top;
}
.sharing__social .fb-share-button {
  position: relative;
  top: -1px;
}

.ie8 .sharing__social .fb-share-button {
  width: 58px;
}

.img-zoom-container {
  position: relative;
}
.img-zoom-container:hover .img-zoom-trigger {
  opacity: 0.6;
}
.img-zoom-container:hover .img-zoom-trigger:hover {
  opacity: 0.9;
}

.img-zoom-trigger {
  cursor: pointer;
  position: absolute;
  right: 4%;
  top: 2%;
  z-index: 100;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  opacity: 0.4;
  box-shadow: 0 0 1px rgba(180, 180, 180, 0.3);
  background: black;
  font-weight: normal;
  text-align: center;
}
.img-zoom-trigger:hover {
  text-decoration: none;
}
.img-zoom-trigger:after {
  content: "";
  font-family: "FontAwesome";
  color: white;
}
.img-zoom-trigger.is-open:after {
  content: "";
}

.breadcrumbs.list-style {
  float: left;
}

.pag {
  float: right;
  text-align: right;
}
.pag ul li,
.pag ol li {
  font-size: 0.9rem;
  display: inline-block;
  margin-left: 4px;
}
.pag ul li.pag-current,
.pag ol li.pag-current {
  background: #CCCCCC;
  padding: 0 4px;
  border: 1px solid #999999;
}

.pagination--user.pag {
  float: none;
  text-align: center;
}
.pagination--user.pag a {
  text-decoration: underline;
}
.pagination--user.pag .disabled-link {
  color: #999;
}

body {
  background: url(../img/bg-tile.jpg) center top;
  color: #333;
}
@media screen and (max-width: 969px) {
  body {
    background: none;
  }
}

#page {
  max-width: 970px;
  margin: 16px auto;
  background: white;
  border-radius: 16px;
  -ms-box-shadow: 0 0 32px black;
  -o-box-shadow: 0 0 32px black;
  box-shadow: 0 0 32px black;
}
@media screen and (max-width: 969px) {
  #page {
    border-radius: 0;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    margin: 0 auto;
  }
}

.page-title {
  padding: 8px 16px;
  height: auto;
}
@media screen and (max-width: 1029px) {
  .page-title {
    padding: 8px;
  }
}

.wrap, .breadcrumbs, .listing-mode-switch--tabs {
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
}

.main-header {
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
}

.global-home-link {
  position: absolute;
  top: 16px;
  top: 1.7rem;
  right: 24px;
  right: 1.5rem;
  color: white;
  font-family: "rockwell", serif;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
}

.global-home-link:hover {
  color: #ebebeb;
  text-decoration: underline;
}

.logo-mc-mlb-prefer {
  position: absolute;
  display: block;
  top: 20px;
  right: 210px;
}
@media screen and (max-width: 1029px) {
  .logo-mc-mlb-prefer {
    display: none;
  }
}

#main-nav-reveal {
  color: white;
  font-size: 1.25em;
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 1px 8px 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}
#main-nav-reveal:after {
  content: none;
}
@media screen and (min-width: 480px) {
  #main-nav-reveal {
    top: 24px;
    right: 16px;
  }
}

@media screen and (max-width: 1029px) {
  #main-nav {
    display: none;
  }
}

.branding {
  display: block;
  color: white;
  text-decoration: none;
  padding: 5px 0 5px 10px;
}
@media screen and (max-width: 479px) {
  .branding {
    padding: 8px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 480px) and (max-width: 1029px) {
  .branding {
    padding: 20px 0 8px 16px;
    margin-bottom: 0;
  }
}
.branding h1, .branding .h1 {
  margin: 0;
}
.branding h1 img, .branding .h1 img {
  display: block;
}
@media screen and (max-width: 479px) {
  .branding h1, .branding .h1 {
    max-width: 75%;
    padding: 0;
  }
}
.branding p {
  font-family: "rockwell", serif;
  font-weight: bold;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 479px) {
  .branding p {
    font-size: 0.625em;
  }
}

.nav-search {
  background: url(../img/bg-nav-search.jpg) no-repeat right top;
  background-size: cover;
  float: left;
  border-radius: 16px 16px 0 0;
  -ms-box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 879px) {
  .nav-search {
    font-size: 0.875rem;
  }
}
.nav-search ul {
  list-style: none;
  margin: 0;
}
.nav-search > ul > li {
  position: relative;
  display: inline-block;
}
.nav-search > ul > li > a {
  font-family: "rockwell", serif;
  font-weight: bold;
  color: #003366;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  height: 3em;
  line-height: 3em;
  padding: 0.2em 0.7em 0;
  text-shadow: 0 0 3px white;
  border-left: 2px solid #103c65;
}
.nav-search > ul > li:first-child > a {
  border: none;
}
.nav-search ul ul {
  position: absolute;
  left: 0;
  top: 3em;
  display: none;
  background-color: #000;
  z-index: 10;
  white-space: nowrap;
  min-width: 100%;
  padding: 0.3em 0 0.7em;
  line-height: 1.3;
  -ms-box-shadow: 0 0 5px #333;
  -o-box-shadow: 0 0 5px #333;
  box-shadow: 0 0 5px #333;
  border-radius: 0 0 16px 16px;
  font-family: "rockwell", serif;
}
.nav-search ul ul li {
  height: 23px;
}
.nav-search ul ul li:hover {
  background: #ccc;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #ccc 0%, #aaa 50%, #999 51%, #666 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFCCCCCC", endColorstr="#FF666666",GradientType=0 );
  /* IE6-8 */
}
.nav-search ul ul li a {
  font-size: 13px;
  font-size: 0.8125rem;
  display: block;
  width: 100%;
  padding: 3px 0.5em;
  color: white;
}
.nav-search ul ul li a:hover {
  color: white;
}
@media screen and (min-width: 1030px) {
  .nav-search li:hover > ul {
    display: block;
  }
}
@media screen and (max-width: 1029px) {
  .nav-search {
    font-size: 13px;
    width: 100%;
    background: none;
    border-radius: 0;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
  }
  .nav-search a {
    height: 3em;
    line-height: 3em;
    text-shadow: 1px 1px 0 #333;
  }
  .nav-search > ul > li {
    display: block;
    width: 100%;
  }
  .nav-search > ul > li > a {
    font-weight: normal;
    background: #aaa;
    /* Old browsers */
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, #aaa 0%, #999 50%, #777 51%, #444 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFAAAAAA", endColorstr="#FF444444",GradientType=0 );
    /* IE6-8 */
    padding: 0 8px;
    color: white;
    text-shadow: none;
  }
  .nav-search > ul > li:first-child a {
    border: none;
  }
  .nav-search ul ul {
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
    padding: 0;
  }
  .nav-search ul ul li {
    height: auto;
  }
  .nav-search ul ul li a {
    background: #ccc;
    /* Old browsers */
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, #ccc 0%, #aaa 50%, #999 51%, #666 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFCCCCCC", endColorstr="#FF666666",GradientType=0 );
    /* IE6-8 */
    display: block;
    padding: 0 8px 0 16px;
    color: white;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.7);
  }
  .nav-search ul ul li a:hover {
    background: #ccc;
    /* Old browsers */
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, #ccc 0%, #aaa 50%, #999 51%, #666 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFCCCCCC", endColorstr="#FF666666",GradientType=0 );
    /* IE6-8 */
  }
}

.ie8 .nav-search li:hover ul {
  display: block;
}
.ie8 .nav-search > ul > li {
  display: block;
  float: left;
}
.ie8 .nav-search > ul > li.nav-teams {
  display: none;
}

.nav-only-mobile {
  display: none !important;
}
@media screen and (max-width: 1029px) {
  .nav-only-mobile {
    display: block !important;
  }
}

@media screen and (min-width: 1030px) {
  .nav-sub .has-sub:after {
    font-family: "FontAwesome";
    content: "";
    font-size: 0.85em;
    margin-left: 0.5rem;
  }
}

#nav-search__teams li div.logo-list {
  background-image: url("../img/team_sprite.png");
  background-repeat: no-repeat;
  padding-top: 1px;
  padding-left: 24px;
}
#nav-search__teams li div.diamondbacks {
  background-position: -2px -4px;
  height: 17px;
}
#nav-search__teams li div.braves {
  background-position: -2px -26px;
  height: 19px;
}
#nav-search__teams li div.orioles {
  background-position: -2px -49px;
  height: 19px;
}
#nav-search__teams li div.bosox {
  background-position: -2px -72px;
  height: 20px;
}
#nav-search__teams li div.cubs {
  background-position: -2px -95px;
  height: 20px;
}
#nav-search__teams li div.chisox {
  background-position: -2px -118px;
  height: 20px;
}
#nav-search__teams li div.reds {
  background-position: -2px -143px;
  height: 15px;
}
#nav-search__teams li div.guardians {
  background-position: -2px -164px;
  height: 20px;
}
#nav-search__teams li div.rockies {
  background-position: -2px -187px;
  height: 20px;
}
#nav-search__teams li div.tigers {
  background-position: -2px -210px;
  height: 20px;
}
#nav-search__teams li div.astros {
  background-position: -2px -235px;
  height: 17px;
}
#nav-search__teams li div.royals {
  background-position: -2px -256px;
  height: 20px;
}
#nav-search__teams li div.angels {
  background-position: -2px -278px;
  height: 20px;
}
#nav-search__teams li div.dodgers {
  background-position: -2px -302px;
  height: 20px;
}
#nav-search__teams li div.marlins {
  background-position: -2px -325px;
  height: 19px;
}
#nav-search__teams li div.brewers {
  background-position: -2px -348px;
  height: 20px;
}
#nav-search__teams li div.twins {
  background-position: -2px -371px;
  height: 20px;
}
#nav-search__teams li div.mets {
  background-position: -2px -394px;
  height: 20px;
}
#nav-search__teams li div.yankees {
  background-position: -2px -417px;
  height: 20px;
}
#nav-search__teams li div.athletics {
  background-position: -2px -441px;
  height: 17px;
}
#nav-search__teams li div.phillies {
  background-position: -2px -463px;
  height: 20px;
}
#nav-search__teams li div.pirates {
  background-position: -2px -486px;
  height: 20px;
}
#nav-search__teams li div.padres {
  background-position: -2px -509px;
  height: 20px;
}
#nav-search__teams li div.giants {
  background-position: -2px -532px;
  height: 20px;
}
#nav-search__teams li div.mariners {
  background-position: -2px -555px;
  height: 20px;
}
#nav-search__teams li div.cardinals {
  background-position: -2px -578px;
  height: 20px;
}
#nav-search__teams li div.rays {
  background-position: -2px -602px;
  height: 18px;
}
#nav-search__teams li div.rangers {
  background-position: -2px -624px;
  height: 19px;
}
#nav-search__teams li div.jays {
  background-position: -2px -647px;
  height: 18px;
}
#nav-search__teams li div.nationals {
  background-position: -2px -670px;
  height: 20px;
}
#nav-search__teams li div.none {
  background-position: -2px -694px;
  height: 20px;
}
@media screen and (max-width: 1029px) {
  #nav-search__teams li div.logo-list {
    background-image: url("../img/team_sprite1.png");
    background-repeat: no-repeat;
    padding: 0;
  }
}

.site-search {
  float: right;
  margin-right: 24px;
  margin-right: 1.5rem;
}
@media screen and (max-width: 1029px) {
  .site-search {
    padding: 0 8px;
    margin: 0 0 8px;
    float: none;
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1029px) {
  .site-search {
    padding: 0 16px;
  }
}
.site-search input, .site-search label {
  float: left;
  display: block;
}
.site-search label {
  font-family: "rockwell", serif;
  text-transform: uppercase;
  color: white;
  margin-right: 0.5em;
  height: 30px;
  line-height: 30px;
  font-weight: bold;
}
@media screen and (max-width: 1283px) {
  .site-search label {
    display: none;
  }
}
.site-search input[type=search],
.site-search input[type=text] {
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px solid #aaa;
  width: 160px;
  height: 28px;
  line-height: 28px;
  margin-right: 0.5em;
  background: #3b3b3b;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to right, #3b3b3b 0%, #666 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF3B3B3B", endColorstr="#FF666666",GradientType=1 );
  /* IE6-8 */
  -ms-box-shadow: inset 0 0 10px #000;
  -o-box-shadow: inset 0 0 10px #000;
  box-shadow: inset 0 0 10px #000;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  color: white;
  font-size: 0.8125em;
  padding: 0 0.5em;
}
@media screen and (max-width: 1029px) {
  .site-search input[type=search],
.site-search input[type=text] {
    width: 78%;
    float: left;
    margin-right: 0;
  }
}
@media screen and (min-width: 480px) and (max-width: 1029px) {
  .site-search input[type=search],
.site-search input[type=text] {
    margin-right: 0.5em;
  }
}
.site-search input[type=submit] {
  font-family: "rockwell", serif;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px solid #aaa;
  color: white;
  height: 28px;
  line-height: 24px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  background: #d94040;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #d94040 0%, #b14040 50%, #940101 51%, #610101 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFD94040", endColorstr="#FF610101",GradientType=0 );
  /* IE6-8 */
}
.site-search input[type=submit]:hover {
  background: #7f0101;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #7f0101 0%, #b20101 50%, #b14040 51%, #d94040 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF7F0101", endColorstr="#FFD94040",GradientType=0 );
  /* IE6-8 */
}
@media screen and (max-width: 479px) {
  .site-search input[type=submit] {
    width: 20%;
    float: right;
  }
}

.nav-primary {
  clear: both;
  background-color: #f00;
  overflow: visible;
  whitespace: nowrap;
  border-radius: 0 16px 0 0;
  background: #d94040;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #d94040 0%, #b14040 50%, #940101 51%, #610101 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFD94040", endColorstr="#FF610101",GradientType=0 );
  /* IE6-8 */
  text-shadow: 1px 1px 0 #333;
  padding-left: 0.7em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 879px) {
  .nav-primary {
    font-size: 0.8125rem;
  }
}
.nav-primary a {
  color: white;
  font-family: "rockwell", serif;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0;
  white-space: nowrap;
}
.nav-primary ul {
  margin-left: 0;
  list-style: none;
}
.nav-primary > ul {
  margin-bottom: 0;
}
.nav-primary > ul > li {
  display: inline-block;
  position: relative;
  margin-right: 6px;
}
.nav-primary > ul > li:after {
  content: " |";
  margin-left: 6px;
  color: white;
}
.nav-primary > ul > li > a {
  height: 3em;
  line-height: 3em;
  margin-left: 0;
}
.nav-primary > ul > li:last-child:after {
  content: none;
}
.nav-primary ul ul {
  display: none;
  position: absolute;
  top: 3em;
  left: 0;
  background: #951e1e;
  z-index: 10;
  border-radius: 0 0 16px 16px;
}
.nav-primary ul ul li > a {
  height: 2.5em;
  line-height: 2.5em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  width: 100%;
  padding: 0 1em;
}
.nav-primary ul ul li > a:hover {
  background-color: #a22020;
}
.nav-primary ul ul li:last-child a {
  height: auto;
  border-radius: 0 0 16px 16px;
}
.nav-primary li:hover {
  cursor: pointer;
}
@media screen and (min-width: 1030px) {
  .nav-primary li:hover > ul {
    display: block;
  }
}
@media screen and (max-width: 1029px) {
  .nav-primary {
    padding: 0;
    background: none;
  }
  .nav-primary > ul > li {
    display: block;
    width: 100%;
  }
  .nav-primary > ul > li:after {
    content: none;
  }
  .nav-primary > ul > li a {
    background: #d94040;
    /* Old browsers */
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, #d94040 0%, #b14040 50%, #940101 51%, #610101 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFD94040", endColorstr="#FF610101",GradientType=0 );
    /* IE6-8 */
    padding: 0 8px;
    display: block;
  }
  .nav-primary ul ul {
    position: relative;
    top: 0;
    left: 0;
  }
  .nav-primary ul ul li > a {
    padding-left: 16px;
    border: none;
    background: #aaa;
    /* Old browsers */
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, #aaa 0%, #999 50%, #777 51%, #444 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFAAAAAA", endColorstr="#FF444444",GradientType=0 );
    /* IE6-8 */
  }
}
.nav-primary ul.nav-left {
  display: inline-block;
}
@media screen and (max-width: 1029px) {
  .nav-primary ul.nav-left {
    display: block;
  }
}
.nav-primary ul.nav-right {
  display: inline-block;
  float: right;
  margin-right: 1%;
}
@media screen and (max-width: 1029px) {
  .nav-primary ul.nav-right {
    display: block;
    float: none;
    margin-right: 0;
  }
}

.ie8 .nav-primary ul li:hover ul {
  display: block;
}

.push-header {
  background: #3b3b3b;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to right, #3b3b3b 0%, #666 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF3B3B3B", endColorstr="#FF666666",GradientType=1 );
  /* IE6-8 */
  margin-bottom: 0;
  height: 2.5em;
  line-height: 2.5em;
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-style: italic;
  -ms-box-shadow: inset 0 0 10px #000;
  -o-box-shadow: inset 0 0 10px #000;
  box-shadow: inset 0 0 10px #000;
  text-shadow: 2px 2px 2px #333;
  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
}

.main-header.mlb {
  background: #003366 url(../img/bg-dirt-top.jpg);
}

.main-header.diamondbacks {
  background: #666666 url(../img/bg-header/bg-dirt-diamondbacks.jpg);
}

.main-header.braves {
  background: #13274f url(../img/bg-header/bg-dirt-braves.jpg);
}

.main-header.orioles {
  background: #df4601 url(../img/bg-header/bg-dirt-orioles.jpg);
}

.main-header.bosox {
  background: #0D2B56 url(../img/bg-header/bg-dirt-bosox.jpg);
}

.main-header.cubs {
  background: #0E3386 url(../img/bg-header/bg-dirt-cubs.jpg);
}

.main-header.reds {
  background: #C6011F url(../img/bg-header/bg-dirt-reds.jpg);
}

.main-header.indians {
  background: #002b5c url(../img/bg-header/bg-dirt-indians.jpg);
}

.main-header.rockies {
  background: #333366 url(../img/bg-header/bg-dirt-rockies.jpg);
}

.main-header.tigers {
  background: #0C2C56 url(../img/bg-header/bg-dirt-tigers.jpg);
}

.main-header.chisox {
  background: #85888b url(../img/bg-header/bg-dirt-chisox.jpg);
}

.main-header.astros {
  background: #002d62 url(../img/bg-header/bg-dirt-astros.jpg);
}

.main-header.royals {
  background: #004687 url(../img/bg-header/bg-dirt-royals.jpg);
}

.main-header.angels {
  background: #ba0021 url(../img/bg-header/bg-dirt-angels.jpg);
}

.main-header.dodgers {
  background: #005A9C url(../img/bg-header/bg-dirt-dodgers.jpg);
}

.main-header.marlins {
  background: #0077C8 url(../img/bg-header/bg-dirt-marlins.jpg);
}

.main-header.brewers {
  background: #0a2351 url(../img/bg-header/bg-dirt-brewers.jpg);
}

.main-header.twins {
  background: #002b5c url(../img/bg-header/bg-dirt-twins.jpg);
}

.main-header.mets {
  background: #002d72 url(../img/bg-header/bg-dirt-mets.jpg);
}

.main-header.yankees {
  background: #132448 url(../img/bg-header/bg-dirt-yankees.jpg);
}

.main-header.athletics {
  background: #003831 url(../img/bg-header/bg-dirt-athletics.jpg);
}

.main-header.phillies {
  background: #284898 url(../img/bg-header/bg-dirt-phillies.jpg);
}

.main-header.pirates {
  background: #000000 url(../img/bg-header/bg-dirt-pirates.jpg);
}

.main-header.padres {
  background: #b3a369 url(../img/bg-header/bg-dirt-padres.jpg);
}

.main-header.giants {
  background: #FD5A1E url(../img/bg-header/bg-dirt-giants.jpg);
}

.main-header.mariners {
  background: #0c2c56 url(../img/bg-header/bg-dirt-mariners.jpg);
}

.main-header.cardinals {
  background: #C41E3A url(../img/bg-header/bg-dirt-cardinals.jpg);
}

.main-header.rays {
  background: #092c5c url(../img/bg-header/bg-dirt-rays.jpg);
}

.main-header.rangers {
  background: #003278 url(../img/bg-header/bg-dirt-rangers.jpg);
}

.main-header.jays {
  background: #134a8e url(../img/bg-header/bg-dirt-jays.jpg);
}

.main-header.nationals {
  background: #ab0003 url(../img/bg-header/bg-dirt-nationals.jpg);
}

.main-header.mlbpaa {
  background: #003366 url(../img/bg-header/bg-dirt-mlbpaa.jpg);
}

.main-header.steiner {
  background: #00457c url(../img/bg-header/bg-dirt-steiner.jpg);
}

.main-header.mountedMemories {
  background: #1a4278 url(../img/bg-header/bg-dirt-mountedMemories.jpg);
}

.main-header.highlandMint {
  background: #85888b url(../img/bg-header/bg-dirt-highlandMint.jpg);
}

.main-header.sportsbuy {
  background: #85888b url(../img/bg-header/bg-dirt-sportsbuy.jpg);
}

.main-header.maytag {
  background: #85888b url(../img/bg-header/bg-custom-maytag.jpg);
}

.main-header.wbc {
  background: #0093d0 url(../img/bg-header/bg-dirt-wbc.jpg);
}

.main-footer {
  padding-top: 8px;
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-repeat: no-repeat;
  background-position: center top;
  -ms-box-shadow: inset 0 8px 16px -6px black;
  -o-box-shadow: inset 0 8px 16px -6px black;
  box-shadow: inset 0 8px 16px -6px black;
}

.footer-nav {
  border-top: 1px solid #94c1da;
  border-bottom: 1px solid #94c1da;
  padding: 1em;
  margin: 0 2em;
}
.footer-nav a {
  color: white;
  font-family: "rockwell", serif;
  text-transform: uppercase;
  font-size: 0.875em;
  padding-right: 1em;
}
.footer-nav a:before {
  content: "| ";
  padding-right: 1em;
}
@media screen and (max-width: 479px) {
  .footer-nav a {
    font-family: "rockwell", serif;
    font-size: 13px;
  }
  .footer-nav a:before {
    content: none;
  }
}
@media screen and (max-width: 479px) {
  .footer-nav li {
    display: block;
  }
}
.footer-nav li:first-child a:before {
  content: none;
}
@media screen and (max-width: 479px) {
  .footer-nav li.hide-mobile {
    display: none;
  }
}

.main-footer .fineprint {
  margin: 16px 24px;
  margin: 1rem 1.5rem;
  font-size: 10px;
  font-size: 0.625rem;
  color: white;
  text-align: center;
  text-transform: uppercase;
}
.main-footer .fineprint p {
  margin-bottom: 0.5em;
}
.main-footer .fineprint p .legalLink {
  font-size: 0.625rem;
  color: white;
}
.main-footer .fineprint p .legalLink:hover {
  text-decoration: underline;
}

.power_container {
  width: 210px;
  background-color: #fff;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  font-family: "Raleway", sans-serif;
  line-height: 1;
  text-align: left;
  font-size: 14px;
  box-sizing: border-box;
  padding: 5px;
  margin: auto;
}

.powered_by {
  font-size: 6px;
  color: #084B7A;
  margin: 2px 0 2px 0;
}

.cd_logo {
  margin: 3px 10px 4px 0;
}

.commerce_text {
  color: #1DA5DA;
  font-weight: 700;
}

.dynamics_text {
  color: #084B7A;
  line-height: 0.9;
  margin-bottom: 3px;
  letter-spacing: 1.2px;
}

.marketplaces {
  font-size: 6px;
  margin-top: 1px;
  color: #000;
}

.float_block {
  float: left;
  width: 50%;
}

.power_container:after {
  content: "";
  display: block;
  clear: both;
}

.powered-by {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 1.5em;
}
.powered-by img {
  max-width: 100px;
  border-radius: 0.5rem;
}

.footer__social-links {
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  font-family: "Arial narrow", sans-serif;
}
.footer__social-links li {
  display: inline-block;
  height: 36px;
  line-height: 36px;
  margin: 0 0.5em;
}
@media screen and (max-width: 479px) {
  .footer__social-links li {
    display: block;
  }
}
.footer__social-links a {
  color: white;
}
.footer__social-links span {
  vertical-align: top;
  margin-left: -0.5em;
}

.main-footer.mlb {
  background: #003366 url(../img/bg-footer/bg-footer-mlb.jpg);
}

.main-footer.diamondbacks {
  background: #666666 url(../img/bg-footer/bg-footer-diamondbacks.jpg);
}

.main-footer.braves {
  background: #13274f url(../img/bg-footer/bg-footer-braves.jpg);
}

.main-footer.orioles {
  background: #df4601 url(../img/bg-footer/bg-footer-orioles.jpg);
}

.main-footer.bosox {
  background: #0D2B56 url(../img/bg-footer/bg-footer-bosox.jpg);
}

.main-footer.cubs {
  background: #0E3386 url(../img/bg-footer/bg-footer-cubs.jpg);
}

.main-footer.reds {
  background: #C6011F url(../img/bg-footer/bg-footer-reds.jpg);
}

.main-footer.indians {
  background: #002b5c url(../img/bg-footer/bg-footer-indians.jpg);
}

.main-footer.rockies {
  background: #333366 url(../img/bg-footer/bg-footer-rockies.jpg);
}

.main-footer.tigers {
  background: #0C2C56 url(../img/bg-footer/bg-footer-tigers.jpg);
}

.main-footer.chisox {
  background: #85888b url(../img/bg-footer/bg-footer-chisox.jpg);
}

.main-footer.astros {
  background: #002d62 url(../img/bg-footer/bg-footer-astros.jpg);
}

.main-footer.royals {
  background: #004687 url(../img/bg-footer/bg-footer-royals.jpg);
}

.main-footer.angels {
  background: #ba0021 url(../img/bg-footer/bg-footer-angels.jpg);
}

.main-footer.dodgers {
  background: #005A9C url(../img/bg-footer/bg-footer-dodgers.jpg);
}

.main-footer.marlins {
  background: #0077C8 url(../img/bg-footer/bg-footer-marlins.jpg);
}

.main-footer.brewers {
  background: #0a2351 url(../img/bg-footer/bg-footer-brewers.jpg);
}

.main-footer.twins {
  background: #002b5c url(../img/bg-footer/bg-footer-twins.jpg);
}

.main-footer.mets {
  background: #002d72 url(../img/bg-footer/bg-footer-mets.jpg);
}

.main-footer.yankees {
  background: #132448 url(../img/bg-footer/bg-footer-yankees.jpg);
}

.main-footer.athletics {
  background: #003831 url(../img/bg-footer/bg-footer-athletics.jpg);
}

.main-footer.phillies {
  background: #284898 url(../img/bg-footer/bg-footer-phillies.jpg);
}

.main-footer.pirates {
  background: #000000 url(../img/bg-footer/bg-footer-pirates.jpg);
}

.main-footer.padres {
  background: #b3a369 url(../img/bg-footer/bg-footer-padres.jpg);
}

.main-footer.giants {
  background: #FD5A1E url(../img/bg-footer/bg-footer-giants.jpg);
}

.main-footer.mariners {
  background: #0c2c56 url(../img/bg-footer/bg-footer-mariners.jpg);
}

.main-footer.cardinals {
  background: #C41E3A url(../img/bg-footer/bg-footer-cardinals.jpg);
}

.main-footer.rays {
  background: #092c5c url(../img/bg-footer/bg-footer-rays.jpg);
}

.main-footer.rangers {
  background: #003278 url(../img/bg-footer/bg-footer-rangers.jpg);
}

.main-footer.jays {
  background: #134a8e url(../img/bg-footer/bg-footer-jays.jpg);
}

.main-footer.nationals {
  background: #ab0003 url(../img/bg-footer/bg-footer-nationals.jpg);
}

.main-footer.mlbpaa {
  background: #003366 url(../img/bg-footer/bg-footer-mlbpaa.jpg);
}

.main-footer.steiner {
  background: #00457c url(../img/bg-footer/bg-footer-steiner.jpg);
}

.main-footer.mountedMemories {
  background: #1a4278 url(../img/bg-footer/bg-footer-mountedMemories.jpg);
}

.main-footer.highlandMint {
  background: #85888b url(../img/bg-footer/bg-footer-highlandMint.jpg);
}

.main-footer.sportsbuy {
  background: #85888b url(../img/bg-footer/bg-footer-sportsbuy.jpg);
}

.main-footer.maytag {
  background: #85888b url(../img/bg-footer/bg-footer-maytag.jpg);
}

.main-footer.wbc {
  background: #0093d0 url(../img/bg-footer/bg-footer-wbc.jpg);
}

.ie8 .footer__social-links li {
  display: inline;
}

@media screen and (max-width: 1283px) {
  #teams-bar {
    display: none;
  }
}

.white-popup-block {
  background: white;
  max-width: 40em;
  font-size: 0.875em;
  margin: 0 auto;
  padding: 1em;
  position: relative;
}
.white-popup-block h1, .white-popup-block .h1 {
  font-size: 1.4em;
}

.vcard {
  font-size: 14px;
}
.vcard p {
  margin: 0;
}

.bid-select-address {
  margin-bottom: 1em;
}
.bid-select-address .addr-nick {
  font-size: 1em;
}
.bid-select-address > li {
  display: block;
  overflow: auto;
  padding-left: 2px;
}
.bid-select-address input[type=radio] {
  float: left;
  margin-top: 0.6em;
  margin-left: 2px;
}
.bid-select-address .vcard {
  float: left;
  margin-left: 0.5em;
}

.bid-address {
  margin-top: 0.5em;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.bid-status-auction-list .reveal > h2, .bid-status-auction-list .reveal > .h2 {
  font-size: 16px;
  font-family: "rockwell", serif;
  font-weight: bold;
  text-transform: none;
  background: transparent;
}
.bid-status-auction-list .reveal > h2 .reveal-info, .bid-status-auction-list .reveal > .h2 .reveal-info {
  font-size: 1em;
}
.bid-status-auction-list .reveal > h2 > a, .bid-status-auction-list .reveal > .h2 > a {
  color: #003366;
}
.bid-status-auction-list .reveal > h2 > a:hover, .bid-status-auction-list .reveal > .h2 > a:hover {
  text-decoration: none;
}
.bid-status-auction-list .bid-status-list-heading {
  font-size: 16px;
  padding: 0.5em 0.5em 0 0;
  display: none;
}
@media screen and (max-width: 479px) {
  .bid-status-auction-list .bid-status-list-heading {
    display: block;
  }
}
.bid-status-auction-list .prd {
  padding: 0.5em;
  margin-bottom: 0.5em;
  display: block;
}
.bid-status-auction-list .prd img {
  max-height: none;
  float: left;
}
.bid-status-auction-list .prd-header,
.bid-status-auction-list .prd-details,
.bid-status-auction-list .prd__remove,
.bid-status-auction-list .prd__item-number {
  margin-left: 120px;
}
.bid-status-auction-list .prd-header h3, .bid-status-auction-list .prd-header .dlist-title, .bid-status-auction-list .prd-header .h3, .bid-status-auction-list .prd-header .checkout-section h2, .checkout-section .bid-status-auction-list .prd-header h2, .bid-status-auction-list .prd-header .checkout-section .h2, .checkout-section .bid-status-auction-list .prd-header .h2 {
  margin-bottom: 0;
}
.bid-status-auction-list ul {
  margin-bottom: 0;
}
.bid-status-auction-list .no-items {
  font-size: 14px;
}
@media screen and (max-width: 479px) {
  .bid-status-auction-list thead {
    display: none;
  }
  .bid-status-auction-list .prd {
    position: relative;
  }
  #checkout1 .bid-status-auction-list .prd {
    padding: 0 0 0 32px;
    margin: 0;
  }
  .bid-status-auction-list .prd__checkbox {
    background: #aaa;
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 100%;
    line-height: 100%;
    text-align: center;
    padding-top: 8px;
  }
  .bid-status-auction-list .prd__checkbox.table-spacer {
    display: none;
  }
  .bid-status-auction-list td[headers=quantity]:before {
    content: none;
  }
  .bid-status-auction-list td[headers=quantity] li:before {
    content: "Qty: ";
    font-weight: bold;
  }
  #checkout1 .bid-status-auction-list td[headers=quantity]:before, #checkout1 .bid-status-auction-list td[headers=quantity] li:before {
    content: none;
  }
  .bid-status-auction-list .qty {
    text-align: left;
  }
  #checkout1 .bid-status-auction-list .qty {
    text-align: center;
    font-size: 1.25em;
    width: 80px;
  }
  .bid-status-auction-list .oc-seller-item__total {
    position: absolute;
    bottom: 0.5em;
    right: 0.5em;
  }
  .bid-status-auction-list .checkout-math {
    text-align: right;
  }
  .bid-status-auction-list .checkout-math .table-spacer {
    display: none;
  }
  .bid-status-auction-list .checkout-math td {
    text-align: left;
    font-weight: bold;
  }
  .bid-status-auction-list .checkout-math th, .bid-status-auction-list .checkout-math td {
    display: inline;
    text-align: right;
    font-weight: bold;
    vertical-align: bottom;
  }
  .bid-status-auction-list .checkout-math th:after, .bid-status-auction-list .checkout-math td:after {
    content: none;
  }
}
@media (min-width: 480px) {
  .bid-status-auction-list .reveal > h2 a:hover, .bid-status-auction-list .reveal > .h2 a:hover {
    cursor: default;
    text-decoration: none;
  }
  .bid-status-auction-list .prd {
    display: table-row;
  }
  .bid-status-auction-list .bid-status-table-headings {
    display: table-row;
  }
  .bid-status-auction-list .table-heading {
    display: none;
  }
  .bid-status-auction-list td.prd-details,
.bid-status-auction-list .prd-details-heading {
    text-align: right;
  }
  .bid-status-auction-list .reveal .reveal-content {
    display: block;
  }
  .bid-status-auction-list .reveal h2 .reveal-trigger, .bid-status-auction-list .reveal .h2 .reveal-trigger {
    cursor: default;
  }
  .bid-status-auction-list .reveal h2 .reveal-trigger:after, .bid-status-auction-list .reveal .h2 .reveal-trigger:after {
    content: "";
  }
  .bid-status-auction-list .reveal .reveal-info {
    display: none;
  }
}

.ie8 .bid-status-auction-list .reveal > h2 a:hover, .ie8 .bid-status-auction-list .reveal > .h2 a:hover {
  cursor: default;
  text-decoration: none;
}
.ie8 .bid-status-auction-list .prd {
  display: table-row;
}
.ie8 .bid-status-auction-list .bid-status-table-headings {
  display: table-row;
}
.ie8 .bid-status-auction-list .table-heading {
  display: none;
}
.ie8 .bid-status-auction-list td.prd-details,
.ie8 .bid-status-auction-list .prd-details-heading {
  text-align: right;
}
.ie8 .bid-status-auction-list .reveal .reveal-content {
  display: block;
}
.ie8 .bid-status-auction-list .reveal h2 .reveal-trigger, .ie8 .bid-status-auction-list .reveal .h2 .reveal-trigger {
  cursor: default;
}
.ie8 .bid-status-auction-list .reveal h2 .reveal-trigger:after, .ie8 .bid-status-auction-list .reveal .h2 .reveal-trigger:after {
  content: "";
}
.ie8 .bid-status-auction-list .reveal .reveal-info {
  display: none;
}

.bidview-order-status-button {
  padding-bottom: 0.5em;
}

.prd-bid .prd-img {
  max-width: 20%;
  display: block;
  margin-right: 1rem;
  float: left;
}
@media screen and (max-width: 479px) {
  .prd-bid .prd-img {
    margin-right: 0;
    float: none;
  }
}
.prd-bid .prd-header h3, .prd-bid .prd-header .dlist-title, .prd-bid .prd-header .h3, .prd-bid .prd-header .checkout-section h2, .checkout-section .prd-bid .prd-header h2, .prd-bid .prd-header .checkout-section .h2, .checkout-section .prd-bid .prd-header .h2 {
  font-size: 16px;
  font-size: 1rem;
}
.prd-bid .prd-info {
  clear: both;
  font-size: 0.875em;
  padding-top: 0.5em;
}
@media screen and (min-width: 480px) {
  .prd-bid .prd-info {
    clear: none;
    float: left;
  }
}

#orderStatus .bid-status-auction-list {
  padding: 0 16px;
  padding: 0 1rem;
}

.continue-shopping-button {
  margin-bottom: 25px;
}

@media screen and (max-width: 1029px) {
  #teams-bar {
    display: none;
  }
}
.partners-bar {
  background: transparent url(../img/bg-partner-panel.jpg) no-repeat left center;
  background-size: cover;
  text-align: center;
  padding: 0.5rem 0;
}
.partners-bar > div {
  margin: 0 auto;
}
.partners-bar .partner-bar-logo {
  transition: all 0.3s ease;
  width: 30%;
  padding: 0.25rem;
  display: inline-block;
}
.partners-bar .partner-bar-logo img {
  height: auto;
  width: auto;
}
@media screen and (min-width: 600px) {
  .partners-bar .partner-bar-logo {
    width: 17%;
    padding: 0.25rem 0.5rem;
  }
  .partners-bar .partner-bar-logo img {
    height: 74px;
    width: auto;
  }
}
@media screen and (min-width: 600px) {
  .partners-bar .partner-bar-logo {
    padding: 0.5rem;
  }
}
@media screen and (min-width: 800px) {
  .partners-bar .partner-bar-logo {
    padding: 1rem;
    width: 19%;
  }
}
.partners-bar .partner-bar-logo:hover {
  opacity: 0.7;
}
.partners-bar .partner-bar-logo a {
  display: inline-block;
}

.static-content a {
  font-weight: bold;
}

.msg {
  position: relative;
  margin: 0.5rem;
  padding: 1rem;
  border: 1px solid #ddd;
}
.msg p {
  margin-bottom: 0.5rem;
}
.msg .remove-parent {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.terms_content {
  padding: 10px;
  max-height: 170px;
  overflow: auto;
  font-size: 12px;
  line-height: 1.3;
  border: 1px solid #ccc;
}

.sort-paginate {
  text-align: center;
}

.sort-paginate--before-listings {
  border-bottom: 1px solid #909398;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media screen and (min-width: 1030px) {
  .sort-paginate--before-listings {
    display: none;
  }
}

.sort-paginate--after-listings {
  margin-top: 16px;
  margin-top: 1rem;
}

.pag ul li {
  font-size: 14px;
  display: inline-block;
  margin: 2px;
}
.pag ul li.pag-current {
  background: #ccc;
  padding: 0 4px;
  border: 1px solid #999;
}

.content-container {
  padding: 16px;
  padding: 1rem;
}

.content-container-details {
  font-size: 14px;
}

.item-list-container {
  background: white;
  margin-bottom: 3rem;
}
.item-list-container.has-filters {
  float: right;
  width: 80%;
}
@media screen and (max-width: 1029px) {
  .item-list-container.has-filters {
    float: none;
    width: 100%;
  }
}

.item-list__list-title {
  background: #dedede;
  font-size: 24px;
  border-bottom: 1px solid white;
  margin-bottom: 0;
  -ms-box-shadow: 0 3px 3px #ccc;
  -o-box-shadow: 0 3px 3px #ccc;
  box-shadow: 0 3px 3px #ccc;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #003366;
  padding: 0.1em 8px;
  line-height: 1.5em;
}
@media screen and (max-width: 479px) {
  .item-list__list-title {
    font-size: 20px;
  }
}
.item-list__list-title a {
  color: #003366;
  display: block;
}

.item-list__item {
  padding: 16px;
  border-bottom: 1px solid #909398;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 1029px) {
  .item-list__item {
    margin: 0;
    padding: 8px 0;
  }
}
.item-list__item .item-list__image {
  float: left;
  width: 32%;
  max-width: 175px;
  margin-right: 16px;
  margin-right: 1rem;
  padding: 6px;
  border: 1px solid #eee;
  -ms-box-shadow: 0 0 6px #eee;
  -o-box-shadow: 0 0 6px #eee;
  box-shadow: 0 0 6px #eee;
}
.item-list__item .item-list__image img {
  display: block;
  margin: 0 auto;
  max-height: 144px;
  max-height: 9rem;
}
@media screen and (max-width: 479px) {
  .item-list__item .item-list__image img {
    max-height: 80px;
    max-height: 5rem;
  }
}
.item-list__item .item-list__content {
  padding-left: 195px;
}
@media screen and (max-width: 595px) {
  .item-list__item .item-list__content {
    float: none;
    padding-left: 37%;
  }
}
.item-list__item .item-list__title, .item-list__item .page-title {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 479px) {
  .item-list__item .item-list__title, .item-list__item .page-title {
    font-size: 16px;
    margin-bottom: 4px;
  }
}
.item-list__item .item-list__title a, .item-list__item .page-title a {
  color: #cc0000;
}
.item-list__item .item-list__time-close {
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 1029px) {
  .item-list__item .item-list__time-close {
    margin-bottom: 0;
    font-size: 0.7em;
    margin-bottom: 0.5em;
  }
}
.item-list__item .item-list__condition {
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.item-list__item .item-list__partner-logo {
  float: left;
  width: 90px;
  height: 58px;
}
.item-list__item .item-list__partner-logo a {
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: 0 0 6px #eee;
  display: block;
  float: left;
  height: 60px;
  padding: 6px;
  position: relative;
  text-align: center;
  width: 80px;
}
.item-list__item .item-list__partner-logo img {
  max-height: 100%;
}
@media screen and (max-width: 479px) {
  .item-list__item .item-list__partner-logo {
    display: none;
  }
}
.item-list__item .item-list__price {
  float: left;
  height: 58px;
  padding-top: 18px;
  font-family: "rockwell", serif;
  color: #003366;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem;
}
.item-list__item .item-list__price > span.met, .item-list__item .item-list__price > span.not-met {
  display: block;
  font-size: 11px;
  padding-top: 6px;
}
.item-list__item .item-list__price > span.met:after {
  content: " ";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 1.5em;
  color: #81a66b;
  position: relative;
  top: 0.1em;
}
.item-list__item .item-list__price > span.not-met:after {
  content: " ";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 1.5em;
  color: #D04040;
  position: relative;
  top: 0.1em;
}
@media screen and (max-width: 479px) {
  .item-list__item .item-list__price {
    height: auto;
    line-height: 1;
    font-size: 14px;
  }
}
@media screen and (min-width: 701px) {
  .item-list__item .item-list__price {
    padding-right: 120px;
    padding-top: 8px;
  }
  .item-list__item .item-list__price .current-bid-value {
    display: block;
  }
}
@media screen and (max-width: 865px) and (min-width: 1030px) {
  .item-list__item .item-list__price {
    font-size: 17px;
    padding-top: 12px;
  }
}
@media screen and (max-width: 970px) and (min-width: 1030px), (max-width: 760px) and (min-width: 701px), (max-width: 620px) and (min-width: 480px) {
  .item-list__item .item-list__price {
    padding-top: 8px;
  }
  .item-list__item .item-list__price .current-bid-value {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  .item-list__item .item-list__price {
    padding-top: 4px;
  }
}
.item-list__item .item-list__action {
  position: absolute;
  right: 0.5em;
  bottom: 1em;
  text-align: center;
}
.item-list__item .item-list__action > span {
  display: block;
  font-size: 0.8125em;
  text-transform: uppercase;
  margin-bottom: 8px;
  margin-bottom: 2px;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .item-list__item .item-list__action {
    display: none;
  }
}
@media screen and (max-width: 1029px) {
  .item-list__item .item-list__item__partner-logo {
    display: none;
  }
}
@media screen and (max-width: 479px) {
  .item-list__item .item-list__item__time-close,
.item-list__item .item-list__item__action {
    display: none;
  }
}

.item-list__footer {
  margin: 16px;
}
@media screen and (max-width: 479px) {
  .item-list__footer {
    margin: 8px;
    text-align: center;
  }
  .item-list__footer li {
    padding-bottom: 8px;
    padding-bottom: 0.5rem;
  }
}

.horizontal--small .item-list__image {
  width: 110px;
}
.horizontal--small .item-list__content {
  padding-left: 125px;
}
.horizontal--small .item-list__item .item-list__partner-logo a {
  height: 40px;
  width: 60px;
}
.horizontal--small .item-list__price {
  height: 38px;
  line-height: 38px;
  font-size: 16px;
}
.horizontal--small .item-list__action .btn--action {
  font-size: 14px;
}

.list-filters {
  float: left;
  width: 18%;
  padding-top: 16px;
  padding-top: 1rem;
  font-size: 12px;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
.list-filters select {
  font-size: 12px;
}
.list-filters .filter > ul {
  margin-left: 4px;
}
@media screen and (max-width: 1029px) {
  .list-filters .filter > ul {
    margin-left: 0;
  }
}
@media screen and (max-width: 1029px) {
  .list-filters {
    padding-top: 0;
    margin-bottom: 0;
    float: none;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #909398;
  }
  .list-filters:after {
    content: "";
    display: table;
    clear: both;
  }
}

.list-filter {
  padding-bottom: 8px;
  padding-bottom: 10px;
}
.list-filter.sort {
  border-bottom: 1px solid #2680d9;
  margin-bottom: 20px;
}

.the-filter {
  border-bottom: 1px solid #2680d9;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.the-filter ul li {
  text-transform: capitalize;
}

@media screen and (min-width: 480px) and (max-width: 1029px) {
  .filter--team > ul {
    -ms-column-count: 3;
    -o-column-count: 3;
    column-count: 3;
  }
}
@media screen and (min-width: 361px) and (max-width: 479px) {
  .filter--team > ul {
    -ms-column-count: 2;
    -o-column-count: 2;
    column-count: 2;
  }
}
@media screen and (max-width: 360px) {
  .filter--team > ul {
    -ms-column-count: 1;
    -o-column-count: 1;
    column-count: 1;
  }
}

.list-filter__title {
  margin-bottom: 0;
}

.list-filters__sublist {
  margin-left: 0.5rem;
}

.filter-title {
  font-family: "rockwell", serif;
  font-weight: bold;
  color: #333;
  font-size: 12px;
  margin: 4px 0 1px;
}

.filter-option--selected {
  font-weight: bold;
}
.filter-option--selected i {
  font-weight: normal;
}

.filter.filter--category {
  padding-bottom: 4px;
}

.filter-option {
  padding: 0 0 2px;
}

.the-page-name,
.facet-text {
  text-transform: capitalize;
}

.headings-bar__box .listing-mode-switch {
  display: none;
  float: left;
}
.headings-bar__box .listing-mode-switch li {
  float: left;
}
.headings-bar__box .listing-mode-switch li a {
  border-color: #999;
}
.headings-bar__box .listing-mode-switch li:first-child a {
  border-radius: 0.5em 0 0 0.5em;
  border-right-width: 0;
}
.headings-bar__box .listing-mode-switch li:last-child a {
  border-radius: 0 0.5em 0.5em 0;
  border-left-width: 0;
}
.headings-bar__box .listing-mode-switch li.current a {
  background: #2680d9;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #2680d9 0%, #1f66ad 50%, #004d99 51%, #003366 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF2680D9", endColorstr="#FF003366",GradientType=0 );
  /* IE6-8 */
  border-color: #555;
  -ms-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.6);
  -o-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.6);
  box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.6);
}
.headings-bar__box .listing-mode-switch li.current a:hover {
  background: #004d99;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #004d99 0%, #0066cc 50%, #1f66ad 51%, #2680d9 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF004D99", endColorstr="#FF2680D9",GradientType=0 );
  /* IE6-8 */
}

.listing-mode-switch--tabs .listing-mode-switch {
  margin-top: 16px;
  margin-top: 1rem;
  font-family: "rockwell", serif;
  text-transform: uppercase;
}
.listing-mode-switch--tabs .listing-mode-switch ul {
  letter-spacing: normal;
  word-spacing: normal;
}
.listing-mode-switch--tabs .listing-mode-switch ul li {
  float: left;
}
.listing-mode-switch--tabs .listing-mode-switch ul li:first-child a {
  border-radius: 0.5em 0 0 0;
}
.listing-mode-switch--tabs .listing-mode-switch ul li:last-child a {
  border-radius: 0 0.5em 0 0;
}
.listing-mode-switch--tabs .listing-mode-switch ul li a {
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  float: left;
  background: #ddd;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #ddd 0%, #ccc 50%, #afafaf 51%, #999 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFDDDDDD", endColorstr="#FF999999",GradientType=0 );
  /* IE6-8 */
  color: #444;
  text-shadow: 0 1px 0 #ddd;
  -ms-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.3);
  -o-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.3);
  box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.3);
}
.listing-mode-switch--tabs .listing-mode-switch ul li a:hover {
  background: #999;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #999 0%, #afafaf 50%, #ccc 51%, #ddd 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF999999", endColorstr="#FFDDDDDD",GradientType=0 );
  /* IE6-8 */
  color: #444;
}
.listing-mode-switch--tabs .listing-mode-switch ul li.current a {
  color: white;
  text-shadow: none;
  background: #2680d9;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #2680d9 0%, #1f66ad 50%, #004d99 51%, #003366 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF2680D9", endColorstr="#FF003366",GradientType=0 );
  /* IE6-8 */
  -ms-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.6);
  -o-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.6);
  box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.6);
}
.listing-mode-switch--tabs.above {
  padding: 0;
}
.listing-mode-switch--tabs.above .listing-mode-switch li {
  float: left;
}
.listing-mode-switch--tabs.above .listing-mode-switch li:first-child a {
  border-radius: 1em 1em 0 0;
}
.listing-mode-switch--tabs.above .listing-mode-switch li:last-child a {
  border-radius: 1em 1em 0 0;
}
.listing-mode-switch--tabs.above .listing-mode-switch ul li a {
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  padding-left: 1em;
  padding-right: 1em;
}

.listing-mode-switch--tabs.above .listing-mode-switch.nav--tabs {
  border-bottom: 1px solid #bbb;
  box-shadow: 0 3px 3px #ddd;
}
.listing-mode-switch--tabs.above .listing-mode-switch.nav--tabs li a {
  border-style: solid;
  border-color: rgba(102, 102, 102, 0.2);
  border-width: 0 0 0 1px;
}
.listing-mode-switch--tabs.above .listing-mode-switch.nav--tabs li:first-child a {
  border-radius: 1em 0 0 0;
}
.listing-mode-switch--tabs.above .listing-mode-switch.nav--tabs li:last-child a {
  border-radius: 0 1em 0 0;
}
@media only screen and (max-width: 479px) {
  .listing-mode-switch--tabs.above .listing-mode-switch.nav--tabs {
    font-size: 14px;
  }
  .listing-mode-switch--tabs.above .listing-mode-switch.nav--tabs a {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
@media (max-width: 360px) {
  .listing-mode-switch--tabs.above .listing-mode-switch.nav--tabs {
    font-size: 11.2px;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
}
.headings-bar {
  background: #003366;
  color: white;
  padding: 8px 15px;
  margin-bottom: 10px;
  -ms-box-shadow: 0 4px 8px -4px black;
  -o-box-shadow: 0 4px 8px -4px black;
  box-shadow: 0 4px 8px -4px black;
}
.headings-bar h1, .headings-bar .h1 {
  float: left;
  margin: 0;
  font-size: 28px;
  font-size: 1.9rem;
  color: white;
  width: auto;
  font-weight: normal;
  text-transform: capitalize;
}
.headings-bar .team-search-cat-list {
  float: left;
  margin-left: 20px;
  margin-top: 12px;
}
.headings-bar .team-search-cat-list span {
  font-size: 13px;
  font-size: 0.813rem;
}
.headings-bar .sorts {
  float: right;
}
.headings-bar .sorts span {
  font-size: 12px;
  font-size: 0.8125rem;
}
.headings-bar .sorts select {
  font-size: 14px;
  font-size: 0.875rem;
}
.headings-bar .sort-team {
  display: inline-block;
  padding: 12px 0 0 0;
  margin: 0;
  margin-right: 16px;
  margin-right: 1rem;
}
.headings-bar .sort-by {
  display: inline-block;
  padding: 12px 0 0 0;
  margin: 0;
}
@media screen and (max-width: 1029px) {
  .headings-bar {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.headings-bar.headings-bar--tabs-above {
  border-top: none;
}
.headings-bar .partner-logo {
  display: inline-block;
  margin-right: 16px;
  border-radius: 4px;
  display: block;
  float: left;
  width: 40px;
  padding: 6px;
  line-height: 1;
  height: 1.9rem;
  position: relative;
  text-align: center;
  background: white;
  margin-top: 4px;
  margin-top: 0.25rem;
}
.headings-bar .partner-logo img {
  display: block;
  max-height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 479px) {
  .headings-bar .partner-logo {
    display: none;
  }
}

.breadcrumbs {
  font-size: 12px;
  margin: 8px 0;
  margin: 0.5rem 0;
}

.sorts {
  font-size: 14px;
}
.sorts > div {
  display: inline-block;
}
.sorts > div select {
  font-size: 12px;
}

.user-widget {
  font-size: 14px;
  color: white;
}

.main-header .user-widget {
  float: right;
  text-shadow: none;
}
@media screen and (max-width: 1029px) {
  .main-header .user-widget {
    float: none;
  }
}
.main-header .user-widget > li {
  margin-left: 6px;
}
@media screen and (max-width: 1029px) {
  .main-header .user-widget > li {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }
  .main-header .user-widget > li:first-child {
    border-right: 1px solid #ab2222;
  }
}
.main-header .user-widget > li:after {
  content: none;
}
.main-header .user-widget > li > a {
  font-family: "rockwell", serif;
  text-transform: uppercase;
}
.main-header .user-widget .nav-sub, .main-header .user-widget .nav-search .nav-sub ul, .nav-search .nav-sub .main-header .user-widget ul {
  right: -0.5em;
  left: auto;
}
@media screen and (max-width: 1029px) {
  .main-header .user-widget .nav-sub, .main-header .user-widget .nav-search .nav-sub ul, .nav-search .nav-sub .main-header .user-widget ul {
    display: block;
    text-align: left;
    right: 0;
    font-size: 13px;
  }
  .main-header .user-widget .nav-sub a, .nav-search .nav-sub .main-header .user-widget ul a {
    height: 3em;
    line-height: 3em;
    background: #d94040;
    /* Old browsers */
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, #d94040 0%, #b14040 50%, #940101 51%, #610101 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFD94040", endColorstr="#FF610101",GradientType=0 );
    /* IE6-8 */
    padding: 0 8px;
    padding: 0 0.5rem;
  }
}
.main-header .user-widget i.fa {
  font-size: 18px;
  position: relative;
  top: 1px;
}
.main-header .user-widget .user-cart-display {
  margin-left: 1.5em;
  background: white;
  color: #333;
  padding: 8px;
  padding: 0.5rem;
  text-align: center;
  cursor: default;
  -ms-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.6);
  -o-box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.6);
  box-shadow: 1px 2px 4px rgba(100, 100, 100, 0.6);
}
.main-header .user-widget .user-cart-display td {
  white-space: nowrap;
  font-size: 12px;
  height: 32px;
  height: 2rem;
  vertical-align: middle;
}
.main-header .user-widget .user-cart-display .user-cart-display__img {
  height: 16px;
  height: 2rem;
  width: 16px;
  width: 2rem;
  padding: 0;
  margin-top: 3.2px;
  margin-top: 0.2rem;
  margin-bottom: 3.2px;
  margin-bottom: 0.2rem;
  text-align: center;
  background-size: cover;
}
.main-header .user-widget .user-cart-display .user-cart-display__title {
  padding-top: 0;
  padding-bottom: 0;
  vertical-align: middle;
}
.main-header .user-widget .btn, .main-header .user-widget .headings-bar__box .listing-mode-switch li a, .headings-bar__box .listing-mode-switch li .main-header .user-widget a {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.main-header .user-widget .user-cart-display__total {
  border-top: 1px solid #c5c6c9;
  vertical-align: middle;
}
.main-header .user-widget .nav-dummy-link {
  height: 3em;
  line-height: 3em;
  margin-left: 0;
  background: #d94040;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #d94040 0%, #b14040 50%, #940101 51%, #610101 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFD94040", endColorstr="#FF610101",GradientType=0 );
  /* IE6-8 */
}
@media screen and (max-width: 1029px) {
  .main-header .user-widget .nav-dummy-link {
    background: #d94040;
    /* Old browsers */
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, #d94040 0%, #b14040 50%, #940101 51%, #610101 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFD94040", endColorstr="#FF610101",GradientType=0 );
    /* IE6-8 */
  }
}

.user-cart-list {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.main-header .user-widget--is-visible .user-cart-display {
  display: block;
}

.ie8 .main-header .user-widget .user-cart-display {
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: #ddd;
}

#auctionDisplay .content > .breadcrumbs {
  margin-top: 16px;
}

.item-title {
  color: #cc0000;
  margin-bottom: 8px;
}
.item-title .item-title__partner-logo {
  float: left;
  width: 80px;
  height: 60px;
  text-align: center;
  position: relative;
  display: block;
  border: 1px solid #eee;
  box-shadow: 0 0 6px #eee;
  border-radius: 6px;
  padding: 6px;
}
@media (max-width: 479px) {
  .item-title .item-title__partner-logo {
    width: 60px;
    height: 40px;
  }
}
.item-title .item-title__partner-logo:hover {
  border-color: #ddd;
  box-shadow: 0 0 4px #ddd;
}
.item-title .item-title__partner-logo img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto;
}
.item-title h1, .item-title .h1 {
  margin-bottom: 0;
  font-size: 26px;
  margin-left: 88px;
}
@media (max-width: 479px) {
  .item-title h1, .item-title .h1 {
    margin-left: 68px;
    font-size: 18px;
  }
}

.item-images {
  float: left;
  width: 50%;
  padding-right: 1em;
}
@media (max-width: 479px) {
  .item-images {
    float: none;
    width: auto;
    padding-right: 0;
  }
}
.item-images img {
  display: block;
}
.item-images .item-image-main-container {
  width: 100%;
  text-align: center;
}
.item-images .item-image-main {
  border: 1px solid #c5c6c9;
  width: 98%;
}

.item-thumbs {
  margin-top: 3px;
}
.item-thumbs li {
  overflow: visible;
  width: 20%;
  float: left;
  padding: 2% 2% 0 0;
}
.item-thumbs li img {
  border: 1px solid #c5c6c9;
  display: block;
  margin: 0 auto;
}

.item-info {
  float: right;
  width: 50%;
  overflow: visible;
}
@media (max-width: 479px) {
  .item-info {
    float: none;
    width: auto;
    clear: both;
    padding-bottom: 8px;
  }
}
.item-info ul {
  border-bottom: 1px solid #909398;
  padding: 0 0 8px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1029px) {
  .item-info ul {
    font-size: 14px;
  }
}
@media screen and (max-width: 700px) {
  .item-info ul {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.item-info form {
  font-size: 16px;
}
.item-info form label {
  font-size: 16px;
}
.item-info #time_left {
  margin-top: 8px;
  color: #cc0000;
  text-transform: uppercase;
  clear: both;
}
.item-info #time_left span {
  font-weight: bold;
  text-transform: none;
}
.item-info .ends {
  color: #c5c6c9;
}

.item-info form .item-personalize label {
  font-size: 0.875rem;
}
.item-info form .item-personalize input[type=text] {
  margin-bottom: 0.5rem;
  max-width: 100%;
}
.item-info form .item-personalize textarea {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  max-width: 100%;
}

.item-price {
  color: #003366;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "rockwell", serif;
  font-size: 18px;
  margin-bottom: 8px;
}
.item-price span {
  font-size: 1.5em;
}
.item-price div > span {
  font-size: 12px;
}
.item-price div > span.met:after {
  content: " ";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 1.5em;
  color: #81a66b;
  position: relative;
  top: 0.1em;
}
.item-price div > span.not-met:after {
  content: " ";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 1.5em;
  color: #D04040;
  position: relative;
  top: 0.1em;
}

.item-pay, .item-select-qty {
  color: #003366;
  font-family: "rockwell", serif;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
  float: left;
  width: 50%;
}
@media screen and (max-width: 1029px) {
  .item-pay, .item-select-qty {
    width: 100%;
    margin-right: 0;
  }
}
.item-pay input[type=text], .item-select-qty input[type=text] {
  font-family: "rockwell", serif;
  border: 1px solid #c5c6c9;
  width: 10em;
  -webkit-appearance: none;
  border-radius: 0;
  width: 90%;
}
@media screen and (max-width: 1029px) {
  .item-pay input[type=text], .item-select-qty input[type=text] {
    width: 100%;
  }
}
.item-pay label, .item-select-qty label {
  margin-right: 1em;
}

.item-select-qty {
  width: auto;
}
@media screen and (max-width: 1029px) {
  .item-select-qty {
    width: 100%;
    float: none;
  }
  .item-select-qty label,
.item-select-qty select {
    display: inline-block;
  }
}

#requestedQty {
  margin-left: 2px;
}

.item-action button {
  float: left;
  font-size: 24px;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1029px) {
  .item-action button {
    float: none;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
    line-height: 2.5;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.item-action button input {
  width: 100%;
}

.watch-list {
  margin-top: 0.5em;
}
@media (max-width: 1029px) {
  .watch-list {
    display: none;
  }
}

.item-stats {
  font-size: 16px;
  color: #003366;
}
.item-stats table {
  border-bottom: 1px solid #909398;
  margin-bottom: 8px;
}
@media screen and (max-width: 700px) {
  .item-stats table {
    width: 50%;
    float: left;
    border-bottom: none;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 479px) {
  .item-stats table {
    border-bottom: 1px solid #909398;
    width: 100%;
    float: none;
    margin-bottom: 8px;
  }
}
.item-stats th, .item-stats td {
  padding: 0;
  width: 50%;
}
@media screen and (max-width: 700px) {
  .item-stats th, .item-stats td {
    display: inline-block;
    width: auto;
    margin-right: 0.5em;
    padding-bottom: 8px;
  }
}
.item-stats tr:last-child th,
.item-stats tr:last-child td {
  padding-bottom: 8px;
}
@media screen and (max-width: 700px) {
  .item-stats tr:last-child th,
.item-stats tr:last-child td {
    padding-bottom: 0;
  }
}
.item-stats th {
  font-weight: normal;
}
@media screen and (max-width: 1029px) {
  .item-stats th span {
    display: none;
  }
}
.item-stats td {
  font-weight: bold;
}
.item-stats td.listing-type-value:after {
  content: " ";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 1em;
  position: relative;
  top: 0;
}
.item-stats .show-content-trigger {
  text-decoration: underline;
  font-style: 0.875em;
}
@media screen and (max-width: 479px) {
  .item-stats .popup-modal {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .item-stats {
    width: 100%;
    display: block;
    float: none;
    content: "";
    display: table;
    clear: both;
    overflow: auto;
    border-top: 1px solid #909398;
    border-bottom: 1px solid #909398;
  }
}
@media screen and (max-width: 1029px) {
  .item-stats {
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  .item-stats {
    border-bottom: none;
  }
}
.item-details {
  clear: both;
}
.item-details h3, .item-details .dlist-title, .item-details .h3, .item-details .checkout-section h2, .checkout-section .item-details h2, .item-details .checkout-section .h2, .checkout-section .item-details .h2 {
  margin: 0 0 8px;
}
.item-details h3 a, .item-details .dlist-title a, .item-details .h3 a, .item-details .checkout-section h2 a, .checkout-section .item-details h2 a, .item-details .checkout-section .h2 a, .checkout-section .item-details .h2 a {
  color: #cc0000;
  font-family: "rockwell", serif;
  text-transform: uppercase;
  line-height: 1;
  font-size: 18px;
}
.item-details h4, .item-details .h4 {
  font-size: 16px;
  margin: 0 0 8px;
  color: #003366;
}
.item-details .auction-details-content {
  margin-bottom: 1em;
}
.item-details .auction-details-content p {
  font-size: 0.875em;
}
.item-details .auction-details-content em {
  color: #cc0000;
}
.item-details .auction-details-content strong {
  color: #cc0000;
  font-weight: bold;
}
.item-details .auction-details-content a {
  font-weight: bold;
}
.item-details .auction-details-content ul {
  margin-bottom: 8px;
}
.item-details .auction-details-content ul li {
  font-size: 0.875em;
}
.item-details .item-details-content {
  font-size: 0.875em;
  margin-bottom: 1em;
}
.item-details .reveal-is-open {
  display: block !important;
}

#auction-payment em {
  color: #333;
  font-style: italic;
}

.currentUserBid {
  color: #cc0000;
}

p.currentUserBid {
  font-size: 0.875em;
}
p.currentUserBid a {
  text-decoration: underline;
}

.bid-history tbody tr td div.the-winner {
  font-weight: bold;
  font-size: 0.875em;
  color: #cc0000;
  margin-left: 0.5em;
}

@media screen and (max-width: 1029px) {
  .sharing--item-display {
    width: 100%;
    float: none;
    clear: both;
    margin-top: 8px;
  }
}
@media screen and (max-width: 479px) {
  .sharing--item-display {
    margin-top: 0;
  }
}
.sharing--item-display .sharing__internal {
  border-bottom: none;
  text-align: center;
  font-family: "rockwell", serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}
.sharing--item-display .sharing__internal li {
  display: inline-block;
}
.sharing--item-display .sharing__internal a {
  color: #cc0000;
  margin: 0 1em;
}
@media screen and (max-width: 1029px) {
  .sharing--item-display .sharing__internal {
    text-align: left;
  }
  .sharing--item-display .sharing__internal a {
    margin: 0 2em 0 0;
  }
}
@media screen and (max-width: 610px) {
  .sharing--item-display .sharing__internal {
    content: "";
    display: table;
    clear: both;
    display: block;
    float: none;
  }
}
.sharing--item-display .sharing--social {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 1029px) {
  .sharing--item-display .sharing--social {
    text-align: left;
  }
}
@media screen and (max-width: 1029px) and (max-width: 1029px) {
  .sharing--item-display .sharing--social li {
    margin: 0 1em 0 0;
  }
}

.sharing--social {
  text-align: center;
  font-size: 14px;
}
.sharing--social li {
  display: inline-block;
  margin: 0 0.5em;
  height: 31px;
  vertical-align: top;
}
.sharing--social .fb-share-button {
  position: relative;
  top: -1px;
}

.ie8 .sharing--social .fb-share-button {
  width: 58px;
}

.item-details {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #909398;
}

.discount-msg {
  text-transform: capitalize;
  font-weight: bold;
  color: #E8291D;
}

.personalizeHMContainer {
  position: relative;
  text-align: center;
}
.personalizeHMContainer .personalizeHMTextBox {
  position: absolute;
  top: 35.9%;
  padding: 0 32%;
  width: 98%;
  height: 6%;
  /*font-size: 1.8rem;
  @media screen and (min-width:980px) and (max-width:1150px){
  	font-size: 1.5rem;
  }
  @media screen and (min-width:800px) and (max-width:979px){
  	font-size: 1.2rem;
  }
  @media screen and (min-width:800px) and (max-width:979px){
  	font-size: 1.2rem;
  }
  @media screen and (min-width:750px) and (max-width:799px){
  	font-size: 1.1rem;
  }
  @media screen and (min-width:650px) and (max-width:749px){
  	font-size: 1.0rem;
  }
  @media screen and (min-width:600px) and (max-width:649px){
  	font-size: 0.9rem;
  }
  @media screen and (min-width:600px) and (max-width:649px){
  	font-size: 0.9rem;
  }
  @media screen and (min-width:550px) and (max-width:599px){
  	font-size: 0.8rem;
  }
  @media screen and (min-width:500px) and (max-width:549px){
  	font-size: 0.7rem;
  }
  @media screen and (min-width:480px) and (max-width:499px){
  	font-size: 0.6rem;
  }
  @media screen and (min-width:365px) and (max-width:479px){
  	font-size: 1.2rem;
  }
  @media screen and (min-width:300px)  and (max-width:364px){
  	font-size: 1rem;
  }
  @media screen  and (max-width:299px){
  	font-size: 0.8rem;
  }*/
}
.personalizeHMContainer .personalizeHMTextBox #personalizeHMText {
  white-space: nowrap;
  color: #fff;
  max-height: 100%;
  text-transform: uppercase;
  font-style: italic;
  font-family: Times New Roman;
}

.item-thumbs {
  margin: 0;
}
.item-thumbs li {
  list-style-type: none;
  float: left;
}

.order-summary {
  line-height: 1.5rem;
  margin-bottom: 32px !important;
  margin-bottom: 2rem !important;
}
.order-summary li {
  display: block;
  float: left;
  width: 196px;
  width: 12rem;
  margin-right: 32px;
  margin-right: 2rem;
}
.order-summary > li {
  margin-bottom: 0;
}
.order-summary h3, .order-summary .dlist-title, .order-summary .h3, .order-summary .checkout-section h2, .checkout-section .order-summary h2, .order-summary .checkout-section .h2, .checkout-section .order-summary .h2 {
  line-height: 1.5rem;
  margin-bottom: 0;
}
.order-summary p {
  line-height: 1.5rem;
  margin-bottom: 0;
}

.checkout-section .content-container-details {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

#orderStatus .order-id {
  max-width: 5em;
}
@media screen and (max-width: 479px) {
  #orderStatus .order-id {
    max-width: none;
  }
}
#orderStatus .order-id a {
  text-decoration: underline;
}
#orderStatus .total-amt {
  max-width: 9em;
}
@media screen and (max-width: 479px) {
  #orderStatus .total-amt {
    max-width: none;
  }
}
@media screen and (max-width: 479px) {
  #orderStatus .items {
    display: none;
  }
}
#orderStatus .content {
  padding-bottom: 1rem;
}

.nothing-to-see .no-results-message {
  border-bottom: 1px solid #909398;
  font-weight: bold;
}

.prd__img-wrapper {
  max-width: 80px;
  float: left;
  margin-right: 0.5rem;
  border: 1px solid #ccc;
}
.prd__img-wrapper img {
  display: block;
}

.prd-header h3, .prd-header .dlist-title, .prd-header .h3, .prd-header .checkout-section h2, .checkout-section .prd-header h2, .prd-header .checkout-section .h2, .checkout-section .prd-header .h2 {
  font-size: 16px;
  margin-bottom: 4px !important;
}
.prd-header h3 .prd__seller-img, .prd-header .dlist-title .prd__seller-img, .prd-header .h3 .prd__seller-img, .prd-header .checkout-section h2 .prd__seller-img, .checkout-section .prd-header h2 .prd__seller-img, .prd-header .checkout-section .h2 .prd__seller-img, .checkout-section .prd-header .h2 .prd__seller-img {
  max-height: 25px !important;
  max-width: 25px !important;
  margin-right: 8px;
}

.product-title {
  text-align: left;
}

td.prd__checkbox {
  text-align: center;
  vertical-align: middle;
}

.prd__status {
  text-align: center;
}

.prd__remove-wish-list,
.prd__remove a {
  color: #951e1e;
}
.prd__remove-wish-list:hover,
.prd__remove a:hover {
  color: red;
}

.qty {
  text-align: center;
}

.qty_wrap li {
  display: inline-block;
}
.qty_wrap li button {
  padding: 0;
  border: none;
  background-color: transparent;
}

.updown.disabled i {
  color: #aaa;
}

.dlist {
  font-size: 14px;
}
.dlist dt {
  font-weight: bold;
  margin-bottom: 0.4em;
}
.dlist dt.dlist-is-expanded a {
  text-decoration: underline;
}
.dlist dd {
  margin-left: 0;
  margin-bottom: 0.5em;
  background-color: #efefef;
  padding: 0.625em 0.625em 0.2em;
}

.main-header {
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
}

.global-home-link {
  position: absolute;
  top: 16px;
  top: 1.7rem;
  right: 24px;
  right: 1.5rem;
  color: white;
  font-family: "rockwell", serif;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
}

.global-home-link:hover {
  color: #ebebeb;
  text-decoration: underline;
}

.mobile-links {
  position: absolute;
  top: 16px;
  right: 8px;
}
@media screen and (min-width: 480px) {
  .mobile-links {
    top: 24px;
    right: 16px;
  }
}
.mobile-links a {
  color: white;
  font-size: 1.25em;
  width: 2em;
  display: inline-block;
  text-align: center;
  padding: 1px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}
.mobile-links a:after, .reveal-trigger.reveal-is-active .mobile-links a:after {
  content: none !important;
}

@media screen and (max-width: 1029px) {
  #main-nav {
    display: none;
  }
}

.branding {
  display: block;
  color: white;
  text-decoration: none;
  padding: 5px 0 5px 10px;
}
@media screen and (max-width: 479px) {
  .branding {
    padding: 8px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 480px) and (max-width: 1029px) {
  .branding {
    padding: 20px 0 8px 16px;
    margin-bottom: 0;
  }
}
.branding h1, .branding .h1 {
  padding: 0.75rem 0 0 0.5rem;
  float: left;
  margin: 0;
}
.branding h1 img, .branding .h1 img {
  display: block;
}
@media screen and (max-width: 1029px) {
  .branding h1, .branding .h1 {
    max-width: 60%;
    padding: 0;
  }
}
@media screen and (max-width: 479px) {
  .branding h1, .branding .h1 {
    max-width: 55%;
    margin-top: 3px;
  }
}
.branding p {
  font-family: "rockwell", serif;
  font-weight: bold;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 479px) {
  .branding p {
    font-size: 0.625em;
  }
}

.beckett-logo {
  float: right;
  width: 30%;
  text-align: right;
  margin-bottom: 0.5rem;
  margin-right: 1rem;
}
.beckett-logo a {
  margin-right: 1rem;
}
@media screen and (max-width: 1029px) {
  .beckett-logo a {
    margin-right: 2px;
  }
}
.beckett-logo img {
  max-width: 80px;
}
.beckett-logo .mc img {
  max-width: 100%;
  padding-top: 8px;
  vertical-align: top;
}
@media screen and (max-width: 900px) {
  .beckett-logo .mc img {
    max-width: 120px;
    padding-top: 12px;
  }
}
@media screen and (max-width: 1029px) {
  .beckett-logo .mc img {
    padding-top: 4px;
  }
}
@media screen and (max-width: 750px) {
  .beckett-logo .mc img {
    max-width: 100px;
  }
}
@media screen and (max-width: 650px) {
  .beckett-logo .mc img {
    max-width: 80px;
  }
}
@media screen and (max-width: 550px) {
  .beckett-logo .mc img {
    max-width: 50px;
  }
}
@media screen and (max-width: 1029px) {
  .beckett-logo {
    float: left;
    width: auto;
    margin-right: 0;
    text-align: center;
  }
  .beckett-logo img {
    max-width: 60px;
  }
}
@media screen and (max-width: 750px) {
  .beckett-logo img {
    max-width: 50px;
  }
}
@media screen and (max-width: 650px) {
  .beckett-logo img {
    max-width: 40px;
  }
}
@media screen and (max-width: 550px) {
  .beckett-logo img {
    max-width: 30px;
  }
}
@media screen and (max-width: 500px) {
  .beckett-logo a {
    margin-right: 0.5rem;
  }
  .beckett-logo img {
    max-width: 25px;
  }
}
@media screen and (max-width: 350px) {
  .beckett-logo {
    display: none;
  }
  .beckett-logo img {
    max-width: 30px;
  }
}

.nav-search {
  float: left;
  font-size: 16px;
  font-size: 1rem;
  background: url(../img/bg-nav-search.jpg) no-repeat right top;
  border-radius: 16px 16px 0 0;
  -ms-box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
  background-size: cover;
}
@media screen and (max-width: 879px) {
  .nav-search {
    font-size: 0.875rem;
  }
}
.nav-search ul {
  list-style: none;
  margin: 0;
}
.nav-search > ul > li {
  position: relative;
  display: inline-block;
}
.nav-search > ul > li:first-child {
  border-left: none;
}
@media screen and (max-width: 810px) {
  .nav-search > ul > li {
    border: none;
  }
}
.nav-search > ul > li > a {
  font-family: "rockwell", serif;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  height: 3em;
  line-height: 3em;
  padding: 0.2em 0.7em 0;
  color: #003366;
  text-shadow: 0 0 3px white;
}
.nav-search > ul > li:first-child > a {
  border: none;
}
.nav-search .home-link-tab a {
  color: white;
}
.nav-search .nav-sub, .nav-search .nav-sub ul {
  position: absolute;
  left: 0;
  top: 3em;
  display: none;
  background-color: #000;
  z-index: 10;
  white-space: nowrap;
  min-width: 100%;
  padding: 0.3em 0 0.7em;
  line-height: 1.3;
  -ms-box-shadow: 0 0 5px #333;
  -o-box-shadow: 0 0 5px #333;
  box-shadow: 0 0 5px #333;
  border-radius: 0 0 16px 16px;
  font-family: "rockwell", serif;
}
.nav-search .nav-sub li {
  height: 23px;
  position: relative;
}
.nav-search .nav-sub li:hover {
  background: #ccc;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #ccc 0%, #aaa 50%, #999 51%, #666 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFCCCCCC", endColorstr="#FF666666",GradientType=0 );
  /* IE6-8 */
}
.nav-search .nav-sub li a {
  font-size: 13px;
  font-size: 0.8125rem;
  display: block;
  width: 100%;
  padding: 3px 0.5em;
  color: white;
}
.nav-search .nav-sub li a:hover {
  color: black;
  text-shadow: 0 1px 0 #aaa;
}
.nav-search .nav-sub ul {
  display: none;
  position: absolute;
  left: 100%;
  top: -0.3em;
  border-radius: 0 16px 16px 16px;
  overflow: hidden;
}
@media screen and (max-width: 1029px) {
  .nav-search .nav-sub ul {
    border-radius: 0;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
  }
  .nav-search .nav-sub ul.nav-sub-sub li a {
    padding-left: 2rem;
  }
}
@media screen and (min-width: 1030px) {
  .nav-search li:hover > ul {
    display: block;
  }
}
@media screen and (max-width: 1029px) {
  .nav-search {
    font-size: 13px;
    width: 100%;
    background: none;
    border-radius: 0;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
  }
  .nav-search a {
    height: 3em;
    line-height: 3em;
    text-shadow: 1px 1px 0 #333;
  }
  .nav-search > ul {
    border-radius: 0;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    line-height: 3em;
  }
  .nav-search > ul > li {
    display: block;
    width: 100%;
  }
  .nav-search > ul > li > a {
    font-weight: normal;
    background: #aaa;
    /* Old browsers */
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, #aaa 0%, #999 50%, #777 51%, #444 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFAAAAAA", endColorstr="#FF444444",GradientType=0 );
    /* IE6-8 */
    padding: 0 8px;
    color: white;
    text-shadow: none;
  }
  .nav-search > ul > li:first-child a {
    border: none;
  }
  .nav-search ul ul.nav-sub, .nav-search ul .nav-sub ul, .nav-search .nav-sub ul ul {
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
    padding: 0;
  }
  .nav-search ul ul.nav-sub li, .nav-search ul .nav-sub ul li, .nav-search .nav-sub ul ul li {
    height: auto;
  }
  .nav-search ul ul.nav-sub li a, .nav-search ul .nav-sub ul li a, .nav-search .nav-sub ul ul li a {
    background: #ccc;
    /* Old browsers */
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, #ccc 0%, #aaa 50%, #999 51%, #666 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFCCCCCC", endColorstr="#FF666666",GradientType=0 );
    /* IE6-8 */
    display: block;
    padding: 0 8px 0 16px;
    color: white;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.7);
  }
  .nav-search ul ul.nav-sub li a:hover, .nav-search ul .nav-sub ul li a:hover, .nav-search .nav-sub ul ul li a:hover {
    background: #ccc;
    /* Old browsers */
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, #ccc 0%, #aaa 50%, #999 51%, #666 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFCCCCCC", endColorstr="#FF666666",GradientType=0 );
    /* IE6-8 */
  }
}

.ie8 .nav-search .nav-sub ul {
  display: none;
}
.ie8 .nav-search li:hover > ul {
  display: block;
}
.ie8 .nav-search > ul > li {
  display: block;
  float: left;
}
.ie8 .nav-search > ul > li.nav-teams {
  display: none;
}

#nav-search__teams li div.logo-list {
  background-image: url("../img/team_sprite.png");
  background-repeat: no-repeat;
  padding-top: 1px;
  padding-left: 24px;
}
#nav-search__teams li div.diamondbacks {
  background-position: -2px -4px;
  height: 17px;
}
#nav-search__teams li div.braves {
  background-position: -2px -26px;
  height: 19px;
}
#nav-search__teams li div.orioles {
  background-position: -2px -49px;
  height: 19px;
}
#nav-search__teams li div.bosox {
  background-position: -2px -72px;
  height: 20px;
}
#nav-search__teams li div.cubs {
  background-position: -2px -95px;
  height: 20px;
}
#nav-search__teams li div.chisox {
  background-position: -2px -118px;
  height: 20px;
}
#nav-search__teams li div.reds {
  background-position: -2px -143px;
  height: 15px;
}
#nav-search__teams li div.guardians {
  background-position: -2px -164px;
  height: 20px;
}
#nav-search__teams li div.rockies {
  background-position: -2px -187px;
  height: 20px;
}
#nav-search__teams li div.tigers {
  background-position: -2px -210px;
  height: 20px;
}
#nav-search__teams li div.astros {
  background-position: -2px -235px;
  height: 17px;
}
#nav-search__teams li div.royals {
  background-position: -2px -256px;
  height: 20px;
}
#nav-search__teams li div.angels {
  background-position: -2px -278px;
  height: 20px;
}
#nav-search__teams li div.dodgers {
  background-position: -2px -302px;
  height: 20px;
}
#nav-search__teams li div.marlins {
  background-position: -2px -325px;
  height: 19px;
}
#nav-search__teams li div.brewers {
  background-position: -2px -348px;
  height: 20px;
}
#nav-search__teams li div.twins {
  background-position: -2px -371px;
  height: 20px;
}
#nav-search__teams li div.mets {
  background-position: -2px -394px;
  height: 20px;
}
#nav-search__teams li div.yankees {
  background-position: -2px -417px;
  height: 20px;
}
#nav-search__teams li div.athletics {
  background-position: -2px -441px;
  height: 17px;
}
#nav-search__teams li div.phillies {
  background-position: -2px -463px;
  height: 20px;
}
#nav-search__teams li div.pirates {
  background-position: -2px -486px;
  height: 20px;
}
#nav-search__teams li div.padres {
  background-position: -2px -509px;
  height: 20px;
}
#nav-search__teams li div.giants {
  background-position: -2px -532px;
  height: 20px;
}
#nav-search__teams li div.mariners {
  background-position: -2px -555px;
  height: 20px;
}
#nav-search__teams li div.cardinals {
  background-position: -2px -578px;
  height: 20px;
}
#nav-search__teams li div.rays {
  background-position: -2px -602px;
  height: 18px;
}
#nav-search__teams li div.rangers {
  background-position: -2px -624px;
  height: 19px;
}
#nav-search__teams li div.jays {
  background-position: -2px -647px;
  height: 18px;
}
#nav-search__teams li div.nationals {
  background-position: -2px -670px;
  height: 20px;
}
#nav-search__teams li div.none, #nav-search__teams li div.mlb {
  background-position: -2px -694px;
  height: 20px;
}
@media screen and (max-width: 1029px) {
  #nav-search__teams li div.logo-list {
    background-image: url("../img/team_sprite1.png");
    background-repeat: no-repeat;
    padding: 0;
  }
}

.site-search {
  float: right;
  margin-right: 24px;
  margin-right: 1.5rem;
}
@media screen and (max-width: 1029px) {
  .site-search {
    padding: 0 8px;
    margin: 0 0 8px;
    float: none;
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1029px) {
  .site-search {
    padding: 0 16px;
  }
}
.site-search input, .site-search label {
  float: left;
  display: block;
}
.site-search label {
  font-family: "rockwell", serif;
  text-transform: uppercase;
  color: white;
  margin-right: 0.5em;
  height: 30px;
  line-height: 30px;
  font-weight: bold;
}
@media screen and (max-width: 1283px) {
  .site-search label {
    display: none;
  }
}
.site-search input[type=search],
.site-search input[type=text] {
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px solid #aaa;
  width: 160px;
  height: 28px;
  line-height: 28px;
  margin-right: 0.5em;
  background: #3b3b3b;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to right, #3b3b3b 0%, #666 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF3B3B3B", endColorstr="#FF666666",GradientType=1 );
  /* IE6-8 */
  -ms-box-shadow: inset 0 0 10px #000;
  -o-box-shadow: inset 0 0 10px #000;
  box-shadow: inset 0 0 10px #000;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  color: white;
  font-size: 0.8125em;
  padding: 0 0.5em;
}
@media screen and (max-width: 1029px) {
  .site-search input[type=search],
.site-search input[type=text] {
    width: 78%;
    float: left;
    margin-right: 0;
  }
}
@media screen and (min-width: 480px) and (max-width: 1029px) {
  .site-search input[type=search],
.site-search input[type=text] {
    margin-right: 0.5em;
  }
}
.site-search input[type=submit] {
  font-family: "rockwell", serif;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px solid #aaa;
  color: white;
  height: 28px;
  line-height: 24px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  background: #d94040;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #d94040 0%, #b14040 50%, #940101 51%, #610101 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFD94040", endColorstr="#FF610101",GradientType=0 );
  /* IE6-8 */
}
.site-search input[type=submit]:hover {
  background: #7f0101;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #7f0101 0%, #b20101 50%, #b14040 51%, #d94040 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF7F0101", endColorstr="#FFD94040",GradientType=0 );
  /* IE6-8 */
}
@media screen and (max-width: 479px) {
  .site-search input[type=submit] {
    width: 20%;
    float: right;
  }
}

.nav-primary {
  position: relative;
  clear: both;
  background-color: #f00;
  overflow: visible;
  whitespace: nowrap;
  border-radius: 0 16px 0 0;
  background: #d94040;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #d94040 0%, #b14040 50%, #940101 51%, #610101 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFD94040", endColorstr="#FF610101",GradientType=0 );
  /* IE6-8 */
  text-shadow: 1px 1px 0 #333;
  padding-left: 0.7em;
  padding-right: 0.7em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 879px) {
  .nav-primary {
    font-size: 0.8125rem;
  }
}
.nav-primary a {
  color: white;
  font-family: "rockwell", serif;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0;
  white-space: nowrap;
}
.nav-primary ul {
  margin-left: 0;
  list-style: none;
}
.nav-primary > ul {
  margin-bottom: 0;
  float: left;
}
@media screen and (max-width: 1029px) {
  .nav-primary > ul {
    float: none;
  }
}
.nav-primary > ul > li {
  display: inline-block;
  position: relative;
  margin-right: 6px;
}
.nav-primary > ul > li:after {
  content: " |";
  margin-left: 6px;
  color: white;
}
.nav-primary > ul > li > a {
  height: 3em;
  line-height: 3em;
  margin-left: 0;
}
.nav-primary > ul > li:last-child:after {
  content: none;
}
.nav-primary .nav-sub, .nav-primary .nav-search .nav-sub ul, .nav-search .nav-sub .nav-primary ul {
  display: none;
  position: absolute;
  top: 3em;
  left: 0;
  background: #951e1e;
  z-index: 10;
  border-radius: 0 0 16px 16px;
}
.nav-primary .nav-sub li > a, .nav-primary .nav-search .nav-sub ul li > a, .nav-search .nav-sub .nav-primary ul li > a {
  height: 2.5em;
  line-height: 2.5em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  width: 100%;
  padding: 0 1em;
}
.nav-primary .nav-sub li > a:hover, .nav-primary .nav-search .nav-sub ul li > a:hover, .nav-search .nav-sub .nav-primary ul li > a:hover {
  background-color: #a22020;
}
.nav-primary .nav-sub li:last-child a, .nav-search .nav-sub .nav-primary ul li:last-child a {
  height: auto;
  border-radius: 0 0 16px 16px;
}
.nav-primary li:hover {
  cursor: pointer;
}
.nav-primary ul ul ul {
  display: none;
}
@media screen and (min-width: 1030px) {
  .nav-primary li:hover > .nav-sub, .nav-primary .nav-search .nav-sub li:hover > ul, .nav-search .nav-sub .nav-primary li:hover > ul {
    display: block;
  }
}
@media screen and (max-width: 1029px) {
  .nav-primary {
    padding: 0;
    background: none;
  }
  .nav-primary > ul > li {
    display: block;
    width: 100%;
  }
  .nav-primary > ul > li:after {
    content: none;
  }
  .nav-primary > ul > li a, .nav-primary > ul > li span {
    background: #d94040;
    /* Old browsers */
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, #d94040 0%, #b14040 50%, #940101 51%, #610101 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFD94040", endColorstr="#FF610101",GradientType=0 );
    /* IE6-8 */
    padding: 0 8px;
    display: block;
  }
  .nav-primary ul ul.nav-sub, .nav-primary ul .nav-search .nav-sub ul, .nav-search .nav-sub .nav-primary ul ul {
    position: relative;
    top: 0;
    left: 0;
    border-radius: 0;
  }
  .nav-primary ul ul.nav-sub li > a, .nav-primary ul .nav-search .nav-sub ul li > a, .nav-search .nav-sub .nav-primary ul ul li > a {
    padding-left: 16px;
    border: none;
    background: #aaa;
    /* Old browsers */
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, #aaa 0%, #999 50%, #777 51%, #444 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFAAAAAA", endColorstr="#FF444444",GradientType=0 );
    /* IE6-8 */
  }
  .nav-primary ul ul.nav-sub li:last-child a, .nav-primary ul .nav-search .nav-sub ul li:last-child a, .nav-search .nav-sub .nav-primary ul ul li:last-child a {
    border-radius: 0;
  }
}

.ie8 .nav-primary ul li:hover > .nav-sub, .ie8 .nav-primary ul .nav-search .nav-sub li:hover > ul, .nav-search .nav-sub .ie8 .nav-primary ul li:hover > ul {
  display: block;
}
.ie8 .nav-primary ul li:hover > .nav-sub ul, .ie8 .nav-primary ul .nav-search .nav-sub li:hover > ul ul, .nav-search .nav-sub .ie8 .nav-primary ul li:hover > ul ul {
  display: none;
}

.push-header {
  background: #3b3b3b;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to right, #3b3b3b 0%, #666 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FF3B3B3B", endColorstr="#FF666666",GradientType=1 );
  /* IE6-8 */
  margin-bottom: 0;
  height: 2.5em;
  line-height: 2.5em;
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-style: italic;
  -ms-box-shadow: inset 0 0 10px #000;
  -o-box-shadow: inset 0 0 10px #000;
  box-shadow: inset 0 0 10px #000;
  text-shadow: 2px 2px 2px #333;
  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
}

.main-header.mlb {
  background: #003366 url(../img/bg-dirt-top.jpg);
}

.main-header.diamondbacks {
  background: #666666 url(../img/bg-header/bg-dirt-diamondbacks.jpg);
}

.main-header.braves {
  background: #13274f url(../img/bg-header/bg-dirt-braves.jpg);
}

.main-header.orioles {
  background: #df4601 url(../img/bg-header/bg-dirt-orioles.jpg);
}

.main-header.bosox {
  background: #0D2B56 url(../img/bg-header/bg-dirt-bosox.jpg);
}

.main-header.cubs {
  background: #0E3386 url(../img/bg-header/bg-dirt-cubs.jpg);
}

.main-header.reds {
  background: #C6011F url(../img/bg-header/bg-dirt-reds.jpg);
}

.main-header.indians {
  background: #002b5c url(../img/bg-header/bg-dirt-indians.jpg);
}

.main-header.rockies {
  background: #333366 url(../img/bg-header/bg-dirt-rockies.jpg);
}

.main-header.tigers {
  background: #0C2C56 url(../img/bg-header/bg-dirt-tigers.jpg);
}

.main-header.chisox {
  background: #85888b url(../img/bg-header/bg-dirt-chisox.jpg);
}

.main-header.astros {
  background: #002d62 url(../img/bg-header/bg-dirt-astros.jpg);
}

.main-header.royals {
  background: #004687 url(../img/bg-header/bg-dirt-royals.jpg);
}

.main-header.angels {
  background: #ba0021 url(../img/bg-header/bg-dirt-angels.jpg);
}

.main-header.dodgers {
  background: #005A9C url(../img/bg-header/bg-dirt-dodgers.jpg);
}

.main-header.marlins {
  background: #0077C8 url(../img/bg-header/bg-dirt-marlins.jpg);
}

.main-header.brewers {
  background: #0a2351 url(../img/bg-header/bg-dirt-brewers.jpg);
}

.main-header.twins {
  background: #002b5c url(../img/bg-header/bg-dirt-twins.jpg);
}

.main-header.mets {
  background: #002d72 url(../img/bg-header/bg-dirt-mets.jpg);
}

.main-header.yankees {
  background: #132448 url(../img/bg-header/bg-dirt-yankees.jpg);
}

.main-header.athletics {
  background: #003831 url(../img/bg-header/bg-dirt-athletics.jpg);
}

.main-header.phillies {
  background: #284898 url(../img/bg-header/bg-dirt-phillies.jpg);
}

.main-header.pirates {
  background: #000000 url(../img/bg-header/bg-dirt-pirates.jpg);
}

.main-header.padres {
  background: #b3a369 url(../img/bg-header/bg-dirt-padres.jpg);
}

.main-header.giants {
  background: #FD5A1E url(../img/bg-header/bg-dirt-giants.jpg);
}

.main-header.mariners {
  background: #0c2c56 url(../img/bg-header/bg-dirt-mariners.jpg);
}

.main-header.cardinals {
  background: #C41E3A url(../img/bg-header/bg-dirt-cardinals.jpg);
}

.main-header.rays {
  background: #092c5c url(../img/bg-header/bg-dirt-rays.jpg);
}

.main-header.rangers {
  background: #003278 url(../img/bg-header/bg-dirt-rangers.jpg);
}

.main-header.jays {
  background: #134a8e url(../img/bg-header/bg-dirt-jays.jpg);
}

.main-header.nationals {
  background: #ab0003 url(../img/bg-header/bg-dirt-nationals.jpg);
}

.main-header.mlbpaa {
  background: #003366 url(../img/bg-header/bg-dirt-mlbpaa.jpg);
}

.main-header.steiner {
  background: #00457c url(../img/bg-header/bg-dirt-steiner.jpg);
}

.main-header.mountedMemories {
  background: #1a4278 url(../img/bg-header/bg-dirt-mountedMemories.jpg);
}

.main-header.highlandMint {
  background: #85888b url(../img/bg-header/bg-dirt-highlandMint.jpg);
}

.main-header.sportsbuy {
  background: #85888b url(../img/bg-header/bg-dirt-sportsbuy.jpg);
}

.ccframe {
  width: 100%;
  height: 10.5em;
}

.currency-form {
  margin: 16px;
}
.currency-form fieldset {
  margin: 32px 0;
}
.currency-form small {
  font-size: 14px;
  color: #999999;
}
.currency-form input[type=number],
.currency-form select {
  display: inline-block;
  height: 48px;
  line-height: 48px;
  border-radius: 0;
  background-image: none;
  box-shadow: none;
  border: 1px solid #ccc;
  margin-right: 0;
  font-size: 16px;
  width: 100%;
}
@media screen and (min-width: 330px) {
  .currency-form input[type=number],
.currency-form select {
    width: 48%;
  }
}
@media screen and (min-width: 600px) {
  .currency-form input[type=number],
.currency-form select {
    width: 64px;
  }
}
@media screen and (min-width: 600px) {
  .currency-form select {
    margin-right: 16px;
  }
}
.currency-form input[type=number] {
  padding: 0 16px;
  margin-right: 2%;
  width: 100%;
  margin-bottom: 8px;
}
@media screen and (min-width: 330px) {
  .currency-form input[type=number] {
    width: 48%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 600px) {
  .currency-form input[type=number] {
    width: 128px;
    margin-right: 16px;
  }
}
.currency-form .currency-converter__group {
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .currency-form .currency-converter__group {
    width: auto;
  }
}
.currency-form .currency-result {
  margin: 0;
  font-weight: bold;
}
.currency-form .currency-converter-to {
  margin-right: 16px;
  display: inline-block;
}
.currency-form .currency-converter-to-sm {
  display: block;
  margin: 16px 0;
  width: 98%;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .currency-form .currency-converter-to-sm {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .currency-form .currency-converter-to-lg {
    display: none;
  }
}

.currency-calc {
  margin: 0.5rem 0;
  display: block;
}

.currency-calc,
.currency-calc-link-container {
  font-family: "rockwell", serif;
  clear: both;
  text-transform: none;
  color: #003366;
  font-weight: bold;
  text-decoration: underline;
  font-size: 1rem;
}

.auction-current-bid > span,
.item-price > span {
  white-space: nowrap;
}
.auction-current-bid > span .seller-currency,
.item-price > span .seller-currency {
  font-size: 1em;
}

.buynow-promo {
  background: #cc0000;
  color: white;
  padding: 15px;
  margin-top: -10px;
  position: relative;
  overflow: hidden;
}
.buynow-promo :last-child {
  margin-bottom: 0;
}
.buynow-promo a {
  text-decoration: underline;
  color: white;
  transition: all 0.3s ease;
}
.buynow-promo a:hover {
  color: white;
  opacity: 0.8;
}
.buynow-promo p {
  animation: marquee 12s linear infinite;
  top: 0;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
.index .content-main {
  background: #003366 url(../img/bg-index.jpg) no-repeat center top;
  padding-top: 16px;
}
.index .content-main .msg {
  margin-top: 0;
}

.team-bar-44 {
  margin: 10px 0;
}
@media (max-width: 969px) {
  .team-bar-44 {
    display: none;
  }
}
.team-bar-44 .al-section,
.team-bar-44 .nl-section {
  text-align: center;
}
.team-bar-44 .al-section ul li,
.team-bar-44 .nl-section ul li {
  display: inline-block;
  vertical-align: middle;
}
.team-bar-44 .al-section ul li a,
.team-bar-44 .nl-section ul li a {
  display: block;
  padding: 5px;
  border: 1px solid transparent;
}
.team-bar-44 .al-section ul li a img,
.team-bar-44 .nl-section ul li a img {
  display: block;
}
.team-bar-44 .al-section {
  margin-bottom: 4px;
}
.team-bar-44 .al-section a:hover {
  border: 1px solid #292b78;
}
.team-bar-44 .nl-section a:hover {
  border: 1px solid #cb2028;
}
.team-bar-44 .al-title {
  color: #292b78;
}
.team-bar-44 .nl-title {
  color: #cb2028;
}

.home__content-areas {
  color: white;
  text-shadow: 0 1px 0 black;
  padding: 0 0 16px;
  margin: 0 16px;
}
@media screen and (max-width: 479px) {
  .home__content-areas {
    border-bottom: none;
    margin: 0;
  }
}
.home__content-areas .home__content-areas__promos {
  display: table;
  width: 100%;
  padding: 16px 0;
}
@media screen and (max-width: 479px) {
  .home__content-areas .home__content-areas__promos {
    display: block;
  }
}
.home__content-areas .promo {
  border-left: 1px solid #92adbf;
  display: block;
  float: left;
}
.home__content-areas .promo:first-child {
  border-left: none;
}
.home__content-areas .promo .btn, .home__content-areas .promo .headings-bar__box .listing-mode-switch li a, .headings-bar__box .listing-mode-switch li .home__content-areas .promo a {
  margin-bottom: 1rem;
  display: block;
}
.home__content-areas .promo .btn:last-child, .home__content-areas .promo .headings-bar__box .listing-mode-switch li a:last-child, .headings-bar__box .listing-mode-switch li .home__content-areas .promo a:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 479px) {
  .home__content-areas .home__content-areas__promos--primary {
    padding-bottom: 0;
    padding-top: 0;
  }
}
.home__content-areas .home__content-areas__promos--primary .promo {
  padding: 0 16px;
  text-align: center;
  width: 50%;
}
@media screen and (max-width: 479px) {
  .home__content-areas .home__content-areas__promos--primary .promo {
    width: 100%;
    display: block;
    border-left: none;
    border-bottom: 1px solid #92adbf;
    padding-top: 0;
    padding-bottom: 8px;
  }
  .home__content-areas .home__content-areas__promos--primary .promo:last-child {
    border: none;
  }
}
.home__content-areas .home__content-areas__promos--primary .promo h1, .home__content-areas .home__content-areas__promos--primary .promo .h1 {
  margin-bottom: 0;
  font-size: 2rem;
}
.home__content-areas .home__content-areas__promos--primary .promo p {
  margin-bottom: 4px;
  font-family: "rockwell", serif;
}
.home__content-areas .home__content-areas__promos--secondary {
  background: url(../img/bg-promo-secondary.png) repeat-x left bottom;
}
@media screen and (max-width: 479px) {
  .home__content-areas .home__content-areas__promos--secondary {
    background: none;
  }
}
.home__content-areas .home__content-areas__promos--secondary .promo {
  width: 33.33333%;
  position: relative;
  font-family: "rockwell", serif;
  padding-bottom: 3em;
  padding-bottom: 0;
  background-size: 60% auto !important;
}
@media screen and (max-width: 479px) {
  .home__content-areas .home__content-areas__promos--secondary .promo {
    width: 100%;
    display: block;
    background-size: auto 100% !important;
    border: none;
    margin-bottom: 16px;
  }
}
.home__content-areas .home__content-areas__promos--secondary .promo .promo-content {
  padding: 0 16px;
  font-size: 14px;
  max-width: 50%;
}
.home__content-areas .home__content-areas__promos--secondary .promo .promo-content strong {
  font-size: 16px;
}
.home__content-areas .home__content-areas__promos--secondary .promo .promo__link-action {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  padding: 0 16px;
  text-transform: uppercase;
  font-weight: bold;
  height: 41px;
  line-height: 41px;
  color: white;
  text-shadow: none;
}
.home__content-areas .home__content-areas__promos--secondary .promo .promo__link-action:after {
  content: " ";
  font-family: fontAwesome;
  font-size: 0.5em;
  position: relative;
  top: -0.25em;
}
@media screen and (max-width: 1029px) {
  .home__content-areas .home__content-areas__promos--secondary .promo .promo__link-action {
    font-size: 14px;
    font-size: 0.875rem;
    bottom: -16px;
  }
}
@media screen and (max-width: 479px) {
  .home__content-areas .home__content-areas__promos--secondary .promo .promo__link-action {
    bottom: 0;
    background: url(../img/bg-promo-secondary.png) repeat-x left bottom;
    font-size: 16px;
    font-size: 1rem;
  }
}
.home__content-areas .home__content-areas__promos--secondary .promo .promo__link-action a {
  color: white;
  text-shadow: none;
}
.home__content-areas .home__content-areas__promos--secondary .promo .promo__link-action a:after {
  content: " ";
  font-family: fontAwesome;
  font-size: 0.5em;
  position: relative;
  top: -0.25em;
}

.index-brands {
  background: url(../img/bg-partner-panel.jpg) repeat-y center top;
  height: 88px;
  position: relative;
}
.index-brands h1, .index-brands .h1 {
  position: absolute;
  font-size: 16px;
  text-transform: uppercase;
  margin: 8px 0 0 16px;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.7);
}
.index-brands h1 a, .index-brands .h1 a {
  color: #333;
}
.index-brands li {
  position: relative;
  display: inline-block;
  width: 17%;
  vertical-align: middle;
}
.index-brands .index-brands__steiner {
  position: absolute;
  top: 32px;
  left: 40px;
}
.index-brands .index-brands__mlbpaa {
  margin-left: 30%;
}
@media screen and (max-width: 1029px) {
  .index-brands {
    background: white;
    height: auto;
  }
  .index-brands h1, .index-brands .h1 {
    position: relative;
    background: #dedede;
    font-size: 24px;
    border-bottom: 1px solid white;
    margin-bottom: 0;
    -ms-box-shadow: 0 3px 3px #ccc;
    -o-box-shadow: 0 3px 3px #ccc;
    box-shadow: 0 3px 3px #ccc;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    color: #003366;
    padding: 0.1em 8px;
    line-height: 1.5em;
    margin-left: 0;
    text-decoration: none;
  }
  .index-brands h1 a, .index-brands .h1 a {
    color: #1d2e5c;
  }
  .index-brands ul {
    padding-top: 8px;
  }
  .index-brands li {
    position: relative;
    display: block;
    width: 100% !important;
    left: 0 !important;
    top: 0 !important;
    padding: 4px 0;
    border-top: 1px solid #c5c6c9;
    height: 50px;
    line-height: 50px;
  }
  .index-brands li:first-child {
    border-top: none;
  }
  .index-brands li img {
    margin-left: 16px;
    max-height: 100%;
    width: auto;
    max-width: none;
    display: block;
    line-height: 50px;
  }
  .index-brands .index-brands__steiner {
    position: relative;
    top: 0 !important;
    left: 0 !important;
  }
  .index-brands .index-brands__mlbpaa {
    margin-left: 0;
  }
}
@media screen and (max-width: 479px) {
  .index-brands h1, .index-brands .h1 {
    font-size: 20px;
  }
}

.index-brands-banners {
  position: relative;
  height: 200px;
}
.index-brands-banners img {
  height: auto;
}
@media screen and (max-width: 1284px) {
  .index-brands-banners {
    height: auto;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 0;
  }
  .index-brands-banners img {
    height: auto;
  }
}
#auctionDisplay .content > .breadcrumbs {
  margin-top: 16px;
}

.auction-title {
  color: #cc0000;
  margin-bottom: 8px;
}
.auction-title .auction-title__partner-logo {
  float: left;
  width: 80px;
  height: 60px;
  text-align: center;
  position: relative;
  display: block;
  border: 1px solid #eee;
  box-shadow: 0 0 6px #eee;
  border-radius: 6px;
  padding: 6px;
}
@media (max-width: 479px) {
  .auction-title .auction-title__partner-logo {
    width: 60px;
    height: 40px;
  }
}
.auction-title .auction-title__partner-logo:hover {
  border-color: #ddd;
  box-shadow: 0 0 4px #ddd;
}
.auction-title .auction-title__partner-logo img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto;
}
.auction-title h1, .auction-title .h1 {
  margin-bottom: 0;
  font-size: 26px;
  margin-left: 88px;
}
@media (max-width: 479px) {
  .auction-title h1, .auction-title .h1 {
    margin-left: 68px;
    font-size: 18px;
  }
}

.auction-images {
  float: left;
  width: 50%;
  padding-right: 1em;
}
@media (max-width: 479px) {
  .auction-images {
    float: none;
    width: auto;
    padding-right: 0;
  }
}
.auction-images img {
  border: 1px solid #c5c6c9;
}
.auction-images .auction-image-main {
  width: 98%;
  height: auto;
}

.auction-thumbs li {
  overflow: visible;
  width: 20%;
  float: left;
  padding: 2% 2% 0 0;
}

.sweeptakes .auction-thumbs li {
  width: 12%;
  float: none;
  display: inline-block;
}
@media (max-width: 1029px) {
  .sweeptakes .auction-thumbs li {
    width: 20%;
  }
}

.auction-info {
  float: right;
  width: 50%;
  overflow: hidden;
}
@media (max-width: 479px) {
  .auction-info {
    float: none;
    width: auto;
    clear: both;
    padding-bottom: 8px;
  }
}
.auction-info ul {
  border-bottom: 1px solid #909398;
  padding: 0 0 8px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1029px) {
  .auction-info ul {
    font-size: 14px;
  }
}
@media screen and (max-width: 700px) {
  .auction-info ul {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.auction-info form {
  font-size: 16px;
}
.auction-info form label {
  font-size: 16px;
}
.auction-info #time_left {
  margin-top: 8px;
  margin-bottom: 8px;
  color: #cc0000;
  text-transform: uppercase;
  clear: both;
}
.auction-info #time_left span {
  font-weight: bold;
  text-transform: none;
}
.auction-info .ends {
  color: #c5c6c9;
}

.auction-current-bid {
  color: #003366;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "rockwell", serif;
  font-size: 18px;
  margin-bottom: 8px;
}
.auction-current-bid span {
  font-size: 1.5em;
}
.auction-current-bid div > span {
  font-size: 12px;
}
.auction-current-bid div > span.met:after {
  content: " ";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 1.5em;
  color: #81a66b;
  position: relative;
  top: 0.1em;
}
.auction-current-bid div > span.not-met:after {
  content: " ";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 1.5em;
  color: #D04040;
  position: relative;
  top: 0.1em;
}

.auction-bid-amount {
  color: #003366;
  font-family: "rockwell", serif;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
  float: left;
  width: 50%;
}
@media screen and (max-width: 1029px) {
  .auction-bid-amount {
    width: 100%;
    margin-right: 0;
  }
}
.auction-bid-amount input[type=text] {
  font-family: "rockwell", serif;
  border: 1px solid #c5c6c9;
  width: 10em;
  -webkit-appearance: none;
  border-radius: 0;
  width: 90%;
}
@media screen and (max-width: 1029px) {
  .auction-bid-amount input[type=text] {
    width: 100%;
  }
}
.auction-bid-amount label {
  margin-right: 1em;
}

#requestedQty {
  margin-left: 2px;
}

.auction-bid-button {
  float: left;
  font-size: 24px;
  padding-top: 8px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1029px) {
  .auction-bid-button {
    width: 100%;
  }
}
.auction-bid-button input {
  width: 100%;
}
.auction-bid-button .btn--sms {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.auction-bid-button .btn--sms .fa {
  position: relative;
  top: 7px;
}
.auction-bid-button .btn--sms {
  display: none;
}
.auction-bid-button .sms-bid-instructions {
  font-size: 1rem;
  margin: 1rem 0;
}

.is-sms-available .auction-bid-button.has-sms-link .btn--sms {
  display: inline-block !important;
  margin-top: 20px;
  width: 100%;
}

.auction-note {
  clear: both;
}
.auction-note p {
  font-size: 14px;
  font-weight: bold;
  color: #cc0000;
}

.watch-list {
  margin-top: 0.5em;
}
@media (max-width: 1029px) {
  .watch-list {
    display: none;
  }
}

.auction-stats {
  width: 50%;
  float: right;
  font-size: 16px;
  color: #003366;
}
.auction-stats table {
  border-bottom: 1px solid #909398;
  margin-bottom: 8px;
}
@media screen and (max-width: 700px) {
  .auction-stats table {
    width: 50%;
    float: left;
    border-bottom: none;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 479px) {
  .auction-stats table {
    border-bottom: 1px solid #909398;
    width: 100%;
    float: none;
    margin-bottom: 8px;
  }
}
.auction-stats th, .auction-stats td {
  padding: 0;
  width: 50%;
}
@media screen and (max-width: 700px) {
  .auction-stats th, .auction-stats td {
    display: inline-block;
    width: auto;
    margin-right: 0.5em;
    padding-bottom: 8px;
  }
}
.auction-stats tr:last-child th,
.auction-stats tr:last-child td {
  padding-bottom: 8px;
}
@media screen and (max-width: 700px) {
  .auction-stats tr:last-child th,
.auction-stats tr:last-child td {
    padding-bottom: 0;
  }
}
.auction-stats th {
  font-weight: normal;
}
@media screen and (max-width: 1029px) {
  .auction-stats th span {
    display: none;
  }
}
.auction-stats td {
  font-weight: bold;
}
.auction-stats td.listing-type-value:after {
  content: " ";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 1em;
  position: relative;
  top: 0;
}
.auction-stats .show-content-trigger {
  text-decoration: underline;
  font-style: 0.875em;
}
@media screen and (max-width: 479px) {
  .auction-stats .popup-modal {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .auction-stats {
    width: 100%;
    display: block;
    float: none;
    content: "";
    display: table;
    clear: both;
    overflow: auto;
    border-top: 1px solid #909398;
    border-bottom: 1px solid #909398;
  }
}
@media screen and (max-width: 1029px) {
  .auction-stats {
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  .auction-stats {
    border-bottom: none;
  }
}
.auction-details {
  clear: both;
}
.auction-details h3, .auction-details .h3, .auction-details .checkout-section h2, .checkout-section .auction-details h2, .auction-details .checkout-section .h2, .checkout-section .auction-details .h2, .auction-details .dlist-title {
  margin: 0 0 8px;
}
.auction-details h3 a, .auction-details .h3 a, .auction-details .checkout-section h2 a, .checkout-section .auction-details h2 a, .auction-details .checkout-section .h2 a, .checkout-section .auction-details .h2 a, .auction-details .dlist-title a {
  color: #cc0000;
  font-family: "rockwell", serif;
  text-transform: uppercase;
  line-height: 1;
  font-size: 18px;
}
.auction-details h4, .auction-details .h4 {
  font-size: 16px;
  margin: 0 0 8px;
  color: #003366;
}
.auction-details .auction-details-content {
  margin-bottom: 1em;
}
.auction-details .auction-details-content p {
  font-size: 0.875em;
}
.auction-details .auction-details-content em {
  color: #cc0000;
}
.auction-details .auction-details-content strong {
  color: #cc0000;
  font-weight: bold;
}
.auction-details .auction-details-content a {
  font-weight: bold;
}
.auction-details .auction-details-content ul {
  margin-bottom: 8px;
}
.auction-details .auction-details-content ul li {
  font-size: 0.875em;
}
.auction-details .auction-description {
  font-size: 0.875em;
}
.auction-details .reveal-is-open {
  display: block !important;
}

#auction-payment em {
  color: #333;
  font-style: italic;
}

.currentUserBid {
  color: #cc0000;
}

p.currentUserBid {
  font-size: 0.875em;
}
p.currentUserBid a {
  text-decoration: underline;
}

.bid-history tbody tr td div.the-winner {
  font-weight: bold;
  font-size: 0.875em;
  color: #cc0000;
  margin-left: 0.5em;
}

.sharing--auction-display {
  width: 50%;
  float: right;
}
@media screen and (max-width: 1029px) {
  .sharing--auction-display {
    width: 100%;
    float: none;
    clear: both;
    margin-top: 8px;
  }
}
@media screen and (max-width: 479px) {
  .sharing--auction-display {
    margin-top: 0;
  }
}
.sharing--auction-display .sharing__internal {
  border-bottom: none;
  text-align: center;
  font-family: "rockwell", serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}
.sharing--auction-display .sharing__internal li {
  display: inline-block;
}
.sharing--auction-display .sharing__internal a {
  color: #cc0000;
  margin: 0 1em;
}
@media screen and (max-width: 1029px) {
  .sharing--auction-display .sharing__internal {
    text-align: left;
  }
  .sharing--auction-display .sharing__internal a {
    margin: 0 2em 0 0;
  }
}
@media screen and (max-width: 610px) {
  .sharing--auction-display .sharing__internal {
    content: "";
    display: table;
    clear: both;
    display: block;
    float: none;
  }
}
.sharing--auction-display .sharing__social {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 1029px) {
  .sharing--auction-display .sharing__social {
    text-align: left;
  }
}
@media screen and (max-width: 1029px) and (max-width: 1029px) {
  .sharing--auction-display .sharing__social li {
    margin: 0 1em 0 0;
  }
}

.bid-select-address {
  overflow: auto;
  margin-bottom: 1em;
}
.bid-select-address .addr-nick {
  font-size: 1em;
}
.bid-select-address > li {
  display: block;
  overflow: auto;
  padding-left: 2px;
}
.bid-select-address input[type=radio] {
  float: left;
  margin-top: 0.6em;
}
.bid-select-address .vcard {
  float: left;
  margin-left: 0.5em;
}

.manage-bid__personalize {
  margin-bottom: 1rem;
}
.manage-bid__personalize h4, .manage-bid__personalize .h4 {
  margin-bottom: 0.5rem;
}

.bid-address {
  margin-top: 0.5em;
}

.bid-status-auction-list .reveal > h2, .bid-status-auction-list .reveal > .h2 {
  font-size: 20px;
  font-family: "rockwell", serif;
  font-weight: bold;
  text-transform: none;
  background: transparent;
}
.bid-status-auction-list .reveal > h2 > a, .bid-status-auction-list .reveal > .h2 > a {
  color: #003366;
}
.bid-status-auction-list .reveal > h2 > a:hover, .bid-status-auction-list .reveal > .h2 > a:hover {
  text-decoration: none;
}
.bid-status-auction-list .bid-status-list-heading {
  font-size: 16px;
  padding: 0.5em 0.5em 0 0;
  display: none;
}
@media screen and (max-width: 479px) {
  .bid-status-auction-list .bid-status-list-heading {
    display: block;
  }
}
.bid-status-auction-list .prd {
  padding: 0.5em;
  margin-bottom: 0.5em;
  display: block;
}
.bid-status-auction-list .prd img {
  max-height: none;
  max-width: 100px;
}
.bid-status-auction-list .prd-header,
.bid-status-auction-list .prd-details {
  margin-left: 120px;
}
.bid-status-auction-list .prd-header h3, .bid-status-auction-list .prd-header .h3, .bid-status-auction-list .prd-header .checkout-section h2, .checkout-section .bid-status-auction-list .prd-header h2, .bid-status-auction-list .prd-header .checkout-section .h2, .checkout-section .bid-status-auction-list .prd-header .h2, .bid-status-auction-list .prd-header .dlist-title {
  margin-bottom: 0;
}
.bid-status-auction-list ul {
  margin-bottom: 0;
}
.bid-status-auction-list .no-items {
  font-size: 14px;
}
@media (min-width: 480px) {
  .bid-status-auction-list .reveal > h2 a:hover, .bid-status-auction-list .reveal > .h2 a:hover {
    cursor: default;
    text-decoration: none;
  }
  .bid-status-auction-list .prd {
    display: table-row;
  }
  .bid-status-auction-list .bid-status-table-headings {
    display: table-row;
  }
  .bid-status-auction-list .table-heading {
    display: none;
  }
  .bid-status-auction-list td.prd-details,
.bid-status-auction-list .prd-details-heading {
    text-align: right;
  }
  .bid-status-auction-list .reveal .reveal-content {
    display: block;
  }
  .bid-status-auction-list .reveal h2 .reveal-trigger, .bid-status-auction-list .reveal .h2 .reveal-trigger {
    cursor: default;
  }
  .bid-status-auction-list .reveal h2 .reveal-trigger:after, .bid-status-auction-list .reveal .h2 .reveal-trigger:after {
    content: "";
  }
  .bid-status-auction-list .reveal .reveal-info {
    display: none;
  }
}

.ie8 .bid-status-auction-list .reveal > h2 a:hover, .ie8 .bid-status-auction-list .reveal > .h2 a:hover {
  cursor: default;
  text-decoration: none;
}
.ie8 .bid-status-auction-list .prd {
  display: table-row;
}
.ie8 .bid-status-auction-list .bid-status-table-headings {
  display: table-row;
}
.ie8 .bid-status-auction-list .table-heading {
  display: none;
}
.ie8 .bid-status-auction-list td.prd-details,
.ie8 .bid-status-auction-list .prd-details-heading {
  text-align: right;
}
.ie8 .bid-status-auction-list .reveal .reveal-content {
  display: block;
}
.ie8 .bid-status-auction-list .reveal h2 .reveal-trigger, .ie8 .bid-status-auction-list .reveal .h2 .reveal-trigger {
  cursor: default;
}
.ie8 .bid-status-auction-list .reveal h2 .reveal-trigger:after, .ie8 .bid-status-auction-list .reveal .h2 .reveal-trigger:after {
  content: "";
}
.ie8 .bid-status-auction-list .reveal .reveal-info {
  display: none;
}

.bidview-order-status-button {
  padding-bottom: 0.5em;
}

.prd-bid .prd-img {
  max-width: 20%;
}
.prd-bid .prd-header h3, .prd-bid .prd-header .h3, .prd-bid .prd-header .checkout-section h2, .checkout-section .prd-bid .prd-header h2, .prd-bid .prd-header .checkout-section .h2, .checkout-section .prd-bid .prd-header .h2, .prd-bid .prd-header .dlist-title {
  font-size: 1em;
}
.prd-bid .prd-details {
  clear: both;
  font-size: 0.875em;
  padding-top: 0.5em;
}
@media screen and (min-width: 1030px) {
  .prd-bid .prd-details {
    clear: none;
  }
}

.donation .donation-entry-form {
  background: #f4f4f4;
  padding: 30px;
}
.donation .donation-to-con {
  margin-bottom: 20px;
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
.donation .donation-to-con .donation-to {
  margin-top: 10px;
  height: 45px;
}
@media screen and (max-width: 1029px) {
  .donation .donation-to-con {
    width: 100%;
  }
}
.donation .donation-to-con .dd-container {
  margin-top: 20px;
}
.donation .donation-amt-con {
  display: inline-block;
  vertical-align: top;
  width: 45%;
}
@media screen and (max-width: 1029px) {
  .donation .donation-amt-con {
    width: 100%;
  }
}
.donation .donation-amt-con .dontion-amts {
  margin-top: 10px;
  margin-bottom: 20px;
}
.donation .donation-amt-con .dontion-amts li {
  margin-left: 50px;
  margin-top: 15px;
}
.donation .donation-amt-con .dontion-amts .donation-text {
  width: 114px;
}
.donation .donation-terms {
  margin: 20px 0;
}
.donation .error-amt {
  margin: 10px 0;
  display: none;
  color: red;
}

.nothing-to-see {
  font-size: 14px;
  font-weight: bold;
  margin: 1rem 0;
}

#content-main .content-container {
  padding: 0 16px 16px;
  padding: 0 1rem 1rem;
}
@media screen and (max-width: 1029px) {
  #content-main .content-container {
    padding: 8px;
  }
}

.partner .content-container {
  height: 300px;
}

.is-partner-selected .headings-bar + .hero--partner {
  margin-top: -10px;
}

.hero--partner img {
  width: 100%;
}

.static-content {
  padding: 0 15px 20px 15px;
  margin: 0;
}
.static-content p {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 0 0.625em 0;
}
.static-content a {
  font-weight: bold;
}
.static-content ol {
  list-style-type: decimal;
  margin: initial;
  padding: 0 0 0 30px;
}
.static-content ul {
  margin: initial;
  padding: 0 0 0 30px;
}
.static-content li {
  padding-bottom: 5px;
  display: list-item;
}
.static-content .faq-category {
  font-family: "rockwell", serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: #003366;
  margin-bottom: 0.1em;
  margin-top: 0.6em;
}
.static-content .first {
  margin-top: 0px;
}
.static-content form > fieldset > ul {
  padding-left: 0;
}

.faq-list {
  font-size: 0.875em;
}
.faq-list dt {
  margin-bottom: 0.4em;
}
.faq-list dt a {
  font-weight: bold;
  color: 0;
}
.faq-list .is-expanded a {
  text-decoration: underline;
}
.faq-list dd {
  display: none;
  margin-left: 0;
  margin-bottom: 0.5em;
  background-color: #efefef;
  padding: 0.625em 0.625em 0.2em;
}

#orderDisplay .content-container p:last-child,
#orderDisplay .content-container.vcard {
  margin-bottom: 0;
}

.sweeptakes .charity-container {
  margin-top: 45px;
}
.sweeptakes .charity-container h2, .sweeptakes .charity-container .h2, .sweeptakes .charity-container p {
  text-align: left;
}
.sweeptakes .auction-images {
  float: right;
}
@media (max-width: 830px) {
  .sweeptakes .auction-images {
    float: none;
    width: auto;
    clear: both;
    padding-bottom: 8px;
  }
}
.sweeptakes .auction-image-main-container, .sweeptakes .productMain {
  text-align: center;
}
.sweeptakes .auction-image-main-container h4, .sweeptakes .auction-image-main-container .h4, .sweeptakes .productMain h4, .sweeptakes .productMain .h4 {
  color: #05aeef;
}
.sweeptakes .auction-image-main-container {
  width: 730px;
  max-width: 100%;
  margin: auto;
}
.sweeptakes .auction-info {
  float: none;
  margin: auto;
}
.sweeptakes .auction-info ul {
  border: 0;
}
@media (max-width: 830px) {
  .sweeptakes .auction-info {
    float: none;
    width: 100%;
    margin-top: 25px;
    padding-right: 0;
  }
}
.sweeptakes .auction-info h4, .sweeptakes .auction-info .h4 {
  color: #05aeef;
}
.sweeptakes .auction-info h5.timer-title, .sweeptakes .auction-info .timer-title.h5, .sweeptakes .auction-info .timer-title.list-filter__title, .sweeptakes .auction-info .order-summary h3.timer-title, .order-summary .sweeptakes .auction-info h3.timer-title, .sweeptakes .auction-info .order-summary .timer-title.h3, .order-summary .sweeptakes .auction-info .timer-title.h3, .sweeptakes .auction-info .order-summary .checkout-section h2.timer-title, .order-summary .checkout-section .sweeptakes .auction-info h2.timer-title, .sweeptakes .auction-info .checkout-section .order-summary h2.timer-title, .checkout-section .order-summary .sweeptakes .auction-info h2.timer-title, .sweeptakes .auction-info .order-summary .checkout-section .timer-title.h2, .order-summary .checkout-section .sweeptakes .auction-info .timer-title.h2, .sweeptakes .auction-info .checkout-section .order-summary .timer-title.h2, .checkout-section .order-summary .sweeptakes .auction-info .timer-title.h2, .sweeptakes .auction-info .order-summary .timer-title.dlist-title, .order-summary .sweeptakes .auction-info .timer-title.dlist-title {
  text-align: CENTER;
  margin-bottom: 10px;
  margin-top: 38px;
}
.sweeptakes .auction-info .action-container {
  text-align: center;
  margin-top: 45px;
  margin-bottom: 60px;
}
.sweeptakes .contest-confirm {
  text-align: center;
  margin-bottom: 40px;
  margin-left: -20px;
}
.sweeptakes .contest-confirm .contest-confirm-confirm {
  text-align: left;
}
.sweeptakes .contest-stickers {
  padding: 18px;
  text-align: center;
  background: #f9f9f9;
  border-radius: 9px;
  box-shadow: inset 1px 1px 4px 0px #bfbebe;
  margin-top: 35px;
}
.sweeptakes .contest-stickers .fa {
  color: #05aeef;
  font-size: 18px;
}
.sweeptakes .contest-timer {
  text-align: center;
  color: #05aeef;
  font-size: 22px;
}
.sweeptakes .contest-container .title-donation {
  margin-top: 30px;
  text-align: center;
}
.sweeptakes .contest-container .contest-price {
  padding: 20px 0;
  margin-top: 20px;
  border-top: 1px solid #eee;
}
.sweeptakes .contest-container .contest-input {
  width: 70px;
  height: 50px;
  border-radius: 4px;
  border: 1px solid #c5c6c9;
  padding: 0.8em 0.5em;
  margin-left: 16px;
}
.sweeptakes .contest-container .contest-number {
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}
.sweeptakes .contest-container .contest-enter {
  margin-top: 20px;
}
.sweeptakes .contest-container .show-error .msg {
  text-align: center;
  width: 50%;
  margin: auto;
}
@media (max-width: 800px) {
  .sweeptakes .contest-container .show-error .msg {
    width: 100%;
  }
}
.sweeptakes .grid {
  width: 100%;
  text-align: center;
}
.sweeptakes .grid .grid__item {
  margin-right: -4px;
  margin-bottom: 25px;
}
.sweeptakes .grid__item {
  text-align: center;
}
.sweeptakes .grid__item label {
  position: relative;
}
.sweeptakes .grid__item .span-selected {
  position: absolute;
  z-index: 999;
  top: 25px;
  font-size: 11px;
  right: 0;
  background: #05aeef;
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
}
.sweeptakes .grid__item .entry-title {
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid #ddd;
  font-size: 20px;
}
.sweeptakes .grid__item .entry-desc {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 30px;
}
.sweeptakes .grid__item .entry-desc-2 {
  font-weight: normal;
  font-size: 12px;
  padding: 0 30px;
  margin: auto;
  height: 32px;
  overflow: hidden;
}
.sweeptakes .grid__item input[type=radio] {
  display: none;
}
.sweeptakes .grid__item input[type=radio]:checked + .box-selected {
  border: 1px solid #05aeef;
  background: #eee;
}
.sweeptakes .grid__item .box {
  width: 90%;
  height: 200px;
  background-color: #fff;
  border: 1px solid #ddd;
  transition: all 250ms ease;
  will-change: transition;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  font-weight: 900;
  margin-top: 35px;
}
.sweeptakes .grid__item .box:active {
  transform: translateY(10px);
}
.sweeptakes .grid__item .box:hover {
  background: #eee;
}
@media (max-width: 480px) {
  .sweeptakes .table-responsive .item_image, .sweeptakes .table-responsive .item_name, .sweeptakes .table-responsive .buckstoenter {
    text-align: center;
    margin-bottom: 10px;
  }
}
.sweeptakes .auction-title {
  text-align: center;
}
.sweeptakes .auction-title .auction-title__partner-logo {
  float: none;
  display: inline-block;
}
.sweeptakes .auction-title .auction-title__partner-logo img {
  margin-top: 20px !important;
}
.sweeptakes .auction-title .auction-title__partner-logo:hover {
  border: 0px;
  box-shadow: none;
}
.sweeptakes .auction-title h1, .sweeptakes .auction-title .h1 {
  display: inline-block;
  margin: 0px;
}

.contest-pag {
  margin: 0 20px 20px 0;
}
.contest-pag .active {
  color: #ddd;
}

.manageUerPurchasePrefForm h3, .manageUerPurchasePrefForm .h3, .manageUerPurchasePrefForm .checkout-section h2, .checkout-section .manageUerPurchasePrefForm h2, .manageUerPurchasePrefForm .checkout-section .h2, .checkout-section .manageUerPurchasePrefForm .h2, .manageUerPurchasePrefForm .dlist-title {
  font-family: "rockwell", serif;
  font-size: 1rem;
}
.manageUerPurchasePrefForm .userprofile_info {
  margin-bottom: 1rem;
}
.manageUerPurchasePrefForm .userprofile_info input[type=text] {
  width: 100%;
  max-width: 30rem;
}

.content__description .content__description__nav {
  text-align: center;
}
@media screen and (min-width: 760px) {
  .content__description .content__description__nav {
    text-align: left;
  }
}
.content__description .content__description__nav .content__description__nav__links .btn, .content__description .content__description__nav .content__description__nav__links .headings-bar__box .listing-mode-switch li a, .headings-bar__box .listing-mode-switch li .content__description .content__description__nav .content__description__nav__links a {
  width: 100%;
  clear: both;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 760px) {
  .content__description .content__description__nav .content__description__nav__links .btn, .content__description .content__description__nav .content__description__nav__links .headings-bar__box .listing-mode-switch li a, .headings-bar__box .listing-mode-switch li .content__description .content__description__nav .content__description__nav__links a {
    width: auto;
    clear: none;
    margin-right: 1rem;
  }
}

.static-content--sms-bid {
  font-size: 0.875rem;
}
.static-content--sms-bid .sms-bid-steps {
  font-size: 0.875rem;
  padding-left: 1rem;
}

.sms-bid__format-example {
  margin-bottom: 0.625rem;
  padding: 0.5rem 1rem;
  background: #eee;
  display: inline-block;
  font-weight: bold;
  border: 1px solid #ccc;
  margin-right: 1rem;
}
@media screen and (max-width: 500px) {
  .sms-bid__format-example {
    width: 100%;
    text-align: center;
  }
}

.sms-bid__format-example__note {
  margin-bottom: 0.625rem;
  padding: 0.5rem 0;
  background: white;
  font-weight: normal;
  display: inline-block;
}
@media screen and (max-width: 500px) {
  .sms-bid__format-example__note {
    width: 100%;
  }
}

.img--contstrain-width {
  width: 310px;
}

.btn--fullwidth-sm {
  padding: 0.5rem 2rem;
  font-size: 16px;
}
@media screen and (max-width: 500px) {
  .btn--fullwidth-sm {
    width: 100%;
    text-align: center;
  }
}

.check--positive {
  color: green;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

#page {
  max-width: 1284px;
  margin: 0 auto;
  border-radius: 0;
  background: transparent;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

.main-header,
.main-header.mlb {
  background-image: none;
  background-color: rgba(0, 51, 102, 0.85);
}

.content {
  background: white;
}

body {
  background: #0b0e15 url(../img/design-2018/backgrounds/bg-main.jpg) no-repeat center top;
}

.body--diamondbacks {
  background-image: url("../img/design-2018/backgrounds/bg-diamondbacks.jpg");
}

.main-header.diamondbacks {
  background-image: none;
  background-color: rgba(167, 24, 47, 0.85);
}
.main-header.diamondbacks .nav-primary, .main-header.diamondbacks .nav-primary > ul > li a {
  background: #000000;
}
.main-header.diamondbacks .nav-sub > li a:hover, .main-header.diamondbacks .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.diamondbacks ul > li a:hover {
  background: #1a1a1a;
}

.main-footer.diamondbacks {
  background-image: none;
  background-color: #a7182f;
}

.body--braves {
  background-image: url("../img/design-2018/backgrounds/bg-braves.jpg");
}

.main-header.braves {
  background-image: none;
  background-color: rgba(9, 29, 54, 0.85);
}
.main-header.braves .nav-primary, .main-header.braves .nav-primary > ul > li a {
  background: #cc0000;
}
.main-header.braves .nav-sub > li a:hover, .main-header.braves .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.braves ul > li a:hover {
  background: red;
}

.main-footer.braves {
  background-image: none;
  background-color: #091d36;
}

.body--orioles {
  background-image: url("../img/design-2018/backgrounds/bg-orioles.jpg");
}

.main-header.orioles {
  background-image: none;
  background-color: rgba(16, 16, 16, 0.85);
}
.main-header.orioles .nav-primary, .main-header.orioles .nav-primary > ul > li a {
  background: #df4601;
}
.main-header.orioles .nav-sub > li a:hover, .main-header.orioles .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.orioles ul > li a:hover {
  background: #fe5d15;
}

.main-footer.orioles {
  background-image: none;
  background-color: #101010;
}

.body--bosox {
  background-image: url("../img/design-2018/backgrounds/bg-bosox.jpg");
}

.main-header.bosox {
  background-image: none;
  background-color: rgba(12, 42, 86, 0.85);
}
.main-header.bosox .nav-primary, .main-header.bosox .nav-primary > ul > li a {
  background: #cc0000;
}
.main-header.bosox .nav-sub > li a:hover, .main-header.bosox .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.bosox ul > li a:hover {
  background: red;
}

.main-footer.bosox {
  background-image: none;
  background-color: #0c2a56;
}

.body--cubs {
  background-image: url("../img/design-2018/backgrounds/bg-cubs.jpg");
}

.main-header.cubs {
  background-image: none;
  background-color: rgba(14, 51, 133, 0.85);
}
.main-header.cubs .nav-primary, .main-header.cubs .nav-primary > ul > li a {
  background: #cc0000;
}
.main-header.cubs .nav-sub > li a:hover, .main-header.cubs .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.cubs ul > li a:hover {
  background: red;
}

.main-footer.cubs {
  background-image: none;
  background-color: #0e3385;
}

.body--chisox {
  background-image: url("../img/design-2018/backgrounds/bg-chisox.jpg");
}

.main-header.chisox {
  background-image: none;
  background-color: rgba(16, 24, 32, 0.85);
}
.main-header.chisox .nav-primary, .main-header.chisox .nav-primary > ul > li a {
  background: #101820;
}
.main-header.chisox .nav-sub > li a:hover, .main-header.chisox .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.chisox ul > li a:hover {
  background: #213242;
}

.main-footer.chisox {
  background-image: none;
  background-color: #000000;
}

.body--reds {
  background-image: url("../img/design-2018/backgrounds/bg-reds.jpg");
}

.main-header.reds {
  background-image: none;
  background-color: rgba(198, 1, 31, 0.85);
}
.main-header.reds .nav-primary, .main-header.reds .nav-primary > ul > li a {
  background: #000000;
}
.main-header.reds .nav-sub > li a:hover, .main-header.reds .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.reds ul > li a:hover {
  background: #1a1a1a;
}

.main-footer.reds {
  background-image: none;
  background-color: #c6011f;
}

.body--guardians {
  background-image: url("../img/design-2018/backgrounds/bg-guardians.jpg");
}

.main-header.guardians {
  background-image: none;
  background-color: rgba(0, 43, 92, 0.85);
}
.main-header.guardians .nav-primary, .main-header.guardians .nav-primary > ul > li a {
  background: #b90b2e;
}
.main-header.guardians .nav-sub > li a:hover, .main-header.guardians .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.guardians ul > li a:hover {
  background: #e90e3a;
}

.main-footer.guardians {
  background-image: none;
  background-color: #002b5c;
}

.body--rockies {
  background-image: url("../img/design-2018/backgrounds/bg-rockies.jpg");
}

.main-header.rockies {
  background-image: none;
  background-color: rgba(50, 0, 110, 0.85);
}
.main-header.rockies .nav-primary, .main-header.rockies .nav-primary > ul > li a {
  background: #000000;
}
.main-header.rockies .nav-sub > li a:hover, .main-header.rockies .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.rockies ul > li a:hover {
  background: #1a1a1a;
}

.main-footer.rockies {
  background-image: none;
  background-color: #32006e;
}

.body--tigers {
  background-image: url("../img/design-2018/backgrounds/bg-tigers.jpg");
}

.main-header.tigers {
  background-image: none;
  background-color: rgba(19, 40, 76, 0.85);
}
.main-header.tigers .nav-primary, .main-header.tigers .nav-primary > ul > li a {
  background: #ff6d10;
}
.main-header.tigers .nav-sub > li a:hover, .main-header.tigers .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.tigers ul > li a:hover {
  background: #ff8c43;
}

.main-footer.tigers {
  background-image: none;
  background-color: #13284c;
}

.body--astros {
  background-image: url("../img/design-2018/backgrounds/bg-astros.jpg");
}

.main-header.astros {
  background-image: none;
  background-color: rgba(0, 45, 93, 0.85);
}
.main-header.astros .nav-primary, .main-header.astros .nav-primary > ul > li a {
  background: #ee7624;
}
.main-header.astros .nav-sub > li a:hover, .main-header.astros .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.astros ul > li a:hover {
  background: #f29453;
}

.main-footer.astros {
  background-image: none;
  background-color: #002d5d;
}

.body--royals {
  background-image: url("../img/design-2018/backgrounds/bg-royals.jpg");
}

.main-header.royals {
  background-image: none;
  background-color: rgba(25, 79, 144, 0.85);
}
.main-header.royals .nav-primary, .main-header.royals .nav-primary > ul > li a {
  background: #be9b60;
}
.main-header.royals .nav-sub > li a:hover, .main-header.royals .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.royals ul > li a:hover {
  background: #cdb284;
}

.main-footer.royals {
  background-image: none;
  background-color: #194f90;
}

.body--angels {
  background-image: url("../img/design-2018/backgrounds/bg-angels.jpg");
}

.main-header.angels {
  background-image: none;
  background-color: rgba(207, 16, 45, 0.85);
}
.main-header.angels .nav-primary, .main-header.angels .nav-primary > ul > li a {
  background: #002d5d;
}
.main-header.angels .nav-sub > li a:hover, .main-header.angels .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.angels ul > li a:hover {
  background: #004690;
}

.main-footer.angels {
  background-image: none;
  background-color: #cf102d;
}

.body--dodgers {
  background-image: url("../img/design-2018/backgrounds/bg-dodgers.jpg");
}

.main-header.dodgers {
  background-image: none;
  background-color: rgba(25, 79, 144, 0.85);
}
.main-header.dodgers .nav-primary, .main-header.dodgers .nav-primary > ul > li a {
  background: #f63440;
}
.main-header.dodgers .nav-sub > li a:hover, .main-header.dodgers .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.dodgers ul > li a:hover {
  background: #f8656e;
}

.main-footer.dodgers {
  background-image: none;
  background-color: #194f90;
}

.body--marlins {
  background-image: url("../img/design-2018/backgrounds/bg-marlins.jpg");
}

.main-header.marlins {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.85);
}
.main-header.marlins .nav-primary, .main-header.marlins .nav-primary > ul > li a {
  background: #00a1e0;
}
.main-header.marlins .nav-sub > li a:hover, .main-header.marlins .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.marlins ul > li a:hover {
  background: #14bdff;
}

.main-footer.marlins {
  background-image: none;
  background-color: #000;
}

.body--brewers {
  background-image: url("../img/design-2018/backgrounds/bg-brewers.jpg");
}

.main-header.brewers {
  background-image: none;
  background-color: rgba(19, 40, 76, 0.85);
}
.main-header.brewers .nav-primary, .main-header.brewers .nav-primary > ul > li a {
  background: #d39f10;
}
.main-header.brewers .nav-sub > li a:hover, .main-header.brewers .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.brewers ul > li a:hover {
  background: #efba27;
}

.main-footer.brewers {
  background-image: none;
  background-color: #13284c;
}

.body--twins {
  background-image: url("../img/design-2018/backgrounds/bg-twins.jpg");
}

.main-header.twins {
  background-image: none;
  background-color: rgba(0, 45, 93, 0.85);
}
.main-header.twins .nav-primary, .main-header.twins .nav-primary > ul > li a {
  background: #cb003d;
}
.main-header.twins .nav-sub > li a:hover, .main-header.twins .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.twins ul > li a:hover {
  background: #fe004c;
}

.main-footer.twins {
  background-image: none;
  background-color: #002d5d;
}

.body--mets {
  background-image: url("../img/design-2018/backgrounds/bg-mets.jpg");
}

.main-header.mets {
  background-image: none;
  background-color: rgba(0, 45, 116, 0.85);
}
.main-header.mets .nav-primary, .main-header.mets .nav-primary > ul > li a {
  background: #ff681d;
}
.main-header.mets .nav-sub > li a:hover, .main-header.mets .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.mets ul > li a:hover {
  background: #ff8a50;
}

.main-footer.mets {
  background-image: none;
  background-color: #002d74;
}

.body--yankees {
  background-image: url("../img/design-2018/backgrounds/bg-yankees.jpg");
}

.main-header.yankees {
  background-image: none;
  background-color: rgba(19, 40, 76, 0.85);
}
.main-header.yankees .nav-primary, .main-header.yankees .nav-primary > ul > li a {
  background: #7b7d7e;
}
.main-header.yankees .nav-sub > li a:hover, .main-header.yankees .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.yankees ul > li a:hover {
  background: #959697;
}

.main-footer.yankees {
  background-image: none;
  background-color: #13284c;
}

.body--athletics {
  background-image: url("../img/design-2018/backgrounds/bg-athletics.jpg");
}

.main-header.athletics {
  background-image: none;
  background-color: rgba(245, 179, 36, 0.85);
}
.main-header.athletics .nav-primary, .main-header.athletics .nav-primary > ul > li a {
  background: #153e35;
}
.main-header.athletics .nav-sub > li a:hover, .main-header.athletics .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.athletics ul > li a:hover {
  background: #226456;
}

.main-footer.athletics {
  background-image: none;
  background-color: #f5b324;
}

.body--phillies {
  background-image: url("../img/design-2018/backgrounds/bg-phillies.jpg");
}

.main-header.phillies {
  background-image: none;
  background-color: rgba(26, 66, 138, 0.85);
}
.main-header.phillies .nav-primary, .main-header.phillies .nav-primary > ul > li a {
  background: #ea002a;
}
.main-header.phillies .nav-sub > li a:hover, .main-header.phillies .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.phillies ul > li a:hover {
  background: #ff1e46;
}

.main-footer.phillies {
  background-image: none;
  background-color: #1a428a;
}

.body--pirates {
  background-image: url("../img/design-2018/backgrounds/bg-pirates.jpg");
}

.main-header.pirates {
  background-image: none;
  background-color: rgba(16, 24, 32, 0.85);
}
.main-header.pirates .nav-primary, .main-header.pirates .nav-primary > ul > li a {
  background: #f5b324;
}
.main-header.pirates .nav-sub > li a:hover, .main-header.pirates .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.pirates ul > li a:hover {
  background: #f7c455;
}

.main-footer.pirates {
  background-image: none;
  background-color: #101820;
}

.body--padres {
  background-image: url("../img/design-2018/backgrounds/bg-padres.jpg");
}

.main-header.padres {
  background-image: none;
  background-color: rgba(47, 36, 29, 0.85);
}
.main-header.padres .nav-primary, .main-header.padres .nav-primary > ul > li a {
  background: #2F241D;
}
.main-header.padres .nav-sub > li a:hover, .main-header.padres .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.padres ul > li a:hover {
  background: #4f3c30;
}

.main-footer.padres {
  background-image: none;
  background-color: #2F241D;
}

.body--mariners {
  background-image: url("../img/design-2018/backgrounds/bg-mariners.jpg");
}

.main-header.mariners {
  background-image: none;
  background-color: rgba(19, 40, 76, 0.85);
}
.main-header.mariners .nav-primary, .main-header.mariners .nav-primary > ul > li a {
  background: #004f51;
}
.main-header.mariners .nav-sub > li a:hover, .main-header.mariners .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.mariners ul > li a:hover {
  background: #008184;
}

.main-footer.mariners {
  background-image: none;
  background-color: #13284c;
}

.body--giants {
  background-image: url("../img/design-2018/backgrounds/bg-giants.jpg");
}

.main-header.giants {
  background-image: none;
  background-color: rgba(16, 24, 32, 0.85);
}
.main-header.giants .nav-primary, .main-header.giants .nav-primary > ul > li a {
  background: #ff681d;
}
.main-header.giants .nav-sub > li a:hover, .main-header.giants .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.giants ul > li a:hover {
  background: #ff8a50;
}

.main-footer.giants {
  background-image: none;
  background-color: #101820;
}

.body--cardinals {
  background-image: url("../img/design-2018/backgrounds/bg-cardinals.jpg");
}

.main-header.cardinals {
  background-image: none;
  background-color: rgba(196, 30, 58, 0.85);
}
.main-header.cardinals .nav-primary, .main-header.cardinals .nav-primary > ul > li a {
  background: #000066;
}
.main-header.cardinals .nav-sub > li a:hover, .main-header.cardinals .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.cardinals ul > li a:hover {
  background: #000099;
}

.main-footer.cardinals {
  background-image: none;
  background-color: #c41e3a;
}

.body--rays {
  background-image: url("../img/design-2018/backgrounds/bg-rays.jpg");
}

.main-header.rays {
  background-image: none;
  background-color: rgba(9, 44, 92, 0.85);
}
.main-header.rays .nav-primary, .main-header.rays .nav-primary > ul > li a {
  background: #407cb5;
}
.main-header.rays .nav-sub > li a:hover, .main-header.rays .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.rays ul > li a:hover {
  background: #6195c7;
}

.main-footer.rays {
  background-image: none;
  background-color: #092c5c;
}

.body--rangers {
  background-image: url("../img/design-2018/backgrounds/bg-rangers.jpg");
}

.main-header.rangers {
  background-image: none;
  background-color: rgba(0, 49, 120, 0.85);
}
.main-header.rangers .nav-primary, .main-header.rangers .nav-primary > ul > li a {
  background: #c0111f;
}
.main-header.rangers .nav-sub > li a:hover, .main-header.rangers .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.rangers ul > li a:hover {
  background: #eb192a;
}

.main-footer.rangers {
  background-image: none;
  background-color: #003178;
}

.body--jays {
  background-image: url("../img/design-2018/backgrounds/bg-jays.jpg");
}

.main-header.jays {
  background-image: none;
  background-color: rgba(24, 63, 137, 0.85);
}
.main-header.jays .nav-primary, .main-header.jays .nav-primary > ul > li a {
  background: #e8291c;
}
.main-header.jays .nav-sub > li a:hover, .main-header.jays .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.jays ul > li a:hover {
  background: #ed554a;
}

.main-footer.jays {
  background-image: none;
  background-color: #e8291c;
}

.body--nationals {
  background-image: url("../img/design-2018/backgrounds/bg-nationals.jpg");
}

.main-header.nationals {
  background-image: none;
  background-color: rgba(17, 34, 91, 0.85);
}
.main-header.nationals .nav-primary, .main-header.nationals .nav-primary > ul > li a {
  background: #ab0003;
}
.main-header.nationals .nav-sub > li a:hover, .main-header.nationals .nav-search .nav-sub ul > li a:hover, .nav-search .nav-sub .main-header.nationals ul > li a:hover {
  background: #de0004;
}

.main-footer.nationals {
  background-image: none;
  background-color: #11225b;
}

.main-header.mlb .branding {
  padding-top: 40px;
  padding-bottom: 40px;
}

.btn, .headings-bar__box .listing-mode-switch li a {
  background: #04aeef;
  line-height: 4;
  padding-left: 3rem;
  padding-right: 3rem;
  color: white;
  font-family: "rockwell", serif;
  text-transform: uppercase;
  border: 1px solid #04aeef !important;
  border-radius: 0.5em;
  box-shadow: none;
  text-shadow: none;
  transition: all 0.3s ease;
}
.btn:hover, .headings-bar__box .listing-mode-switch li a:hover {
  color: white;
  background: #049cd6;
}
@media screen and (max-width: 1029px) {
  .btn, .headings-bar__box .listing-mode-switch li a {
    font-size: 0.875em;
  }
}

.btn-action:after,
input.btn-action:after {
  content: none;
}
.btn-action:before,
input.btn-action:before {
  content: "";
  margin-left: 0;
}

.btn--action:after,
input.btn--action:after {
  content: none;
}
.btn--action:before,
input.btn--action:before {
  content: "";
  margin-left: 0;
}
.btn--action.disabled,
input.btn--action.disabled {
  background: #909398;
}

.btn--small, .btn--mini,
.btn--tiny {
  font-size: 14px;
  line-height: 1.8;
  font-weight: normal;
  padding: 0 1em;
}

.btn--mini,
.btn--tiny {
  font-size: 12px;
}

.btn--primary, .headings-bar__box .listing-mode-switch li.current a {
  background: #04aeef;
  color: white;
  text-shadow: none;
  border-color: #04aeef;
}
.btn--primary:hover, .headings-bar__box .listing-mode-switch li.current a:hover {
  background: #049cd6;
  color: white;
}

.btn--secondary, .headings-bar__box .listing-mode-switch li a {
  background: transparent !important;
  color: #04aeef !important;
  border-color: #04aeef;
  text-shadow: none !important;
  box-shadow: none;
}
.btn--secondary:hover, .headings-bar__box .listing-mode-switch li a:hover {
  background: #35bdf1 !important;
  border-color: #35bdf1 !important;
  color: white !important;
}

.btn--disabled {
  background: #909398;
  color: white;
  border: none;
  text-shadow: none;
  box-shadow: none;
}
.btn--disabled:hover {
  background: #909398;
  color: white;
  cursor: default;
}

.btn-action-buy,
.btn--action-buy,
.form--add-to-cart button[type=submit] {
  background: #53bd0d;
  border-color: #53bd0d !important;
}
.btn-action-buy:hover,
.btn--action-buy:hover,
.form--add-to-cart button[type=submit]:hover {
  background: #49a50b;
  border-color: #49a50b !important;
}

.ie8 .btn, .ie8 .headings-bar__box .listing-mode-switch li a, .headings-bar__box .listing-mode-switch li .ie8 a {
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  border: none;
}

.item-list__title_main {
  border-bottom: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-text-shadow: none;
  -moz-text-shadow: none;
  -ms-text-shadow: none;
  -o-text-shadow: none;
  text-shadow: none;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.item-list__item {
  display: flex;
  align-items: center;
  border-color: #dedede;
}
@media screen and (max-width: 1029px) {
  .item-list__item {
    padding: 0.8rem;
  }
}
.item-list__item .item-list__title a, .item-list__item .page-title a,
.item-list__item .item-list__item__title a {
  color: #003366;
}
.item-list__item .item-list__title a:hover, .item-list__item .page-title a:hover,
.item-list__item .item-list__item__title a:hover {
  color: #003366;
}
.item-list__item .item-list__item__title a .item-list__image {
  float: none;
  padding: 0;
  border: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.item-list__item .item-list__content {
  flex-grow: 1;
  padding-left: 0;
}
@media screen and (max-width: 1029px) {
  .item-list__item .item-list__content {
    width: 68%;
  }
}
.item-list__item .item-list__action {
  text-align: center;
}
.item-list.fullwidth .item-list__item .item-list__action {
  position: relative;
  right: auto;
  bottom: auto;
}
.item-list__item .item-list__action .item-list__action-info {
  font-weight: normal;
}
@media screen and (max-width: 479px) {
  .item-list__item .item-list__price, .horizontal--small .item-list__item .item-list__price {
    height: auto;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1029px) {
  .item-list__item .item-list__price, .horizontal--small .item-list__item .item-list__price {
    padding-top: 8px;
  }
}
.item-list__item .item-list__price .current-bid-value, .horizontal--small .item-list__item .item-list__price .current-bid-value {
  display: inline-block !important;
}

.auction-title .auction-title__partner-logo {
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
}

.item-list__item--home .item-list__item__title a, .item-list__item--home .item-list__item__title a:hover {
  color: #003366;
}

.discount-msg-listing {
  margin-top: 10px;
}

.headings-bar,
.headings__bar {
  box-shadow: none;
  border: none;
}

.main-header {
  padding-top: 0;
}
@media screen and (min-width: 1030px) {
  .main-header {
    padding-top: 2rem;
  }
}

.logo-mc-mlb-prefer {
  top: 16px;
}

.global-home-link {
  font-weight: normal;
  text-decoration: underline;
}

#main-nav-reveal {
  top: 12px;
}

.nav-cart {
  position: absolute;
  top: 10px;
  right: 60px;
  color: white;
}

@media screen and (max-width: 479px) {
  .branding {
    padding-left: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 480px) and (max-width: 1029px) {
  .branding {
    padding-left: 0;
    margin-left: -4px;
  }
}
@media screen and (max-width: 1029px) {
  .mlb .branding {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}

.branding h1, .branding .h1 {
  max-width: 200px !important;
  padding-left: 8px !important;
}
@media screen and (min-width: 480px) {
  .branding h1, .branding .h1 {
    max-width: 300px !important;
    padding-left: 13px !important;
  }
}
@media screen and (min-width: 1030px) {
  .branding h1, .branding .h1 {
    max-width: none !important;
  }
}

@media screen and (min-width: 1030px) {
  .main-header {
    padding-top: 0;
  }
  .main-header .masthead {
    height: 205px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .main-header .masthead .branding {
    display: flex;
    justify-content: center;
    height: 100%;
  }
  .main-header .masthead .branding h1, .main-header .masthead .branding .h1 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .main-header .masthead .branding img {
    height: 100%;
  }
  .main-header .masthead .branding .charities-heading {
    padding-top: 0;
  }
  .main-header .masthead .branding .charities-heading .charities-logo {
    height: 150px;
  }
  .main-header .masthead .site-search {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
  }
  .main-header.mlb .masthead .branding {
    max-width: 425px !important;
  }
}
.site-search {
  margin-bottom: 1rem;
}
@media screen and (max-width: 1029px) {
  .site-search {
    padding: 0 8px;
  }
}
.site-search label {
  font-size: 1rem;
}
.site-search input[type=search],
.site-search input[type=text] {
  border-color: #777;
}
.site-search input[type=submit] {
  background: #003366;
  background-image: none;
  border: 1px solid white;
  border-radius: 0.5em;
  font-weight: normal;
}
.site-search input[type=submit]:hover {
  background: #004080;
  background-image: none !important;
}

.nav-primary {
  background-image: none;
  background: #cc0000;
  border-bottom: 2px solid #e3e0e0;
  border-radius: 0;
  -webkit-text-shadow: none;
  -moz-text-shadow: none;
  -ms-text-shadow: none;
  -o-text-shadow: none;
  text-shadow: none;
}
.nav-primary > ul > li {
  margin-right: 0.75rem;
}
.nav-primary > ul > li:after {
  content: none;
}
.nav-primary > ul > li > a {
  height: 2.4rem;
  line-height: 2.4rem;
}
.nav-primary .nav-sub, .nav-primary .nav-search .nav-sub ul, .nav-search .nav-sub .nav-primary ul {
  background: #003366;
  top: 2.4rem;
  left: -0.5rem;
  border-top: 2px solid #e3e0e0;
  border-radius: 0;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.nav-left li:first-child .nav-primary .nav-sub, .nav-left li:first-child .nav-primary .nav-search .nav-sub ul, .nav-search .nav-sub .nav-left li:first-child .nav-primary ul {
  left: 0;
}
.nav-primary .nav-sub li > a, .nav-primary .nav-search .nav-sub ul li > a, .nav-search .nav-sub .nav-primary ul li > a {
  line-height: 1 !important;
  height: auto !important;
  padding: 0.7rem 1rem 0.6rem;
  border: none;
}
.nav-primary .nav-sub li > a:last-child, .nav-primary .nav-search .nav-sub ul li > a:last-child, .nav-search .nav-sub .nav-primary ul li > a:last-child {
  border-radius: 0;
}
.nav-primary .nav-sub li > a:hover, .nav-primary .nav-search .nav-sub ul li > a:hover, .nav-search .nav-sub .nav-primary ul li > a:hover {
  background: #004080;
}
.nav-primary .nav-sub-sub {
  top: 0;
  left: 100%;
  border-radius: 0;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  background: #003366;
}
.nav-primary .nav-sub-sub li > a {
  border: none;
}
.nav-primary .nav-sub-sub li > a:hover {
  background: #004080;
}

.main-header .user-widget .nav-dummy-link {
  background-image: none;
  background: transparent;
  height: 2.4rem;
  line-height: 2.4rem;
}

@media screen and (max-width: 1029px) {
  .nav-primary > ul > li a {
    background-image: none;
    background-color: #cc0000;
  }
  .nav-primary > ul > li a:hover {
    background-color: #e60000;
  }
  .nav-primary ul ul.nav-sub, .nav-primary ul .nav-search .nav-sub ul, .nav-search .nav-sub .nav-primary ul ul {
    border-top: none;
  }
  .nav-primary ul ul.nav-sub li > a, .nav-primary ul .nav-search .nav-sub ul li > a, .nav-search .nav-sub .nav-primary ul ul li > a {
    background-image: none;
    background: #003366;
  }
  .nav-primary ul ul.nav-sub li > a:hover, .nav-primary ul .nav-search .nav-sub ul li > a:hover, .nav-search .nav-sub .nav-primary ul ul li > a:hover {
    background: #004080;
  }
  .nav-primary ul ul.nav-sub .nav-sub-sub, .nav-primary ul .nav-search .nav-sub ul .nav-sub-sub, .nav-search .nav-sub .nav-primary ul ul .nav-sub-sub {
    position: relative;
    left: 0;
  }
  .nav-primary ul ul.nav-sub .nav-sub-sub a, .nav-primary ul .nav-search .nav-sub ul .nav-sub-sub a, .nav-search .nav-sub .nav-primary ul ul .nav-sub-sub a {
    padding-left: 2rem;
  }
}
.palm-link {
  color: white;
  position: absolute;
  top: 35px;
  right: 30px;
  text-transform: uppercase;
}

.palm-link.charities {
  right: 3px;
}

.main-footer, .main-footer.mlb {
  background-image: none;
  background: #003366;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.main-footer .fineprint {
  text-transform: none;
}
.main-footer .fineprint p {
  margin-bottom: 1rem;
}

.footer__social-links li {
  margin: 0;
}
.footer__social-links a {
  padding-left: 10px;
}
.footer__social-links span {
  display: none;
}

.footer-nav {
  border: none;
}

.state-notices-link {
  color: white;
  text-decoration: underline;
}

.notices.headings__bar {
  background-color: #fff;
}

.listing-mode-switch--tabs .listing-mode-switch ul li:first-child a {
  border-radius: 0;
}
.listing-mode-switch--tabs .listing-mode-switch ul li:last-child a {
  border-radius: 0;
}
.listing-mode-switch--tabs .listing-mode-switch ul li a {
  color: #444;
  text-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  background-image: none;
  background: #dedede;
}
.listing-mode-switch--tabs .listing-mode-switch ul li a:hover {
  background-image: none;
  background: #e3e0e0;
  color: #444;
}
.listing-mode-switch--tabs .listing-mode-switch ul li.current a {
  color: white;
  text-shadow: none;
  background-image: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  background: #003366;
}
.listing-mode-switch--tabs .listing-mode-switch ul li.current a:hover {
  background: #004080;
}
.listing-mode-switch--tabs.above {
  padding: 0;
}
.listing-mode-switch--tabs.above .listing-mode-switch li {
  float: left;
}
.listing-mode-switch--tabs.above .listing-mode-switch li:first-child a {
  border-radius: 0;
}
.listing-mode-switch--tabs.above .listing-mode-switch li:last-child a {
  border-radius: 0;
}
.listing-mode-switch--tabs.above .listing-mode-switch ul li a {
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  padding-left: 1em;
  padding-right: 1em;
}

.listing-mode-switch--tabs.above .listing-mode-switch.nav--tabs {
  border-bottom: 1px solid #bbb;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.listing-mode-switch--tabs.above .listing-mode-switch.nav--tabs li a {
  border-style: solid;
  border-color: rgba(102, 102, 102, 0.2);
  border-width: 0 0 0 1px;
}
.listing-mode-switch--tabs.above .listing-mode-switch.nav--tabs li:first-child a {
  border-radius: 0;
}
.listing-mode-switch--tabs.above .listing-mode-switch.nav--tabs li:last-child a {
  border-radius: 0;
}
@media only screen and (max-width: 479px) {
  .listing-mode-switch--tabs.above .listing-mode-switch.nav--tabs {
    font-size: 14px;
  }
  .listing-mode-switch--tabs.above .listing-mode-switch.nav--tabs a {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
@media (max-width: 360px) {
  .listing-mode-switch--tabs.above .listing-mode-switch.nav--tabs {
    font-size: 11.2px;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
}
.tooltiptext a {
  background: #003366 !important;
  color: white !important;
}
.tooltiptext a:hover {
  background: #004080 !important;
  color: white !important;
}

.breadcrumbs,
.content > .breadcrumbs,
#auctionDisplay .content > .breadcrumbs {
  margin-top: 0;
  padding-top: 0.5rem;
}

.index .flexslider {
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.index .teams-bar {
  background: #dedede;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.index .teams-bar a {
  display: block;
  padding: 3px;
  transition: all 0.3s ease;
  width: 10%;
}
@media screen and (min-width: 400px) {
  .index .teams-bar a {
    width: 10%;
  }
}
@media screen and (min-width: 500px) {
  .index .teams-bar a {
    width: 6%;
    padding: 4px;
  }
}
@media screen and (min-width: 850px) {
  .index .teams-bar a {
    width: 5%;
    margin: 0 7px;
  }
}
@media screen and (min-width: 960px) {
  .index .teams-bar a {
    width: 3.3%;
    margin: 0;
  }
}
.index .teams-bar a:hover {
  transform: scale(1.1);
}
.index .teams-bar a img {
  width: 100%;
  height: auto;
}
.index .partners-bar {
  background: #f9f9f9 url(../img/design-2018/h1-our-partners-h.png) no-repeat center 1rem;
  background-size: auto 23px;
  padding-top: 3rem;
  display: flex;
}
@media screen and (min-width: 600px) {
  .index .partners-bar {
    background: #f9f9f9 url(../img/design-2018/h1-our-partners.png) no-repeat 1rem center;
    background-size: auto 80%;
    padding-top: 0.5rem;
    padding-left: 4%;
  }
}
@media screen and (min-width: 800px) {
  .index .partners-bar {
    background: #f9f9f9 url(../img/design-2018/h1-our-partners.png) no-repeat 1rem center;
    background-size: auto 70%;
    padding-top: 0.5rem;
    padding-left: 4%;
  }
}
.index .partners-bar .partners-bar__title {
  width: 45px;
  display: flex;
  align-items: center;
}
.index .partners-bar .partners-bar__title h1, .index .partners-bar .partners-bar__title .h1 {
  margin: 0;
}
.index .partners-bar .partners-bar__list {
  padding: 0;
}
.index .partners-bar .partner-bar-logo {
  display: inline-block;
  width: 19%;
  margin: 5px;
  background: #Ffff;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .index .partners-bar .partner-bar-logo {
    margin: 5px;
    height: 85px;
  }
}
@media screen and (min-width: 800px) {
  .index .partners-bar .partner-bar-logo {
    width: 14%;
    height: 109px;
    padding: 0 1rem;
    margin: 5px;
  }
}
@media screen and (min-width: 1000px) {
  .index .partners-bar .partner-bar-logo {
    padding: 1rem 1.5rem;
    width: 14%;
  }
}
.index .partners-bar .partner-bar-logo:hover {
  opacity: 1;
}
.index .home__content-areas .home__content-areas__promos {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 680px) {
  .index .home__content-areas .home__content-areas__promos {
    flex-direction: row;
  }
}
.index .home__content-areas .promo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  border-left: none;
}
.index .home__content-areas .promo:first-child {
  border-bottom: 1px solid #92adbf;
}
@media screen and (min-width: 680px) {
  .index .home__content-areas .promo {
    border-left: 1px solid #92adbf;
  }
  .index .home__content-areas .promo:first-child {
    border-bottom: none;
    border-left: none;
  }
}
@media screen and (max-width: 679px) {
  .index .home__content-areas .promo:first-child {
    padding-bottom: 1.6rem;
  }
  .index .home__content-areas .promo:last-child {
    padding-top: 1.6rem;
  }
}
.index .home__content-areas .promo h1, .index .home__content-areas .promo .h1 {
  font-size: 1rem;
}
@media screen and (min-width: 680px) {
  .index .home__content-areas .promo h1, .index .home__content-areas .promo .h1 {
    font-size: 1.5rem;
  }
}
.index .home__content-areas .promo .btn, .index .home__content-areas .promo .headings-bar__box .listing-mode-switch li a, .headings-bar__box .listing-mode-switch li .index .home__content-areas .promo a {
  background: transparent;
  color: white;
  border: 1px solid white;
  -webkit-text-shadow: none;
  -moz-text-shadow: none;
  -ms-text-shadow: none;
  -o-text-shadow: none;
  text-shadow: none;
  line-height: 3;
}
.index .home__content-areas .promo .btn.btn--action-bid, .index .home__content-areas .promo .headings-bar__box .listing-mode-switch li a.btn--action-bid, .headings-bar__box .listing-mode-switch li .index .home__content-areas .promo a.btn--action-bid {
  background: #04aeef;
  border-color: #04aeef !important;
}
.index .home__content-areas .promo .btn.btn--action-bid:hover, .index .home__content-areas .promo .headings-bar__box .listing-mode-switch li a.btn--action-bid:hover, .headings-bar__box .listing-mode-switch li .index .home__content-areas .promo a.btn--action-bid:hover {
  background: #049cd6;
  border-color: #049cd6 !important;
}
.index .home__content-areas .promo .btn.btn--action-buy, .index .home__content-areas .promo .headings-bar__box .listing-mode-switch li a.btn--action-buy, .headings-bar__box .listing-mode-switch li .index .home__content-areas .promo a.btn--action-buy {
  background: #53bd0d;
  border-color: #53bd0d !important;
}
.index .home__content-areas .promo .btn.btn--action-buy:hover, .index .home__content-areas .promo .headings-bar__box .listing-mode-switch li a.btn--action-buy:hover, .headings-bar__box .listing-mode-switch li .index .home__content-areas .promo a.btn--action-buy:hover {
  background: #49a50b;
  border-color: #49a50b !important;
}
.index .content-main {
  background: #003366;
}

.auction-title,
.item-title {
  color: #003366;
}

.auction-note p {
  color: #003366;
}

.auction-details h3 a, .auction-details .h3 a, .auction-details .checkout-section h2 a, .checkout-section .auction-details h2 a, .auction-details .checkout-section .h2 a, .checkout-section .auction-details .h2 a, .auction-details .dlist-title a,
.item-details h3 a,
.item-details .h3 a,
.item-details .checkout-section h2 a,
.checkout-section .item-details h2 a,
.item-details .checkout-section .h2 a,
.checkout-section .item-details .h2 a,
.item-details .dlist-title a {
  color: #003366;
}

.sharing--auction-display .sharing__internal a,
.sharing--item-display .sharing__internal a {
  color: #003366;
}

.bid-select-address {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 740px) {
  .bid-select-address {
    flex-direction: row;
  }
}
.bid-select-address li {
  flex-grow: 1;
}

.promo-container {
  margin: 25px 0;
}
@media screen and (max-width: 1029px) {
  .promo-container {
    width: 100%;
  }
}
.promo-container .promo-input {
  max-width: 100%;
  width: 220px;
  margin-bottom: 10px;
  margin-right: 15px;
}

.address-container {
  width: 60%;
}
@media screen and (max-width: 1029px) {
  .address-container {
    width: 100%;
  }
}

.product_total {
  text-align: right;
}