/**
 *   $CONTENTS
 **************************/
/**
 * CONTENTS .......... This, the table of contents.
 * RESET ............. Eric Meyer reset css.
 * NORMALIZE.......... Normalize css.
 * UTILITIES ......... Utilities (Inc h5bp utils)
 * COMPASS ........... Importing compass mixin library.
 * SUSY .............. Importing susy grid.
 * ABSTRACTIONS ...... Contains mixins and placeholders.
 * BASE .............. Base styling for the theme.
 * GRID .............. Grid calculations and output.
 * LAYOUT ............ Styles to layout the 'regions' of the page.
 * COMPONENTS ........ Import all the component partials.
 * MISC .............. Miscellaneous elements.
 * ICONS ............. Sprite definitions.
 * ACCOUNT ........... Account specific pages.
 * CART .............. Cart and checkout specific pages.
 * CATEGORY .......... Category specific pages.
 * PRODUCT ........... PDP specific pages.
 * PRINT ............. Print styles (Inlined to prevent extra http request)
 */
/*************************************************
 * _reset.scss
 *
 * Eric Meyer reset styling.
 ************************************************/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*************************************************
 * _normalize.scss
 *
 * Normalize css edited to suit our requirements.
 ************************************************/
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/**
 *   $Normalize Base
 **************************/
/**
 * Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/**
 *   $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 styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * 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;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * 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
 **************************/
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * 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;
}

/**
 * 2. Remove excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  /* 2 */
}

/**
 * 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;
}

/*************************************************
 * _utilities.scss
 *
 * Includes h5bp utilities edited to suit our requirements.
 ************************************************/
/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden, .header .logo strong {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  /*
   * Extends the .visuallyhidden class to allow the element to be focusable
   * when navigated to via the keyboard: h5bp.com/p
   */
}
.focusable.visuallyhidden:active, .header .logo strong.focusable:active, .focusable.visuallyhidden:focus, .header .logo strong.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
* `contenteditable` attribute is included anywhere else in the document.
* Otherwise it causes space to appear at the top and bottom of elements
* that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
* `:before` to contain the top-margins of child elements.
*/
.clearfix:before, .clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.clearfix:after {
  clear: both;
}
.lt-ie8 .clearfix {
  zoom: 1;
}

/**
 *   $Abstractions
 **************************/
/* Icons */
[class^="icon-"] {
  background-repeat: no-repeat;
  display: inline-block;
  height: 18px;
  line-height: 18px;
  margin-right: 5px;
  vertical-align: middle;
  width: 18px;
}

/* Sizes */
.icon-20 {
  height: 20px;
  width: 20px;
  line-height: 20px;
}

/* Right icon - Absolute position icons to the right */
.right-icon {
  display: inline-block;
  padding-right: 14px;
  position: relative;
}

.lt-ie8 .right-icon {
  display: inline;
  zoom: 1;
}

.right-icon [class^="icon-"] {
  margin-right: 0;
  position: absolute;
  right: 0;
  top: 8px;
  top: 0.57143rem;
}

/* / Icons */
/*************************************************
 * base.scss
 *
 * Base styling for the theme.
 ************************************************/
/**
*   $Global Styles
**************************/
/* Forms */
fieldset {
  border: 0;
}

legend {
  display: none;
}

/* Table */
table {
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  font-size: 100%;
}

caption, th, td {
  vertical-align: top;
  text-align: left;
  font-weight: normal;
}

/* Content */
strong {
  font-weight: bold;
}

address {
  font-style: normal;
}

cite {
  font-style: normal;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after {
  content: '';
}

small, big {
  font-size: 1em;
}

sup {
  font-size: 1em;
  vertical-align: top;
}

/* Lists */
ul, ol {
  list-style: none;
}

/* Tools - Use sparingly and only if you're very sure you won't have to overwrite it */
.nobr {
  white-space: nowrap !important;
}

.wrap {
  white-space: normal !important;
}

.a-left {
  text-align: left !important;
}

.a-center {
  text-align: center !important;
}

.a-right {
  text-align: right !important;
}

.v-top {
  vertical-align: top;
}

.v-middle {
  vertical-align: middle;
}

.f-left,
.left {
  float: left !important;
}

.f-right,
.right {
  float: right !important;
}

.f-none {
  float: none !important;
}

.f-fix {
  float: left;
  width: 100%;
}

.no-display {
  display: none;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-bg {
  background: none !important;
}

.no-bullets {
  list-style: none !important;
}

.margtop {
  margin-top: 1em !important;
}

.margbottom {
  margin-bottom: 1em !important;
}

.largemargtop {
  margin-top: 2em !important;
}

.largemargbottom {
  margin-bottom: 2em !important;
}

.margcenter {
  margin-left: auto !important;
  margin-right: auto !important;
}

.margleft {
  margin-left: 1em !important;
}

.margright {
  margin-right: 1em !important;
}

.nomargin {
  margin: 0 !important;
}

.padall {
  padding: 1em !important;
}

.largepadall {
  padding: 2em !important;
}

.clearleft {
  clear: left !important;
}

.clearright {
  clear: right !important;
}

.heavytext {
  font-weight: bold !important;
}

.centertext {
  text-align: center !important;
}

.uppercase {
  text-transform: uppercase !important;
}

/* Clears ================================================================================ */
.group:after,
.clearer:after,
.header-container:after,
.header-container .top-container:after,
.header:after,
.header .quick-access:after,
#nav:after,
.main:after,
.footer:after,
.footer-container .bottom-container:after,
.col-main:after,
.col2-set:after,
.col3-set:after,
.col4-set:after,
.search-autocomplete li:after,
.block .block-content:after,
.block .actions:after,
.block li.item:after,
.block-poll li:after,
.block-layered-nav .currently li:after,
.page-title:after,
.products-grid:after,
.products-list li.item:after,
.box-account .box-head:after,
.dashboard .box .box-title:after,
.box-reviews li.item:after,
.box-tags li.item:after,
.pager:after,
.sorter:after,
.ratings:after,
.add-to-box:after,
.add-to-cart:after,
.product-essential:after,
.product-collateral:after,
.product-view .product-img-box .more-views ul:after,
.product-view .product-shop .short-description:after,
.product-view .box-description:after,
.product-view .box-tags .form-add:after,
.product-options .options-list li:after,
.product-options-bottom:after,
.product-review:after,
.cart:after,
.cart-collaterals:after,
.cart .crosssell li.item:after,
.opc .step-title:after,
.checkout-progress:after,
.multiple-checkout .place-order:after,
.group-select li:after,
.form-list li:after,
.form-list .field:after,
.buttons-set:after,
.page-print .print-head:after,
.advanced-search-summary:after,
.gift-messages-form .item:after,
.send-friend .form-list li p:after,
.category-description:after,
.section-monthly:after,
.section-monthly-heading:after,
.videos-list-container ul:after,
ul.plant-cat-list:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden;
}

/* For IE 6/7 (trigger hasLayout) */
.group,
.clearer,
.header-container,
.header-container .top-container,
.header,
.header .quick-access,
#nav,
.main,
.footer,
.footer-container .bottom-container,
.col-main,
.col2-set,
.col3-set,
.col4-set,
.search-autocomplete li,
.block .block-content,
.block .actions,
.block li.item,
.block-poll li,
.block-layered-nav .currently li,
.page-title,
.products-grid,
.products-list li.item,
.box-account .box-head,
.dashboard .box .box-title,
.box-reviews li.item,
.box-tags li.item,
.pager,
.sorter,
.ratings,
.add-to-box,
.add-to-cart,
.product-essential,
.product-collateral,
.product-view .product-img-box .more-views ul,
.product-view .product-shop .short-description,
.product-view .box-description,
.product-view .box-tags .form-add,
.product-options .options-list li,
.product-options-bottom,
.product-review,
.cart,
.cart-collaterals,
.cart .crosssell li.item,
.opc .step-title,
.checkout-progress,
.multiple-checkout .place-order,
.group-select li,
.form-list li,
.form-list .field,
.buttons-set,
.page-print .print-head,
.advanced-search-summary,
.gift-messages-form .item,
.send-friend .form-list li p,
.category-description,
.section-monthly,
.section-monthly-heading,
.videos-list-container ul,
ul.plant-cat-list {
  *zoom: 1;
}

/**
 *   $Header
 **************************/
.header .logo {
  float: left;
  text-decoration: none !important;
}

.header .welcome-msg {
  text-align: right;
}

.header .links {
  float: right;
}

.header .form-search .search-autocomplete {
  z-index: 999;
}

.header .form-language {
  clear: both;
  text-align: right;
}

.header-container .top-container {
  clear: both;
  text-align: right;
}

/**
 *   $Navigation
 **************************/
/* All Levels */
#nav li {
  text-align: left;
  position: relative;
}

#nav li.over {
  z-index: 998;
}

#nav li a {
  display: block;
  text-decoration: none;
}

#nav li a:hover {
  text-decoration: none;
}

#nav li a span {
  display: block;
  white-space: nowrap;
  cursor: pointer;
}

#nav li ul a span {
  white-space: normal;
}

/* 1st Level */
#nav li {
  float: left;
}

/* 2nd Level */
#nav ul,
#nav div {
  position: absolute;
  left: -10000px;
}

#nav div ul {
  position: static;
  width: auto;
  border: none;
}

/* 3rd+ leven */
#nav ul ul,
#nav ul div {
  top: 7px;
}

#nav ul li {
  float: none;
}

#nav ul li.last {
  border-bottom: 0;
}

#nav ul li a {
  float: none;
  padding: 3px 9px;
  font-weight: normal;
}

/* Show menu */
#nav li ul.shown-sub,
#nav li div.shown-sub {
  left: 0;
  z-index: 999;
}

#nav li .shown-sub ul.shown-sub,
#nav li .shown-sub li div.shown-sub {
  left: 100px;
}

/* Block: Wishlist */
/* Block: Related */
.block-related li {
  padding: 5px 0;
}

.block-related input.checkbox {
  float: left;
  margin-right: -20px;
}

.block-related .product {
  margin-left: 20px;
}

.block-related .product .product-image {
  float: left;
  margin-right: -65px;
}

.block-related .product .product-details {
  margin-left: 65px;
}

/* Block: Compare Products */
.block-compare li {
  padding: 5px 0;
}

/* Block: Recently Viewed */
/* Block: Recently Compared */
/* Block: Poll */
.block-poll input.radio {
  float: left;
  margin: 1px -18px 0 0;
}

.block-poll .label {
  display: block;
  margin-left: 18px;
}

.block-poll li {
  padding: 3px 9px;
}

.block-poll .actions {
  margin: 5px 0 0;
}

.block-poll .answer {
  font-weight: bold;
}

.block-poll .votes {
  float: right;
  margin-left: 10px;
}

/* Block: Tags */
.block-tags ul,
.block-tags li {
  display: inline;
}

/* Block: Subscribe */
/* Block: Reorder */
.block-reorder li {
  padding: 5px 0;
}

.block-reorder input.checkbox {
  float: left;
  margin: 3px -20px 0 0;
}

.block-reorder .product-name {
  margin-left: 20px;
}

/* Block: Banner */
.block-banner .block-content {
  text-align: center;
}

/* Block: Login */
.block-login label {
  font-weight: bold;
  color: #666;
}

.block-login input.input-text {
  display: block;
  width: 167px;
  margin: 3px 0;
}

/* Paypal */
.sidebar .paypal-logo {
  display: block;
  margin: 10px 0;
  text-align: center;
}

.sidebar .paypal-logo a {
  float: none;
}

/**
 *   $Content Styles
 **************************/
/* Product Tags */
.tags-list li {
  display: inline;
}

/* Advanced Search */
/* CMS Home Page */
/* Sitemap */
.page-sitemap .links {
  text-align: right;
  margin: 0 8px -22px 0;
}

.page-sitemap .links a {
  text-decoration: none;
  position: relative;
}

.page-sitemap .links a:hover {
  text-decoration: underline;
}

.page-sitemap .sitemap {
  margin: 12px;
}

.page-sitemap .sitemap li {
  margin: 3px 0;
}

.page-sitemap .sitemap li.level-0 {
  margin: 10px 0 0;
  font-weight: bold;
}

/* RSS */
.rss-title h1 {
  background: url(../images/i_rss-big.png) 0 4px no-repeat;
  padding-left: 27px;
}

.rss-table .link-rss {
  display: block;
  line-height: 1.35;
  background-position: 0 2px;
}

/**
 *   $Grid
 **************************/
/*************************************************
 * _layout.scss
 *
 * Styles to handle layout of pages.
 ************************************************/
.wide-container {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cms-index-index .wide-container {
  max-width: 90%;
}
@media (min-width: 0) and ("no-query" true: 48em) {
  .cms-index-index .wide-container {
    width: 100%;
    max-width: 100%;
  }
}

.header-container,
.main-container,
.footer-container,
.wide-container {
  *zoom: 1;
  max-width: 1140px;
  _width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.header-container:after,
.main-container:after,
.footer-container:after,
.wide-container:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 77.5em) {
  .header-container,
  .main-container,
  .footer-container,
  .wide-container {
    *zoom: 1;
    max-width: 1180px;
    _width: 1180px;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .header-container:after,
  .main-container:after,
  .footer-container:after,
  .wide-container:after {
    content: "";
    display: table;
    clear: both;
  }
}

@media (min-width: 48em) {
  .main-navigation {
    *zoom: 1;
    max-width: 1140px;
    _width: 1140px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .main-navigation:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (min-width: 77.5em) {
  .main-navigation {
    *zoom: 1;
    max-width: 1180px;
    _width: 1180px;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .main-navigation:after {
    content: "";
    display: table;
    clear: both;
  }
}

.page-print {
  background: #fff;
  padding: 20px;
  text-align: left;
}

.page-empty {
  background: #fff;
  padding: 20px;
  text-align: left;
}

.page-popup {
  padding: 20px;
  text-align: left;
}

.main {
  margin: 10px 0;
}

/* Base Columns */
.col-left {
  width: 100%;
}
@media (min-width: 48em) {
  .col-left {
    width: 23.72881%;
    float: left;
    margin-right: 1.69492%;
    display: inline;
  }
}

.col-main {
  width: 100%;
}
@media (min-width: 48em) {
  .col-main {
    width: 74.57627%;
    float: right;
    margin-right: 0;
    *margin-left: -20px;
    display: inline;
  }
}

.col-right {
  width: 100%;
}
@media (min-width: 48em) {
  .col-right {
    width: 23.72881%;
    float: right;
    margin-right: 0;
    *margin-left: -20px;
    display: inline;
  }
}

/* 1 Column Layout */
.col1-layout .col-main {
  float: none;
  display: block;
  width: 100%;
}

/* 2 Columns Layout */
@media (min-width: 48em) {
  .col2-left-layout .col-main {
    width: 74.57627%;
    float: right;
    margin-right: 0;
    *margin-left: -20px;
    display: inline;
  }
}

/* 3 Columns Layout */
.col3-layout .col-main {
  width: 74.57627%;
  float: left;
  margin-right: 1.69492%;
  display: inline;
  margin-left: 25.42373%;
}

.col3-layout .col-left {
  margin-left: -152.54237%;
}

.col3-layout .col-wrapper {
  width: 100%;
  float: left;
  margin-right: 1.69492%;
  display: inline;
}

.col3-layout .col-wrapper .col-main {
  float: right;
}

/* Content Columns */
.col2-set .col-1 {
  width: 74.57627%;
  float: left;
  margin-right: 1.69492%;
  display: inline;
}

.col2-set .col-2 {
  width: 74.57627%;
  float: right;
  margin-right: 0;
  *margin-left: -20px;
  display: inline;
}

.col2-set .col-narrow {
  width: 66.10169%;
  float: left;
  margin-right: 1.69492%;
  display: inline;
}

.col2-set .col-wide {
  width: 133.89831%;
  float: left;
  margin-right: 1.69492%;
  display: inline;
}

.col3-set .col-1 {
  float: left;
  width: 32%;
}

.col3-set .col-2 {
  float: left;
  width: 32%;
  margin-left: 2%;
}

.col3-set .col-3 {
  float: right;
  width: 32%;
}

.col4-set .col-1 {
  float: left;
  width: 23.5%;
}

.col4-set .col-2 {
  float: left;
  width: 23.5%;
  margin: 0 2%;
}

.col4-set .col-3 {
  float: left;
  width: 23.5%;
}

.col4-set .col-4 {
  float: right;
  width: 23.5%;
}

/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    design
 * @package     base_default
 * @copyright   Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
/* Widgets =============================================================================== */
.widget {
  display: inline;
}

.widget .widget-title {
  clear: both;
  padding: 15px 0 0;
  margin: 0 0 7px;
}

.widget .widget-title h2 {
  font-size: 15px;
  font-weight: bold;
  color: #e25203;
}

.widget .mini-products-images-list .product-image {
  display: block;
  width: 76px;
  height: 76px;
  border: 1px solid #a9a9a9;
  margin: 0 auto;
}

.widget .mini-products-images-list li.item {
  float: left;
  width: 77px;
  height: 77px;
}

/* Widget: Catalog New Proructs List */
.widget-new-products {
  display: block;
}

.col-main .widget-new-products {
  margin: 7px 0;
}

.widget-new-products .products-grid .product-image,
.widget-new-products .products-list .product-image {
  width: 85px;
  height: 85px;
}

.widget-new-products .products-list .product-shop {
  margin-left: 100px;
}

.sidebar .widget-new-products .block {
  font-size: 11px;
  line-height: 1.25;
}

.sidebar .widget-new-products .block-title strong {
  background: url(../images/widgets/i_widget-new.html) 0 1px no-repeat;
  padding-left: 21px;
  color: #dc5033;
}

/* Widget: Recently Viewed Proructs */
.widget-viewed {
  display: block;
}

.col-main .widget-viewed {
  margin: 7px 0;
}

.widget-viewed .products-grid .product-image,
.widget-viewed .products-list .product-image {
  width: 85px;
  height: 85px;
}

.widget-viewed .products-list .product-shop {
  margin-left: 100px;
}

.sidebar .widget-viewed .block {
  font-size: 11px;
  line-height: 1.25;
}

.sidebar .widget-viewed .block-title strong {
  background: url(../images/widgets/i_block-list.html) 0 0 no-repeat;
  padding-left: 21px;
}

/* Widget: Recently Compared Proructs */
.widget-compared {
  display: block;
}

.col-main .widget-compared {
  margin: 7px 0;
}

.widget-compared .products-grid .product-image,
.widget-compared .products-list .product-image {
  width: 85px;
  height: 85px;
}

.widget-compared .products-list .product-shop {
  margin-left: 100px;
}

.sidebar .widget-compared .block {
  font-size: 11px;
  line-height: 1.25;
}

.sidebar .widget-compared .block-title strong {
  background: url(../images/widgets/i_block-list.html) 0 0 no-repeat;
  padding-left: 21px;
}

/* Widget: CMS Static Block */
.sidebar .widget-static-block {
  display: block;
  margin: 0 0 15px;
}

/* Widgets: Links Common Styles */
.top-container .widget a {
  padding: 0 0 0 7px;
}

.bottom-container .widget a {
  padding: 0 3px;
}

/* Widget: Catalog Product Link */
.widget-product-link-inline {
  display: inline;
}

.col-main .widget-product-link {
  display: block;
  text-align: right;
  margin: 7px 0;
}

.col-main .widget-product-link a {
  background: url(../images/widgets/i_widget-link.html) 100% 4px no-repeat;
  padding-right: 15px;
}

.sidebar .widget-product-link {
  display: block;
  margin: 0 0 15px;
  padding: 0 10px;
}

.sidebar .widget-product-link a {
  background: url(../images/widgets/i_widget-link.html) 100% 4px no-repeat;
  padding: 0 15px 0 0;
}

/* Widget: Catalog Category Link */
.widget-category-link-inline {
  display: inline;
}

.col-main .widget-category-link {
  display: block;
  text-align: right;
  margin: 7px 0;
}

.col-main .widget-category-link a {
  background: url(../images/widgets/i_widget-link.html) 100% 4px no-repeat;
  padding-right: 15px;
}

.sidebar .widget-category-link {
  display: block;
  margin: 0 0 15px;
  padding: 0 10px;
}

.sidebar .widget-category-link a {
  background: url(../images/widgets/i_widget-link.html) 100% 4px no-repeat;
  padding: 0 15px 0 0;
}

/* Widget: CMS Page Link */
.widget-cms-link-inline {
  display: inline;
}

.col-main .widget-cms-link {
  display: block;
  text-align: right;
  margin: 7px 0;
}

.col-main .widget-cms-link a {
  background: url(../images/widgets/i_widget-link.html) 100% 4px no-repeat;
  padding-right: 15px;
}

.sidebar .widget-cms-link {
  display: block;
  margin: 0 0 15px;
  padding: 0 10px;
}

.sidebar .widget-cms-link a {
  background: url(../images/widgets/i_widget-link.html) 100% 4px no-repeat;
  padding: 0 15px 0 0;
}

/* ======================================================================================= */
/*************************************************
 * _components.scss
 *
 * Styling for reused components.
 ************************************************/
/* Global Messages  */
.success {
  color: #3d6611;
  font-weight: bold;
}

.error {
  color: #f00;
  font-weight: bold;
}

.notice {
  color: #ccc;
}

.messages,
.messages ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.messages {
  width: 100%;
  overflow: hidden;
}

.messages li {
  margin: 0 0 10px;
}

.messages li li {
  margin: 0 0 3px;
}

.error-msg,
.success-msg,
.note-msg,
.notice-msg {
  border-style: solid;
  border-width: 1px;
  background-position: 10px 9px;
  background-repeat: no-repeat;
  min-height: 24px;
  padding: 8px 8px 8px 32px;
  font-size: 11px;
  font-weight: bold;
}

.error-msg {
  border-color: #f16048;
  background-color: #faebe7;
  background-image: url(../images/i_msg-error.gif);
  color: #df280a;
}

.success-msg {
  border-color: #446423;
  background-color: #eff5ea;
  background-image: url(../images/i_msg-success.gif);
  color: #3d6611;
}

.note-msg,
.notice-msg {
  border-color: #fcd344;
  background-color: #fafaec;
  background-image: url(../images/i_msg-note.gif);
  color: #3d6611;
}

/* BreadCrumbs */
.breadcrumbs {
  margin: 0 0 10px;
}

.breadcrumbs li {
  display: inline;
}

/* Pager */
.pager {
  text-align: center;
}

.pager .limiter {
  float: right;
}

.pager .pages {
  margin: 0 135px;
}

.pager .pages ol {
  display: inline;
}

.pager .pages li {
  display: inline;
}

/* Sorter */
.sorter .view-mode {
  float: left;
}

.sorter .sort-by {
  float: right;
}

/* Toolbar */
/* Data Table */
.data-table {
  width: 100%;
}

.data-table th {
  font-weight: bold;
}

.data-table tr.even {
  background-color: #f6f6f6;
}

.data-table tbody.odd td {
  border-width: 0 1px;
}

.data-table tbody.even {
  background-color: #f6f6f6;
}

.data-table tbody.even td {
  border-width: 0 1px;
}

.data-table tbody.odd tr.border td,
.data-table tbody.even tr.border td {
  border-bottom-width: 1px;
}

.data-table th .tax-flag {
  white-space: nowrap;
  font-weight: normal;
}

.data-table td.label,
.data-table th.label {
  font-weight: bold;
}

/* Page Heading */
.page-title .separator {
  margin: 0 3px;
}

.page-title .link-rss {
  float: right;
}

.title-buttons {
  text-align: right;
}

.title-buttons h1,
.title-buttons h2,
.title-buttons h3,
.title-buttons h4,
.title-buttons h5,
.title-buttons h6 {
  float: left;
}

/* Blocks */
.block {
  margin: 0 0 10px;
}

.block .block-title {
  padding: 3px 10px;
}

.block .block-title a {
  text-decoration: none !important;
}

.block .block-subtitle {
  font-weight: bold;
}

.block .block-content {
  padding: 10px;
}

.block .block-content li.item {
  padding: 5px 0;
}

.block .btn-remove,
.block .btn-edit {
  float: right;
}

.block .actions {
  text-align: right;
}

.block .actions a {
  float: left;
}

.block li.even {
  background-color: #f6f6f6;
}

.block .products-grid li.even {
  background-color: transparent;
}

/* Block: Layered Navigation */
.block-layered-nav dt {
  font-weight: bold;
}

.block-layered-nav .btn-remove {
  float: left;
  margin: 2px 3px 0 0;
}

/**
 *   $Forms
 **************************/
/* Form Elements */
input, select, textarea, button {
  vertical-align: middle;
}

input.input-text, select, textarea {
  background: #fff;
  border-width: 1px;
  border-style: solid;
}

select option {
  padding-right: 10px;
}

select.multiselect option {
  padding: 2px 5px;
}

select.multiselect option:last-child {
  border-bottom: 0;
}

textarea {
  overflow: auto;
}

input.radio {
  margin-right: 3px;
}

input.checkbox {
  margin-right: 3px;
}

button.button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* FF Fix */
button.button {
  -webkit-border-fit: lines;
}

/* <- Safari & Google Chrome Fix */
button.button {
  overflow: visible;
  width: auto;
  border: 0;
  margin: 0;
  cursor: pointer;
}

button.button span {
  text-align: center;
  white-space: nowrap;
}

p.control input.checkbox,
p.control input.radio {
  margin-right: 6px;
}

/* Form lists */
/* Grouped fields */
.form-list li {
  margin: 0 0 8px;
}

.form-list label {
  float: left;
  position: relative;
  z-index: 0;
}

.form-list label.required em {
  float: right;
  font-style: normal;
  color: #eb340a;
  position: absolute;
  top: 0;
  right: -8px;
}

.form-list li.control label {
  float: none;
}

.form-list li.control input.radio,
.form-list li.control input.checkbox {
  margin-right: 6px;
}

.form-list li.control .input-box {
  clear: none;
  display: inline;
  width: auto;
}

.form-list .input-box {
  display: block;
  clear: both;
  width: 260px;
}

.form-list .field {
  float: left;
  width: 275px;
}

.form-list input.input-text {
  width: 254px;
}

.form-list textarea {
  width: 254px;
  height: 10em;
}

.form-list select {
  width: 260px;
}

.form-list li.wide .input-box {
  width: 535px;
}

.form-list li.wide input.input-text {
  width: 529px;
}

.form-list li.wide textarea {
  width: 529px;
}

.form-list li.wide select {
  width: 535px;
}

.form-list li.additional-row {
  border-top: 1px solid #ccc;
  margin-top: 10px;
  padding-top: 7px;
}

.form-list li.additional-row .btn-remove {
  float: right;
  margin: 5px 0 0;
}

.form-list .input-range input.input-text {
  width: 74px;
}

.buttons-set {
  clear: both;
  margin: 10px 0 0;
}

.buttons-set .back-link {
  float: left;
}

.buttons-set button.button {
  float: right;
  margin-left: 10px;
}

.buttons-set p.required {
  margin: 0 0 5px;
}

.fieldset {
  margin: 28px 0;
}

.fieldset .field.odd {
  clear: both;
}

/* Form Validation */
.validation-advice {
  clear: both;
  min-height: 13px;
  margin: 3px 0 0;
  padding-left: 17px;
  font-size: 10px;
  line-height: 13px;
  background: url(../images/validation_advice_bg.gif) 2px 1px no-repeat;
  color: #f00;
}

.validation-failed {
  border: 1px dashed #f00 !important;
  background: #faebe7 !important;
}

p.required {
  font-size: 10px;
  text-align: right;
  color: #f00;
}

/* Expiration date and CVV number validation fix */
.v-fix {
  float: left;
}

.v-fix .validation-advice {
  display: block;
  width: 12em;
  margin-right: -12em;
  position: relative;
}

.subtitle,
.sub-title {
  clear: both;
}

/* Class: std - styles for admin-controlled content */
.std .subtitle {
  padding: 0;
}

.std ol.ol {
  list-style: decimal outside;
  padding-left: 1.5em;
}

.std ul.disc {
  list-style: disc outside;
  padding-left: 18px;
  margin: 0 0 10px;
}

.std dl dt {
  font-weight: bold;
}

.std dl dd {
  margin: 0 0 10px;
}

.std ul,
.std ol,
.std dl,
.std p,
.std address,
.std blockquote {
  margin: 0 0 1em;
  padding: 0;
}

.std ul {
  list-style: disc outside;
  padding-left: 1.5em;
}

.std ul.products-grid {
  padding-left: 0;
}

.std ol {
  list-style: decimal outside;
  padding-left: 1.5em;
}

.std ul ul {
  list-style-type: circle;
}

.std ul ul,
.std ol ol,
.std ul ol,
.std ol ul {
  margin: .5em 0;
}

.std dt {
  font-weight: bold;
}

.std dd {
  padding: 0 0 0 1.5em;
}

.std blockquote {
  font-style: italic;
  padding: 0 0 0 1.5em;
}

.std address {
  font-style: normal;
}

.std b,
.std strong {
  font-weight: bold;
}

.std i,
.std em {
  font-style: italic;
}

.std .left-image {
  float: left;
  margin-right: 15px;
  margin-right: 1.07143rem;
  width: auto;
}

.std .right-image {
  float: right;
  margin-left: 15px;
  margin-left: 1.07143rem;
  width: auto;
}

/* Overlay */
.black-overlay {
  cursor: pointer;
  background: #000;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  z-index: 9;
  -webkit-transition: opacity 0.5s linear;
  -moz-transition: opacity 0.5s linear;
  -ms-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.black-overlay::selection {
  background: transparent;
}
.black-overlay::-moz-selection {
  background: transparent;
}

.black-overlay.is-active {
  opacity: .6;
  height: 100%;
}

/* Misc */
.links li {
  display: inline;
}

.links li.first {
  padding-left: 0 !important;
}

.links li.last {
  background: none !important;
  padding-right: 0 !important;
}

.link-cart {
  font-weight: bold;
  color: #f00;
}

.link-wishlist {
  font-weight: bold;
}

.link-reorder {
  font-weight: bold;
}

.link-compare {
  font-weight: bold;
}

.link-print {
  background: url(../images/i_print.gif) 0 2px no-repeat;
  padding: 2px 0 2px 25px;
}

.link-rss {
  background: url(../images/i_rss.gif) 0 1px no-repeat;
  padding-left: 18px;
  white-space: nowrap;
}

.btn-remove {
  display: block;
  width: 11px;
  height: 11px;
  font-size: 0;
  line-height: 0;
  background: url(../images/btn_remove.gif) 0 0 no-repeat;
  text-indent: -999em;
  overflow: hidden;
}

.btn-remove2 {
  display: block;
  width: 16px;
  height: 16px;
  font-size: 0;
  line-height: 0;
  background: url(../images/btn_trash.gif) 0 0 no-repeat;
  text-indent: -999em;
  overflow: hidden;
}

.btn-edit {
  display: block;
  width: 11px;
  height: 11px;
  font-size: 0;
  line-height: 0;
  background: url(../images/btn_edit.gif) 0 0 no-repeat;
  text-indent: -999em;
  overflow: hidden;
}

.cards-list dt {
  margin: 5px 0 0;
}

.cards-list .offset {
  padding: 2px 0 2px 20px;
}

.separator {
  margin: 0 3px;
}

.divider {
  clear: both;
  display: block;
  font-size: 0;
  line-height: 0;
  height: 1px;
  margin: 10px 0;
  background: #ddd;
  text-indent: -999em;
  overflow: hidden;
}

/* Noscript Notice */
.noscript {
  border-width: 0 0 1px;
  background: #ffff90;
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
  color: #2f2f2f;
}

.noscript .noscript-inner {
  width: 1000px;
  margin: 0 auto;
  padding: 12px 0 12px;
  background: url(../images/i_notice.gif) 20px 50% no-repeat;
}

.noscript p {
  margin: 0;
}

/* Demo Notice */
.demo-notice {
  margin: 0;
  padding: 6px 10px;
  background: #d75f07;
  font-size: 12px;
  line-height: 1.15;
  text-align: center;
  color: #fff;
}

/* Cookie Notice */
.notice-cookie {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 101;
  border-bottom: 1px solid #cfcfcf;
  background: #ffff90;
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
  color: #2f2f2f;
}

.notice-cookie .notice-inner {
  margin: 0 auto;
  padding: 12px 0 12px 80px;
  background: url(../images/i_notice.gif) 20px 25px no-repeat;
  text-align: left;
}

.notice-cookie .notice-inner p {
  margin: 0 0 10px;
  border: 1px dotted #cccc73;
  padding: 10px;
}

/* Browser Notice */
.browser-notice {
  background-color: #FAE692;
  padding: 20px;
  position: static;
  top: 0;
}

/**
 *   $Prices
 **************************/
.price {
  white-space: nowrap !important;
}

.price-box .price {
  font-weight: bold;
}

/* Regular price */
.regular-price .price {
  font-weight: bold;
}

/* Old price */
.old-price .price-label {
  white-space: nowrap;
}

.old-price .price {
  font-weight: bold;
  text-decoration: line-through;
}

/* Special price */
.special-price .price-label {
  font-weight: bold;
  white-space: nowrap;
}

.special-price .price {
  font-weight: bold;
}

/* Minimal price (as low as) */
.minimal-price .price-label {
  font-weight: bold;
  white-space: nowrap;
}

.minimal-price-link {
  display: block;
}

.minimal-price-link .price {
  font-weight: normal;
}

/* Excluding tax */
.price-excluding-tax {
  display: block;
}

.price-excluding-tax .label {
  white-space: nowrap;
}

.price-excluding-tax .price {
  font-weight: normal;
}

/* Including tax */
.price-including-tax {
  display: block;
}

.price-including-tax .label {
  white-space: nowrap;
}

.price-including-tax .price {
  font-weight: bold;
}

/* Configured price */
.configured-price .price-label {
  font-weight: bold;
  white-space: nowrap;
}

.configured-price .price {
  font-weight: bold;
}

/* FPT */
.weee {
  display: block;
  font-size: 11px;
  color: #444;
}

.weee .price {
  font-size: 11px;
  font-weight: normal;
}

/* Excl tax (for order tables) */
.price-excl-tax {
  display: block;
}

.price-excl-tax .label {
  display: block;
  white-space: nowrap;
}

.price-excl-tax .price {
  display: block;
}

/* Incl tax (for order tables) */
.price-incl-tax {
  display: block;
}

.price-incl-tax .label {
  display: block;
  white-space: nowrap;
}

.price-incl-tax .price {
  display: block;
  font-weight: bold;
}

/* Price range */
.price-from .price-label {
  font-weight: bold;
  white-space: nowrap;
}

.price-to .price-label {
  font-weight: bold;
  white-space: nowrap;
}

/* Price notice next to the options */
.price-notice {
  padding-left: 10px;
}

.price-notice .price {
  font-weight: bold;
}

/* Price as configured */
.price-as-configured .price-label {
  font-weight: bold;
  white-space: nowrap;
}

/* Tier Prices */
.tier-prices .price {
  font-weight: bold;
}

/**
 *  Shipping Notice Module https://github.com/drewhunter/ShipNote
 **************************/
#cti-shipnote-wrap {
  margin-top: 30px;
}
#cti-shipnote-wrap h3 {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 3px;
}
#cti-shipnote-wrap #shipnote {
  margin-bottom: 20px;
  margin-left: 0;
  background-color: transparent;
  padding-left: 0;
  padding-top: 0;
  border-top: 0  none transparent;
}
#cti-shipnote-wrap #shipnote label {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  cursor: pointer;
}
#cti-shipnote-wrap #shipnote textarea {
  width: 100%;
  margin-top: 10px;
}

/* Block: Account */
/* Account Login/Create Pages */
/* Account Login/Create Pages */
/* Captcha */
.captcha-image {
  float: left;
  position: relative;
}

.captcha-img {
  border: 1px solid #ccc;
}

.captcha-reload {
  position: absolute;
  top: 2px;
  right: 2px;
}

.captcha-reload.refreshing {
  animation: rotate 1.5s infinite linear;
  -webkit-animation: rotate 1.5s infinite linear;
  -moz-animation: rotate 1.5s infinite linear;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
  }

  0% {
    -webkit-transform: rotate(-360deg);
  }
}

@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0);
  }

  0% {
    -moz-transform: rotate(-360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  0% {
    transform: rotate(-360deg);
  }
}

/* Remember Me Popup */
.window-overlay {
  background: url(../images/window_overlay.html) repeat;
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 990;
}

/**
 *   $Account
 **************************/
.my-account .title-buttons .link-rss {
  float: none;
  margin: 0;
}

/********** < Dashboard */
/* Block: Recent Orders */
.dashboard .box-recent {
  margin: 30px 0;
}

/* Block: Account Information */
/* Block: Reviews */
.dashboard .box-reviews .number {
  float: left;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  margin: 3px -20px 0 0;
  padding: 2px 3px;
  background: #ddd;
}

.dashboard .box-reviews .details {
  margin-left: 20px;
}

/* Block: Tags */
.dashboard .box-tags .number {
  float: left;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  margin: 3px -20px 0 0;
  padding: 2px 3px;
  background: #ddd;
}

.dashboard .box-tags .details {
  margin-left: 20px;
}

/**
 *   $Dashboard
 **************************/
/* Address Book */
/* Order View */
.order-info dt,
.order-info dd,
.order-info ul,
.order-info li {
  display: inline;
}

.order-info dt {
  font-weight: bold;
}

.order-date {
  margin: 10px 0;
}

.order-items {
  width: 100%;
  margin-top: 1em;
}

.order-additional {
  margin: 15px 0;
}

/* Order Gift Message */
.gift-message dt strong {
  color: #666;
}

.gift-message dd {
  font-size: 13px;
  margin: 5px 0 0;
}

/* Order Comments */
.order-about dt {
  font-weight: bold;
}

.order-about dd {
  font-size: 13px;
  margin: 0 0 7px;
}

.tracking-table {
  margin: 0 0 15px;
}

.tracking-table th {
  font-weight: bold;
  white-space: nowrap;
}

.tracking-table-popup {
  width: 100%;
}

.tracking-table-popup th {
  font-weight: bold;
  white-space: nowrap;
}

.tracking-table-popup th,
.tracking-table-popup td {
  padding: 1px 8px;
}

/* Order Print Pages */
.page-print .print-head img {
  float: left;
}

.page-print .print-head address {
  float: left;
  margin-left: 15px;
}

/* Price Rewrites */
.page-print .gift-message-link {
  display: none;
}

.page-print .price-excl-tax,
.page-print .price-incl-tax {
  display: block;
  white-space: nowrap;
}

.page-print .cart-price,
.page-print .price-excl-tax .label,
.page-print .price-incl-tax .label,
.page-print .price-excl-tax .price,
.page-print .price-incl-tax .price {
  display: inline;
}

/* My Reviews */
.product-review .product-img-box {
  float: left;
  width: 140px;
}

.product-review .product-img-box .product-image {
  display: block;
  width: 125px;
  height: 125px;
}

.product-review .product-img-box .label {
  font-size: 11px;
  margin: 0 0 3px;
}

.product-review .product-img-box .ratings .rating-box {
  float: none;
  display: block;
  margin: 0 0 3px;
}

.product-review .product-details {
  margin-left: 150px;
}

.product-review .product-name {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
}

.product-review .ratings-table {
  margin: 0 0 10px;
}

.product-review dt {
  font-weight: bold;
}

.product-review dd {
  font-size: 13px;
  margin: 5px 0 0;
}

/*  My Wishlists */
.my-wishlist #wishlist-table textarea {
  width: 100%;
}

/* Customer */
.form-list .customer-name-prefix .input-box,
.form-list .customer-name-suffix .input-box,
.form-list .customer-name-prefix-suffix .input-box,
.form-list .customer-name-prefix-middlename .input-box,
.form-list .customer-name-middlename-suffix .input-box,
.form-list .customer-name-prefix-middlename-suffix .input-box {
  width: auto;
}

.form-list .name-prefix {
  width: 65px;
}

.form-list .name-prefix select {
  width: 55px;
}

.form-list .name-prefix input.input-text {
  width: 49px;
}

.form-list .name-suffix {
  width: 65px;
}

.form-list .name-suffix select {
  width: 55px;
}

.form-list .name-suffix input.input-text {
  width: 49px;
}

.form-list .name-middlename {
  width: 70px;
}

.form-list .name-middlename input.input-text {
  width: 49px;
}

.form-list .customer-name-prefix-middlename-suffix .name-firstname,
.form-list .customer-name-prefix-middlename .name-firstname {
  width: 140px;
}

.form-list .customer-name-prefix-middlename-suffix .name-firstname input.input-text,
.form-list .customer-name-prefix-middlename .name-firstname input.input-text {
  width: 124px;
}

.form-list .customer-name-prefix-middlename-suffix .name-lastname {
  width: 205px;
}

.form-list .customer-name-prefix-middlename-suffix .name-lastname input.input-text {
  width: 189px;
}

.form-list .customer-name-prefix-suffix .name-firstname {
  width: 210px;
}

.form-list .customer-name-prefix-suffix .name-lastname {
  width: 205px;
}

.form-list .customer-name-prefix-suffix .name-firstname input.input-text,
.form-list .customer-name-prefix-suffix .name-lastname input.input-text {
  width: 189px;
}

.form-list .customer-name-prefix-suffix .name-firstname {
  width: 210px;
}

.form-list .customer-name-prefix-suffix .name-lastname {
  width: 205px;
}

.form-list .customer-name-prefix-suffix .name-firstname input.input-text,
.form-list .customer-name-prefix-suffix .name-lastname input.input-text {
  width: 189px;
}

.form-list .customer-name-prefix .name-firstname,
.form-list .customer-name-middlename .name-firstname {
  width: 210px;
}

.form-list .customer-name-suffix .name-lastname,
.form-list .customer-name-middlename .name-firstname,
.form-list .customer-name-middlename-suffix .name-firstname,
.form-list .customer-name-middlename-suffix .name-lastname {
  width: 205px;
}

.form-list .customer-name-prefix .name-firstname input.input-text,
.form-list .customer-name-suffix .name-lastname input.input-text,
.form-list .customer-name-middlename .name-firstname input.input-text,
.form-list .customer-name-middlename-suffix .name-firstname input.input-text,
.form-list .customer-name-middlename-suffix .name-lastname input.input-text {
  width: 100%;
}

.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day,
.form-list .customer-dob .dob-year {
  float: left;
  width: 85px;
}

.form-list .customer-dob input.input-text {
  display: block;
  width: 74px;
}

.form-list .customer-dob label {
  font-size: 10px;
  font-weight: normal;
  color: #888;
}

.form-list .customer-dob .dob-day,
.form-list .customer-dob .dob-month {
  width: 60px;
}

.form-list .customer-dob .dob-day input.input-text,
.form-list .customer-dob .dob-month input.input-text {
  width: 46px;
}

.form-list .customer-dob .dob-year {
  width: 140px;
}

.form-list .customer-dob .dob-year input.input-text {
  width: 134px;
}

/* Shopping cart total summary row expandable to details */
tr.summary-total {
  cursor: pointer;
}

tr.summary-total .summary-collapse {
  float: right;
  text-align: right;
  padding-left: 20px;
  background: url(../images/bkg_collapse.gif) 0 4px no-repeat;
  cursor: pointer;
}

tr.show-details .summary-collapse {
  background-position: 0 -53px;
}

tr.summary-details td {
  font-size: 11px;
  background-color: #dae1e4;
  color: #626465;
}

tr.summary-details-first td {
  border-top: 1px solid #d2d8db;
}

tr.summary-details-excluded {
  font-style: italic;
}

/* Shopping cart tax info */
.cart-tax-info {
  display: block;
}

.cart-tax-info,
.cart-tax-info .cart-price {
  padding-right: 20px;
}

.cart-tax-total {
  display: block;
  padding-right: 20px;
  background: url(../images/bkg_collapse.gif) 100% 4px no-repeat;
  cursor: pointer;
}

.cart-tax-info .price,
.cart-tax-total .price {
  display: inline !important;
  font-weight: normal !important;
}

.cart-tax-total-expanded {
  background-position: 100% -53px;
}

/* Block: Currency Switcher */
.block-currency select {
  width: 100%;
  border: 1px solid #888;
}

/* Block: Cart */
.block-cart .subtotal {
  text-align: center;
}

.block-cart .actions .paypal-logo {
  float: left;
  width: 100%;
  margin: 3px 0 0;
  text-align: right;
}

.block-cart .actions .paypal-logo .paypal-or {
  clear: both;
  display: block;
  padding: 0 55px 5px 0;
}

.ampersand-paymentgateway-redirect-iframe .col3-layout .col-main {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

/* Cart table */
.cart-table .product-image {
  display: block;
  width: 75px;
}

/* Crosssell */
/* Checkout */
body.checkout-onepage-index .opc .section .step .btn-checkout:disabled,
body.checkout-onepage-index .opc .section .step .btn-checkout:disabled:hover {
  border-color: #666;
  cursor: default;
  color: #333;
  background: #666;
  opacity: .5;
}

/**
 *   $Category page
 **************************/
.category-title {
  border: 0;
  margin: 0 0 7px;
}

.category-image {
  width: 100%;
  overflow: hidden;
  margin: 0 0 10px;
  text-align: center;
}

.category-description {
  margin: 0 0 10px;
}

.sort-by img {
  width: 7px;
}

/* View Type: Grid */
.products-grid {
  border-bottom: 1px solid #ddd;
  position: relative;
}

.products-grid.last {
  border-bottom: 0;
}

.products-grid li.item {
  width: 32.20339%;
  float: left;
  margin-right: 1.69492%;
  display: inline;
  padding: 12px 10px 80px;
}

.products-grid li.item.last {
  margin-right: 0;
}

.products-grid .product-image {
  display: block;
  margin: 0 0 10px;
}

.products-grid .price-box {
  margin: 5px 0;
}

.products-grid li.item .price-box .old-price .price {
  font-size: 16px;
  font-size: 1.14286rem;
}

.products-grid li.item .price-box .old-price .price-label {
  display: none;
}

.products-grid .availability {
  line-height: 21px;
}

.products-grid .actions {
  position: absolute;
  bottom: 12px;
}

.col2-left-layout .products-grid,
.col2-right-layout .products-grid {
  width: 100%;
  float: left;
  margin-right: 0.84034%;
  display: inline;
  margin: 0 auto;
}

.col1-layout .products-grid {
  width: 100%;
  float: left;
  margin-right: 0.84034%;
  display: inline;
  margin: 0 auto;
}

/* View Type: List */
.products-list li.item {
  border-bottom: 1px solid #ddd;
  padding: 12px 10px;
}

.products-list li.item.last {
  border-bottom: 0;
}

.products-list .product-image {
  float: left;
  margin: 0 0 10px;
}

.products-list .product-shop {
  margin-left: 15.1971%;
}

.products-list .price-box {
  float: left;
  margin: 3px 13px 5px 0;
}

.products-list .availability {
  float: left;
  margin: 3px 0 0;
}

.products-list .desc {
  clear: both;
  padding: 6px 0 0;
  margin: 0 0 15px;
  line-height: 1.35;
}

.products-list .desc .link-learn {
  font-size: 11px;
}

.products-list .add-to-links {
  clear: both;
}

.products-list .add-to-links li {
  display: inline;
}

.products-list .add-to-links .separator {
  display: inline;
  margin: 0 2px;
}

/* Mini Products List */
.mini-products-list li {
  padding: 5px 0;
}

.mini-products-list .product-image {
  float: left;
  width: 50px;
}

.mini-products-list .product-details {
  margin-left: 75px;
}

.mini-products-list .product-details h4 {
  font-size: 1em;
  font-weight: bold;
  margin: 0;
}

.block-cart .mini-products-list .product-details .product-name,
.block-cart .mini-products-list .product-details .nobr small {
  word-wrap: break-word;
}

.block-cart .mini-products-list .product-details .nobr {
  white-space: normal !important;
}

/**
 *   $Product page
 **************************/
/* Rating */
.no-rating {
  margin: 0;
}

.ratings {
  font-size: 11px;
  line-height: 1.25;
  margin: 7px 0;
}

.ratings strong {
  float: left;
  margin: 1px 3px 0 0;
}

.ratings .rating-links {
  margin: 0;
}

.ratings .rating-links .separator {
  margin: 0 2px;
}

.rating-box {
  width: 69px;
  height: 13px;
  font-size: 0;
  line-height: 0;
  background: url(../images/bkg_rating.gif) 0 0 repeat-x;
  text-indent: -999em;
  overflow: hidden;
}

.rating-box .rating {
  float: left;
  height: 13px;
  background: url(../images/bkg_rating.gif) 0 100% repeat-x;
}

.ratings .rating-box {
  float: left;
  margin-right: 3px;
}

.ratings-table th,
.ratings-table td {
  font-size: 11px;
  line-height: 1.15;
  padding: 3px 0;
}

.ratings-table th {
  font-weight: bold;
  padding-right: 8px;
}

/* Availability */
.availability {
  margin: 0;
}

.availability span {
  font-weight: bold;
}

.availability.out-of-stock span {
  color: #d83820;
}

.availability-only {
  margin: 0 0 7px;
}

.availability-only a {
  background: url(../images/i_availability_only_arrow.gif) 100% 0 no-repeat;
  cursor: pointer;
  padding-right: 15px;
}

.availability-only .expanded {
  background-position: 100% -15px;
}

.availability-only-details {
  margin: 0 0 7px;
}

.availability-only-details th {
  background: #f2f2f2;
  font-size: 10px;
  padding: 0 8px;
}

.availability-only-details td {
  border-bottom: 1px solid #ddd;
  font-size: 11px;
  padding: 2px 8px 1px;
}

/* Email to a Friend */
/* Alerts */
/* Add to Links */
.add-to-links .separator {
  display: none;
}

/* Add to Cart */
.add-to-cart label {
  float: left;
  margin-right: 5px;
}

.add-to-cart .qty {
  float: left;
}

.add-to-cart button.button {
  float: left;
  margin-left: 5px;
}

.add-to-cart .paypal-logo {
  clear: left;
  text-align: right;
}

.add-to-cart .paypal-logo .paypal-or {
  clear: both;
  display: block;
  margin: 5px 60px 5px 0;
}

.product-view .add-to-cart .paypal-logo {
  margin: 0;
}

/* Add to Links + Add to Cart */
.add-to-box .add-to-cart {
  float: left;
}

.add-to-box .or {
  float: left;
  margin: 0 10px;
}

.add-to-box .add-to-links {
  float: left;
}

.product-collateral .box-collateral {
  margin: 0 0 15px;
  overflow: hidden;
}

/* Product Images */
.product-view .product-img-box {
  width: 32.58427%;
  float: left;
  margin-right: 1.1236%;
  display: inline;
}

.col3-layout .product-view .product-img-box {
  float: none;
  margin: 0 auto;
}

.product-view .product-img-box .product-image-zoom {
  position: relative;
  width: 265px;
  height: 265px;
  overflow: hidden;
  z-index: 9;
}

.product-view .product-img-box .product-image-zoom img {
  position: absolute;
  left: 0;
  top: 0;
  cursor: move;
}

.product-view .product-img-box .zoom-notice {
  text-align: center;
}

.product-view .product-img-box .zoom {
  position: relative;
  z-index: 9;
  height: 18px;
  margin: 0 auto 13px;
  padding: 0 28px;
  background: url(../images/slider_bg.gif) 50% 50% no-repeat;
  cursor: pointer;
}

.product-view .product-img-box .zoom.disabled {
  -moz-opacity: .3;
  -webkit-opacity: .3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  /*IE8*/
  opacity: .3;
}

.product-view .product-img-box .zoom #track {
  position: relative;
  height: 18px;
}

.product-view .product-img-box .zoom #handle {
  position: absolute;
  left: 0;
  top: -1px;
  width: 9px;
  height: 22px;
  background: url(../images/magnifier_handle.gif) 0 0 no-repeat;
}

.product-view .product-img-box .zoom .btn-zoom-out {
  position: absolute;
  left: 2px;
  top: 0;
}

.product-view .product-img-box .zoom .btn-zoom-in {
  position: absolute;
  right: 2px;
  top: 0;
}

.product-view .product-img-box .more-views ul {
  margin-left: -4px;
}

.product-view .product-img-box .more-views li {
  float: left;
}

.product-image-popup {
  margin: 0 auto;
}

.product-image-popup .buttons-set {
  float: right;
  clear: none;
  border: 0;
  margin: 0;
  padding: 0;
}

.product-image-popup .nav {
  margin: 0 100px;
  text-align: center;
}

.product-image-popup .image {
  display: block;
}

/* Product Shop */
.product-view .product-shop {
  width: 66.29213%;
  float: right;
  margin-right: 0;
  *margin-left: -20px;
  display: inline;
}

/* Product Options */
.product-options {
  margin: 10px 0;
  background-color: #f6f6f6;
  padding: 20px;
}

.product-options dt label {
  font-weight: bold;
}

.product-options dt .qty-holder {
  float: right;
}

.product-options dt .qty-holder label {
  vertical-align: middle;
}

.product-options dt .qty-disabled {
  background: none;
  border: 0;
  padding: 3px;
  color: #000;
}

.product-options dd {
  margin: 10px 0;
}

.product-options dd input.input-text {
  width: 98%;
}

.product-options dd input.datetime-picker {
  width: 150px;
}

.product-options dd .time-picker {
  display: -moz-inline-box;
  display: inline-block;
  padding: 2px 0;
  vertical-align: middle;
}

.product-options dd textarea {
  width: 98%;
  height: 8em;
}

.product-options dd select {
  width: 100%;
}

.product-options .options-list input.radio {
  float: left;
  margin: 3px -18px 0 0;
}

.product-options .options-list input.checkbox {
  float: left;
  margin: 3px -20px 0 0;
}

.product-options .options-list .label {
  display: block;
  margin-left: 20px;
}

.product-options ul.validation-failed {
  padding: 0 7px;
}

.product-options p.required {
  padding: 15px 0 0;
}

.product-options-bottom .price-box {
  margin: 10px 0;
}

.product-options-bottom .add-to-cart label {
  line-height: 3;
}
.product-options-bottom .add-to-cart input.qty {
  width: 80px;
}

/* Grouped Product */
/* Block: Description */
/* Block: Additional */
/* Block: Upsell */
.product-view .box-up-sell .products-grid td {
  width: 24.36975%;
  float: left;
  margin-right: 0.84034%;
  display: inline;
}

.product-view .box-up-sell .products-grid td.last {
  margin-right: 0;
}

/* Block: Tags */
.product-view .box-tags .form-add label {
  float: left;
}

.product-view .box-tags .form-add .input-box {
  float: left;
  width: 260px;
  margin: 0 5px;
}

.product-view .box-tags .form-add input.input-text {
  width: 254px;
}

.product-view .box-tags .form-add p {
  clear: both;
}

/* Block: Reviews */
/* Send a Friend */
/* Magic zoom module*/
.MagicToolboxSelectorsContainer img {
  border: 10px solid #eef1e9;
}

/**
 *   third party style overrides for all themes
 **************************/
.main-container .col-main .highlight {
  background-color: transparent;
}

/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    design
 * @package     default_blank
 * @copyright   Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
/* Print media only */
@media print {
  * {
    text-align: left !important;
  }

  body {
    background: #fff !important;
    font-size: 12pt !important;
    margin: 15px !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
}

  h1, h2, h3 {
    font-weight: bold;
    text-transform: uppercase;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2 {
    font-size: 22px;
    font-size: 1.57143rem;
    margin-bottom: 0.5em;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .print-head {
    margin: 10px 0 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }

  .order-date {
    margin-bottom: 30px;
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }

  .block-account, .block-layered-nav, .usps {
    display: none !important;
  }

  table {
    border-color: #f0f0f0;
  }
  table a {
    display: none;
  }

  .col2-set {
    margin: 0 0 20px;
    padding: 0 0 10px;
    border-bottom: 1px solid #eee;
  }
  .col2-set .col-1 {
    margin-right: 2%;
  }
  .col2-set .col-1, .col2-set .col-2 {
    width: 49%;
  }

  /* Catalog Product View */
  .catalog-product-view .product-image {
    width: 50% !important;
  }
  .catalog-product-view .add-to-cart {
    display: none;
  }
  .catalog-product-view .product-accordion-content {
    display: block !important;
  }
  .catalog-product-view table.data-table-alt tr {
    border: none;
  }
  .catalog-product-view table.data-table-alt tr td {
    padding: 10px 0 !important;
    border: none !important;
  }
  .catalog-product-view table.data-table-alt tr td label {
    font-weight: bold;
    text-transform: uppercase;
  }
  .catalog-product-view table.data-table-alt tr td p {
    text-transform: none;
    font-weight: normal;
  }

  /* Sales Print */
  .sales-order-print #my-orders-table th {
    background: #f0f0f0;
    border: 1px solid #f7f8f4;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
  }
  .sales-order-print #my-orders-table tbody tr {
    border: 1px solid #f7f8f4;
  }
  .sales-order-print #my-orders-table tbody tr td {
    padding: 10px;
    border: 1px solid #f7f8f4;
  }
  .sales-order-print #my-orders-table tbody tr td h3 {
    text-transform: none;
  }
  .sales-order-print #my-orders-table tfoot td {
    padding: 5px;
  }

  table.grand-totals tr td {
    padding: 10px;
  }

  /* Reset responsive tables */
  td.td-mobile-block,
  td.td-mobile-inline-block,
  .mobile-table-cell-hide {
    display: table-cell;
  }
  .header-container,
  .nav-container,
  .footer-container,
  .pager,
  .toolbar,
  .actions,
  .buttons-set {
    display: none !important;
  }

  .page-print .data-table .cart-tax-total {
    background-position: 100% -54px;
  }

  .page-print .data-table .cart-tax-info {
    display: block !important;
  }

  /* ==========================================================================
     Print styles.
     h5bp Print Styles
     ========================================================================== */
  * {
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
}
@media print and (min-width: 48em) {
  td.td-mobile-block,
  td.td-mobile-inline-block,
  .mobile-table-cell-hide {
    display: table-cell;
  }
}

/* Print frontend  */
body.page-print {
  @page {
    margin: 0.5cm;
}

  /* Catalog Product View */
  /* Sales Print */
  /* Reset responsive tables */
}
body.page-print pre,
body.page-print blockquote {
  border: 1px solid #999;
  page-break-inside: avoid;
}
body.page-print thead {
  display: table-header-group;
  /* h5bp.com/t */
}
body.page-print tr,
body.page-print img {
  page-break-inside: avoid;
}
body.page-print img {
  max-width: 100% !important;
}
body.page-print h1, body.page-print h2, body.page-print h3 {
  font-weight: bold;
  text-transform: uppercase;
}
body.page-print p,
body.page-print h2,
body.page-print h3 {
  orphans: 3;
  widows: 3;
}
body.page-print h2 {
  font-size: 22px;
  font-size: 1.57143rem;
  margin-bottom: 0.5em;
}
body.page-print h2,
body.page-print h3 {
  page-break-after: avoid;
}
body.page-print .print-head {
  margin: 10px 0 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
body.page-print .order-date {
  margin-bottom: 30px;
  margin-top: 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
body.page-print .block-account, body.page-print .block-layered-nav, body.page-print .usps {
  display: none !important;
}
body.page-print table {
  border-color: #f0f0f0;
}
body.page-print table a {
  display: none;
}
body.page-print .col2-set {
  margin: 0 0 20px;
  padding: 0 0 10px;
  border-bottom: 1px solid #eee;
}
body.page-print .col2-set .col-1 {
  margin-right: 2%;
}
body.page-print .col2-set .col-1, body.page-print .col2-set .col-2 {
  width: 49%;
}
body.page-print .catalog-product-view .product-image {
  width: 50% !important;
}
body.page-print .catalog-product-view .add-to-cart {
  display: none;
}
body.page-print .catalog-product-view .product-accordion-content {
  display: block !important;
}
body.page-print .catalog-product-view table.data-table-alt tr {
  border: none;
}
body.page-print .catalog-product-view table.data-table-alt tr td {
  padding: 10px 0 !important;
  border: none !important;
}
body.page-print .catalog-product-view table.data-table-alt tr td label {
  font-weight: bold;
  text-transform: uppercase;
}
body.page-print .catalog-product-view table.data-table-alt tr td p {
  text-transform: none;
  font-weight: normal;
}
body.page-print .sales-order-print #my-orders-table th {
  background: #f0f0f0;
  border: 1px solid #f7f8f4;
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
}
body.page-print .sales-order-print #my-orders-table tbody tr {
  border: 1px solid #f7f8f4;
}
body.page-print .sales-order-print #my-orders-table tbody tr td {
  padding: 10px;
  border: 1px solid #f7f8f4;
}
body.page-print .sales-order-print #my-orders-table tbody tr td h3 {
  text-transform: none;
}
body.page-print .sales-order-print #my-orders-table tfoot td {
  padding: 5px;
}
body.page-print table.grand-totals tr td {
  padding: 10px;
}
body.page-print td.td-mobile-block,
body.page-print td.td-mobile-inline-block,
body.page-print .mobile-table-cell-hide {
  display: table-cell;
}
@media (min-width: 48em) {
  body.page-print td.td-mobile-block,
  body.page-print td.td-mobile-inline-block,
  body.page-print .mobile-table-cell-hide {
    display: table-cell;
  }
}
