/*============================================================================
  GLOBAL HYDRALIC SOLUTIONS INC. 
  Virto Commerce Default Theme based on Timber v1.4.0
  Built with Sass - http://sass-lang.com/

  Some things to notice:
	- added support for top dropdown menu (languages, currencies)
==============================================================================*/
/*============================================================================
  Table of Contents

  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Normalize
  #Grid Setup
  #Basic Styles
  #Helper Classes
  #Typography
  #Rich Text Editor
  #Links and Buttons
  #Lists
  #Tables
  #OOCSS Media Object
  #Images and Iframes
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Mobile Nav Bar
  #Site Footer
  #Product Grid and List Views
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Blogs and Comments
  #Notes and Form Feedback
  #Cart Page
  #Demo Styles - for empty store state
  #FlexSlider
  #Product Reviews
==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*================ Typography ================*/
/*============================================================================
  Get font-families from theme settings
==============================================================================*/
@font-face {
  font-family: "icons";
  src: url("/en-US/themes/assets/icons.eot");
  src: url("/en-US/themes/assets/icons.eot#iefix") format("embedded-opentype"), url("/en-US/themes/assets/icons.woff") format("woff"), url("/en-US/themes/assets/icons.ttf") format("truetype"), url("/en-US/themes/assets/icons.svg#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

/*============================================================================
  #Sass Mixins
==============================================================================*/
.clearfix:after {
  content: "";
  display: table;
  clear: both; }

/*============================================================================
  Dependency-free breakpoint mixin
// http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
==============================================================================*/
/*============================================================================
  #Normalize
==============================================================================*/
*, input, :before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
  margin: 0;
  -webkit-appearance: none; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*============================================================================
  #Grid Setup
    - Based on csswizardry grid, but with floated columns and a fixed gutter size
    - Breakpoints defined above, under #Breakpoint and Grid Variables
    - Note the inclusion of .grid-uniform to take care of clearfixes on evenly sized grid-items
==============================================================================*/
/* Force clearfix on grids */
.grid:after, .grid--full:after, .grid--rev:after,
.grid-uniform:after {
  content: "";
  display: table;
  clear: both; }

/* Manual grid-item clearfix */
.grid-item.clear {
  clear: both; }

/*============================================================================
  Drop relative positioning into silent classes which can't take advantage of
  the `[class*="push--"]` and `[class*="pull--"]` selectors.
==============================================================================*/
/*============================================================================
  Grid Setup
    1. Allow the grid system to be used on lists.
    2. Remove any margins and paddings that might affect the grid system.
    3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
.grid, .grid--full, .grid--rev,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -30px; }

.grid-item {
  float: left;
  padding-left: 30px;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/
.grid--rev {
  direction: rtl;
  text-align: left; }

.grid--rev > .grid-item {
  direction: ltr;
  text-align: left;
  float: right; }

/* Gutterless grids have all the properties of regular grids, minus any spacing. */
.grid--full {
  margin-left: 0; }

.grid--full > .grid-item {
  padding-left: 0; }

/*============================================================================
  WIDTHS
    - Create width classes, prefixed by the specified namespace.
==============================================================================*/
/*================ Clearfix helper on uniform grids ================*/
/*============================================================================
  HELPERS
==============================================================================*/
/*================ Helper show/hide classes around our breakpoints ================*/
/*================ Our regular, non-responsive width and helper classes ================*/
/** 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%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

.centered-image {
  display: block;
  margin-left: auto;
  margin-right: auto; }

/*================ Our responsive classes, if we have enabled them ================*/
@media only screen and (max-width: 480px) {
  /** Whole */
  .small--one-whole {
    width: 100%; }
  /* Halves */
  .small--one-half, .small--six-twelfths, .small--five-tenths, .small--four-eighths, .small--three-sixths, .small--two-quarters {
    width: 50%; }
  /* Thirds */
  .small--one-third, .small--four-twelfths, .small--two-sixths {
    width: 33.333%; }
  .small--two-thirds, .small--eight-twelfths, .small--four-sixths {
    width: 66.666%; }
  /* Quarters */
  .small--one-quarter, .small--three-twelfths, .small--two-eighths {
    width: 25%; }
  .small--three-quarters, .small--nine-twelfths, .small--six-eighths {
    width: 75%; }
  /* Fifths */
  .small--one-fifth, .small--two-tenths {
    width: 20%; }
  .small--two-fifths, .small--four-tenths {
    width: 40%; }
  .small--three-fifths, .small--six-tenths {
    width: 60%; }
  .small--four-fifths, .small--eight-tenths {
    width: 80%; }
  /* Sixths */
  .small--one-sixth, .small--two-twelfths {
    width: 16.666%; }
  .small--five-sixths, .small--ten-twelfths {
    width: 83.333%; }
  /* Eighths */
  .small--one-eighth {
    width: 12.5%; }
  .small--three-eighths {
    width: 37.5%; }
  .small--five-eighths {
    width: 62.5%; }
  .small--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .small--one-tenth {
    width: 10%; }
  .small--three-tenths {
    width: 30%; }
  .small--seven-tenths {
    width: 70%; }
  .small--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .small--one-twelfth {
    width: 8.333%; }
  .small--five-twelfths {
    width: 41.666%; }
  .small--seven-twelfths {
    width: 58.333%; }
  .small--eleven-twelfths {
    width: 91.666%; }
  .small--show {
    display: block !important; }
  .small--hide {
    display: none !important; }
  .small--text-left {
    text-align: left !important; }
  .small--text-right {
    text-align: right !important; }
  .small--text-center {
    text-align: center !important; }
  .small--left {
    float: left !important; }
  .small--right {
    float: right !important; }
  .grid-uniform .small--one-half:nth-child(2n+1), .grid-uniform .small--two-quarters:nth-child(2n+1),
  .grid-uniform .small--one-third:nth-child(3n+1),
  .grid-uniform .small--one-quarter:nth-child(4n+1),
  .grid-uniform .small--one-fifth:nth-child(5n+1),
  .grid-uniform .small--two-tenths:nth-child(5n+1),
  .grid-uniform .small--one-sixth:nth-child(6n+1),
  .grid-uniform .small--two-sixths:nth-child(3n+1),
  .grid-uniform .small--three-sixths:nth-child(2n+1),
  .grid-uniform .small--two-eighths:nth-child(4n+1),
  .grid-uniform .small--four-eighths:nth-child(2n+1),
  .grid-uniform .small--five-tenths:nth-child(2n+1),
  .grid-uniform .small--one-twelfth:nth-child(12n+1),
  .grid-uniform .small--two-twelfths:nth-child(6n+1),
  .grid-uniform .small--three-twelfths:nth-child(4n+1),
  .grid-uniform .small--four-twelfths:nth-child(3n+1),
  .grid-uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (min-width: 481px) and (max-width: 768px) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }
  /* Halves */
  .medium--one-half, .medium--six-twelfths, .medium--five-tenths, .medium--four-eighths, .medium--three-sixths, .medium--two-quarters {
    width: 50%; }
  /* Thirds */
  .medium--one-third, .medium--four-twelfths, .medium--two-sixths {
    width: 33.333%; }
  .medium--two-thirds, .medium--eight-twelfths, .medium--four-sixths {
    width: 66.666%; }
  /* Quarters */
  .medium--one-quarter, .medium--three-twelfths, .medium--two-eighths {
    width: 25%; }
  .medium--three-quarters, .medium--nine-twelfths, .medium--six-eighths {
    width: 75%; }
  /* Fifths */
  .medium--one-fifth, .medium--two-tenths {
    width: 20%; }
  .medium--two-fifths, .medium--four-tenths {
    width: 40%; }
  .medium--three-fifths, .medium--six-tenths {
    width: 60%; }
  .medium--four-fifths, .medium--eight-tenths {
    width: 80%; }
  /* Sixths */
  .medium--one-sixth, .medium--two-twelfths {
    width: 16.666%; }
  .medium--five-sixths, .medium--ten-twelfths {
    width: 83.333%; }
  /* Eighths */
  .medium--one-eighth {
    width: 12.5%; }
  .medium--three-eighths {
    width: 37.5%; }
  .medium--five-eighths {
    width: 62.5%; }
  .medium--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .medium--one-tenth {
    width: 10%; }
  .medium--three-tenths {
    width: 30%; }
  .medium--seven-tenths {
    width: 70%; }
  .medium--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .medium--one-twelfth {
    width: 8.333%; }
  .medium--five-twelfths {
    width: 41.666%; }
  .medium--seven-twelfths {
    width: 58.333%; }
  .medium--eleven-twelfths {
    width: 91.666%; }
  .medium--show {
    display: block !important; }
  .medium--hide {
    display: none !important; }
  .medium--text-left {
    text-align: left !important; }
  .medium--text-right {
    text-align: right !important; }
  .medium--text-center {
    text-align: center !important; }
  .medium--left {
    float: left !important; }
  .medium--right {
    float: right !important; }
  .grid-uniform .medium--one-half:nth-child(2n+1), .grid-uniform .medium--two-quarters:nth-child(2n+1),
  .grid-uniform .medium--one-third:nth-child(3n+1),
  .grid-uniform .medium--one-quarter:nth-child(4n+1),
  .grid-uniform .medium--one-fifth:nth-child(5n+1),
  .grid-uniform .medium--two-tenths:nth-child(5n+1),
  .grid-uniform .medium--one-sixth:nth-child(6n+1),
  .grid-uniform .medium--two-sixths:nth-child(3n+1),
  .grid-uniform .medium--three-sixths:nth-child(2n+1),
  .grid-uniform .medium--two-eighths:nth-child(4n+1),
  .grid-uniform .medium--four-eighths:nth-child(2n+1),
  .grid-uniform .medium--five-tenths:nth-child(2n+1),
  .grid-uniform .medium--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (max-width: 768px) {
  /** Whole */
  .medium-down--one-whole {
    width: 100%; }
  /* Halves */
  .medium-down--one-half, .medium-down--six-twelfths, .medium-down--five-tenths, .medium-down--four-eighths, .medium-down--three-sixths, .medium-down--two-quarters {
    width: 50%; }
  /* Thirds */
  .medium-down--one-third, .medium-down--four-twelfths, .medium-down--two-sixths {
    width: 33.333%; }
  .medium-down--two-thirds, .medium-down--eight-twelfths, .medium-down--four-sixths {
    width: 66.666%; }
  /* Quarters */
  .medium-down--one-quarter, .medium-down--three-twelfths, .medium-down--two-eighths {
    width: 25%; }
  .medium-down--three-quarters, .medium-down--nine-twelfths, .medium-down--six-eighths {
    width: 75%; }
  /* Fifths */
  .medium-down--one-fifth, .medium-down--two-tenths {
    width: 20%; }
  .medium-down--two-fifths, .medium-down--four-tenths {
    width: 40%; }
  .medium-down--three-fifths, .medium-down--six-tenths {
    width: 60%; }
  .medium-down--four-fifths, .medium-down--eight-tenths {
    width: 80%; }
  /* Sixths */
  .medium-down--one-sixth, .medium-down--two-twelfths {
    width: 16.666%; }
  .medium-down--five-sixths, .medium-down--ten-twelfths {
    width: 83.333%; }
  /* Eighths */
  .medium-down--one-eighth {
    width: 12.5%; }
  .medium-down--three-eighths {
    width: 37.5%; }
  .medium-down--five-eighths {
    width: 62.5%; }
  .medium-down--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .medium-down--one-tenth {
    width: 10%; }
  .medium-down--three-tenths {
    width: 30%; }
  .medium-down--seven-tenths {
    width: 70%; }
  .medium-down--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .medium-down--one-twelfth {
    width: 8.333%; }
  .medium-down--five-twelfths {
    width: 41.666%; }
  .medium-down--seven-twelfths {
    width: 58.333%; }
  .medium-down--eleven-twelfths {
    width: 91.666%; }
  .medium-down--show {
    display: block !important; }
  .medium-down--hide {
    display: none !important; }
  .medium-down--text-left {
    text-align: left !important; }
  .medium-down--text-right {
    text-align: right !important; }
  .medium-down--text-center {
    text-align: center !important; }
  .medium-down--left {
    float: left !important; }
  .medium-down--right {
    float: right !important; }
  .grid-uniform .medium-down--one-half:nth-child(2n+1), .grid-uniform .medium-down--two-quarters:nth-child(2n+1),
  .grid-uniform .medium-down--one-third:nth-child(3n+1),
  .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
  .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
  .grid-uniform .medium-down--two-tenths:nth-child(5n+1),
  .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
  .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
  .grid-uniform .medium-down--three-sixths:nth-child(2n+1),
  .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
  .grid-uniform .medium-down--four-eighths:nth-child(2n+1),
  .grid-uniform .medium-down--five-tenths:nth-child(2n+1),
  .grid-uniform .medium-down--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium-down--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium-down--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (min-width: 769px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }
  /* Halves */
  .large--one-half, .large--six-twelfths, .large--five-tenths, .large--four-eighths, .large--three-sixths, .large--two-quarters {
    width: 50%; }
  /* Thirds */
  .large--one-third, .large--four-twelfths, .large--two-sixths {
    width: 33.333%; }
  .large--two-thirds, .large--eight-twelfths, .large--four-sixths {
    width: 66.666%; }
  /* Quarters */
  .large--one-quarter, .large--three-twelfths, .large--two-eighths {
    width: 25%; }
  .large--three-quarters, .large--nine-twelfths, .large--six-eighths {
    width: 75%; }
  /* Fifths */
  .large--one-fifth, .large--two-tenths {
    width: 20%; }
  .large--two-fifths, .large--four-tenths {
    width: 40%; }
  .large--three-fifths, .large--six-tenths {
    width: 60%; }
  .large--four-fifths, .large--eight-tenths {
    width: 80%; }
  /* Sixths */
  .large--one-sixth, .large--two-twelfths {
    width: 16.666%; }
  .large--five-sixths, .large--ten-twelfths {
    width: 83.333%; }
  /* Eighths */
  .large--one-eighth {
    width: 12.5%; }
  .large--three-eighths {
    width: 37.5%; }
  .large--five-eighths {
    width: 62.5%; }
  .large--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .large--one-tenth {
    width: 10%; }
  .large--three-tenths {
    width: 30%; }
  .large--seven-tenths {
    width: 70%; }
  .large--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .large--one-twelfth {
    width: 8.333%; }
  .large--five-twelfths {
    width: 41.666%; }
  .large--seven-twelfths {
    width: 58.333%; }
  .large--eleven-twelfths {
    width: 91.666%; }
  .large--show {
    display: block !important; }
  .large--hide {
    display: none !important; }
  .large--text-left {
    text-align: left !important; }
  .large--text-right {
    text-align: right !important; }
  .large--text-center {
    text-align: center !important; }
  .large--left {
    float: left !important; }
  .large--right {
    float: right !important; }
  .grid-uniform .large--one-half:nth-child(2n+1), .grid-uniform .large--two-quarters:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--two-tenths:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--three-sixths:nth-child(2n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--four-eighths:nth-child(2n+1),
  .grid-uniform .large--five-tenths:nth-child(2n+1),
  .grid-uniform .large--one-twelfth:nth-child(12n+1),
  .grid-uniform .large--two-twelfths:nth-child(6n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; } }

/*============================================================================
  PUSH
    - Push classes, to move grid items over to the right by certain amounts
==============================================================================*/
[class*="push--"] {
  position: relative; }

/* Whole */
.push--one-whole {
  left: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

.push--three-eighths {
  left: 37.5%; }

.push--five-eighths {
  left: 62.5%; }

.push--seven-eighths {
  left: 87.5%; }

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

.push--three-tenths {
  left: 30%; }

.push--seven-tenths {
  left: 70%; }

.push--nine-tenths {
  left: 90%; }

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

.push--five-twelfths {
  left: 41.666%; }

.push--seven-twelfths {
  left: 58.333%; }

.push--eleven-twelfths {
  left: 91.666%; }

@media only screen and (min-width: 481px) and (max-width: 768px) {
  /* Whole */
  .push--medium--one-whole {
    left: 100%; }
  /* Halves */
  .push--medium--one-half, .push--medium--six-twelfths, .push--medium--five-tenths, .push--medium--four-eighths, .push--medium--three-sixths, .push--medium--two-quarters {
    left: 50%; }
  /* Thirds */
  .push--medium--one-third, .push--medium--four-twelfths, .push--medium--two-sixths {
    left: 33.333%; }
  .push--medium--two-thirds, .push--medium--eight-twelfths, .push--medium--four-sixths {
    left: 66.666%; }
  /* Quarters */
  .push--medium--one-quarter, .push--medium--three-twelfths, .push--medium--two-eighths {
    left: 25%; }
  .push--medium--three-quarters, .push--medium--nine-twelfths, .push--medium--six-eighths {
    left: 75%; }
  /* Fifths */
  .push--medium--one-fifth, .push--medium--two-tenths {
    left: 20%; }
  .push--medium--two-fifths, .push--medium--four-tenths {
    left: 40%; }
  .push--medium--three-fifths, .push--medium--six-tenths {
    left: 60%; }
  .push--medium--four-fifths, .push--medium--eight-tenths {
    left: 80%; }
  /* Sixths */
  .push--medium--one-sixth, .push--medium--two-twelfths {
    left: 16.666%; }
  .push--medium--five-sixths, .push--medium--ten-twelfths {
    left: 83.333%; }
  /* Eighths */
  .push--medium--one-eighth {
    left: 12.5%; }
  .push--medium--three-eighths {
    left: 37.5%; }
  .push--medium--five-eighths {
    left: 62.5%; }
  .push--medium--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--medium--one-tenth {
    left: 10%; }
  .push--medium--three-tenths {
    left: 30%; }
  .push--medium--seven-tenths {
    left: 70%; }
  .push--medium--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--medium--one-twelfth {
    left: 8.333%; }
  .push--medium--five-twelfths {
    left: 41.666%; }
  .push--medium--seven-twelfths {
    left: 58.333%; }
  .push--medium--eleven-twelfths {
    left: 91.666%; } }

@media only screen and (max-width: 768px) {
  /* Whole */
  .push--medium-down--one-whole {
    left: 100%; }
  /* Halves */
  .push--medium-down--one-half, .push--medium-down--six-twelfths, .push--medium-down--five-tenths, .push--medium-down--four-eighths, .push--medium-down--three-sixths, .push--medium-down--two-quarters {
    left: 50%; }
  /* Thirds */
  .push--medium-down--one-third, .push--medium-down--four-twelfths, .push--medium-down--two-sixths {
    left: 33.333%; }
  .push--medium-down--two-thirds, .push--medium-down--eight-twelfths, .push--medium-down--four-sixths {
    left: 66.666%; }
  /* Quarters */
  .push--medium-down--one-quarter, .push--medium-down--three-twelfths, .push--medium-down--two-eighths {
    left: 25%; }
  .push--medium-down--three-quarters, .push--medium-down--nine-twelfths, .push--medium-down--six-eighths {
    left: 75%; }
  /* Fifths */
  .push--medium-down--one-fifth, .push--medium-down--two-tenths {
    left: 20%; }
  .push--medium-down--two-fifths, .push--medium-down--four-tenths {
    left: 40%; }
  .push--medium-down--three-fifths, .push--medium-down--six-tenths {
    left: 60%; }
  .push--medium-down--four-fifths, .push--medium-down--eight-tenths {
    left: 80%; }
  /* Sixths */
  .push--medium-down--one-sixth, .push--medium-down--two-twelfths {
    left: 16.666%; }
  .push--medium-down--five-sixths, .push--medium-down--ten-twelfths {
    left: 83.333%; }
  /* Eighths */
  .push--medium-down--one-eighth {
    left: 12.5%; }
  .push--medium-down--three-eighths {
    left: 37.5%; }
  .push--medium-down--five-eighths {
    left: 62.5%; }
  .push--medium-down--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--medium-down--one-tenth {
    left: 10%; }
  .push--medium-down--three-tenths {
    left: 30%; }
  .push--medium-down--seven-tenths {
    left: 70%; }
  .push--medium-down--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--medium-down--one-twelfth {
    left: 8.333%; }
  .push--medium-down--five-twelfths {
    left: 41.666%; }
  .push--medium-down--seven-twelfths {
    left: 58.333%; }
  .push--medium-down--eleven-twelfths {
    left: 91.666%; } }

@media only screen and (min-width: 769px) {
  /* Whole */
  .push--large--one-whole {
    left: 100%; }
  /* Halves */
  .push--large--one-half, .push--large--six-twelfths, .push--large--five-tenths, .push--large--four-eighths, .push--large--three-sixths, .push--large--two-quarters {
    left: 50%; }
  /* Thirds */
  .push--large--one-third, .push--large--four-twelfths, .push--large--two-sixths {
    left: 33.333%; }
  .push--large--two-thirds, .push--large--eight-twelfths, .push--large--four-sixths {
    left: 66.666%; }
  /* Quarters */
  .push--large--one-quarter, .push--large--three-twelfths, .push--large--two-eighths {
    left: 25%; }
  .push--large--three-quarters, .push--large--nine-twelfths, .push--large--six-eighths {
    left: 75%; }
  /* Fifths */
  .push--large--one-fifth, .push--large--two-tenths {
    left: 20%; }
  .push--large--two-fifths, .push--large--four-tenths {
    left: 40%; }
  .push--large--three-fifths, .push--large--six-tenths {
    left: 60%; }
  .push--large--four-fifths, .push--large--eight-tenths {
    left: 80%; }
  /* Sixths */
  .push--large--one-sixth, .push--large--two-twelfths {
    left: 16.666%; }
  .push--large--five-sixths, .push--large--ten-twelfths {
    left: 83.333%; }
  /* Eighths */
  .push--large--one-eighth {
    left: 12.5%; }
  .push--large--three-eighths {
    left: 37.5%; }
  .push--large--five-eighths {
    left: 62.5%; }
  .push--large--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--large--one-tenth {
    left: 10%; }
  .push--large--three-tenths {
    left: 30%; }
  .push--large--seven-tenths {
    left: 70%; }
  .push--large--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--large--one-twelfth {
    left: 8.333%; }
  .push--large--five-twelfths {
    left: 41.666%; }
  .push--large--seven-twelfths {
    left: 58.333%; }
  .push--large--eleven-twelfths {
    left: 91.666%; } }

/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*================ IE8 grid uniform clearfix ================*/
.lt-ie9 .grid-uniform {
  text-align: left;
  margin-left: 0; }

.lt-ie9 .grid-uniform .grid-item {
  display: inline-block;
  float: none;
  padding: 0;
  margin-left: -3px; }

/*============================================================================
  #Basic Styles
==============================================================================*/
html, body {
  padding: 0;
  margin: 0; }

html {
  background-color: #f2f2f2; }

body {
  background-color: #fff; }

[ng-cloak] {
  display: none; }

.sk-folding-cube {
  margin: 60px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg); }

.sk-folding-cube .sk-cube {
  color: #204a80;
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); }

.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%; }

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg); }

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg); }

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg); }

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s; }

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0; }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1; }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0; } }

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0; }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1; }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0; } }

/*============================================================================
  Commented out CSS for background for easy background image uploading in case customers ask.
  Simply upload a file called 'bg.jpg' and delete lines as necessary.
==============================================================================*/
.wrapper {
  max-width: 1440px;
  /*== 1060 ==*/
  margin: 0 auto;
  padding: 0 15px; }

.wrapper:after {
  content: "";
  display: table;
  clear: both; }

@media screen and (min-width: 481px) {
  .wrapper {
    padding: 0 30px; } }

.main-content {
  display: block;
  /*padding-top: 30px*/
  padding-bottom: 60px;
  position: relative;
  z-index: 3;
  /*9999*/ }

.ajax-informer {
  align-items: center;
  background: #fffabf;
  border: 1px solid #fff57c;
  color: #666;
  display: flex;
  font-size: 11px;
  font-weight: bold;
  margin: 0 auto;
  max-width: 360px;
  min-height: 30px;
  left: 50%;
  opacity: 0;
  padding: 5px 10px;
  top: 0;
  filter: alpha(opacity=0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

.ajax-informer.fade {
  opacity: 1;
  filter: alpha(opacity=100); }

.ajax-informer.error {
  background: #ffbfbf;
  border: 1px solid #ffa3a3; }

.ajax-informer .loader {
  background: url(images/informer-loader.gif);
  height: 16px;
  margin: 0 5px 0 0;
  width: 16px; }

.grid-border > .grid-item {
  padding-top: 30px; }

@media screen and (min-width: 769px) {
  .grid-border--right {
    border-right: 1px solid #ececec; }
  .grid-border--left {
    border-left: 1px solid #ececec; } }

/*============================================================================
  #Helper Classes
==============================================================================*/
.left {
  float: left; }

.right {
  float: right; }

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

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

.text-upper {
  text-transform: uppercase; }

.hidden {
  display: none; }

.display-table {
  display: table;
  table-layout: fixed;
  width: 100%; }

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
  float: none; }

@media screen and (min-width: 769px) {
  .large--display-table {
    display: table;
    table-layout: fixed;
    width: 100%; }
  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 15px;
  line-height: 1.6;
  font-family: "HelveticaNeue", "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
  color: #585858;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

h1, #shopify-product-reviews .spr-header-title, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  margin: 0 0 0.5em;
  line-height: 1.4;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 700;
  text-transform: uppercase; }

h1 a, #shopify-product-reviews .spr-header-title a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
  text-decoration: none;
  font-weight: inherit; }

a {
  text-decoration: none !important; }

/*================ Pixel to EM conversion tool - http://pxtoem.com/ ================*/
h1, #shopify-product-reviews .spr-header-title, .h1 {
  font-size: 1.733em;
  margin-bottom: 30px; }

h2, .h2 {
  font-size: 1.333em; }

h3, .h3 {
  font-size: 1.133em; }

h4, .h4 {
  font-size: 1.067em; }

h5, .h5 {
  font-size: 1em; }

h6, .h6 {
  font-size: 1em; }

.main-content h1, .main-content #shopify-product-reviews .spr-header-title, #shopify-product-reviews .main-content .spr-header-title, .main-content .h1, .main-content h2, .main-content .h2, .main-content h3, .main-content .h3, .main-content h4, .main-content .h4, .main-content h5, .main-content .h5 {
  color: #00aeef; }

/*#000*/
.sidebar h2, .sidebar .h2, .sidebar h3, .sidebar .h3, .sidebar h4, .sidebar .h4, .sidebar h5, .sidebar .h5 {
  margin-top: 4px; }

p {
  margin: 0 0 15px 0; }

p img {
  margin: 0; }

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 80%; }

sup, sub {
  position: relative;
  font-size: 60%;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

.text-light {
  color: rgba(88, 88, 88, 0.5); }

/*================ Blockquotes ================*/
blockquote, q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none; }

blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 30px;
  padding: 15px 30px;
  border-left: 1px solid #ececec; }

blockquote p {
  margin-bottom: 0; }

blockquote p + cite {
  margin-top: 15px; }

blockquote cite {
  display: block;
  font-size: 0.75em; }

blockquote cite:before {
  content: "\2014 \0020"; }

/*================ Code ================*/
code, pre {
  background-color: #faf7f5;
  font-family: Consolas,monospace;
  font-size: 1em;
  border: 0 none;
  padding: 0 2px;
  color: #51ab62; }

pre {
  overflow: auto;
  padding: 0.5em;
  margin: 0 0 1em; }

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid #ececec;
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0; }

hr.hr--small {
  margin: 15px 0; }

hr.hr--clear {
  border-top-color: transparent; }

footer hr {
  border-top-color: #e5e5e5; }

@media screen and (min-width: 769px) {
  hr.hr--offset-left {
    margin-left: -30px; } }

/*================ Section Headers ================*/
.section-header {
  margin-bottom: 20px; }

.section-header--title {
  margin-bottom: 12px; }

@media screen and (min-width: 769px) {
  .section-header {
    display: table;
    width: 100%; }
  .section-header--left {
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0; }
  .section-header--left h1, .section-header--left #shopify-product-reviews .spr-header-title, #shopify-product-reviews .section-header--left .spr-header-title, .section-header--left h2, .section-header--left h3, .section-header--left h4,
  .section-header--left .h1, .section-header--left .h2, .section-header--left .h3, .section-header--left .h4 {
    margin-bottom: 0; }
  .section-header--right {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    width: 335px; } }

@media screen and (min-width: 769px) and (max-width: 768px) {
  .section-header--right {
    margin-bottom: 30px; } }

.section-header--right .form-horizontal {
  display: inline-block;
  vertical-align: middle; }

@media screen and (min-width: 481px) {
  .section-header--right label + select,
  .section-header--right .collection-view {
    margin-left: 15px; } }

.collection-view {
  display: none;
  border: 1px solid #ececec;
  border-radius: 2px;
  padding: 11px;
  height: 39px;
  vertical-align: middle;
  /*================ We use SVG icons, so simply hide this in oldIE ================*/
  /*================ Only show on larger screens ================*/ }

.lt-ie9 .collection-view {
  display: none; }

@media screen and (min-width: 769px) {
  .collection-view {
    display: inline-block; } }

.collection-view a {
  display: block;
  float: left;
  opacity: 0.7;
  cursor: pointer;
  -webkit-transition: opacity 0.15s ease-out;
  -moz-transition: opacity 0.15s ease-out;
  -ms-transition: opacity 0.15s ease-out;
  -o-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out; }

.collection-view a + a {
  margin-left: 10px; }

.collection-view a:hover {
  opacity: 0.9;
  -webkit-transition: opacity 0.05s ease-in;
  -moz-transition: opacity 0.05s ease-in;
  -ms-transition: opacity 0.05s ease-in;
  -o-transition: opacity 0.05s ease-in;
  transition: opacity 0.05s ease-in; }

.collection-view a.collection-view--active {
  opacity: 1;
  cursor: default; }

.collection-view img {
  display: block;
  opacity: inherit; }

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 15px; }

.rte h1, .rte #shopify-product-reviews .spr-header-title, #shopify-product-reviews .rte .spr-header-title, .rte .h1, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
  margin-top: 0.5em; }

.rte h1:first-child, .rte #shopify-product-reviews .spr-header-title:first-child, #shopify-product-reviews .rte .spr-header-title:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
  margin-top: 0; }

.rte > div {
  margin-bottom: 15px; }

.rte ul, .rte ol {
  margin-left: 35px; }

.rte li {
  margin-bottom: 0.4em; }

.rte--header {
  margin-bottom: 0; }

/*============================================================================
  #Links and Buttons
==============================================================================*/
a {
  color: #204a80;
  text-decoration: none;
  background: transparent; }

a:hover,
a:focus {
  color: #2f6dbd; }

button {
  overflow: visible; }

button[disabled],
html input[disabled] {
  cursor: default; }

.btn, .header-cart-btn, input[type="submit"], .btn-secondary,
input.btn-secondary {
  display: inline-block;
  padding: 8px 20px;
  margin: 0;
  line-height: 1.42;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 2px;
  font-family: "Dosis", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 17px;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -ms-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  /*================ Set primary button colors - can override later ================*/
  background-color: #f9f9f9;
  /*#204a80*/
  color: #fff; }

.btn.btn--small, .btn--small.header-cart-btn, input.btn--small[type="submit"], .btn--small.btn-secondary {
  padding: 8px 12px 7px;
  font-size: 15px; }

.btn.btn--full, .btn--full.header-cart-btn, input.btn--full[type="submit"], .btn--full.btn-secondary {
  width: 100%; }

.btn:hover, .header-cart-btn:hover, input[type="submit"]:hover, .btn-secondary:hover {
  background-color: #f9f9f9;
  /*#89963b;*/
  color: #fff;
  -webkit-transition: background-color 0.05s ease-in;
  -moz-transition: background-color 0.05s ease-in;
  -ms-transition: background-color 0.05s ease-in;
  -o-transition: background-color 0.05s ease-in;
  transition: background-color 0.05s ease-in; }

.btn:active, .header-cart-btn:active, input[type="submit"]:active, .btn-secondary:active {
  background-color: #163257;
  color: #fff; }

.btn[disabled], .header-cart-btn[disabled], input[disabled][type="submit"], .btn-secondary[disabled], .btn.disabled, .disabled.header-cart-btn, input.disabled[type="submit"], .disabled.btn-secondary {
  cursor: default;
  color: #b6b6b6;
  background-color: #f6f6f6; }

.btn-secondary,
input.btn-secondary {
  background-color: #dcdcdc;
  color: #585858; }

.btn-secondary:hover,
input.btn-secondary:hover {
  background-color: #cfcfcf;
  color: #585858; }

.btn-secondary:active,
input.btn-secondary:active {
  background-color: #c3c3c3;
  color: #585858; }

/*================ Force an input/button to look like a text link ================*/
.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0; }

/*============================================================================
  #Lists
==============================================================================*/
ul, .rte ul, ol {
  margin: 0 0 1em;
  padding: 0; }

ul, .rte ul {
  list-style: none outside; }

ol {
  list-style: decimal; }

ol, ul.square, ul.disc, .rte ul {
  margin-left: 20px; }

ul.square {
  list-style: square outside; }

ul.disc, .rte ul {
  list-style: disc outside; }

ol.alpha {
  list-style: lower-alpha outside; }

ul ul, .rte ul ul, ul .rte ul, ul ol, .rte ul ol,
ol ol, ol ul, ol .rte ul, .rte ol ul {
  margin: 4px 0 5px 20px; }

li {
  margin-bottom: 0.25em; }

.inline-list li {
  display: inline-block;
  margin-bottom: 0; }

/*============================================================================
  #Tables
==============================================================================*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  min-width: 50%; }

table.full {
  width: 100%;
  margin-bottom: 15px; }

th {
  font-weight: bold; }

th, td {
  text-align: left;
  padding: 15px;
  border: 1px solid #ececec; }

/*============================================================================
  #OOCSS Media Object
//  - http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
==============================================================================*/
.media,
.media-flex {
  overflow: hidden;
  _overflow: visible;
  zoom: 1; }

.media-img {
  float: left;
  margin-right: 30px; }

.media-img-right {
  float: right;
  margin-left: 30px; }

.media-img img,
.media-img-right img {
  display: block; }

/*============================================================================
  #Images and Iframes
==============================================================================*/
img {
  border: 0 none; }

svg:not(:root) {
  overflow: hidden; }

img.auto,
.grid-item img,
.grid-item iframe {
  max-width: 100%; }

.video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto; }

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/*============================================================================
  #Forms
==============================================================================*/
form {
  margin-bottom: 30px; }

button,
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none; }

input,
textarea,
select,
fieldset {
  border-radius: 2px;
  max-width: 100%; }

input.input-full,
textarea.input-full,
select.input-full,
fieldset.input-full {
  width: 100%; }

input,
select,
textarea {
  font-size: 1em;
  padding: 8px 10px;
  line-height: 1.42; }

fieldset {
  border: 1px solid #ececec;
  padding: 15px 0; }

legend {
  border: 0;
  padding: 0; }

optgroup {
  font-weight: bold; }

input {
  display: inline-block;
  width: auto; }

button,
input[type="submit"] {
  cursor: pointer; }

/*================ Input width and border ================*/
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
textarea,
select {
  border: 1px solid #ececec;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 0 20px; }

input[type="text"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="file"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border: 1px solid lightgray; }

input[type="text"][disabled], input.disabled[type="text"],
input[type="search"][disabled],
input.disabled[type="search"],
input[type="password"][disabled],
input.disabled[type="password"],
input[type="email"][disabled],
input.disabled[type="email"],
input[type="file"][disabled],
input.disabled[type="file"],
input[type="number"][disabled],
input.disabled[type="number"],
input[type="tel"][disabled],
input.disabled[type="tel"],
textarea[disabled],
textarea.disabled,
select[disabled],
select.disabled {
  cursor: default;
  background-color: #f6f6f6;
  border-color: #b6b6b6; }

textarea {
  min-height: 100px; }

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin: 0;
  padding: 0; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iNy43cHgiIGhlaWdodD0iNC4zcHgiIHZpZXdCb3g9IjAgMCA3LjcgNC4zIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA3LjcgNC4zIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiM5OTk5OTkiIGQ9Ik03LjEsMC4xQzYuNywwLjUsMy45LDMuMiwzLjksMy4yUzEsMC41LDAuNiwwLjFTMCwwLjcsMCwwLjdsMy45LDMuNmwzLjgtMy42QzcuNywwLjcsNy41LTAuMyw3LjEsMC4xeiIvPg0KPC9zdmc+DQo=");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: #fff;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }

.ie9 select, .lt-ie9 select {
  padding-right: 10px;
  background-image: none; }

select::-ms-expand {
  display: none; }

/*================ Form labels ================*/
label,
legend {
  display: block;
  margin-bottom: 6px;
  font-size: 14px; }

label.inline,
legend.inline {
  display: inline; }

.form-horizontal label.hidden-label, label.hidden-label, .form-horizontal legend.hidden-label,
legend.hidden-label {
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden; }

.ie9 .form-horizontal label.hidden-label, .lt-ie9 .form-horizontal label.hidden-label, .ie9 label.hidden-label, .lt-ie9 label.hidden-label, .ie9 .form-horizontal legend.hidden-label, .lt-ie9 .form-horizontal legend.hidden-label, .ie9 legend.hidden-label, .lt-ie9 legend.hidden-label {
  height: auto;
  margin-bottom: 2px;
  overflow: visible; }

label > input[type="checkbox"] {
  margin-right: 5px;
  vertical-align: middle; }

/*================ We don't want the same label treatment for checkboxes/radios ================*/
input[type="checkbox"] + label,
input[type="radio"] + label {
  font-weight: normal; }

label[for] {
  cursor: pointer; }

.label-hint {
  color: #999; }

/*================ Horizontal Form ================*/
form.form-horizontal,
.form-horizontal {
  margin-bottom: 0; }

form.form-horizontal input[type="text"],
form.form-horizontal input[type="search"],
form.form-horizontal input[type="password"],
form.form-horizontal input[type="email"],
form.form-horizontal input[type="file"],
form.form-horizontal input[type="number"],
form.form-horizontal input[type="tel"],
form.form-horizontal textarea,
form.form-horizontal select,
form.form-horizontal label,
.form-horizontal input[type="text"],
.form-horizontal input[type="search"],
.form-horizontal input[type="password"],
.form-horizontal input[type="email"],
.form-horizontal input[type="file"],
.form-horizontal input[type="number"],
.form-horizontal input[type="tel"],
.form-horizontal textarea,
.form-horizontal select,
.form-horizontal label {
  display: inline-block;
  margin-bottom: 0;
  width: auto; }

/*================ Error styles ================*/
input.error[type="text"],
input.error[type="search"],
input.error[type="password"],
input.error[type="email"],
input.error[type="file"],
input.error[type="number"],
input.error[type="tel"],
textarea.error,
select.error {
  border-color: #dc0000;
  background-color: #fff6f6;
  color: #dc0000; }

label.error {
  color: #dc0000; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }

.input-group .input-group-field:first-child,
.input-group .input-group-btn:first-child,
.input-group .input-group-btn:first-child > .btn,
.input-group .input-group-btn:first-child > .header-cart-btn,
.input-group .input-group-btn:first-child > .btn-secondary,
.input-group .input-group-btn:first-child > input[type="submit"],
.input-group input[type="hidden"]:first-child + .input-group-field,
.input-group input[type="hidden"]:first-child + .input-group-btn > .btn,
.input-group input[type="hidden"]:first-child + .input-group-btn > .header-cart-btn,
.input-group input[type="hidden"]:first-child + .input-group-btn > .btn-secondary,
.input-group input[type="hidden"]:first-child + .input-group-btn > input[type="submit"] {
  border-radius: 2px 0 0 2px;
  border-right: none; }

.input-group .input-group-field:last-child,
.input-group .input-group-btn:last-child > .btn,
.input-group .input-group-btn:last-child > .header-cart-btn,
.input-group .input-group-btn:last-child > .btn-secondary,
.input-group .input-group-btn:last-child > input[type="submit"] {
  border-radius: 0 2px 2px 0; }

.input-group input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin-top: -1px;
  margin-bottom: -1px; }

.input-group-field,
.input-group-btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group .btn, .input-group .header-cart-btn, .input-group .btn-secondary, .input-group input[type="submit"],
.input-group .input-group-field {
  height: 42px; }

.input-group .input-group-field {
  width: 100%;
  margin-bottom: 0; }

.input-group-btn {
  position: relative;
  white-space: nowrap;
  width: 1%;
  padding: 0; }

.form-spacer {
  margin: 0 15px; }

/*============================================================================
  #Icons
==============================================================================*/
.icon-fallback-text .icon {
  display: none; }

.supports-fontface .icon-fallback-text .icon {
  display: inline-block; }

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.supports-fontface .icon-fallback-text .fallback-text {
  clip: rect(0 0 0 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

.icon:before {
  display: none; }

.supports-fontface .icon:before {
  display: inline;
  font-family: "icons";
  text-decoration: none;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/*================ Icon mapping ================*/
.icon-american_express:before {
  content: "\41"; }

.icon-arrow-up:before {
  content: "\33"; }

.icon-arrow-down:before {
  content: "\34"; }

.icon-arrow-left:before {
  content: "\e900"; }

.icon-arrow-right:before {
  content: "\e901"; }

.icon-bitcoin:before {
  content: "\42"; }

.icon-cart:before {
  content: "\5b"; }

.icon-cirrus:before {
  content: "\43"; }

.icon-diners_club:before {
  content: "\63"; }

.icon-discover:before {
  content: "\44"; }

.icon-dk:before {
  content: "\64"; }

.icon-facebook:before {
  content: "\66"; }

.icon-fancy:before {
  content: "\46"; }

.icon-google:before {
  content: "\67"; }

.icon-google_wallet:before {
  content: "\47"; }

.icon-instagram:before {
  content: "\69"; }

.icon-interac:before {
  content: "\49"; }

.icon-jcb:before {
  content: "\4a"; }

.icon-maestro:before {
  content: "\6d"; }

.icon-master:before {
  content: "\4d"; }

.icon-paypal:before {
  content: "\50"; }

.icon-pinterest:before {
  content: "\70"; }

.icon-rss:before {
  content: "\72"; }

.icon-search:before {
  content: "\73"; }

.icon-stripe:before {
  content: "\53"; }

.icon-tumblr:before {
  content: "\74"; }

.icon-twitter:before {
  content: "\54"; }

.icon-vimeo:before {
  content: "\76"; }

.icon-visa:before {
  content: "\56"; }

.icon-x:before {
  content: "\78"; }

.icon-youtube:before {
  content: "\79"; }

/*================ Button icons ================*/
.icon-cart {
  line-height: 0; }

.icon-cart:before {
  position: relative;
  top: -2px;
  font-size: 19px;
  line-height: 12px;
  vertical-align: middle;
  margin-right: 6px; }

.payment-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: default;
  margin: 0; }

.payment-icons li {
  margin: 0 7.5px 7.5px;
  color: #bbbbbb;
  cursor: default; }

.payment-icons .icon {
  font-size: 30px;
  line-height: 30px; }

.payment-icons .fallback-text {
  text-transform: capitalize; }

.social-icons li {
  margin: 0 10px 10px;
  vertical-align: middle; }

@media screen and (min-width: 481px) {
  .social-icons li {
    margin-left: 0; } }

.social-icons li .icon {
  font-size: 30px;
  line-height: 26px; }

.social-icons li a {
  color: #bbbbbb;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -ms-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out; }

.social-icons li a:hover {
  color: #959595;
  -webkit-transition: color 0.05s ease-in;
  -moz-transition: color 0.05s ease-in;
  -ms-transition: color 0.05s ease-in;
  -o-transition: color 0.05s ease-in;
  transition: color 0.05s ease-in; }

/*================ Social share buttons ================*/
.social-sharing {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-top: 15px;
  /*================ Large Buttons ================*/ }

.social-sharing a {
  display: inline-block;
  color: #fff;
  border-radius: 2px;
  margin: 0 10px 10px 0;
  height: 22px;
  line-height: 22px;
  text-decoration: none;
  font-weight: normal; }

.social-sharing a:hover {
  color: #fff; }

.social-sharing span {
  display: inline-block;
  vertical-align: top;
  height: 22px;
  line-height: 22px;
  font-size: 12px; }

.social-sharing .icon {
  padding: 0 5px 0 10px; }

.social-sharing .icon:before {
  line-height: 22px; }

.social-sharing.is-large a {
  height: 44px;
  line-height: 44px; }

.social-sharing.is-large a span {
  height: 44px;
  line-height: 44px;
  font-size: 18px; }

.social-sharing.is-large a .icon {
  padding: 0 10px 0 18px; }

.social-sharing.is-large a .icon:before {
  line-height: 44px; }

.share-title {
  font-weight: 900;
  font-size: 12px;
  padding-right: 10px; }

.is-large .share-title {
  padding-right: 16px; }

.share-facebook {
  background-color: #3b5998; }

.share-facebook:hover {
  background-color: #2d4373; }

.share-twitter {
  background-color: #00aced; }

.share-twitter:hover {
  background-color: #0087ba; }

.share-pinterest {
  background-color: #cb2027; }

.share-pinterest:hover {
  background-color: #9f191f; }

.share-fancy {
  background-color: #4999dc; }

.share-fancy:hover {
  background-color: #2780cb; }

.share-google {
  background-color: #dd4b39; }

.share-google:hover {
  background-color: #c23321; }

.share-count {
  position: relative;
  background-color: #fff;
  padding: 0 8px;
  margin-right: -2px;
  font-size: 14px;
  line-height: 20px;
  color: #333;
  border-radius: 0 2px 2px 0;
  border: 1px solid #ececec;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in; }

.share-count.is-loaded {
  opacity: 1; }

.share-count:before, .share-count:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid; }

.share-count:before {
  left: -6px;
  border-right-color: #ececec; }

.share-count:after {
  left: -5px;
  border-right-color: #fff; }

a:hover .share-count {
  background-color: whitesmoke; }

a:hover .share-count:after {
  border-right-color: whitesmoke; }

.is-large .share-count {
  font-size: 18px;
  padding: 0 14px; }

/*================ Clean Buttons ================*/
.social-sharing.is-clean a {
  background-color: #fff;
  border: 1px solid #ececec;
  color: #333;
  height: 30px;
  line-height: 30px; }

.social-sharing.is-clean a span {
  height: 30px;
  line-height: 30px;
  font-size: 13px; }

.social-sharing.is-clean a:hover {
  background-color: #f9f9f9; }

.social-sharing.is-clean a:hover .share-count {
  background-color: #fff; }

.social-sharing.is-clean a:hover .share-count:after {
  border-right-color: #fff; }

.social-sharing.is-clean a .share-title {
  font-weight: normal; }

.social-sharing.is-clean .share-count {
  top: -1px; }

.social-sharing.is-clean .icon-facebook {
  color: #3b5998; }

.social-sharing.is-clean .icon-twitter {
  color: #00aced; }

.social-sharing.is-clean .icon-pinterest {
  color: #cb2027; }

.social-sharing.is-clean .icon-fancy {
  color: #4999dc; }

.social-sharing.is-clean .icon-google {
  color: #dd4b39; }

/*============================================================================
  #Pagination
==============================================================================*/
.pagination-border-top {
  border-top: 1px solid #ececec; }

/*================ Custom Pagination ================*/
.pagination-custom {
  display: inline-block;
  padding-left: 0;
  margin: 0 0 30px; }

.pagination-custom > li {
  display: inline; }

.pagination-custom > li > a,
.pagination-custom > li > span {
  position: relative;
  float: left;
  padding: 5px 10px;
  margin-left: -1px;
  line-height: 1.42;
  text-decoration: none;
  border: 1px solid #ececec; }

.pagination-custom > li:first-child > a,
.pagination-custom > li:first-child > span {
  margin-left: 0; }

.pagination-custom > .active > a,
.pagination-custom > .active > span,
.pagination-custom > .active > a:hover,
.pagination-custom > .active > span:hover,
.pagination-custom > .active > a:focus,
.pagination-custom > .active > span:focus {
  z-index: 2;
  cursor: default;
  color: #ffffff;
  background: #00afef; }

.pagination-custom > .disabled > span,
.pagination-custom > .disabled > a,
.pagination-custom > .disabled > a:hover,
.pagination-custom > .disabled > a:focus {
  color: #999999;
  cursor: not-allowed; }

.pagination-custom > li > a:hover {
  background: #ddf1fc;
  border: 1px solid #c1dfed; }

.pagination-custom-lg > li > a,
.pagination-custom-lg > li > span {
  padding: 10px 16px;
  font-size: 18px; }

.pagination-custom-sm > li > a,
.pagination-custom-sm > li > span {
  padding: 5px 10px;
  font-size: 0.75em; }

/*============================================================================
  #Site Header
==============================================================================*/
.site-header {
  padding: 15px 0;
  background-color: #204a80;
  color: #fff; }

@media screen and (min-width: 769px) {
  .site-header {
    padding: 30px 0; } }

.site-header .site-header--text-links a {
  color: #fff; }

.site-header .site-header--text-links a:hover {
  opacity: 0.9; }

@media screen and (min-width: 769px) {
  .site-header .grid, .site-header .grid--rev, .site-header .grid--full {
    display: table;
    table-layout: fixed;
    width: 100%; }
  .site-header .grid > .grid-item, .site-header .grid--rev > .grid-item, .site-header .grid--full > .grid-item {
    float: none;
    display: table-cell;
    vertical-align: middle; } }

.header-logo {
  margin: 20px auto;
  max-width: 305px; }

@media screen and (min-width: 769px) {
  .header-logo {
    margin: 15px 0; } }

.header-logo a,
.header-logo a:hover,
.header-logo a:focus {
  text-decoration: none;
  color: #fff; }

.header-logo a, .header-logo img {
  display: block; }

.header-logo img {
  margin: 0 auto;
  width: 80%; }

.site-header--text-links {
  display: inline-block;
  font-size: 0.85em;
  margin-bottom: 15px; }

.site-header--text-links a {
  font-weight: bold; }

.site-header--meta-links {
  display: inline-block;
  margin-left: 15px; }

.site-header--spacer {
  padding: 0 5px; }

.header-cart-btn {
  position: relative;
  line-height: 26px;
  padding-bottom: 10px;
  border: 0 none;
  margin-left: 15px;
  vertical-align: top;
  background-color: #1c4170;
  color: #fff; }

@media screen and (max-width: 768px) {
  .header-cart-btn {
    display: none; } }

.header-cart-btn:hover, .header-cart-btn:focus {
  color: #fff;
  background-color: #17355c; }

#cartCount,
#quoteRequestCount,
#productCompareListCount {
  display: none;
  position: absolute;
  top: -5px;
  right: -5px;
  text-align: center;
  background-color: #ffea00;
  color: #204a80;
  font-weight: 700;
  font-size: 13px;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 20px; }

#cartCount.visible-count,
#quoteRequestCount.visible-count,
#productCompareListCount.visible-count {
  display: block; }

.cartCount {
  display: inline-block;
  text-align: center;
  background-color: #ffea00;
  color: #204a80;
  font-weight: 700;
  font-size: 13px;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 20px; }

.search-bar {
  position: relative;
  max-width: 40%;
  width: 100%;
  margin: 0 auto 30px; }

.search-bar .icon-search {
  font-size: 18px; }

.search-bar .search-bar {
  width: auto; }

@media screen and (max-width: 768px) {
  .search-bar {
    display: block;
    max-width: 100%;
    margin-bottom: 15px; } }

.search-bar input[type="text"],
.search-bar input[type="search"] {
  width: 100%;
  margin-bottom: 0;
  padding: 10px 45px 10px 10px;
  font-family: "Dosis", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 24px !important; }

.search-bar input[type="submit"],
.search-bar .search-bar--submit {
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 0;
  width: 45px;
  margin: 0;
  border: 0 none;
  background: none;
  text-align: center;
  cursor: pointer; }

.site-header .search-bar input[type="submit"], .site-header .search-bar .search-bar--submit {
  color: #fff; }

.search-bar input[type="submit"] {
  text-indent: -9999px; }

.site-header .search-bar {
  display: none;
  margin-bottom: 0; }

@media screen and (min-width: 769px) {
  .site-header .search-bar {
    display: inline-block; } }

.site-header .search-bar input[type="text"],
.site-header .search-bar input[type="search"] {
  border: 0 none;
  background-color: #23364b;
  /*#1c4170*/
  color: #fff;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -ms-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out; }

.site-header .search-bar input[type="text"]:hover, .site-header .search-bar input[type="text"]:focus,
.site-header .search-bar input[type="search"]:hover,
.site-header .search-bar input[type="search"]:focus {
  background-color: #17355c;
  -webkit-transition: background-color 0.05s ease-in;
  -moz-transition: background-color 0.05s ease-in;
  -ms-transition: background-color 0.05s ease-in;
  -o-transition: background-color 0.05s ease-in;
  transition: background-color 0.05s ease-in; }

.site-header .search-bar input[type="text"]:focus,
.site-header .search-bar input[type="search"]:focus {
  outline: 0; }

.site-header input::-webkit-input-placeholder {
  color: #fff; }

.site-header input::-moz-placeholder {
  color: #fff; }

/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.nav-bar {
  top: 110%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000; }

.nav-bar a {
  color: #204a80; }

.nav-bar a:active, .nav-bar a:focus {
  opacity: 0.9; }

.site-nav {
  margin: 0;
  font-family: "Dosis", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  cursor: default; }

.site-nav li {
  margin: 0;
  display: block; }

.site-nav a {
  display: block;
  text-decoration: none;
  padding: 15px; }

.site-nav .customer-navlink {
  color: #fff;
  background-color: #262626;
  border-bottom: 0;
  border-top: 1px solid #0d0d0d;
  margin-top: -1px; }

/*================ Small screen nav styles ================*/
@media screen and (max-width: 480px) {
  .show-nav .nav-bar {
    bottom: 0;
    top: 50px; } }

/*================ Medium-down screen nav styles ================*/
@media screen and (max-width: 768px) {
  .nav-bar {
    position: fixed;
    z-index: 99999;
    -webkit-transition: all 600ms cubic-bezier(0.47, 0.5, 0, 0.95);
    -moz-transition: all 600ms cubic-bezier(0.47, 0.5, 0, 0.95);
    -ms-transition: all 600ms cubic-bezier(0.47, 0.5, 0, 0.95);
    -o-transition: all 600ms cubic-bezier(0.47, 0.5, 0, 0.95);
    transition: all 600ms cubic-bezier(0.47, 0.5, 0, 0.95); }
  .show-nav .nav-bar {
    max-height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 450ms cubic-bezier(0.47, 0, 0, 0.95);
    -moz-transition: all 450ms cubic-bezier(0.47, 0, 0, 0.95);
    -ms-transition: all 450ms cubic-bezier(0.47, 0, 0, 0.95);
    -o-transition: all 450ms cubic-bezier(0.47, 0, 0, 0.95);
    transition: all 450ms cubic-bezier(0.47, 0, 0, 0.95); }
  .nav-bar .wrapper {
    padding: 15px 0 0; }
  .nav-bar .search-bar {
    margin: 0 15px 15px;
    width: auto; }
  .site-nav {
    border-top: 1px solid #1a1a1a; }
  /*================ Menu items ================*/
  .site-nav li {
    border-bottom: 1px solid #333333;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2); }
  .site-nav li:hover {
    background-color: #1a1a1a; } }

/*================ Medium screen size only ================*/
@media screen and (min-width: 481px) and (max-width: 768px) {
  .show-nav .nav-bar {
    top: 50px;
    bottom: 0; } }

/*================ Large screen bar navigation ================*/
@media screen and (min-width: 769px) {
  .nav-bar .search-bar {
    display: none; }
  .site-nav {
    text-align: left;
    white-space: normal;
    /*nowrap*/
    margin-left: -15px; }
  .site-nav > li {
    position: relative;
    display: inline-block; }
  .site-nav a {
    white-space: nowrap; } }

/*================ Dropdowns ================*/
.icon-arrow-down {
  position: relative;
  top: -2px;
  font-size: 12px; }

.site-nav--dropdown {
  display: none;
  margin: 0; }

.site-nav--dropdown .icon-arrow-down {
  display: none !important; }

/*================ Large screen dropdown styles ================*/
@media screen and (min-width: 769px) {
  .site-nav--dropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid #ececec;
    background-color: #fff;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    z-index: 99999;
    -webkit-transition: all 150ms;
    -moz-transition: all 150ms;
    -ms-transition: all 150ms;
    -o-transition: all 150ms;
    transition: all 150ms; }
  .no-touch .site-nav--has-dropdown:hover .site-nav--dropdown, .site-nav--has-dropdown.nav-hover .site-nav--dropdown, .nav-focus + .site-nav--dropdown,
  .no-touch .site-nav--has-dropdown:hover .site-nav--grand-dropdown, .site-nav--has-dropdown.nav-hover .site-nav--grand-dropdown, .nav-focus + .site-nav--grand-dropdown {
    opacity: 1;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
    visibility: visible;
    -webkit-transition: all 90ms;
    -moz-transition: all 90ms;
    -ms-transition: all 90ms;
    -o-transition: all 90ms;
    transition: all 90ms; }
  .site-nav--dropdown a {
    color: #204a80;
    text-transform: none;
    padding: 10px 45px 10px 15px; }
  .site-nav--dropdown a:hover, .site-nav--dropdown a:active, .site-nav--dropdown a:focus {
    color: #163257; }
  .site-nav--dropdown a:focus {
    background-color: #f2f2f2; } }

/*================ Medium down dropdown styles ================*/
@media screen and (max-width: 768px) {
  .site-nav {
    text-align: center; }
  .site-nav--dropdown {
    background-color: #262626; }
  .site-nav--dropdown > li {
    float: none;
    width: 100%;
    border: none;
    text-transform: none;
    border-bottom: 1px solid #0d0d0d; }
  .show-dropdown .site-nav--dropdown {
    display: block; } }

/*============================================================================
  #Mobile Nav Bar
==============================================================================*/
#mobileNavBar {
  display: none;
  width: 100%;
  background-color: #000;
  /*================ Small mobile nav bar ================*/
  /*================ Medium-down mobile nav bar ================*/ }

#mobileNavBar:after {
  content: "";
  display: table;
  clear: both; }

#mobileNavBar .display-table-cell {
  padding: 0 15px; }

#mobileNavBar .cart-toggle {
  text-align: right; }

#mobileNavBar #mobileNavBar .display-table-cell:nth-child(2) {
  text-align: right; }

@media screen and (max-width: 480px) {
  #mobileNavBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0; } }

@media screen and (max-width: 768px) {
  #mobileNavBar {
    display: table;
    height: 50px;
    z-index: 999999999; }
  .show-nav #mobileNavBar {
    position: fixed;
    left: 0;
    top: 0; } }

@media screen and (max-width: 480px) {
  body {
    padding-top: 50px; }
  .ajaxify-modal .ajaxifyCart--content {
    margin-bottom: -50px; } }

.mobileNavBar-link {
  display: block;
  padding: 10px 0;
  color: #fff;
  cursor: pointer; }

.mobileNavBar-link:hover, .mobileNavBar-link:focus {
  color: #fff; }

.mobileNavBar-link.menu-toggle {
  padding-left: 25px;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMjAuOHB4IiBoZWlnaHQ9IjE3cHgiIHZpZXdCb3g9IjAgMiAyMC44IDE3IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMiAyMC44IDE3IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0xOS43LDJIMS4xQzAuNiwyLDAsMi41LDAsM2MwLDAuNywwLjYsMS4xLDEuMSwxLjFoMTguNmMwLjYsMCwxLjEtMC41LDEuMS0xQzIwLjgsMi41LDIwLjMsMiwxOS43LDJ6Ii8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMTkuNyw5LjRIMS4xYy0wLjYsMC0xLjEsMC41LTEuMSwxYzAsMC43LDAuNiwxLjEsMS4xLDEuMWgxOC42YzAuNiwwLDEuMS0wLjUsMS4xLTENCglDMjAuOCw5LjksMjAuMyw5LjQsMTkuNyw5LjR6Ii8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMTkuNywxNi44SDEuMWMtMC42LDAtMS4xLDAuNS0xLjEsMUMwLDE4LjUsMC42LDE5LDEuMSwxOWgxOC42YzAuNiwwLDEuMS0wLjUsMS4xLTENCglDMjAuOCwxNy4zLDIwLjMsMTYuOCwxOS43LDE2Ljh6Ii8+DQo8L3N2Zz4NCg==");
  background-size: 15px auto; }

.mobileNavBar-link.menu-toggle .lt-ie9 {
  background-image: none;
  padding-left: 0; }

.mobileNavBar-link .mobileNavBar-link {
  display: inline-block;
  margin: 0 0 0 15px; }

/*============================================================================
  #Site Footer
==============================================================================*/
.site-footer {
  background-color: #f2f2f2;
  padding: 30px 0 10px;
  color: #e7e7e7; }

@media screen and (min-width: 769px) {
  .site-footer {
    padding: 60px 0 6px; } }

.site-footer h3, .site-footer .h3 {
  margin: 0 0 15px 0; }

.site-footer a {
  color: #ffffff; }

.site-footer a:hover {
  color: #838383; }

.legal-links {
  margin-bottom: 0; }

.legal-links + .legal-links {
  margin-bottom: 15px; }

.legal-links li {
  padding: 0 15px 0 0;
  font-size: 13px;
  line-height: 30px; }

/*============================================================================
  #Product Grid and List Views
==============================================================================*/
.row-negative-bottom {
  margin-bottom: -30px; }

.sold-out .product-grid-image,
.unavailable .product-grid-image {
  position: relative; }

.sold-out .product-grid-image img,
.unavailable .product-grid-image img {
  opacity: 0.7; }

.badge {
  display: none;
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -15px;
  text-align: center;
  z-index: 5; }

.badge-label {
  display: inline-block;
  margin: 0 auto;
  padding: 5px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  text-transform: uppercase;
  border-radius: 2px; }

.sold-out .badge--sold-out,
.unavailable .badge--unavailable {
  display: block; }

@media screen and (max-width: 768px) {
  .product-list-item .spr-badge {
    clear: both; } }

@media screen and (min-width: 769px) {
  .product-list-item .grid, .product-list-item .grid--rev, .product-list-item .grid--full {
    display: table;
    table-layout: fixed;
    width: 100%; }
  .product-list-item .grid-item {
    display: table-cell; } }

.product-grid-image {
  display: table;
  table-layout: fixed;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  margin: 0 auto 15px; }

.product-grid-image img {
  display: block;
  margin: 0 auto;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden; }

.product-list-image {
  display: block;
  margin: 0 auto; }

.product-grid-image--centered {
  display: table-cell;
  vertical-align: middle; }

a.product-grid-item,
.product-grid-item {
  display: block;
  color: #585858;
  margin-bottom: 60px; }

a.product-grid-item:hover img,
.product-grid-item:hover img {
  opacity: 0.9;
  -webkit-transition: opacity 0.05s ease-out;
  -moz-transition: opacity 0.05s ease-out;
  -ms-transition: opacity 0.05s ease-out;
  -o-transition: opacity 0.05s ease-out;
  transition: opacity 0.05s ease-out; }

@media screen and (min-width: 769px) {
  a.product-grid-item,
  .product-grid-item {
    margin-bottom: 30px; }
  .template-list-collections a.product-grid-item, .template-list-collections .product-grid-item {
    margin-bottom: 0; } }

.product-item--price:after {
  content: "";
  display: table;
  clear: both; }

.product-item--price .h1 {
  margin-bottom: 15px; }

.product-item--price span {
  line-height: 24px;
  font-family: 'Bebas Neue', "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 20px; }

.product-item--other {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex; }

.product-item--other .btn, .product-item--other .btn-secondary, .product-item--other input[type="submit"], .product-item--other .header-cart-btn,
.product-item--other add-to-compare-button {
  width: 50%;
  margin: 0;
  box-sizing: border-box;
  -webkit-flex-grow: 1;
  flex-grow: 1; }

.product-item--other .btn, .product-item--other .btn-secondary, .product-item--other input[type="submit"], .product-item--other .header-cart-btn {
  padding: 8px 0; }

.product-item--other add-to-compare-button .btn, .product-item--other add-to-compare-button .btn-secondary, .product-item--other add-to-compare-button input[type="submit"], .product-item--other add-to-compare-button .header-cart-btn {
  width: 100%; }

.product-item--other .btn + .btn, .product-item--other .btn-secondary + .btn, .product-item--other input[type="submit"] + .btn, .product-item--other .header-cart-btn + .btn, .product-item--other .btn + .btn-secondary, .product-item--other .btn-secondary + .btn-secondary, .product-item--other input[type="submit"] + .btn-secondary, .product-item--other .header-cart-btn + .btn-secondary, .product-item--other .btn + input[type="submit"], .product-item--other .btn-secondary + input[type="submit"], .product-item--other input[type="submit"] + input[type="submit"], .product-item--other .header-cart-btn + input[type="submit"], .product-item--other .btn + .header-cart-btn, .product-item--other .btn-secondary + .header-cart-btn, .product-item--other input[type="submit"] + .header-cart-btn, .product-item--other .header-cart-btn + .header-cart-btn,
.product-item--other add-to-compare-button {
  margin-left: 5px; }

.sale-tag {
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  padding: 0 8px;
  border-radius: 3px;
  vertical-align: text-bottom;
  color: #204a80;
  border: 2px solid #204a80; }

.sale-tag sup {
  display: none; }

.sale-tag.large {
  font-size: 16px;
  padding: 0 12px; }

.product-meta .sale-tag {
  position: relative;
  top: 2px; }

.sale-tag.has-reviews {
  margin-bottom: 10px; }

.featured-box {
  position: relative;
  display: block;
  padding: 15px 0;
  border: 1px solid #ececec;
  margin-bottom: 30px; }

.featured-box:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.02);
  z-index: 5; }

.featured-box img {
  -webkit-transition: opacity 0.1s ease-in-out;
  -moz-transition: opacity 0.1s ease-in-out;
  -ms-transition: opacity 0.1s ease-in-out;
  -o-transition: opacity 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 0 15px; }

.featured-box:hover img {
  opacity: 0.9; }

.featured-box--inner {
  display: table;
  margin: 0 auto;
  overflow: hidden; }

.featured-box--image {
  display: table-cell;
  vertical-align: middle; }

.featured-box--image img {
  width: 100%; }

.featured-box--title {
  position: relative;
  display: block;
  color: #585858;
  font-family: "Dosis", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 600;
  padding-top: 15px;
  line-height: 1;
  z-index: 10; }

/*============================================================================
  #Collection Filters
==============================================================================*/
@media screen and (max-width: 768px) {
  .collection-filters {
    display: none; } }

@media screen and (min-width: 769px) {
  .toggle-filters {
    display: none; } }

.advanced-filters {
  margin-bottom: 30px; }

.advanced-filters a {
  display: block;
  position: relative;
  padding-left: 20px; }

.advanced-filters a:before, .advanced-filters a:after {
  content: '';
  display: block;
  position: absolute; }

.advanced-filters a:before {
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 1px solid #ececec; }

.advanced-filters a:after {
  top: 9px;
  left: 3px;
  width: 6px;
  height: 6px;
  background-color: transparent; }

.advanced-filters a:hover:after {
  background-color: #ececec; }

.advanced-filter.active-filter a:after {
  background-color: #000; }

.advanced-filter.active-filter a:hover:after {
  content: '\78';
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #000;
  font-size: 8px;
  text-align: center;
  color: #fff;
  font-family: "icons";
  line-height: 12px;
  speak: none; }

/*============================================================================
  #Breadcrumbs
==============================================================================*/
.breadcrumb {
  display: block;
  font-size: 13px;
  border-bottom: 1px solid #ececec;
  /*margin-bottom: 30px;
  margin-top: -30px;
  height: 52px;*/ }

.breadcrumb ul {
  display: inline-block; }

.template-search .breadcrumb {
  height: auto; }

.lt-ie9 .breadcrumb {
  margin-top: 0; }

@media screen and (min-width: 769px) {
  .template-page .breadcrumb {
    margin-bottom: 30px; } }

@media screen and (max-width: 768px) {
  .breadcrumb {
    height: auto; } }

.breadcrumb a {
  color: #585858; }

.breadcrumb a:hover {
  color: #585858; }

.breadcrumb a,
.breadcrumb span {
  /*display: inline-block;*/
  padding: 15px 7px 15px 0;
  margin-right: 7px;
  overflow: hidden; }

.breadcrumb a:first-child,
.breadcrumb span:first-child {
  padding-left: 0; }

.breadcrumb .divider {
  font-size: 15px;
  font-family: 'Verdana', sans-serif;
  padding: 13px 7px 13px 0;
  color: #bbb; }

.breadcrumb + .grid-border {
  margin-top: -30px; }

.breadcrumb--truncate {
  width: 250px;
  white-space: nowrap;
  text-overflow: ellipsis; }

.breadcrumb ul {
  display: inline-block !important; }

/*============================================================================
  #Product Page
==============================================================================*/
/*================ Select fields ================*/
.product-variants {
  display: none; }

.no-js .product-variants {
  display: block; }

@media screen and (min-width: 769px) {
  .selector-wrapper select,
  .product-variants select {
    max-width: 40%; } }

#addToCartForm {
  margin-bottom: 0; }

@media screen and (min-width: 481px) {
  #addToCartForm select {
    max-width: 50%; } }

/*================ Product details ================*/
#productPrice {
  font-size: 32px;
  margin-bottom: 0; }

.product-meta {
  margin-bottom: 5px; }

.product-meta .product-meta--review {
  display: block; }

@media screen and (min-width: 481px) {
  .product-meta {
    display: table; }
  .product-meta li,
  .product-meta .product-meta--review {
    display: table-cell;
    vertical-align: middle;
    padding-right: 15px; } }

/*================ Notice of < 10 items left ================*/
.variant-quantity {
  display: none;
  position: relative;
  top: 5px;
  color: #204a80;
  line-height: 34px;
  padding: 2px 15px; }

/*================ Product photos ================*/
.product-photo-container {
  margin-bottom: 30px;
  max-width: 100%; }

.product-photo-container a, .product-photo-container img,
.product-photo-thumbs a,
.product-photo-thumbs img {
  display: block;
  margin: 0 auto; }

.product-photo-container li,
.product-photo-thumbs li {
  margin-bottom: 30px; }

@media screen and (min-width: 769px) {
  .image-zoom {
    display: inline-block;
    cursor: move; } }

/*============================================================================
  #Blogs and Comments
==============================================================================*/
.comment {
  margin-bottom: 30px; }

.comment + .comment {
  border-top: 1px solid #ececec;
  padding-top: 30px; }

/*============================================================================
  #Notes and Form Feedback
==============================================================================*/
.note,
.errors {
  border-radius: 2px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid transparent; }

.note ul,
.note ol,
.errors ul,
.errors ol {
  margin-top: 0;
  margin-bottom: 0; }

.note li:last-child,
.errors li:last-child {
  margin-bottom: 0; }

.note p,
.errors p {
  margin-bottom: 0; }

.note {
  background: #fffabf;
  border: 1px solid #fff57c; }

.errors ul {
  list-style: disc outside;
  margin-left: 20px; }

.form-success {
  color: #0a942a;
  background-color: #ecfef0;
  border-color: #0a942a; }

.form-error,
.errors {
  color: #dc0000;
  background-color: #fff6f6;
  border-color: #dc0000; }

/*============================================================================
  #Cart Page
==============================================================================*/
.cart-row {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ececec; }

#ajaxifyDrawer .cart-row {
  border-top-color: #444; }

.cart-row:first-child {
  margin-top: 0; }

.cart-row:first-child {
  padding-top: 0;
  border-top: 0 none; }

.cart-row a {
  color: #585858; }

.cart-row a:hover {
  color: #204a80; }

.cart-image,
.cart-image img {
  display: block;
  width: 100%;
  max-height: inherit;
  height: inherit; }

@media screen and (max-width: 768px) {
  .cart-image {
    margin-bottom: 15px; } }

.cart-subtotal {
  margin-bottom: 30px; }

.cart-subtotal--price {
  margin: 0 0 0 10px;
  display: inline; }

/*================ Remove from cart icon ================*/
a.remove {
  display: inline-block;
  margin-top: 7px;
  height: 19px;
  line-height: 19px;
  padding: 0 5px;
  border-radius: 19px;
  font-size: 9px;
  text-align: center;
  border: 0 none; }

.supports-fontface a.remove {
  padding: 0;
  width: 19px; }

#ajaxifyDrawer .ajaxifyCart--content a.remove {
  color: #585858; }

/*============================================================================
  #Demo Styles - for empty store state
==============================================================================*/
.demo-image {
  background: url("//cdn.shopify.com/s/files/1/0383/9765/t/1/assets/blankslate-producticon.png?4") no-repeat center center #eee;
  display: block;
  text-align: center;
  padding: 100px 0;
  color: #aaa;
  font-size: 0.875em;
  text-decoration: none; }

/*============================================================================
  #FlexSlider
    - jQuery FlexSlider v2.2.2 | http://www.woothemes.com/flexslider/
    - Contributing author: Tyler Smith (@mbmufffin)
==============================================================================*/
.flexslider {
  margin: 0 0 45px;
  padding: 0; }

.flexslider li {
  margin: 0; }

.flexslider .slides > li {
  display: none;
  /* Hide the slides before the JS is loaded. Avoids image jumping */
  margin: 0;
  position: relative;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden; }

.flexslider .slides img {
  max-width: 100%;
  margin: 0 auto;
  display: block; }

.slides:after {
  content: "";
  display: table;
  clear: both; }

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

* html .slides {
  height: 1%; }

/*================ No JS Fallback ================*/
.no-js .slides > li:first-child {
  display: block; }

.flexslider {
  position: relative;
  zoom: 1; }

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

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

.flexslider .slides {
  zoom: 1; }

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

/*================ Direction Nav ================*/
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

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

.flex-direction-nav a {
  display: block;
  width: 45px;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }

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

.flex-direction-nav a {
  text-indent: -9999px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 20px auto;
  /*================ Hide SVG arrows in oldIE ================*/ }

.lte-ie9 .flex-direction-nav a {
  display: none; }

.flex-direction-nav a.flex-prev {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMjIuM3B4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCAyMi4zIDQwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyMi4zIDQwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNEM0QzRDMiIGQ9Ik0xOC43LDBMMCwxOS43TDE4LjcsNDBjMCwwLDUuMi0xLDMuMS0zLjFTNS43LDE5LjcsNS43LDE5LjdzMTQtMTQuNSwxNi4xLTE2LjZTMTguNywwLDE4LjcsMHoiLz4NCjwvc3ZnPg0K");
  background-position: center left; }

.flex-direction-nav a.flex-next {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMjIuM3B4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCAyMi4zIDQwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyMi4zIDQwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNEM0QzRDMiIGQ9Ik0wLjUsMy4xYzIuMSwyLjEsMTYuMSwxNi42LDE2LjEsMTYuNlMyLjYsMzQuOCwwLjUsMzYuOVMzLjYsNDAsMy42LDQwbDE4LjctMjAuM0wzLjYsMEMzLjYsMC0xLjYsMSwwLjUsMy4xDQoJeiIvPg0KPC9zdmc+DQo=");
  background-position: center right; }

/*================ Control Nav ================*/
.flex-control-nav {
  position: absolute;
  bottom: -30px;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none; }

.flex-control-nav li {
  margin: 0 4px;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle; }

.flex-control-paging li a {
  width: 12px;
  height: 12px;
  display: block;
  background-color: #ececec;
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 20px;
  border: 2px solid #fff;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out; }

.flex-control-paging li a:hover {
  background-color: lightgray; }

.flex-control-paging li a.flex-active {
  background-color: #fff;
  border-color: #204a80;
  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: .7;
  cursor: pointer; }

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

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

@media screen and (max-width: 768px) {
  .flex-direction-nav a {
    opacity: 1;
    width: 25px; }
  .flex-direction-nav a.flex-prev {
    left: 0;
    background-position: center right; }
  .flex-direction-nav a.flex-next {
    right: 0;
    background-position: center left; } }

@media screen and (min-width: 769px) {
  .flex-direction-nav .flex-prev {
    left: 10px; }
  .flex-direction-nav .flex-next {
    right: 10px; }
  .flexslider:hover .flex-prev {
    opacity: 1;
    left: -25px; }
  .flexslider:hover .flex-next {
    opacity: 1;
    right: -25px; } }

@media screen and (min-width: 1120px) {
  .flex-direction-nav .flex-prev {
    left: 20px; }
  .flex-direction-nav .flex-next {
    right: 20px; }
  .flexslider:hover .flex-prev {
    opacity: 1;
    left: -45px; }
  .flexslider:hover .flex-next {
    opacity: 1;
    right: -45px; } }

/*================ Custom Flexslider Styles ================*/
.flexslider .slides {
  margin: 0;
  padding: 0;
  list-style-type: none; }

.slide-link {
  display: block; }

.slide-link img {
  display: block; }

/*============================================================================
  #Product Reviews
==============================================================================*/
#shopify-product-reviews {
  margin: 0;
  /*================ Summary Rating ================*/
  /*================ Content ================*/
  /*================ Individual Ratings ================*/
  /*================ Review Form ================*/ }

#shopify-product-reviews .spr-container {
  padding: 0;
  border: 0 none; }

#shopify-product-reviews .spr-summary {
  border-bottom: 1px solid #ececec;
  padding-bottom: 15px;
  margin-bottom: 30px; }

@media screen and (min-width: 769px) {
  #shopify-product-reviews .spr-summary {
    float: left;
    border: 1px solid #ececec;
    width: 20%;
    padding: 10px; }
  #shopify-product-reviews .spr-summary .spr-summary-starrating {
    display: block;
    margin: 0; } }

#shopify-product-reviews .spr-summary-caption {
  font-size: 14px; }

@media screen and (min-width: 769px) {
  #shopify-product-reviews .spr-summary-caption {
    display: block;
    border-bottom: 1px solid #ececec;
    margin-bottom: 10px;
    padding-bottom: 10px; } }

#shopify-product-reviews .spr-summary-actions-newreview:after {
  content: ' \203A';
  clear: none;
  display: inline; }

@media screen and (min-width: 769px) {
  #shopify-product-reviews .spr-summary-actions-newreview {
    float: none; } }

#shopify-product-reviews .spr-header:after {
  clear: none; }

@media screen and (min-width: 769px) {
  #shopify-product-reviews .spr-content {
    float: left;
    width: 80%;
    padding-left: 30px; } }

#shopify-product-reviews .spr-reviews {
  margin: 0; }

#shopify-product-reviews .spr-review {
  padding: 0;
  margin: 0;
  border: 0 none; }

#shopify-product-reviews .spr-review + .spr-review {
  margin-top: 15px; }

#shopify-product-reviews .spr-review-content-body {
  font-size: inherit; }

#shopify-product-reviews .spr-review-content-body br {
  content: '';
  display: block;
  overflow: hidden;
  height: 1px; }

#shopify-product-reviews .spr-review-header {
  margin-bottom: 0; }

#shopify-product-reviews .spr-review-header:after {
  content: "";
  display: table;
  clear: both; }

#shopify-product-reviews .spr-review-header-title {
  margin-right: 15px;
  font-family: "HelveticaNeue", "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 20px;
  position: relative;
  top: 2px; }

@media screen and (min-width: 769px) {
  #shopify-product-reviews .spr-review-header-starratings,
  #shopify-product-reviews .spr-review-header-title {
    display: inline; }
  #shopify-product-reviews .spr-review-header-title {
    float: left; } }

#shopify-product-reviews .spr-review-header-starratings {
  position: relative;
  top: -2px;
  margin: 0 15px 10px 0; }

#shopify-product-reviews .spr-review-header-byline {
  position: relative;
  top: -2px;
  display: inline-block;
  margin: 0; }

#shopify-product-reviews .spr-review-reportreview {
  display: none; }

#shopify-product-reviews .spr-form {
  border: 0 none;
  border-bottom: 1px solid #ececec;
  margin: 0 0 30px;
  padding: 0 0 30px; }

/*================ Star Icons ================*/
.spr-badge-starrating,
.spr-icon {
  color: '';
  font-size: inherit; }

/*================ Review count ================*/
.spr-badge-caption {
  display: inline-block;
  font-size: 13px; }

/*================ Hide review badge if no reviews ================*/
.product-grid-item .spr-badge[data-rating="0.0"],
.product-meta--review .spr-badge[data-rating="0.0"] {
  display: none; }

/*================ Head top ================*/
.head-top {
  background: #1c4170;
  /*original:#1d4273*/
  height: 30px;
  position: relative;
  z-index: 99998; }

@media screen and (max-width: 768px) {
  .head-top {
    display: none; } }

.head-switch {
  float: left;
  font-size: 12px;
  line-height: 30px;
  margin-right: 5px; }

.head-switch:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }

.head-switch > span {
  color: #fff;
  display: block;
  padding: 0 10px;
  position: relative;
  z-index: 6;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s; }

.head-switch .current {
  background: url("images/arrow_switch.png") no-repeat scroll 100% 50%;
  color: #999;
  padding: 0 12px 0 5px; }

.current .flag {
  float: none;
  left: 0;
  margin-right: 5px;
  top: -1px; }

.head-switch ul {
  background: #b3c44c;
  /*original:#1d4273*/
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  min-width: 140px;
  opacity: 0;
  padding: 14px;
  position: absolute;
  visibility: hidden;
  z-index: 5;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s; }

.head-switch:hover > ul, .rte .head-switch:hover > ul {
  opacity: 1;
  visibility: visible; }

.head-switch ul li {
  color: #fff;
  cursor: pointer;
  line-height: 28px;
  padding: 2px 0;
  position: relative; }

.head-switch ul ul {
  left: 95%;
  margin-left: 13px;
  padding: 5px;
  top: 0;
  visibility: hidden; }

.head-switch ul li:hover ul {
  opacity: 1;
  visibility: visible; }

.head-switch .language ul li a {
  background-position: 10px 50%;
  background-repeat: no-repeat;
  padding: 0 9px 0 35px; }

.head-switch ul li a {
  color: #8c8c8c;
  display: block;
  padding: 0 9px;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s; }

.head-switch ul li.selected a {
  color: #fff; }

/* Flags */
.flag {
  background: url("images/flags.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
  float: left;
  height: 11px;
  left: 10px;
  position: relative;
  top: 10px;
  vertical-align: middle;
  width: 16px; }

.flag.flag-ad {
  background-position: -16px 0; }

.flag.flag-ae {
  background-position: -32px 0; }

.flag.flag-af {
  background-position: -48px 0; }

.flag.flag-ag {
  background-position: -64px 0; }

.flag.flag-ai {
  background-position: -80px 0; }

.flag.flag-al {
  background-position: -96px 0; }

.flag.flag-am {
  background-position: -112px 0; }

.flag.flag-an {
  background-position: -128px 0; }

.flag.flag-ao {
  background-position: -144px 0; }

.flag.flag-ar {
  background-position: -160px 0; }

.flag.flag-as {
  background-position: -176px 0; }

.flag.flag-at {
  background-position: -192px 0; }

.flag.flag-au {
  background-position: -208px 0; }

.flag.flag-aw {
  background-position: -224px 0; }

.flag.flag-az {
  background-position: -240px 0; }

.flag.flag-ba {
  background-position: 0 -11px; }

.flag.flag-bb {
  background-position: -16px -11px; }

.flag.flag-bd {
  background-position: -32px -11px; }

.flag.flag-be {
  background-position: -48px -11px; }

.flag.flag-bf {
  background-position: -64px -11px; }

.flag.flag-bg {
  background-position: -80px -11px; }

.flag.flag-bh {
  background-position: -96px -11px; }

.flag.flag-bi {
  background-position: -112px -11px; }

.flag.flag-bj {
  background-position: -128px -11px; }

.flag.flag-bm {
  background-position: -144px -11px; }

.flag.flag-bn {
  background-position: -160px -11px; }

.flag.flag-bo {
  background-position: -176px -11px; }

.flag.flag-br {
  background-position: -192px -11px; }

.flag.flag-bs {
  background-position: -208px -11px; }

.flag.flag-bt {
  background-position: -224px -11px; }

.flag.flag-bv {
  background-position: -240px -11px; }

.flag.flag-bw {
  background-position: 0 -22px; }

.flag.flag-by {
  background-position: -16px -22px; }

.flag.flag-bz {
  background-position: -32px -22px; }

.flag.flag-ca {
  background-position: -48px -22px; }

.flag.flag-catalonia {
  background-position: -64px -22px; }

.flag.flag-cd {
  background-position: -80px -22px; }

.flag.flag-cf {
  background-position: -96px -22px; }

.flag.flag-cg {
  background-position: -112px -22px; }

.flag.flag-ch {
  background-position: -128px -22px; }

.flag.flag-ci {
  background-position: -144px -22px; }

.flag.flag-ck {
  background-position: -160px -22px; }

.flag.flag-cl {
  background-position: -176px -22px; }

.flag.flag-cm {
  background-position: -192px -22px; }

.flag.flag-cn {
  background-position: -208px -22px; }

.flag.flag-co {
  background-position: -224px -22px; }

.flag.flag-cr {
  background-position: -240px -22px; }

.flag.flag-cu {
  background-position: 0 -33px; }

.flag.flag-cv {
  background-position: -16px -33px; }

.flag.flag-cw {
  background-position: -32px -33px; }

.flag.flag-cy {
  background-position: -48px -33px; }

.flag.flag-cz {
  background-position: -64px -33px; }

.flag.flag-de {
  background-position: -80px -33px; }

.flag.flag-dj {
  background-position: -96px -33px; }

.flag.flag-dk {
  background-position: -112px -33px; }

.flag.flag-dm {
  background-position: -128px -33px; }

.flag.flag-do {
  background-position: -144px -33px; }

.flag.flag-dz {
  background-position: -160px -33px; }

.flag.flag-ec {
  background-position: -176px -33px; }

.flag.flag-ee {
  background-position: -192px -33px; }

.flag.flag-eg {
  background-position: -208px -33px; }

.flag.flag-eh {
  background-position: -224px -33px; }

.flag.flag-england {
  background-position: -240px -33px; }

.flag.flag-er {
  background-position: 0 -44px; }

.flag.flag-es {
  background-position: -16px -44px; }

.flag.flag-et {
  background-position: -32px -44px; }

.flag.flag-eu {
  background-position: -48px -44px; }

.flag.flag-fi {
  background-position: -64px -44px; }

.flag.flag-fj {
  background-position: -80px -44px; }

.flag.flag-fk {
  background-position: -96px -44px; }

.flag.flag-fm {
  background-position: -112px -44px; }

.flag.flag-fo {
  background-position: -128px -44px; }

.flag.flag-fr {
  background-position: -144px -44px; }

.flag.flag-ga {
  background-position: -160px -44px; }

.flag.flag-gb {
  background-position: -176px -44px; }

.flag.flag-gd {
  background-position: -192px -44px; }

.flag.flag-ge {
  background-position: -208px -44px; }

.flag.flag-gf {
  background-position: -224px -44px; }

.flag.flag-gg {
  background-position: -240px -44px; }

.flag.flag-gh {
  background-position: 0 -55px; }

.flag.flag-gi {
  background-position: -16px -55px; }

.flag.flag-gl {
  background-position: -32px -55px; }

.flag.flag-gm {
  background-position: -48px -55px; }

.flag.flag-gn {
  background-position: -64px -55px; }

.flag.flag-gp {
  background-position: -80px -55px; }

.flag.flag-gq {
  background-position: -96px -55px; }

.flag.flag-gr {
  background-position: -112px -55px; }

.flag.flag-gs {
  background-position: -128px -55px; }

.flag.flag-gt {
  background-position: -144px -55px; }

.flag.flag-gu {
  background-position: -160px -55px; }

.flag.flag-gw {
  background-position: -176px -55px; }

.flag.flag-gy {
  background-position: -192px -55px; }

.flag.flag-hk {
  background-position: -208px -55px; }

.flag.flag-hm {
  background-position: -224px -55px; }

.flag.flag-hn {
  background-position: -240px -55px; }

.flag.flag-hr {
  background-position: 0 -66px; }

.flag.flag-ht {
  background-position: -16px -66px; }

.flag.flag-hu {
  background-position: -32px -66px; }

.flag.flag-ic {
  background-position: -48px -66px; }

.flag.flag-id {
  background-position: -64px -66px; }

.flag.flag-ie {
  background-position: -80px -66px; }

.flag.flag-il {
  background-position: -96px -66px; }

.flag.flag-im {
  background-position: -112px -66px; }

.flag.flag-in {
  background-position: -128px -66px; }

.flag.flag-io {
  background-position: -144px -66px; }

.flag.flag-iq {
  background-position: -160px -66px; }

.flag.flag-ir {
  background-position: -176px -66px; }

.flag.flag-is {
  background-position: -192px -66px; }

.flag.flag-it {
  background-position: -208px -66px; }

.flag.flag-je {
  background-position: -224px -66px; }

.flag.flag-jm {
  background-position: -240px -66px; }

.flag.flag-jo {
  background-position: 0 -77px; }

.flag.flag-jp {
  background-position: -16px -77px; }

.flag.flag-ke {
  background-position: -32px -77px; }

.flag.flag-kg {
  background-position: -48px -77px; }

.flag.flag-kh {
  background-position: -64px -77px; }

.flag.flag-ki {
  background-position: -80px -77px; }

.flag.flag-km {
  background-position: -96px -77px; }

.flag.flag-kn {
  background-position: -112px -77px; }

.flag.flag-kp {
  background-position: -128px -77px; }

.flag.flag-kr {
  background-position: -144px -77px; }

.flag.flag-kurdistan {
  background-position: -160px -77px; }

.flag.flag-kw {
  background-position: -176px -77px; }

.flag.flag-ky {
  background-position: -192px -77px; }

.flag.flag-kz {
  background-position: -208px -77px; }

.flag.flag-la {
  background-position: -224px -77px; }

.flag.flag-lb {
  background-position: -240px -77px; }

.flag.flag-lc {
  background-position: 0 -88px; }

.flag.flag-li {
  background-position: -16px -88px; }

.flag.flag-lk {
  background-position: -32px -88px; }

.flag.flag-lr {
  background-position: -48px -88px; }

.flag.flag-ls {
  background-position: -64px -88px; }

.flag.flag-lt {
  background-position: -80px -88px; }

.flag.flag-lu {
  background-position: -96px -88px; }

.flag.flag-lv {
  background-position: -112px -88px; }

.flag.flag-ly {
  background-position: -128px -88px; }

.flag.flag-ma {
  background-position: -144px -88px; }

.flag.flag-mc {
  background-position: -160px -88px; }

.flag.flag-md {
  background-position: -176px -88px; }

.flag.flag-me {
  background-position: -192px -88px; }

.flag.flag-mg {
  background-position: -208px -88px; }

.flag.flag-mh {
  background-position: -224px -88px; }

.flag.flag-mk {
  background-position: -240px -88px; }

.flag.flag-ml {
  background-position: 0 -99px; }

.flag.flag-mm {
  background-position: -16px -99px; }

.flag.flag-mn {
  background-position: -32px -99px; }

.flag.flag-mo {
  background-position: -48px -99px; }

.flag.flag-mp {
  background-position: -64px -99px; }

.flag.flag-mq {
  background-position: -80px -99px; }

.flag.flag-mr {
  background-position: -96px -99px; }

.flag.flag-ms {
  background-position: -112px -99px; }

.flag.flag-mt {
  background-position: -128px -99px; }

.flag.flag-mu {
  background-position: -144px -99px; }

.flag.flag-mv {
  background-position: -160px -99px; }

.flag.flag-mw {
  background-position: -176px -99px; }

.flag.flag-mx {
  background-position: -192px -99px; }

.flag.flag-my {
  background-position: -208px -99px; }

.flag.flag-mz {
  background-position: -224px -99px; }

.flag.flag-na {
  background-position: -240px -99px; }

.flag.flag-nc {
  background-position: 0 -110px; }

.flag.flag-ne {
  background-position: -16px -110px; }

.flag.flag-nf {
  background-position: -32px -110px; }

.flag.flag-ng {
  background-position: -48px -110px; }

.flag.flag-ni {
  background-position: -64px -110px; }

.flag.flag-nl {
  background-position: -80px -110px; }

.flag.flag-no {
  background-position: -96px -110px; }

.flag.flag-np {
  background-position: -112px -110px; }

.flag.flag-nr {
  background-position: -128px -110px; }

.flag.flag-nu {
  background-position: -144px -110px; }

.flag.flag-nz {
  background-position: -160px -110px; }

.flag.flag-om {
  background-position: -176px -110px; }

.flag.flag-pa {
  background-position: -192px -110px; }

.flag.flag-pe {
  background-position: -208px -110px; }

.flag.flag-pf {
  background-position: -224px -110px; }

.flag.flag-pg {
  background-position: -240px -110px; }

.flag.flag-ph {
  background-position: 0 -121px; }

.flag.flag-pk {
  background-position: -16px -121px; }

.flag.flag-pl {
  background-position: -32px -121px; }

.flag.flag-pm {
  background-position: -48px -121px; }

.flag.flag-pn {
  background-position: -64px -121px; }

.flag.flag-pr {
  background-position: -80px -121px; }

.flag.flag-ps {
  background-position: -96px -121px; }

.flag.flag-pt {
  background-position: -112px -121px; }

.flag.flag-pw {
  background-position: -128px -121px; }

.flag.flag-py {
  background-position: -144px -121px; }

.flag.flag-qa {
  background-position: -160px -121px; }

.flag.flag-re {
  background-position: -176px -121px; }

.flag.flag-ro {
  background-position: -192px -121px; }

.flag.flag-rs {
  background-position: -208px -121px; }

.flag.flag-ru {
  background-position: -224px -121px; }

.flag.flag-rw {
  background-position: -240px -121px; }

.flag.flag-sa {
  background-position: 0 -132px; }

.flag.flag-sb {
  background-position: -16px -132px; }

.flag.flag-sc {
  background-position: -32px -132px; }

.flag.flag-scotland {
  background-position: -48px -132px; }

.flag.flag-sd {
  background-position: -64px -132px; }

.flag.flag-se {
  background-position: -80px -132px; }

.flag.flag-sg {
  background-position: -96px -132px; }

.flag.flag-sh {
  background-position: -112px -132px; }

.flag.flag-si {
  background-position: -128px -132px; }

.flag.flag-sk {
  background-position: -144px -132px; }

.flag.flag-sl {
  background-position: -160px -132px; }

.flag.flag-sm {
  background-position: -176px -132px; }

.flag.flag-sn {
  background-position: -192px -132px; }

.flag.flag-so {
  background-position: -208px -132px; }

.flag.flag-somaliland {
  background-position: -224px -132px; }

.flag.flag-sr {
  background-position: -240px -132px; }

.flag.flag-ss {
  background-position: 0 -143px; }

.flag.flag-st {
  background-position: -16px -143px; }

.flag.flag-sv {
  background-position: -32px -143px; }

.flag.flag-sx {
  background-position: -48px -143px; }

.flag.flag-sy {
  background-position: -64px -143px; }

.flag.flag-sz {
  background-position: -80px -143px; }

.flag.flag-tc {
  background-position: -96px -143px; }

.flag.flag-td {
  background-position: -112px -143px; }

.flag.flag-tf {
  background-position: -128px -143px; }

.flag.flag-tg {
  background-position: -144px -143px; }

.flag.flag-th {
  background-position: -160px -143px; }

.flag.flag-tj {
  background-position: -176px -143px; }

.flag.flag-tk {
  background-position: -192px -143px; }

.flag.flag-tl {
  background-position: -208px -143px; }

.flag.flag-tm {
  background-position: -224px -143px; }

.flag.flag-tn {
  background-position: -240px -143px; }

.flag.flag-to {
  background-position: 0 -154px; }

.flag.flag-tr {
  background-position: -16px -154px; }

.flag.flag-tt {
  background-position: -32px -154px; }

.flag.flag-tv {
  background-position: -48px -154px; }

.flag.flag-tw {
  background-position: -64px -154px; }

.flag.flag-tz {
  background-position: -80px -154px; }

.flag.flag-ua {
  background-position: -96px -154px; }

.flag.flag-ug {
  background-position: -112px -154px; }

.flag.flag-um {
  background-position: -128px -154px; }

.flag.flag-us {
  background-position: -144px -154px; }

.flag.flag-uy {
  background-position: -160px -154px; }

.flag.flag-uz {
  background-position: -176px -154px; }

.flag.flag-va {
  background-position: -192px -154px; }

.flag.flag-vc {
  background-position: -208px -154px; }

.flag.flag-ve {
  background-position: -224px -154px; }

.flag.flag-vg {
  background-position: -240px -154px; }

.flag.flag-vi {
  background-position: 0 -165px; }

.flag.flag-vn {
  background-position: -16px -165px; }

.flag.flag-vu {
  background-position: -32px -165px; }

.flag.flag-wales {
  background-position: -48px -165px; }

.flag.flag-wf {
  background-position: -64px -165px; }

.flag.flag-ws {
  background-position: -80px -165px; }

.flag.flag-ye {
  background-position: -96px -165px; }

.flag.flag-yt {
  background-position: -112px -165px; }

.flag.flag-za {
  background-position: -128px -165px; }

.flag.flag-zanzibar {
  background-position: -144px -165px; }

.flag.flag-zm {
  background-position: -160px -165px; }

.flag.flag-zw {
  background-position: -176px -165px; }

/* Block for quotes forms */
.ublock {
  background: rgba(0, 0, 0, 0.025);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  padding: 15px; }

.js-qty {
  min-height: 33px;
  max-width: 100%;
  text-align: left; }

.js-qty--inner {
  max-width: 100px;
  position: relative; }

.js-qty--inner,
.js-qty .link-action {
  display: inline-block;
  vertical-align: middle; }

.js-qty--inner {
  margin: 0 10px 0 0; }

.js-qty .link-action {
  cursor: pointer;
  font-size: 13px; }

.buttons {
  margin: -15px 0 0; }

.buttons .btn-secondary {
  margin: 5px 0 0; }

@media (max-width: 460px) {
  .buttons .btn-secondary {
    width: 100%; } }

.cart-btn--block {
  border-color: rgba(0, 0, 0, 0.1);
  border-style: solid;
  border-width: 1px 0;
  padding: 10px; }

.cart-btn--block .btn, .cart-btn--block input[type="submit"], .cart-btn--block .header-cart-btn, .btn-secondary {
  margin: 5px 0 0; }

/* New common styles */
.line-through {
  text-decoration: line-through; }

.alert.fixed {
  border: 1px solid transparent;
  border-radius: 4px;
  left: 5%;
  margin-bottom: 20px;
  padding: 15px;
  position: fixed;
  top: 0;
  width: 90%;
  z-index: 999999; }

.alert .close {
  background: 0 0;
  border: 0;
  color: inherit;
  cursor: pointer;
  filter: alpha(opacity=20);
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  opacity: .2;
  padding: 0;
  position: relative;
  right: -5px;
  text-shadow: 0 1px 0 #fff;
  top: -2px;
  -webkit-appearance: none; }

.alert .close:hover {
  filter: alpha(opacity=0);
  opacity: 1; }

.alert.alert-success {
  color: #3c763d; }

.alert.alert-info {
  color: #31708f; }

.alert.alert-warning {
  color: #8a6d3b; }

.alert.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442; }

.alert.alert-error {
  color: #ff0000;
  margin-bottom: 20px;
  margin-top: -20px; }

.alert.alert-error.tier-price {
  margin-top: 0; }

.h2.tier-price {
  height: 33px;
  margin-bottom: 15px; }

dl {
  margin-bottom: 20px;
  margin-top: 0; }

dd, dt {
  line-height: 1.4285; }

dt {
  font-weight: 700; }

/*dd {
  margin-left: 180px; */
dd {
  margin-left: 0; }

.dl-horizontal dt {
  float: left;
  width: 160px;
  overflow: hidden;
  clear: left;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap; }

.no-product-image {
  opacity: .35; }

.product-image-left-cont .no-product-image {
  position: relative;
  top: -200px; }

.no-product-image img {
  height: 100%;
  width: 100%; }

[name="formSearch"] {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex; }

[name="formSearch"] .input-group-field {
  -webkit-flex-grow: 1;
  flex-grow: 1; }

[name="formSearch"] .product-search-result {
  background: #fff;
  border: 1px solid #ccc;
  left: 0;
  margin-top: -1px;
  padding: 10px;
  position: absolute;
  right: 50px;
  top: 100%;
  width: 100%;
  z-index: 99999; }

[name="formSearch"] .loader {
  background: url("images/informer-loader.gif");
  height: 16px;
  position: absolute;
  right: 65px;
  top: 13px;
  width: 16px; }

[name="formSearch"] .item {
  cursor: pointer;
  padding: 5px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex; }

[name="formSearch"] .item.static {
  cursor: default;
  border-bottom: solid 1px #00aeef;
  padding: 5px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex; }

[name="formSearch"] .item:hover {
  background-color: #f4f7ff; }

[name="formSearch"] .item.static:hover {
  background-color: #fff; }

[name="formSearch"] .item-info {
  padding-left: 10px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  text-align: left;
  -webkit-align-items: center;
  align-items: center; }

[name="formSearch"] .item-name {
  color: #000;
  font-size: 12px;
  -webkit-flex-grow: 1;
  flex-grow: 1; }

[name="formSearch"] .item-name.search-sub-header {
  color: #00aeef;
  text-transform: uppercase; }

[name="formSearch"] .item-price {
  color: #000;
  font-size: 16px;
  font-weight: 700; }

[name="formQuickAdd"] {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex; }

[name="formQuickAdd"] .input-group-field {
  -webkit-flex-grow: 1;
  flex-grow: 1; }

[name="formQuickAdd"] .product-search-result {
  background: #fff;
  border: 1px solid #ccc;
  left: 0;
  margin-top: -1px;
  padding: 10px;
  position: absolute;
  right: 50px;
  top: 100%;
  z-index: 5; }

[name="formQuickAdd"] .loader {
  background: url(images/informer-loader.gif);
  height: 16px;
  position: absolute;
  right: 65px;
  top: 13px;
  width: 16px; }

[name="formQuickAdd"] .item {
  cursor: pointer;
  padding: 5px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex; }

[name="formQuickAdd"] .item:hover {
  background-color: #ececec; }

[name="formQuickAdd"] .item-img {
  box-sizing: border-box;
  height: 64px;
  min-width: 64px;
  width: 64px; }

[name="formQuickAdd"] .item-img .no-product-image img {
  height: 64px;
  width: 64px; }

[name="formQuickAdd"] .item-info {
  padding-left: 10px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center; }

[name="formQuickAdd"] .item-name {
  color: #000;
  font-size: 15px;
  padding-right: 80px;
  -webkit-flex-grow: 1;
  flex-grow: 1; }

[name="formQuickAdd"] .item-price {
  color: #000;
  font-size: 16px;
  font-weight: 700; }

.product-compare-checkbox {
  margin-top: 10px; }

.compare-list-inner {
  height: 100%;
  position: relative; }

.compare-list-inner .remove {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1000; }

.compare-list-cell {
  align-items: center;
  border-bottom: 1px solid #dcdcdc;
  display: flex;
  min-height: 50px;
  padding: 10px; }

.compare-list-cell.property-name strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

.compare-list-cell.value {
  border-left: 1px solid #dcdcdc; }

.compare-list-cell:nth-child(even):not(.ng-hide) {
  background-color: #f2f2f2; }

.cookie-banner {
  /*background: #f2f2f2*/
  background: #23364b;
  color: #ebf0fb;
  font-size: 12px;
  box-sizing: border-box;
  height: 80px;
  margin: -80px 0 0;
  transition: margin 0.35s ease;
  display: flex;
  align-items: center;
  left: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9999; }

.cookie-banner .cookie-inner {
  display: flex; }

.cookie-banner .cookie-col + .cookie-col {
  margin: 0 0 0 60px; }

/********** Associations  ***************************************/
.ajaxify-modal h2, .ajaxify-modal .h2 {
  color: #000; }

.ajaxify-modal .ajaxifyCart--content {
  padding: 30px 44px 10px 44px; }

.associated-products h2, .associated-products .h2 {
  text-transform: none;
  color: #000;
  font-size: 1.2em;
  letter-spacing: -0.01em;
  margin-bottom: 20px; }

.associated-products .product-item--price h1, .associated-products .product-item--price .h1, .associated-products .product-item--price #shopify-product-reviews .spr-header-title, #shopify-product-reviews .associated-products .product-item--price .spr-header-title {
  color: #000;
  font-size: 24px;
  line-height: 25px;
  margin-bottom: 0px; }

.associated-products .product-grid-item p {
  height: 72px;
  line-height: 1.4; }

.associated-products .product-grid-image {
  margin-bottom: 0px; }

.associated-products .grid-uniform {
  position: relative;
  width: 100%;
  margin: 0px 0px 0px -10px;
  padding: 0px 15px 0px 15px; }

.associated-products .old small {
  font-size: 95%; }

.associated-products-title {
  margin-top: 20px; }

.nav-arrow {
  display: block;
  text-indent: -9999px;
  width: 42px;
  height: 42px; }

.nav-arrow-left {
  position: absolute;
  left: -20px;
  top: 69px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTE2IiBoZWlnaHQ9IjExNyIgdmlld0JveD0iMCAwIDExNiAxMTciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiPgo8cmVjdCB3aWR0aD0iMTE2IiBoZWlnaHQ9IjExNyIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeD0iMC43NSIgeT0iNzUuNzUiIHdpZHRoPSIzOS41IiBoZWlnaHQ9IjM5LjUiIHJ4PSIzLjI1IiBmaWxsPSJ3aGl0ZSIgc3Ryb2tlPSIjQkNDN0Q2IiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8cGF0aCBkPSJNMTMuNTgyNSA5Ni4wNjI1TDIzLjA0ODYgMTA1LjUyOUMyMy4zNjIgMTA1LjgzMSAyMy44NjE0IDEwNS44MjMgMjQuMTY0IDEwNS41MDlDMjQuNDU5MyAxMDUuMjAzIDI0LjQ1OTMgMTA0LjcxOSAyNC4xNjQgMTA0LjQxM0wxNS4yNTU3IDk1LjUwNDhMMjQuMTY0IDg2LjU5NjRDMjQuNDcyIDg2LjI4ODQgMjQuNDcyIDg1Ljc4OSAyNC4xNjQgODUuNDgxQzIzLjg1NiA4NS4xNzMgMjMuMzU2NyA4NS4xNzMgMjMuMDQ4NiA4NS40ODFMMTMuNTgyNSA5NC45NDcxQzEzLjI3NDYgOTUuMjU1MSAxMy4yNzQ2IDk1Ljc1NDUgMTMuNTgyNSA5Ni4wNjI1WiIgZmlsbD0iIzVEOEFDNSIgc3Ryb2tlPSIjNUQ4QUM1Ii8+CjxyZWN0IHg9Ijc1Ljc1IiB5PSI3NS43NSIgd2lkdGg9IjM5LjUiIGhlaWdodD0iMzkuNSIgcng9IjMuMjUiIGZpbGw9IiM1RDhBQzUiIHN0cm9rZT0iIzVEOEFDNSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KPHBhdGggZD0iTTg4LjU4MjUgOTYuMDYyNUw5OC4wNDg2IDEwNS41MjlDOTguMzYyIDEwNS44MzEgOTguODYxNCAxMDUuODIzIDk5LjE2NCAxMDUuNTA5Qzk5LjQ1OTMgMTA1LjIwMyA5OS40NTkzIDEwNC43MTkgOTkuMTY0IDEwNC40MTNMOTAuMjU1NyA5NS41MDQ4TDk5LjE2NCA4Ni41OTY0Qzk5LjQ3MiA4Ni4yODg0IDk5LjQ3MiA4NS43ODkgOTkuMTY0IDg1LjQ4MUM5OC44NTYgODUuMTczIDk4LjM1NjcgODUuMTczIDk4LjA0ODYgODUuNDgxTDg4LjU4MjUgOTQuOTQ3MUM4OC4yNzQ2IDk1LjI1NTEgODguMjc0NiA5NS43NTQ1IDg4LjU4MjUgOTYuMDYyNVoiIGZpbGw9IndoaXRlIiBzdHJva2U9IndoaXRlIi8+CjxyZWN0IHg9IjQwLjI1IiB5PSI0MC4yNSIgd2lkdGg9IjM5LjUiIGhlaWdodD0iMzkuNSIgcng9IjMuMjUiIHRyYW5zZm9ybT0icm90YXRlKC0xODAgNDAuMjUgNDAuMjUpIiBmaWxsPSJ3aGl0ZSIgc3Ryb2tlPSIjQkNDN0Q2IiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8cGF0aCBkPSJNMjcuNDE3NSAxOS45Mzc1TDE3Ljk1MTQgMTAuNDcxNEMxNy42MzggMTAuMTY4OCAxNy4xMzg2IDEwLjE3NzUgMTYuODM2IDEwLjQ5MDhDMTYuNTQwNyAxMC43OTY1IDE2LjU0MDcgMTEuMjgxMiAxNi44MzYgMTEuNTg2OEwyNS43NDQzIDIwLjQ5NTJMMTYuODM2IDI5LjQwMzZDMTYuNTI4IDI5LjcxMTYgMTYuNTI4IDMwLjIxMSAxNi44MzYgMzAuNTE5QzE3LjE0NCAzMC44MjcgMTcuNjQzMyAzMC44MjcgMTcuOTUxNCAzMC41MTlMMjcuNDE3NSAyMS4wNTI5QzI3LjcyNTQgMjAuNzQ0OSAyNy43MjU0IDIwLjI0NTUgMjcuNDE3NSAxOS45Mzc1WiIgZmlsbD0iIzVEOEFDNSIgc3Ryb2tlPSIjNUQ4QUM1Ii8+CjxyZWN0IHg9IjExNS4yNSIgeT0iNDAuMjUiIHdpZHRoPSIzOS41IiBoZWlnaHQ9IjM5LjUiIHJ4PSIzLjI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtMTgwIDExNS4yNSA0MC4yNSkiIGZpbGw9IiM1RDhBQzUiIHN0cm9rZT0iIzVEOEFDNSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KPHBhdGggZD0iTTEwMi40MTcgMTkuOTM3NUw5Mi45NTE0IDEwLjQ3MTRDOTIuNjM4IDEwLjE2ODggOTIuMTM4NiAxMC4xNzc1IDkxLjgzNiAxMC40OTA4QzkxLjU0MDcgMTAuNzk2NSA5MS41NDA3IDExLjI4MTIgOTEuODM2IDExLjU4NjhMMTAwLjc0NCAyMC40OTUyTDkxLjgzNiAyOS40MDM2QzkxLjUyOCAyOS43MTE2IDkxLjUyOCAzMC4yMTEgOTEuODM2IDMwLjUxOUM5Mi4xNDQgMzAuODI3IDkyLjY0MzMgMzAuODI3IDkyLjk1MTQgMzAuNTE5TDEwMi40MTcgMjEuMDUyOUMxMDIuNzI1IDIwLjc0NDkgMTAyLjcyNSAyMC4yNDU1IDEwMi40MTcgMTkuOTM3NVoiIGZpbGw9IndoaXRlIiBzdHJva2U9IndoaXRlIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iMTE2IiBoZWlnaHQ9IjExNyIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K") no-repeat 0px -75px; }

.nav-arrow-left:hover, .nav-arrow-left:focus {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTE2IiBoZWlnaHQ9IjExNyIgdmlld0JveD0iMCAwIDExNiAxMTciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiPgo8cmVjdCB3aWR0aD0iMTE2IiBoZWlnaHQ9IjExNyIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeD0iMC43NSIgeT0iNzUuNzUiIHdpZHRoPSIzOS41IiBoZWlnaHQ9IjM5LjUiIHJ4PSIzLjI1IiBmaWxsPSJ3aGl0ZSIgc3Ryb2tlPSIjQkNDN0Q2IiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8cGF0aCBkPSJNMTMuNTgyNSA5Ni4wNjI1TDIzLjA0ODYgMTA1LjUyOUMyMy4zNjIgMTA1LjgzMSAyMy44NjE0IDEwNS44MjMgMjQuMTY0IDEwNS41MDlDMjQuNDU5MyAxMDUuMjAzIDI0LjQ1OTMgMTA0LjcxOSAyNC4xNjQgMTA0LjQxM0wxNS4yNTU3IDk1LjUwNDhMMjQuMTY0IDg2LjU5NjRDMjQuNDcyIDg2LjI4ODQgMjQuNDcyIDg1Ljc4OSAyNC4xNjQgODUuNDgxQzIzLjg1NiA4NS4xNzMgMjMuMzU2NyA4NS4xNzMgMjMuMDQ4NiA4NS40ODFMMTMuNTgyNSA5NC45NDcxQzEzLjI3NDYgOTUuMjU1MSAxMy4yNzQ2IDk1Ljc1NDUgMTMuNTgyNSA5Ni4wNjI1WiIgZmlsbD0iIzVEOEFDNSIgc3Ryb2tlPSIjNUQ4QUM1Ii8+CjxyZWN0IHg9Ijc1Ljc1IiB5PSI3NS43NSIgd2lkdGg9IjM5LjUiIGhlaWdodD0iMzkuNSIgcng9IjMuMjUiIGZpbGw9IiM1RDhBQzUiIHN0cm9rZT0iIzVEOEFDNSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KPHBhdGggZD0iTTg4LjU4MjUgOTYuMDYyNUw5OC4wNDg2IDEwNS41MjlDOTguMzYyIDEwNS44MzEgOTguODYxNCAxMDUuODIzIDk5LjE2NCAxMDUuNTA5Qzk5LjQ1OTMgMTA1LjIwMyA5OS40NTkzIDEwNC43MTkgOTkuMTY0IDEwNC40MTNMOTAuMjU1NyA5NS41MDQ4TDk5LjE2NCA4Ni41OTY0Qzk5LjQ3MiA4Ni4yODg0IDk5LjQ3MiA4NS43ODkgOTkuMTY0IDg1LjQ4MUM5OC44NTYgODUuMTczIDk4LjM1NjcgODUuMTczIDk4LjA0ODYgODUuNDgxTDg4LjU4MjUgOTQuOTQ3MUM4OC4yNzQ2IDk1LjI1NTEgODguMjc0NiA5NS43NTQ1IDg4LjU4MjUgOTYuMDYyNVoiIGZpbGw9IndoaXRlIiBzdHJva2U9IndoaXRlIi8+CjxyZWN0IHg9IjQwLjI1IiB5PSI0MC4yNSIgd2lkdGg9IjM5LjUiIGhlaWdodD0iMzkuNSIgcng9IjMuMjUiIHRyYW5zZm9ybT0icm90YXRlKC0xODAgNDAuMjUgNDAuMjUpIiBmaWxsPSJ3aGl0ZSIgc3Ryb2tlPSIjQkNDN0Q2IiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8cGF0aCBkPSJNMjcuNDE3NSAxOS45Mzc1TDE3Ljk1MTQgMTAuNDcxNEMxNy42MzggMTAuMTY4OCAxNy4xMzg2IDEwLjE3NzUgMTYuODM2IDEwLjQ5MDhDMTYuNTQwNyAxMC43OTY1IDE2LjU0MDcgMTEuMjgxMiAxNi44MzYgMTEuNTg2OEwyNS43NDQzIDIwLjQ5NTJMMTYuODM2IDI5LjQwMzZDMTYuNTI4IDI5LjcxMTYgMTYuNTI4IDMwLjIxMSAxNi44MzYgMzAuNTE5QzE3LjE0NCAzMC44MjcgMTcuNjQzMyAzMC44MjcgMTcuOTUxNCAzMC41MTlMMjcuNDE3NSAyMS4wNTI5QzI3LjcyNTQgMjAuNzQ0OSAyNy43MjU0IDIwLjI0NTUgMjcuNDE3NSAxOS45Mzc1WiIgZmlsbD0iIzVEOEFDNSIgc3Ryb2tlPSIjNUQ4QUM1Ii8+CjxyZWN0IHg9IjExNS4yNSIgeT0iNDAuMjUiIHdpZHRoPSIzOS41IiBoZWlnaHQ9IjM5LjUiIHJ4PSIzLjI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtMTgwIDExNS4yNSA0MC4yNSkiIGZpbGw9IiM1RDhBQzUiIHN0cm9rZT0iIzVEOEFDNSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KPHBhdGggZD0iTTEwMi40MTcgMTkuOTM3NUw5Mi45NTE0IDEwLjQ3MTRDOTIuNjM4IDEwLjE2ODggOTIuMTM4NiAxMC4xNzc1IDkxLjgzNiAxMC40OTA4QzkxLjU0MDcgMTAuNzk2NSA5MS41NDA3IDExLjI4MTIgOTEuODM2IDExLjU4NjhMMTAwLjc0NCAyMC40OTUyTDkxLjgzNiAyOS40MDM2QzkxLjUyOCAyOS43MTE2IDkxLjUyOCAzMC4yMTEgOTEuODM2IDMwLjUxOUM5Mi4xNDQgMzAuODI3IDkyLjY0MzMgMzAuODI3IDkyLjk1MTQgMzAuNTE5TDEwMi40MTcgMjEuMDUyOUMxMDIuNzI1IDIwLjc0NDkgMTAyLjcyNSAyMC4yNDU1IDEwMi40MTcgMTkuOTM3NVoiIGZpbGw9IndoaXRlIiBzdHJva2U9IndoaXRlIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iMTE2IiBoZWlnaHQ9IjExNyIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K") no-repeat -75px -75px; }

.nav-arrow-right {
  position: absolute;
  right: -20px;
  top: 69px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTE2IiBoZWlnaHQ9IjExNyIgdmlld0JveD0iMCAwIDExNiAxMTciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiPgo8cmVjdCB3aWR0aD0iMTE2IiBoZWlnaHQ9IjExNyIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeD0iMC43NSIgeT0iNzUuNzUiIHdpZHRoPSIzOS41IiBoZWlnaHQ9IjM5LjUiIHJ4PSIzLjI1IiBmaWxsPSJ3aGl0ZSIgc3Ryb2tlPSIjQkNDN0Q2IiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8cGF0aCBkPSJNMTMuNTgyNSA5Ni4wNjI1TDIzLjA0ODYgMTA1LjUyOUMyMy4zNjIgMTA1LjgzMSAyMy44NjE0IDEwNS44MjMgMjQuMTY0IDEwNS41MDlDMjQuNDU5MyAxMDUuMjAzIDI0LjQ1OTMgMTA0LjcxOSAyNC4xNjQgMTA0LjQxM0wxNS4yNTU3IDk1LjUwNDhMMjQuMTY0IDg2LjU5NjRDMjQuNDcyIDg2LjI4ODQgMjQuNDcyIDg1Ljc4OSAyNC4xNjQgODUuNDgxQzIzLjg1NiA4NS4xNzMgMjMuMzU2NyA4NS4xNzMgMjMuMDQ4NiA4NS40ODFMMTMuNTgyNSA5NC45NDcxQzEzLjI3NDYgOTUuMjU1MSAxMy4yNzQ2IDk1Ljc1NDUgMTMuNTgyNSA5Ni4wNjI1WiIgZmlsbD0iIzVEOEFDNSIgc3Ryb2tlPSIjNUQ4QUM1Ii8+CjxyZWN0IHg9Ijc1Ljc1IiB5PSI3NS43NSIgd2lkdGg9IjM5LjUiIGhlaWdodD0iMzkuNSIgcng9IjMuMjUiIGZpbGw9IiM1RDhBQzUiIHN0cm9rZT0iIzVEOEFDNSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KPHBhdGggZD0iTTg4LjU4MjUgOTYuMDYyNUw5OC4wNDg2IDEwNS41MjlDOTguMzYyIDEwNS44MzEgOTguODYxNCAxMDUuODIzIDk5LjE2NCAxMDUuNTA5Qzk5LjQ1OTMgMTA1LjIwMyA5OS40NTkzIDEwNC43MTkgOTkuMTY0IDEwNC40MTNMOTAuMjU1NyA5NS41MDQ4TDk5LjE2NCA4Ni41OTY0Qzk5LjQ3MiA4Ni4yODg0IDk5LjQ3MiA4NS43ODkgOTkuMTY0IDg1LjQ4MUM5OC44NTYgODUuMTczIDk4LjM1NjcgODUuMTczIDk4LjA0ODYgODUuNDgxTDg4LjU4MjUgOTQuOTQ3MUM4OC4yNzQ2IDk1LjI1NTEgODguMjc0NiA5NS43NTQ1IDg4LjU4MjUgOTYuMDYyNVoiIGZpbGw9IndoaXRlIiBzdHJva2U9IndoaXRlIi8+CjxyZWN0IHg9IjQwLjI1IiB5PSI0MC4yNSIgd2lkdGg9IjM5LjUiIGhlaWdodD0iMzkuNSIgcng9IjMuMjUiIHRyYW5zZm9ybT0icm90YXRlKC0xODAgNDAuMjUgNDAuMjUpIiBmaWxsPSJ3aGl0ZSIgc3Ryb2tlPSIjQkNDN0Q2IiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8cGF0aCBkPSJNMjcuNDE3NSAxOS45Mzc1TDE3Ljk1MTQgMTAuNDcxNEMxNy42MzggMTAuMTY4OCAxNy4xMzg2IDEwLjE3NzUgMTYuODM2IDEwLjQ5MDhDMTYuNTQwNyAxMC43OTY1IDE2LjU0MDcgMTEuMjgxMiAxNi44MzYgMTEuNTg2OEwyNS43NDQzIDIwLjQ5NTJMMTYuODM2IDI5LjQwMzZDMTYuNTI4IDI5LjcxMTYgMTYuNTI4IDMwLjIxMSAxNi44MzYgMzAuNTE5QzE3LjE0NCAzMC44MjcgMTcuNjQzMyAzMC44MjcgMTcuOTUxNCAzMC41MTlMMjcuNDE3NSAyMS4wNTI5QzI3LjcyNTQgMjAuNzQ0OSAyNy43MjU0IDIwLjI0NTUgMjcuNDE3NSAxOS45Mzc1WiIgZmlsbD0iIzVEOEFDNSIgc3Ryb2tlPSIjNUQ4QUM1Ii8+CjxyZWN0IHg9IjExNS4yNSIgeT0iNDAuMjUiIHdpZHRoPSIzOS41IiBoZWlnaHQ9IjM5LjUiIHJ4PSIzLjI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtMTgwIDExNS4yNSA0MC4yNSkiIGZpbGw9IiM1RDhBQzUiIHN0cm9rZT0iIzVEOEFDNSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KPHBhdGggZD0iTTEwMi40MTcgMTkuOTM3NUw5Mi45NTE0IDEwLjQ3MTRDOTIuNjM4IDEwLjE2ODggOTIuMTM4NiAxMC4xNzc1IDkxLjgzNiAxMC40OTA4QzkxLjU0MDcgMTAuNzk2NSA5MS41NDA3IDExLjI4MTIgOTEuODM2IDExLjU4NjhMMTAwLjc0NCAyMC40OTUyTDkxLjgzNiAyOS40MDM2QzkxLjUyOCAyOS43MTE2IDkxLjUyOCAzMC4yMTEgOTEuODM2IDMwLjUxOUM5Mi4xNDQgMzAuODI3IDkyLjY0MzMgMzAuODI3IDkyLjk1MTQgMzAuNTE5TDEwMi40MTcgMjEuMDUyOUMxMDIuNzI1IDIwLjc0NDkgMTAyLjcyNSAyMC4yNDU1IDEwMi40MTcgMTkuOTM3NVoiIGZpbGw9IndoaXRlIiBzdHJva2U9IndoaXRlIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iMTE2IiBoZWlnaHQ9IjExNyIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K") no-repeat 0px 0px; }

.nav-arrow-right:hover, .nav-arrow-right:focus {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTE2IiBoZWlnaHQ9IjExNyIgdmlld0JveD0iMCAwIDExNiAxMTciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiPgo8cmVjdCB3aWR0aD0iMTE2IiBoZWlnaHQ9IjExNyIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeD0iMC43NSIgeT0iNzUuNzUiIHdpZHRoPSIzOS41IiBoZWlnaHQ9IjM5LjUiIHJ4PSIzLjI1IiBmaWxsPSJ3aGl0ZSIgc3Ryb2tlPSIjQkNDN0Q2IiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8cGF0aCBkPSJNMTMuNTgyNSA5Ni4wNjI1TDIzLjA0ODYgMTA1LjUyOUMyMy4zNjIgMTA1LjgzMSAyMy44NjE0IDEwNS44MjMgMjQuMTY0IDEwNS41MDlDMjQuNDU5MyAxMDUuMjAzIDI0LjQ1OTMgMTA0LjcxOSAyNC4xNjQgMTA0LjQxM0wxNS4yNTU3IDk1LjUwNDhMMjQuMTY0IDg2LjU5NjRDMjQuNDcyIDg2LjI4ODQgMjQuNDcyIDg1Ljc4OSAyNC4xNjQgODUuNDgxQzIzLjg1NiA4NS4xNzMgMjMuMzU2NyA4NS4xNzMgMjMuMDQ4NiA4NS40ODFMMTMuNTgyNSA5NC45NDcxQzEzLjI3NDYgOTUuMjU1MSAxMy4yNzQ2IDk1Ljc1NDUgMTMuNTgyNSA5Ni4wNjI1WiIgZmlsbD0iIzVEOEFDNSIgc3Ryb2tlPSIjNUQ4QUM1Ii8+CjxyZWN0IHg9Ijc1Ljc1IiB5PSI3NS43NSIgd2lkdGg9IjM5LjUiIGhlaWdodD0iMzkuNSIgcng9IjMuMjUiIGZpbGw9IiM1RDhBQzUiIHN0cm9rZT0iIzVEOEFDNSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KPHBhdGggZD0iTTg4LjU4MjUgOTYuMDYyNUw5OC4wNDg2IDEwNS41MjlDOTguMzYyIDEwNS44MzEgOTguODYxNCAxMDUuODIzIDk5LjE2NCAxMDUuNTA5Qzk5LjQ1OTMgMTA1LjIwMyA5OS40NTkzIDEwNC43MTkgOTkuMTY0IDEwNC40MTNMOTAuMjU1NyA5NS41MDQ4TDk5LjE2NCA4Ni41OTY0Qzk5LjQ3MiA4Ni4yODg0IDk5LjQ3MiA4NS43ODkgOTkuMTY0IDg1LjQ4MUM5OC44NTYgODUuMTczIDk4LjM1NjcgODUuMTczIDk4LjA0ODYgODUuNDgxTDg4LjU4MjUgOTQuOTQ3MUM4OC4yNzQ2IDk1LjI1NTEgODguMjc0NiA5NS43NTQ1IDg4LjU4MjUgOTYuMDYyNVoiIGZpbGw9IndoaXRlIiBzdHJva2U9IndoaXRlIi8+CjxyZWN0IHg9IjQwLjI1IiB5PSI0MC4yNSIgd2lkdGg9IjM5LjUiIGhlaWdodD0iMzkuNSIgcng9IjMuMjUiIHRyYW5zZm9ybT0icm90YXRlKC0xODAgNDAuMjUgNDAuMjUpIiBmaWxsPSJ3aGl0ZSIgc3Ryb2tlPSIjQkNDN0Q2IiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8cGF0aCBkPSJNMjcuNDE3NSAxOS45Mzc1TDE3Ljk1MTQgMTAuNDcxNEMxNy42MzggMTAuMTY4OCAxNy4xMzg2IDEwLjE3NzUgMTYuODM2IDEwLjQ5MDhDMTYuNTQwNyAxMC43OTY1IDE2LjU0MDcgMTEuMjgxMiAxNi44MzYgMTEuNTg2OEwyNS43NDQzIDIwLjQ5NTJMMTYuODM2IDI5LjQwMzZDMTYuNTI4IDI5LjcxMTYgMTYuNTI4IDMwLjIxMSAxNi44MzYgMzAuNTE5QzE3LjE0NCAzMC44MjcgMTcuNjQzMyAzMC44MjcgMTcuOTUxNCAzMC41MTlMMjcuNDE3NSAyMS4wNTI5QzI3LjcyNTQgMjAuNzQ0OSAyNy43MjU0IDIwLjI0NTUgMjcuNDE3NSAxOS45Mzc1WiIgZmlsbD0iIzVEOEFDNSIgc3Ryb2tlPSIjNUQ4QUM1Ii8+CjxyZWN0IHg9IjExNS4yNSIgeT0iNDAuMjUiIHdpZHRoPSIzOS41IiBoZWlnaHQ9IjM5LjUiIHJ4PSIzLjI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtMTgwIDExNS4yNSA0MC4yNSkiIGZpbGw9IiM1RDhBQzUiIHN0cm9rZT0iIzVEOEFDNSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KPHBhdGggZD0iTTEwMi40MTcgMTkuOTM3NUw5Mi45NTE0IDEwLjQ3MTRDOTIuNjM4IDEwLjE2ODggOTIuMTM4NiAxMC4xNzc1IDkxLjgzNiAxMC40OTA4QzkxLjU0MDcgMTAuNzk2NSA5MS41NDA3IDExLjI4MTIgOTEuODM2IDExLjU4NjhMMTAwLjc0NCAyMC40OTUyTDkxLjgzNiAyOS40MDM2QzkxLjUyOCAyOS43MTE2IDkxLjUyOCAzMC4yMTEgOTEuODM2IDMwLjUxOUM5Mi4xNDQgMzAuODI3IDkyLjY0MzMgMzAuODI3IDkyLjk1MTQgMzAuNTE5TDEwMi40MTcgMjEuMDUyOUMxMDIuNzI1IDIwLjc0NDkgMTAyLjcyNSAyMC4yNDU1IDEwMi40MTcgMTkuOTM3NVoiIGZpbGw9IndoaXRlIiBzdHJva2U9IndoaXRlIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iMTE2IiBoZWlnaHQ9IjExNyIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K") no-repeat -75px 0px; }

@media (min-width: 576px) and (max-width: 767.98px) {
  .ajaxify-modal.is-visible {
    box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.25); }
  .product-item--price h1, .product-item--price .h1, .product-item--price #shopify-product-reviews .spr-header-title, #shopify-product-reviews .product-item--price .spr-header-title {
    width: 100%;
    display: block; }
  .product-item--price .old {
    width: 100%;
    display: block; }
  .ajaxify-modal .ajaxifyCart--content {
    padding: 30px 44px 0px 44px; } }

@media (min-width: 768px) and (max-width: 991.98px) {
  .associated-products .product-grid-item p {
    height: 80px;
    font-size: 14px;
    margin-bottom: 0px;
    line-height: 1.3; } }

@media (min-width: 992px) {
  .ajaxify-modal {
    width: 900px;
    max-width: 900px;
    overflow: visible; }
  .product-grid-image {
    height: 148px; } }

.owl-carousel .owl-nav {
  overflow: hidden;
  height: 0px; }

.product-sku .color, .product-sku .size {
  margin: 15px 0;
  word-spacing: -5px; }

.glo-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 125px;
  z-index: 9;
  margin: -60px 0 0 -60px;
  -webkit-animation: glospin 2s linear infinite;
  -moz-animation: glospin 2s linear infinite;
  animation: glospin 2s linear infinite; }

@-moz-keyframes glospin {
  100% {
    -moz-transform: rotate(360deg); } }

@-webkit-keyframes glospin {
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes glospin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.product-content-wrapper {
  position: relative;
  padding: 30px 0; }

#pageMainContent, .fadeInContent {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 1s; }

@keyframes fadeInOpacity {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
