@charset "UTF-8";
/*
// ----------------------------------------------
// Usage example:
// For IE set $mq-support to false.
// Set the fixed value.
// Then use mixins to test whether styles should be applied.
// ----------------------------------------------

$mq-support: false;
$mq-fixed-value: 1024;

// Renders at fixed value
@include bp (min-width, 300px) { 
    div { color:#000; }
}

// Doesn't render without MQ support
@include bp (min-width, 1200px) { 
    div { color:#FFF; }
}

// Doesn't render without MQ support
@include bp (max-width, 300px) { 
    div { color:#444; }
}

// Renders at fixed value
@include bp (max-width, 1200px) { 
    div { color:#888; }
}

// ----------------------------------------------
*/
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.28571429em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none; }

.fa-ul > li {
  position: relative; }

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center; }

.fa-li.fa-lg {
  left: -1.85714286em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  -webkit-border-radius: .1em;
          border-radius: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right {
  margin-left: .3em; }

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }

.fa.pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #ffffff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000"; }

.fa-music:before {
  content: "\f001"; }

.fa-search:before {
  content: "\f002"; }

.fa-envelope-o:before {
  content: "\f003"; }

.fa-heart:before {
  content: "\f004"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-o:before {
  content: "\f006"; }

.fa-user:before {
  content: "\f007"; }

.fa-film:before {
  content: "\f008"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-check:before {
  content: "\f00c"; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-signal:before {
  content: "\f012"; }

.fa-gear:before,
.fa-cog:before {
  content: "\f013"; }

.fa-trash-o:before {
  content: "\f014"; }

.fa-home:before {
  content: "\f015"; }

.fa-file-o:before {
  content: "\f016"; }

.fa-clock-o:before {
  content: "\f017"; }

.fa-road:before {
  content: "\f018"; }

.fa-download:before {
  content: "\f019"; }

.fa-arrow-circle-o-down:before {
  content: "\f01a"; }

.fa-arrow-circle-o-up:before {
  content: "\f01b"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-play-circle-o:before {
  content: "\f01d"; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e"; }

.fa-refresh:before {
  content: "\f021"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-lock:before {
  content: "\f023"; }

.fa-flag:before {
  content: "\f024"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-print:before {
  content: "\f02f"; }

.fa-camera:before {
  content: "\f030"; }

.fa-font:before {
  content: "\f031"; }

.fa-bold:before {
  content: "\f032"; }

.fa-italic:before {
  content: "\f033"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-list:before {
  content: "\f03a"; }

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-video-camera:before {
  content: "\f03d"; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e"; }

.fa-pencil:before {
  content: "\f040"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-tint:before {
  content: "\f043"; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044"; }

.fa-share-square-o:before {
  content: "\f045"; }

.fa-check-square-o:before {
  content: "\f046"; }

.fa-arrows:before {
  content: "\f047"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-play:before {
  content: "\f04b"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-eject:before {
  content: "\f052"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-times-circle-o:before {
  content: "\f05c"; }

.fa-check-circle-o:before {
  content: "\f05d"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064"; }

.fa-expand:before {
  content: "\f065"; }

.fa-compress:before {
  content: "\f066"; }

.fa-plus:before {
  content: "\f067"; }

.fa-minus:before {
  content: "\f068"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-plane:before {
  content: "\f072"; }

.fa-calendar:before {
  content: "\f073"; }

.fa-random:before {
  content: "\f074"; }

.fa-comment:before {
  content: "\f075"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-arrows-v:before {
  content: "\f07d"; }

.fa-arrows-h:before {
  content: "\f07e"; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-key:before {
  content: "\f084"; }

.fa-gears:before,
.fa-cogs:before {
  content: "\f085"; }

.fa-comments:before {
  content: "\f086"; }

.fa-thumbs-o-up:before {
  content: "\f087"; }

.fa-thumbs-o-down:before {
  content: "\f088"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-heart-o:before {
  content: "\f08a"; }

.fa-sign-out:before {
  content: "\f08b"; }

.fa-linkedin-square:before {
  content: "\f08c"; }

.fa-thumb-tack:before {
  content: "\f08d"; }

.fa-external-link:before {
  content: "\f08e"; }

.fa-sign-in:before {
  content: "\f090"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-upload:before {
  content: "\f093"; }

.fa-lemon-o:before {
  content: "\f094"; }

.fa-phone:before {
  content: "\f095"; }

.fa-square-o:before {
  content: "\f096"; }

.fa-bookmark-o:before {
  content: "\f097"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a"; }

.fa-github:before {
  content: "\f09b"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-feed:before,
.fa-rss:before {
  content: "\f09e"; }

.fa-hdd-o:before {
  content: "\f0a0"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-hand-o-right:before {
  content: "\f0a4"; }

.fa-hand-o-left:before {
  content: "\f0a5"; }

.fa-hand-o-up:before {
  content: "\f0a6"; }

.fa-hand-o-down:before {
  content: "\f0a7"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-group:before,
.fa-users:before {
  content: "\f0c0"; }

.fa-chain:before,
.fa-link:before {
  content: "\f0c1"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4"; }

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-plus:before {
  content: "\f0d5"; }

.fa-money:before {
  content: "\f0d6"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd"; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-linkedin:before {
  content: "\f0e1"; }

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2"; }

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3"; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4"; }

.fa-comment-o:before {
  content: "\f0e5"; }

.fa-comments-o:before {
  content: "\f0e6"; }

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea"; }

.fa-lightbulb-o:before {
  content: "\f0eb"; }

.fa-exchange:before {
  content: "\f0ec"; }

.fa-cloud-download:before {
  content: "\f0ed"; }

.fa-cloud-upload:before {
  content: "\f0ee"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-bell-o:before {
  content: "\f0a2"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cutlery:before {
  content: "\f0f5"; }

.fa-file-text-o:before {
  content: "\f0f6"; }

.fa-building-o:before {
  content: "\f0f7"; }

.fa-hospital-o:before {
  content: "\f0f8"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b"; }

.fa-circle-o:before {
  content: "\f10c"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-circle:before {
  content: "\f111"; }

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-folder-o:before {
  content: "\f114"; }

.fa-folder-open-o:before {
  content: "\f115"; }

.fa-smile-o:before {
  content: "\f118"; }

.fa-frown-o:before {
  content: "\f119"; }

.fa-meh-o:before {
  content: "\f11a"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-keyboard-o:before {
  content: "\f11c"; }

.fa-flag-o:before {
  content: "\f11d"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-code:before {
  content: "\f121"; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122"; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-crop:before {
  content: "\f125"; }

.fa-code-fork:before {
  content: "\f126"; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127"; }

.fa-question:before {
  content: "\f128"; }

.fa-info:before {
  content: "\f129"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-shield:before {
  content: "\f132"; }

.fa-calendar-o:before {
  content: "\f133"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-ticket:before {
  content: "\f145"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-minus-square-o:before {
  content: "\f147"; }

.fa-level-up:before {
  content: "\f148"; }

.fa-level-down:before {
  content: "\f149"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-pencil-square:before {
  content: "\f14b"; }

.fa-external-link-square:before {
  content: "\f14c"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150"; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151"; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152"; }

.fa-euro:before,
.fa-eur:before {
  content: "\f153"; }

.fa-gbp:before {
  content: "\f154"; }

.fa-dollar:before,
.fa-usd:before {
  content: "\f155"; }

.fa-rupee:before,
.fa-inr:before {
  content: "\f156"; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157"; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158"; }

.fa-won:before,
.fa-krw:before {
  content: "\f159"; }

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-text:before {
  content: "\f15c"; }

.fa-sort-alpha-asc:before {
  content: "\f15d"; }

.fa-sort-alpha-desc:before {
  content: "\f15e"; }

.fa-sort-amount-asc:before {
  content: "\f160"; }

.fa-sort-amount-desc:before {
  content: "\f161"; }

.fa-sort-numeric-asc:before {
  content: "\f162"; }

.fa-sort-numeric-desc:before {
  content: "\f163"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-youtube-square:before {
  content: "\f166"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-youtube-play:before {
  content: "\f16a"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-adn:before {
  content: "\f170"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitbucket-square:before {
  content: "\f172"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-long-arrow-down:before {
  content: "\f175"; }

.fa-long-arrow-up:before {
  content: "\f176"; }

.fa-long-arrow-left:before {
  content: "\f177"; }

.fa-long-arrow-right:before {
  content: "\f178"; }

.fa-apple:before {
  content: "\f179"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-android:before {
  content: "\f17b"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-trello:before {
  content: "\f181"; }

.fa-female:before {
  content: "\f182"; }

.fa-male:before {
  content: "\f183"; }

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184"; }

.fa-sun-o:before {
  content: "\f185"; }

.fa-moon-o:before {
  content: "\f186"; }

.fa-archive:before {
  content: "\f187"; }

.fa-bug:before {
  content: "\f188"; }

.fa-vk:before {
  content: "\f189"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-arrow-circle-o-right:before {
  content: "\f18e"; }

.fa-arrow-circle-o-left:before {
  content: "\f190"; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191"; }

.fa-dot-circle-o:before {
  content: "\f192"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195"; }

.fa-plus-square-o:before {
  content: "\f196"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-slack:before {
  content: "\f198"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c"; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-spoon:before {
  content: "\f1b1"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9"; }

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-file-pdf-o:before {
  content: "\f1c1"; }

.fa-file-word-o:before {
  content: "\f1c2"; }

.fa-file-excel-o:before {
  content: "\f1c3"; }

.fa-file-powerpoint-o:before {
  content: "\f1c4"; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5"; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6"; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7"; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8"; }

.fa-file-code-o:before {
  content: "\f1c9"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd"; }

.fa-circle-o-notch:before {
  content: "\f1ce"; }

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0"; }

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7"; }

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9"; }

.fa-history:before {
  content: "\f1da"; }

.fa-circle-thin:before {
  content: "\f1db"; }

.fa-header:before {
  content: "\f1dc"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-sliders:before {
  content: "\f1de"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-newspaper-o:before {
  content: "\f1ea"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bell-slash-o:before {
  content: "\f1f7"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-eyedropper:before {
  content: "\f1fb"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-area-chart:before {
  content: "\f1fe"; }

.fa-pie-chart:before {
  content: "\f200"; }

.fa-line-chart:before {
  content: "\f201"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-bus:before {
  content: "\f207"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-cc:before {
  content: "\f20a"; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b"; }

.fa-meanpath:before {
  content: "\f20c"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-diamond:before {
  content: "\f219"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-venus:before {
  content: "\f221"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-facebook-official:before {
  content: "\f230"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-server:before {
  content: "\f233"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-hotel:before,
.fa-bed:before {
  content: "\f236"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-train:before {
  content: "\f238"; }

.fa-subway:before {
  content: "\f239"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-sticky-note-o:before {
  content: "\f24a"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-hourglass-o:before {
  content: "\f250"; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251"; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255"; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256"; }

.fa-hand-scissors-o:before {
  content: "\f257"; }

.fa-hand-lizard-o:before {
  content: "\f258"; }

.fa-hand-spock-o:before {
  content: "\f259"; }

.fa-hand-pointer-o:before {
  content: "\f25a"; }

.fa-hand-peace-o:before {
  content: "\f25b"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-safari:before {
  content: "\f267"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-tv:before,
.fa-television:before {
  content: "\f26c"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-500px:before {
  content: "\f26e"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-calendar-plus-o:before {
  content: "\f271"; }

.fa-calendar-minus-o:before {
  content: "\f272"; }

.fa-calendar-times-o:before {
  content: "\f273"; }

.fa-calendar-check-o:before {
  content: "\f274"; }

.fa-industry:before {
  content: "\f275"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-map-o:before {
  content: "\f278"; }

.fa-map:before {
  content: "\f279"; }

.fa-commenting:before {
  content: "\f27a"; }

.fa-commenting-o:before {
  content: "\f27b"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-vimeo:before {
  content: "\f27d"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-edge:before {
  content: "\f282"; }

.fa-credit-card-alt:before {
  content: "\f283"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-modx:before {
  content: "\f285"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-usb:before {
  content: "\f287"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-pause-circle-o:before {
  content: "\f28c"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stop-circle-o:before {
  content: "\f28e"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-percent:before {
  content: "\f295"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-envira:before {
  content: "\f299"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-wheelchair-alt:before {
  content: "\f29b"; }

.fa-question-circle-o:before {
  content: "\f29c"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-volume-control-phone:before {
  content: "\f2a0"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3"; }

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-handshake-o:before {
  content: "\f2b5"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-o:before {
  content: "\f2b7"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-book-o:before {
  content: "\f2ba"; }

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb"; }

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-circle-o:before {
  content: "\f2be"; }

.fa-user-o:before {
  content: "\f2c0"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2"; }

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3"; }

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-eercast:before {
  content: "\f2da"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-snowflake-o:before {
  content: "\f2dc"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-meetup:before {
  content: "\f2e0"; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y; }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  -o-transition: transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
      -ms-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
          background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.wsnyc-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  -webkit-transition: 500ms all;
  -o-transition: 500ms all;
  transition: 500ms all;
  pointer-events: none;
  z-index: 9999999;
  opacity: 0; }
  .wsnyc-modal.show {
    background-color: rgba(9, 26, 45, 0.46);
    pointer-events: auto;
    opacity: 1; }
  .wsnyc-modal:not(.show) .wsnyc-modal-content {
    top: -100% !important;
    opacity: 0; }
  .wsnyc-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-height: 90vh;
    overflow-y: auto;
    max-width: 600px;
    -webkit-transition: 400ms all ease-out;
    -o-transition: 400ms all ease-out;
    transition: 400ms all ease-out;
    -webkit-border-radius: 5px;
            border-radius: 5px;
    background-color: #FFF;
    -webkit-background-clip: padding-box;
            background-clip: padding-box;
    padding: 10px; }
    @media only screen and (max-width: 599px) {
      .wsnyc-modal-content {
        width: 90vw;
        overflow-x: scroll; } }
  .wsnyc-modal-close {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 10px;
    width: 25px;
    height: 25px;
    cursor: pointer; }
    .wsnyc-modal-close::after, .wsnyc-modal-close::before {
      position: absolute;
      top: 12px;
      left: 3px;
      content: '';
      width: 20px;
      height: 1px;
      background-color: #424449; }
    .wsnyc-modal-close::after {
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg); }
    .wsnyc-modal-close::before {
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg); }

.hidden {
  display: none !important; }

@media only screen and (min-width: 480px) and (max-width: 599px) {
  .hide-small {
    display: none !important; } }

@media only screen and (min-width: 980px) {
  .hide-xlarge {
    display: none !important; } }

@media only screen and (max-width: 770px) {
  .hide-mobile {
    display: none !important; } }

@media only screen and (min-width: 771px) and (max-width: 979px) {
  .hide-tablet {
    display: none !important; } }

@media only screen and (min-width: 980px) {
  .hide-desktop {
    display: none !important; } }

.transition, #sizes .size-content .input-text, #sizes .size-content .sizes-block .menu a, #sizes .size-content .sizes-block .menu a:before, #sizes .size-content .sizes-block .menu a:after, #sizes .size-content .size-item {
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.loader_active {
  position: relative; }
  .loader_active:before {
    content: '';
    display: block;
    position: absolute;
    top: -webkit-calc(50% - 15px);
    top: calc(50% - 15px);
    left: -webkit-calc(50% - 15px);
    left: calc(50% - 15px);
    border: 4px solid #999;
    border-top: 4px solid transparent;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: 6;
    -webkit-animation: spin 1s ease-out infinite;
            animation: spin 1s ease-out infinite; }
  .loader_active:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: rgba(255, 255, 255, 0.7); }

/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block; }

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

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

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
[hidden] {
  display: none; }

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

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

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

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

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */
h1 {
  font-size: 2em; }

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

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

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

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

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

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

/*
 * Sets consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

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

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================ *
 * Reset
 * ============================================ */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html {
  -webkit-tap-highlight-color: transparent;
  /* Prevent tap highlight on iOS/Android */
  -webkit-text-size-adjust: 100%;
  /* Prevent automatic scaling on iOS */ }

body {
  background: #FFFFFF;
  color: #000000;
  line-height: 1; }

html,
body,
img,
fieldset,
abbr,
acronym {
  border: 0; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal; }

th,
code,
cite,
caption {
  font-weight: normal;
  font-style: normal;
  text-align: left; }

address {
  font-style: normal; }

fieldset {
  margin: 0;
  padding: 0;
  border: 0; }

img {
  display: block; }

ol,
ul {
  list-style: none; }

q:before,
q:after {
  content: ''; }

input:focus,
input[type="search"]:focus {
  outline-offset: -2px; }

input[type="search"] {
  -webkit-appearance: none;
  /* 1 */
  -webkit-box-sizing: border-box;
  /* 2 */
  box-sizing: border-box; }

/* ============================================ *
 * Base Styles
 * ============================================ */
@-ms-viewport {
  width: device-width; }

@-o-viewport {
  width: device-width; }

@viewport {
  width: device-width; }

a, button {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

body,
button,
input,
select,
table,
textarea {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  color: #55585d;
  font-size: 13px;
  line-height: 1.5; }

a {
  color: #3399cc;
  text-decoration: none; }

a:hover {
  color: #E09135;
  text-decoration: underline;
  outline: none; }

a:focus {
  outline: none;
  color: #E09135; }

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0; }

/* ============================================ *
 * Typography
 * ============================================ */
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?-o4ehfp");
  src: url("../fonts/icomoon.eot?#iefix-o4ehfp") format("embedded-opentype"), url("../fonts/icomoon.woff?-o4ehfp") format("woff"), url("../fonts/icomoon.ttf?-o4ehfp") format("truetype"), url("../fonts/icomoon.svg?-o4ehfp#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }
  
@font-face {
  font-family: 'icomoon-review-icons';
  src: url("../fonts/review-icons/icomoon.eot?");
  src: url("../fonts/review-icons/icomoon.eot?#iefix") format("embedded-opentype"), url("../fonts/review-icons/icomoon.woff?") format("woff"), url("../fonts/review-icons/icomoon.ttf?") format("truetype"), url("../fonts/review-icons/icomoon.svg?#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
[class^="reviewicons-"], [class*=" reviewicons-"] {
  font-family: 'icomoon-review-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale; }
 
.icon-youtube-style{
	display: inline-block;
    width: 29px !important;
    filter: grayscale(1) opacity(0.9);
    border-radius: 9px;
    position: relative;
    top: 3px;
    -webkit-filter: grayscale(100%) opacity(0.9);
    filter: gray;
	height: 29px !important;
 }

 
 .reviewicons-pointer:before{
	content: "\e900";
}
.reviewicons-file:before{
	content:"\e924"
}
.reviewicons-print:before{
	content:"\e901"
}
.reviewicons-check:before{
	content:"\ea10"
}
.review-proof-options{
	display:flex;
}
.proof-options-item{
	height: 126px;
	background-color: white;
	border:2px solid #a9a6a6;
	margin-right: 5px;
    border-radius: 10px;
	width:25%;
}
.proof-options{
	display: flex;
	align-content: space-between;
	width: 100%;
	height: 100%;
}
.proof-options:last-child {
  margin-right: 0px;
}
.proof-option{
	width:15px;
	height:15px;
	margin: 10px !important;
}
.new-label-online-proof{
	width: 95px;
	height:19px;
	background-color:  #3399cc;
	color:white;
	font-weight: 700;
	font-family: sans-serif;
	text-align: center;
    display: inline-block;
	float:right;
	font-size: smaller;
}
.proof-options-item-label-content .proof-options-item-labelicon{
	color: #a7afaf;
	margin: 15px 10px 10px 14px;
	font-size:3em;
}
.proof-options-item-label{
	display:inline-block;
}
.proof-options-item-label-header{
	
	font-weight:700;
	position: absolute;
    top: 0px;
    font-size: medium;
    font-family: sans-serif;
    right: 60px;
	left: 61px;
}
.proof-options-item-label-content{
	position: relative;
}
.proof-options-item-label{
	display:inline-block;
}
.proof-options-item-label-text{
	position: absolute;
    top: 29px;
    left: 61px;
    font-size: smaller;
    font-family: sans-serif;
	line-height:1;

}
.proofing-options-container{
	padding:8px;
	background-color:white;
}

/*.parent
{
	position: relative;
	top: 0;
	left: 0;
	max-width:100%;
	height:60%;
}
.childDiv
{
	position: absolute;
	top: 20%;
	left: 52%;
	background-color: #3e3d3d;
	width: 75px;
	height: 75px;
}
.child{
	position:absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%) rotateZ(90deg);
	max-width: 100%;
	max-height: 100%;
	color: #db3131;
    font-size: xx-large;
	font-weight: 700;
}

.roll-container{
	position: relative;
    width: 100%;
    height: 201px;
}
.windDirection{
	position: absolute;
    left: 30%;
    top: 0%;
	border-radius: 6px;
    width: 159px;
    font-weight: 600;
    padding: 2px;
}

.roll-container-image{
	position: absolute;
    left: 30%;
    top: 14%;
    max-width: 250px;
    height: 228px;
}*/

.icon-chevron-left:before {
  content: "\f053"; }

.icon-chevron-right:before {
  content: "\f054"; }

.icon-caret-down:before {
  content: "\f0d7"; }

.icon-shopping-cart:before {
  content: "\e600"; }

.icon-circle:before {
  content: "\e601"; }

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

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

.icon-bars:before {
  content: "\e604"; }

.icon-user:before {
  content: "\e605"; }

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

.icon-linkedin:before {
  content: "\e607"; }

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

.icon-oval:before {
  content: "\e609"; }

.icon-phone:before {
  content: "\e60a"; }

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

.icon-add:before {
  content: "\e60c"; }

.icon-rectangle:before {
  content: "\e60d"; }

.icon-square:before {
  content: "\e60e"; }

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

.icon-delete:before {
  content: "\e610"; }

.icon-bullhorn:before {
  content: "\e05f"; }

.icon-location:before {
  content: "\e0f1"; }

.icon-truck:before {
  content: "\e9b0"; }

.icon-order:before {
  content: "\e086"; }

.icon-credit-card:before {
  content: "\e0d5"; }

.icon-calendar:before {
  content: "\e113"; }

.icon-launch:before {
  content: "\e611"; }

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

.icon-lightbox:before {
  content: "\e611"; }

h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #3399cc;
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility; }

h2, .h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #636363;
  font-size: 23px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility; }

h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed; }

h4, .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed; }

h5, .h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-size: 13px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed; }

h6, .h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #636363;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed; }

/* ============================================ *
 * Shared Classes
 * ============================================ */
.address-list address {
  margin-bottom: 1em; }

.availability {
  margin-bottom: 0;
  font-size: 13px;
  text-transform: uppercase; }

.availability .label {
  display: none; }

.availability.in-stock {
  color: #11b400; }

.availability.available-soon,
.availability.out-of-stock {
  color: red; }

.availability-only {
  color: red;
  margin-bottom: 10px; }

/* -------------------------------------------- *
 * Page Titles
 */
.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  font-size: 24px;
  font-weight: 600;
  color: #636363;
  padding-bottom: 3px;
  margin-bottom: 15px; }

/* -------------------------------------------- *
 * Block Module
 */
.block,
.col-left-first {
  margin-bottom: 20px; }

.col-left-first .block:last-of-type {
  margin-bottom: 0; }

.block-title {
  position: relative;
  padding: 10px 0 0;
  margin-bottom: 5px;
  border-top: 1px solid #cccccc;
  width: 97%; }

.category-description .block-title {
  border-top: none; }

.block-title h2,
.block-title h3,
.block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  color: #3399cc;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600; }

.block-title small {
  font-size: 100%;
  font-weight: normal;
  color: #a0a0a0; }

body:not(.customer-account) .block:first-child .block-title {
  border-top: none;
  padding-top: 0; }

.block-subtitle {
  font-weight: bold;
  margin-bottom: 7px; }

.block-content {
  margin-top: 5px; }

.block-content.unpad {
  padding: 0; }

.block-content li.item {
  margin: 0 0 10px 9px; }

.block-content li.item:last-child {
  margin-bottom: 0; }

.block .actions {
  margin: 10px 0 0; }

.block .actions:after {
  content: '';
  display: table;
  clear: both; }

.block .actions a {
  float: left; }

.block .actions .button {
  float: right; }

.col-left .block .actions .button ~ a,
.col-right .block .actions .button ~ a {
  line-height: 33px;
  margin-right: 5px; }

.block-viewed {
  display: none; }

@media only screen and (max-width: 770px) {
  .sidebar .block:not(.block-layered-nav) {
    margin-bottom: 0; }
  .sidebar .block:last-of-type {
    border-bottom: 1px solid #cccccc; } }

/* -------------------------------------------- *
 * Secondary Navigation
 */
.block-account .block-title,
.block-cms-menu .block-title {
  padding-top: 0;
  border-top: none; }

.block-account li,
.block-cms-menu li {
  padding: 10px 0;
  border-bottom: 1px solid #999; }

.block-account li:last-child,
.block-cms-menu li:last-child {
  border: 0; }

.block-account li strong,
.block-cms-menu li strong {
  font-weight: 400;
  color: #3399cc; }

.block-account li a,
.block-cms-menu li a {
  color: #636363; }

.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #3399cc; }

.sidebar .block.block-account .current a,
.sidebar .block.block-account .current a strong {
  color: #ccc; }

.block-account .block-title {
  display: none; }

.block-account .block-content {
  margin-top: -10px; }

.block-account li {
  width: 80%; }

@media only screen and (max-width: 770px) {
  .sidebar .block-account .block-title > strong span:after,
  .sidebar .block-cms-menu .block-title > strong span:after {
    content: ' Menu'; }
  .sidebar .block.block-account {
    border: none; }
  .block-account ul {
    border: none;
    display: table; }
  .block-account .block-title {
    display: none; }
  .block-account li {
    border: none;
    border-right: 1px solid #ccc;
    padding: 5px 10px;
    display: table-cell;
    vertical-align: top;
    width: 33%; }
  .block-account li:first-child {
    padding: 5px 10px 5px 0; }
  .block-account li:last-child {
    padding: 5px 0 5px 10px; } }

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
.cart .buttons-set .button,
.cart-table .button,
.sidebar .actions .button,
.button.button-secondary {
  background: #dddddd;
  color: #636363;
  padding: 7px 15px; }

.cart .buttons-set .button:hover,
.cart-table .button:hover,
.sidebar .actions .button:hover,
.button.button-secondary:hover {
  background: #d0d0d0;
  cursor: pointer; }

.cart .buttons-set .button:active,
.cart-table .button:active,
.sidebar .actions .button:active,
.button.button-secondary:active {
  background: #c4c4c4;
  color: #636363; }

.cart .buttons-set .button:focus,
.cart-table .button:focus,
.sidebar .actions .button:focus,
.button.button-secondary:focus {
  color: #636363;
  background: #c4c4c4;
  outline: none; }

/* Primary Buttons */
.button,
.cart-table .product-cart-actions .button,
#co-shipping-method-form .buttons-set .button,
.footer .button {
  background: #3399cc;
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: normal;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap; }

.button:hover,
.cart-table .product-cart-actions .button:hover,
#co-shipping-method-form .buttons-set .button:hover,
.footer .button:hover {
  background: #E09135;
  cursor: pointer; }

.button:active,
.cart-table .product-cart-actions .button:active,
#co-shipping-method-form .buttons-set .button:active,
.footer .button:active {
  background: #297aa3;
  color: #FFFFFF; }

.button:focus,
.cart-table .product-cart-actions .button:focus,
#co-shipping-method-form .buttons-set .button:focus,
.footer .button:focus {
  background-color: #297aa3;
  outline: none;
  color: #FFFFFF; }

a.button {
  text-decoration: none; }

a.button:hover {
  color: #FFFFFF; }

/* Disabled - class for anchor, state for form elements */
.button.disabled,
.button:disabled {
  background: #C8C8C8;
  opacity: 0.6;
  cursor: not-allowed; }

/* Adjacent buttons */
.button + .button {
  margin-left: 5px; }

.button2 {
  border: 0;
  padding: 0 5px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  vertical-align: middle; }

.button2:focus {
  outline: none; }

.button2 span,
.button2 span span {
  line-height: 30px;
  height: 30px;
  text-decoration: underline;
  text-transform: uppercase;
  display: inline-block;
  color: #3399cc; }

.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: #246b8f; }

@media only screen and (max-width: 770px) {
  .col2-set .buttons-set .button,
  .col2-set .buttons-set .button2 {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  .col2-set .buttons-set .back-link {
    display: none; }
  .col2-set .buttons-set .required {
    display: none; } }

@media only screen and (max-width: 479px) {
  .buttons-set .button {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 7px; }
  .buttons-set .back-link {
    display: none; }
  .buttons-set .required {
    display: none; }
  .landing-main-list {
    border: #3399cc 2px solid;
    width: 100%;
    margin: 5% auto; } }

/* -------------------------------------------- *
 * Paypal Button
 */
.paypal-logo.paypal-after {
  float: left; }

.paypal-after .paypal-or {
  float: left; }

.paypal-or {
  line-height: 40px;
  margin: 0px 10px 5px; }

.paypal-after .paypal-button {
  float: left; }

.paypal-button {
  line-height: 0px; }

.paypal-button img {
  display: inline; }

@media only screen and (max-width: 670px) {
  .paypal-or {
    line-height: 20px; }
  .paypal-logo,
  .paypal-or,
  .paypal-button {
    text-align: center;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-left: 0;
    float: none; } }

/* -------------------------------------------- *
 * Button Sets
 */
.buttons-set {
  clear: both;
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid #ededed;
  text-align: right; }

.buttons-set p.required {
  margin: 0;
  margin-left: 10px;
  line-height: 33px;
  float: right; }

.buttons-set .back-link {
  float: left;
  margin: 0;
  line-height: 33px; }

.buttons-set .back-link span {
  margin-right: 10px; }

.buttons-set a:not(".button") {
  line-height: 20px;
  display: inline-block;
  padding: 5px; }

.buttons-set button.button {
  float: right;
  margin-left: 5px;
  min-width: 140px; }

.buttons-set:after {
  content: '';
  display: table;
  clear: both; }

/* -------------------------------------------- *
 * Icons
 */
.icon-sprite, .btn-remove2, .ratings .rating-box, .ratings .rating-box .rating, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
.sorter > .view-mode .list, .skip-nav .icon, .skip-search .icon, #search_mini_form .search-button:before, .skip-account .icon, .skip-cart .icon, .product-view .sharing-links a, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
  background-image: url(../../default/images/icon_sprite.png);
  background-repeat: no-repeat;
  text-indent: -9999px; }

@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .icon-sprite, .btn-remove2, .ratings .rating-box, .ratings .rating-box .rating, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
  .sorter > .view-mode .list, .skip-nav .icon, .skip-search .icon, #search_mini_form .search-button:before, .skip-account .icon, .skip-cart .icon, .product-view .sharing-links a, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
    background-image: url(../../default/images/icon_sprite@2x.png);
    -webkit-background-size: 100px 1000px;
            background-size: 100px 1000px; }
  .quote-widget section.loading:after {
    background-image: url(../images/loading@2x.gif);
    -webkit-background-size: 32px;
    background-size: 32px; } }

/* -------------------------------------------- *
 * Breadcrumbs
 */
.breadcrumbs {
  overflow: hidden;
  margin: -15px 0 15px; }

.breadcrumbs li {
  display: inline-block;
  font-weight: 600;
  font-size: 12px; }

.breadcrumbs a {
  color: #2C9FDE; }

.breadcrumbs a:hover {
  color: #2C9FDE; }

.breadcrumbs strong {
  color: #636363;
  font-weight: normal; }

.breadcrumbs span {
  font-weight: normal;
  padding: 0 10px; }

@media only screen and (max-width: 770px) {
  .breadcrumbs {
    display: none; } }

/* -------------------------------------------- *
 * Button - Remove / Previous
 */
.btn-remove,
.btn-previous {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #ededed;
  text-align: center;
  /* Hide text */
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  position: relative; }

.btn-remove:hover,
.btn-previous:hover {
  background-color: #3399cc;
  border-color: #3399cc; }

.btn-remove:after {
  content: 'X';
  color: #3399cc;
  height: 20px;
  line-height: 20px;
  width: 100%;
  font-size: 10px;
  font-family: Arial, "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: bold; }

.btn-remove:hover:after {
  color: #FFFFFF;
  text-decoration: none; }

.btn-remove2 {
  background-position: 4px -648px;
  border: none;
  vertical-align: top; }

.btn-remove2:after {
  display: none; }

.btn-remove2:hover {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8; }

.btn-previous:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #3399cc;
  border-left: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -2px;
  margin-top: -4px; }

.btn-previous:hover:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid white;
  border-left: none; }

.block-layered-nav .currently .btn-remove,
.block-layered-nav .currently .btn-previous,
.mini-products-list .btn-remove,
.mini-products-list .btn-previous,
#compare-items .btn-remove,
#compare-items .btn-previous {
  float: right;
  margin-left: 6px; }

/* -------------------------------------------- *
 * Checkout Agreements
 */
.checkout-agreements li {
  margin-bottom: 20px; }

.checkout-agreements .agreement-content {
  overflow-y: auto;
  max-width: 670px;
  max-height: 125px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #cccccc;
  background: #f4f4f4; }

/* -------------------------------------------- *
 * CVV Security Code
 */
.cvv-what-is-this {
  font-size: 13px;
  line-height: 24px; }

/* -------------------------------------------- *
 * Top Container
 */
@media only screen and (min-width: 771px) {
  .landing-main-list {
    border: #3399cc 2px solid;
    width: 90%;
    margin: 5% auto; }
  .landing-main-list ul {
    width: 49%; } }

.top-container {
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
  width: 100%; }

/* -------------------------------------------- *
 * Global Site Notice
 */
.global-site-notice {
  background: #676157;
  color: #e6e6e6;
  font-size: 11px; }

.global-site-notice .notice-inner {
  padding-left: 120px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 11px;
  min-height: 40px;
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  background-image: url("../../default/images/demo-logo.png");
  background-position: left;
  background-repeat: no-repeat; }

.global-site-notice p {
  margin-bottom: 0; }

/* -------------------------------------------- *
 * Promotional Message Banner
 */
.promo-msg {
  color: #3399cc;
  text-align: center;
  margin: 10px;
  text-transform: uppercase; }

/* -------------------------------------------- *
 * Grid
 */
.grid:after {
  content: '';
  display: table;
  clear: both; }

/* -------------------------------------------- *
 * Messages
 */
.success {
  color: #11b400; }

.error {
  color: red;
  font-weight: bold; }

.notice {
  color: #e26703;
  font-weight: bold; }

/* -------------------------------------------- *
 * Messages
 */
.messages {
  margin-bottom: 10px; }

.messages li li {
  position: relative;
  margin-bottom: 5px;
  padding: 7px 10px 7px 20px;
  background: #f4f4f4; }

.messages li li:before {
  top: 50%;
  left: 0;
  margin-top: -6px; }

.messages .error-msg li {
  border-left: 5px solid red; }

.messages .error-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid red;
  border-right: none; }

.messages .notice-msg li {
  border-left: 5px solid #e26703; }

.messages .notice-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #e26703;
  border-right: none; }

.messages .success-msg li {
  border-left: 5px solid #11b400; }

.messages .success-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #11b400;
  border-right: none; }

@media only screen and (min-width: 915px) {
  .order-list-grid .col-1 {
    width: 30%; }
  .order-list-grid .col-2 {
    width: 50%;
    padding-right: 20px; }
  .order-list-grid .col-3 {
    clear: none;
    width: 20%;
    padding-top: 0; } }

/* -------------------------------------------- *
 * Page Popup
 */
.page-popup {
  padding: 20px;
  background: #FFFFFF;
  height: auto; }

.page-popup h1 {
  margin: 0 0 0.5em;
  font-size: 36px; }

/* -------------------------------------------- *
 * Payment Methods
 */
.payment-methods {
  margin-bottom: 20px; }

.payment-methods dt {
  padding: 5px 0; }

.payment-methods dd {
  padding-top: 10px; }

.payment-methods .form-list {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 5px 15px 15px;
  padding: 15px;
  border: 1px solid #cccccc;
  background: #f4f4f4; }

.payment-methods .form-list:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #cccccc;
  border-top: none;
  top: -11px;
  left: 30px; }

.payment-methods .form-list:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #f4f4f4;
  border-top: none;
  top: -10px;
  left: 30px; }

.payment-methods .form-list li:last-child {
  margin-bottom: 0; }

/* -------------------------------------------- *
 * Please Wait (Loading Indicator)
 */
.please-wait {
  display: inline-block;
  margin-left: 10px;
  margin-top: 5px;
  line-height: 24px;
  height: 24px;
  white-space: nowrap;
  /* Prevent the linebreak in the HTML from causing layout issues */ }

.please-wait img {
  float: left;
  margin-right: 5px;
  width: 24px; }

/* -------------------------------------------- *
 * Price Box - Standard
 */
.price-box {
  margin: 7px 0; }

.price-box p {
  margin-bottom: 0; }

.price-notice {
  color: #a0a0a0; }

.price-box .price {
  color: #3399cc;
  font-size: 16px; }

.price-box .price,
.price {
  white-space: nowrap; }

.price-box .price-label {
  color: #a0a0a0;
  white-space: nowrap; }

.price-box .minimal-price-link {
  padding-left: 1em;
  color: #3399cc;
  display: block;
  /* We want this to show on its own line, otherwise the layout looks funky */ }

.price-box .minimal-price-link .label {
  color: #a0a0a0; }

/* -------------------------------------------- *
 * Price Box - Special
 */
.price-box .old-price,
.price-box .special-price {
  display: inline-block; }

.price-box .old-price .price-label,
.price-box .special-price .price-label {
  display: none; }

.price-box .old-price .price,
.price-box .special-price .price {
  display: inline-block; }

.price-box .old-price .price {
  color: #a0a0a0;
  text-decoration: line-through; }

.price-box .special-price {
  color: #3399cc;
  padding-left: 1em; }

.price-box .special-price .price-label {
  color: #D84D3C; }

/* -------------------------------------------- *
 * Price Box - Taxes
 */
.price-box .price-excluding-tax,
.price-box .price-including-tax {
  display: block; }

/* -------------------------------------------- *
 * Tier Prices
 */
.product-pricing,
.tier-prices,
.tier-prices-grouped {
  display: inline-block;
  padding: 4px 8px;
  background: #FBF4DE;
  border: 1px solid #E2D4C7;
  margin-top: 7px; }

.product-pricing li,
.tier-prices li,
.tier-prices-grouped li {
  font-size: 12px; }

.product-pricing .benefit,
.tier-prices .benefit,
.tier-prices-grouped .benefit {
  font-style: italic; }

.product-pricing .price,
.tier-prices .price,
.tier-prices-grouped .price {
  font-weight: bold; }

/* ============================================ *
 * Item Options
 * ============================================ */
.item-options {
  font-size: 14px; }

.item-options:after {
  content: '';
  display: table;
  clear: both; }

.item-options dt {
  float: left;
  clear: left;
  font-weight: 600;
  padding-right: 5px;
  font-style: italic; }

.item-options dt:after {
  content: ': '; }

.item-options dd {
  float: left;
  padding-left: 10px;
  margin: 0 0 6px; }

.truncated,
.truncated a.dots {
  cursor: help; }

.truncated a.details {
  cursor: help;
  height: 16px;
  line-height: 16px; }

.truncated a.details:hover {
  text-decoration: none; }

.truncated .truncated_full_value {
  position: relative;
  z-index: 300; }

.truncated .truncated_full_value .item-options {
  display: none;
  position: absolute;
  z-index: 300;
  width: 200px;
  padding: 8px;
  border: 1px solid #3399cc;
  background-color: #F6F6F6;
  top: 21px;
  left: -100px; }

.truncated .truncated_full_value .item-options:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #3399cc;
  border-top: none;
  left: 97px;
  top: -7px; }

.truncated .truncated_full_value .item-options > p {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px; }

.truncated .show .item-options {
  display: block; }

@media only screen and (max-width: 479px) {
  .truncated {
    cursor: inherit; }
  .truncated a.details {
    display: none; }
  .truncated .truncated_full_value .item-options {
    display: block;
    position: static;
    z-index: 1;
    width: 100%;
    border: none;
    background-color: transparent; }
  .truncated .truncated_full_value .item-options p {
    float: none; }
  .truncated .truncated_full_value .item-options:after {
    display: none; } }

/* -------------------------------------------- *
 * Printer Friendly Page
 */
.page-print {
  width: 6.5in;
  margin: 20px;
  background: #FFFFFF; }
  .page-print .buttons-set {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .page-print .buttons-set p {
      font-size: 7px;
      font-style: italic;
      text-align: left;
      color: #000; }

/* -------------------------------------------- *
 * Add to links
 */
.add-to-links {
  margin: 7px 0; }

.add-to-links a {
  display: inline-block;
  padding: 0px 3px 3px; }

.add-to-links .separator {
  display: none; }

/* -------------------------------------------- *
 * Product Image
 */
/*.product-image,
.no-touch .product-img-box .product-image:not(.zoom-available):hover {
  position: relative;
  display: block;
  border: 1px solid #ededed;
}

.no-touch .product-image:hover {
  border-color: #3399cc;
}*/
/* -------------------------------------------- *
 * Ratings
 */
.ratings {
  margin: 7px 0; }

.ratings .rating-box,
.ratings .rating-links {
  margin: 5px 0; }

.ratings .rating-box {
  width: 65px;
  height: 13px;
  background-repeat: repeat-x;
  background-position: 0 -615px;
  overflow: hidden; }

.ratings .rating-box .rating {
  float: left;
  height: 13px;
  background-repeat: repeat-x;
  background-position: 0 -600px; }

.ratings .amount {
  display: block;
  margin: 5px auto; }

.ratings .rating-links .separator {
  margin: 0 3px; }

/* -------------------------------------------- *
 * Standard Formatted Text Block
 */
.std p {
  margin: 0 0 1.5em;
  width: 97%; }

.std ol {
  list-style: decimal outside;
  margin-bottom: 1.5em; }

.std ol li {
  margin-left: 2em; }

.std ul {
  list-style: disc outside;
  margin-bottom: 1.5em; }

.std ul li {
  margin-left: 2em; }

.std .note {
  color: #a0a0a0;
  font-size: 13px; }

/* -------------------------------------------- *
 * Tabs
 */
.tabs {
  margin-bottom: 10px;
  background: #FFFFFF; }

/* -------------------------------------------- *
 * Toolbar
 */
.toolbar {
  display: none;
  margin-top: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  background: #f4f4f4;
  padding: 5px 10px 0px 10px; }

.toolbar-bottom {
  display: none; }

.toolbar:after {
  content: '';
  display: table;
  clear: both; }

.pager-no-toolbar {
  margin-bottom: 10px; }

.pager-no-toolbar ~ .pager-no-toolbar {
  margin-top: 10px; }

.toolbar,
.pager {
  color: #636363;
  line-height: 30px;
  font-size: 12px; }

.toolbar label,
.pager-no-toolbar label {
  font-weight: normal;
  text-transform: uppercase; }

.sorter {
  float: left;
  margin-bottom: 5px; }

.sorter label {
  float: left;
  margin-right: 5px; }

.sorter label:after {
  content: ':'; }

.sorter > .sort-by {
  float: left;
  margin-right: 5px;
  height: 30px; }

.sorter > .sort-by .sort-by-switcher {
  width: 30px;
  height: 30px;
  display: inline-block; }

.sorter > .sort-by .sort-by-switcher--asc {
  background-position: 4px -542px; }

.sorter > .sort-by .sort-by-switcher--asc:hover {
  background-position: -46px -542px; }

.sorter > .sort-by .sort-by-switcher--desc {
  background-position: 4px -567px; }

.sorter > .sort-by .sort-by-switcher--desc:hover {
  background-position: -46px -567px; }

.sorter > .view-mode {
  float: right; }

.sorter > .view-mode .grid,
.sorter > .view-mode .list {
  float: left;
  width: 30px;
  height: 30px; }

.sorter > .view-mode .grid {
  margin-right: 5px;
  background-position: 8px -492px; }

.sorter > .view-mode strong.grid,
.sorter > .view-mode a.grid:hover {
  background-position: -42px -492px; }

.sorter > .view-mode .list {
  background-position: 11px -517px; }

.sorter > .view-mode strong.list,
.sorter > .view-mode a.list:hover {
  background-position: -39px -517px; }

.pager {
  float: right;
  overflow: hidden; }

.pager > .count-container {
  float: left; }

.pager .amount {
  float: left;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  white-space: nowrap;
  margin: 0 15px 0 0; }

.pager .limiter {
  float: left;
  height: 30px;
  line-height: 30px; }

.pager .limiter > label {
  padding-right: 5px; }

.pager .limiter > label:after {
  content: ':'; }

.pager .amount,
.pager .limiter,
.pager .pages {
  margin-bottom: 5px; }

.pages {
  float: right;
  overflow: hidden;
  margin-left: 15px; }

.pages strong {
  display: none; }

.pages li {
  float: left; }

.pages a,
.pages .current {
  display: inline-block;
  border: 0;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 30px;
  width: 25px;
  height: 30px;
  padding: 0;
  color: #3399cc;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif; }

.pages .current,
.pages .current:hover {
  color: #636363;
  border: 1px solid #cccccc;
  width: 30px;
  background-color: #FFFFFF;
  cursor: default; }

.pages .next,
.pages .previous {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  position: relative; }

.pages .next:hover,
.pages .previous:hover {
  border: 1px solid #3399cc; }

.pages .next:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #3399cc;
  border-right: none;
  top: 50%;
  margin-top: -3px;
  left: 50%;
  margin-left: -2px; }

.pages .next:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #246b8f;
  border-right: none; }

.pages .previous:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #3399cc;
  border-left: none;
  top: 50%;
  margin-top: -3px;
  left: 50%;
  margin-left: -2px; }

.pages .previous:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #246b8f;
  border-left: none; }

@media only screen and (max-width: 479px) {
  .pager .amount--has-pages {
    display: none; }
  .pages {
    float: left; }
  .limiter label {
    display: none; } }

@media only screen and (max-width: 770px) {
  .col1-layout .sorter,
  .col1-layout .pager {
    width: 100%; }
  .col1-layout .pager {
    float: left;
    clear: both; }
  .col1-layout .pager .pages {
    float: left;
    margin-left: 0; }
  .col1-layout .pager .count-container {
    float: right; } }

@media only screen and (max-width: 979px) {
  .col2-left-layout .sorter,
  .col2-left-layout .pager,
  .col2-right-layout .sorter,
  .col2-right-layout .pager,
  .col3-layout .sorter,
  .col3-layout .pager {
    width: 100%; }
  .col2-left-layout .pager,
  .col2-right-layout .pager,
  .col3-layout .pager {
    float: left;
    clear: both; }
  .col2-left-layout .pager .pages,
  .col2-right-layout .pager .pages,
  .col3-layout .pager .pages {
    float: left;
    margin-left: 0; }
  .col2-left-layout .pager .count-container,
  .col2-right-layout .pager .count-container,
  .col3-layout .pager .count-container {
    float: right; } }

@media only screen and (max-width: 1279px) {
  .toolbar .view-mode > label {
    display: none; } }

/* ============================================ *
 * Tax - Full Tax Summary
 * ============================================ */
#checkout-review-table .summary-collapse,
#shopping-cart-totals-table .summary-collapse,
body.customer-account .data-table .summary-collapse {
  position: relative;
  cursor: pointer; }

#checkout-review-table .summary-collapse:before,
#shopping-cart-totals-table .summary-collapse:before,
body.customer-account .data-table .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #3399cc;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px; }

#checkout-review-table .summary-collapse:hover:before,
#shopping-cart-totals-table .summary-collapse:hover:before,
body.customer-account .data-table .summary-collapse:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #246b8f;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px; }

#checkout-review-table .show-details .summary-collapse:before,
#shopping-cart-totals-table .show-details .summary-collapse:before,
body.customer-account .data-table .show-details .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #3399cc;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px; }

#checkout-review-table .show-details .summary-collapse:hover:before,
#shopping-cart-totals-table .show-details .summary-collapse:hover:before,
body.customer-account .data-table .show-details .summary-collapse:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #246b8f;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px; }

#shopping-cart-totals-table tfoot td .summary-collapse:before, #shopping-cart-totals-table tfoot td .summary-collapse:hover:before {
  margin-bottom: 5px; }

/* ============================================ *
 * Widgets
 * ============================================ */
.widget .pager {
  float: none;
  width: 100%; }

/* ============================================ *
 * Magento Helpers
 * ============================================ */
.a-center {
  text-align: center; }

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

.no-display {
  display: none !important; }

.nobr,
.nowrap {
  white-space: nowrap; }

.width-full {
  width: 100%; }

/* ============================================ *
 * Print Styles
 * ============================================ */
.page-print .print-head {
  margin: 0 0 15px; }

.page-print .print-head .logo {
  float: none;
  max-height: 50px;
  width: auto; }

/* ============================================ *
 * FORMS - COMMON
 * ============================================ */
/* -------------------------------------------- *
 * Fieldsets
 */
.fieldset p {
  margin-bottom: 7px; }

.fieldset p.required {
  margin-bottom: 5px;
  float: right;
  font-size: 12px;
  margin-top: 0px; }

.fieldset + .fieldset {
  margin-top: 5px; }

form .legend {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid #ededed; }

/* -------------------------------------------- *
 * Input Box
 */
.input-box {
  padding-top: 2px;
  max-width: 100%; }

.input-box:after {
  content: '';
  display: table;
  clear: both; }

/* For adjacent select inputs. */
/* Example: credit card expiration month and year. */
.input-box .v-fix {
  float: left;
  margin-right: 5px; }

/* -------------------------------------------- *
 * Labels
 */
label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none; }

label.required:after,
span.required:after {
  content: ' *';
  color: red;
  font-weight: normal;
  font-size: 12px;
  vertical-align: top; }

label.required em,
span.required em {
  display: none; }

/* -------------------------------------------- *
 * Hints
 */
.input-hint {
  color: #a0a0a0;
  font-size: 12px; }

/* -------------------------------------------- *
 * Select
 */
select {
  font-size: 14px; }

select + select {
  margin-left: 5px; }

select[multiple] {
  width: 270px;
  border: 1px solid silver;
  font-size: 15px;
  padding: 5px; }

/* -------------------------------------------- *
 * Textarea
 */
textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  width: 450px;
  padding: 5px; }

/* -------------------------------------------- *
 * Inputs
 */
.input-text {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid silver;
  background: #FFFFFF;
  font-size: 15px; }

.input-text:focus {
  border: 1px solid #3399cc; }

.input-text.validation-failed {
  border-color: red; }

.input-text.validation-failed:focus {
  outline-color: #ff7f7f; }

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  height: 30px;
  padding: 0 8px; }

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  width: 365px;
  max-width: 100%; }

/* Only show on iPhones (not iPads or any other device) */
@media only screen and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 0) {
  input[type=email],
  input[type=search],
  input[type=number],
  input[type=password],
  input[type=tel],
  input[type=text],
  select {
    font-size: 16px;
    /* Prevent from zooming on focus */ }
  .landing-main-list {
    border: #3399cc 2px solid;
    margin: 5% auto;
    width: 100%; } }

.ie8 .input-text {
  max-width: none; }

input::-webkit-input-placeholder {
  color: #999999;
  padding-top: 3px;
  padding-left: 5px;
  font-size: 12px; }

input::-moz-placeholder {
  color: #999999;
  padding-top: 3px;
  padding-left: 5px;
  font-size: 12px; }

input:-moz-placeholder {
  color: #999999;
  padding-top: 3px;
  padding-left: 5px;
  font-size: 12px; }

input:-ms-input-placeholder {
  color: #999999;
  padding-top: 3px;
  padding-left: 5px;
  font-size: 12px; }

/* -------------------------------------------- *
 * Inputs - Quantity
 */
input[type=number].qty,
input[type=text].qty {
  width: 4em;
  text-align: center;
  vertical-align: middle; }

/* -------------------------------------------- *
 * Placeholder
 */
::-webkit-input-placeholder {
  color: #a0a0a0; }

input:-moz-placeholder {
  color: #a0a0a0; }

/* -------------------------------------------- *
 * Checkbox And Radio
 */
.checkbox,
.radio {
  position: relative;
  top: -1px;
  display: inline-block; }

.checkbox + label,
.radio + label {
  width: auto;
  max-width: 85%;
  padding: 0 0 0 8px;
  font-weight: normal;
  vertical-align: top; }

/* -------------------------------------------- *
 * Validation
 */
p.required,
.validation-advice {
  margin: 5px 0 0;
  color: red;
  font-size: 13px; }

/* ============================================ *
 * Form List
 * ============================================ */
.form-list > li {
  margin-bottom: 10px; }

.form-list label {
  font-weight: bold; }

.form-list select {
  margin-top: 4px;
  width: 365px;
  max-width: 100%; }

.form-list .input-range .input-text {
  width: 74px; }

.form-list .field,
.form-list .wide,
.form-list .control {
  margin-bottom: 10px; }

/* Turn the label of controls (radio/checkbox) into a button style that wraps the input */
.form-list .control,
.sp-methods dt,
#checkout-shipping-method-load .sp-methods dd,
#co-shipping-method-form .sp-methods dd,
.product-options ul.options-list {
  /* When a label is next to an input that is set to not display, we should style the label in a non-clickable state */ }

.form-list .control div.input-box,
.sp-methods dt div.input-box,
#checkout-shipping-method-load .sp-methods dd div.input-box,
#co-shipping-method-form .sp-methods dd div.input-box,
.product-options ul.options-list div.input-box {
  display: inline;
  float: left; }

.form-list .control div.input-box:after,
.sp-methods dt div.input-box:after,
#checkout-shipping-method-load .sp-methods dd div.input-box:after,
#co-shipping-method-form .sp-methods dd div.input-box:after,
.product-options ul.options-list div.input-box:after {
  display: none; }

.form-list .control input.radio,
.form-list .control input.checkbox,
.sp-methods dt input.radio,
.sp-methods dt input.checkbox,
#checkout-shipping-method-load .sp-methods dd input.radio,
#checkout-shipping-method-load .sp-methods dd input.checkbox,
#co-shipping-method-form .sp-methods dd input.radio,
#co-shipping-method-form .sp-methods dd input.checkbox,
.product-options ul.options-list input.radio,
.product-options ul.options-list input.checkbox {
  float: left;
  margin-right: -40px;
  margin-top: 10px;
  margin-left: 15px; }

.form-list .control label,
.sp-methods dt label,
#checkout-shipping-method-load .sp-methods dd label,
#co-shipping-method-form .sp-methods dd label,
.product-options ul.options-list label {
  color: #636363;
  padding: 5px 10px;
  display: inline-block;
  width: auto;
  max-width: none;
  min-width: 250px;
  float: none;
  padding: 6px 10px 6px 40px; }

.form-list .control label:hover,
.sp-methods dt label:hover,
#checkout-shipping-method-load .sp-methods dd label:hover,
#co-shipping-method-form .sp-methods dd label:hover,
.product-options ul.options-list label:hover {
  background-color: #e7e7e7; }

.form-list .control .no-display + label,
.sp-methods dt .no-display + label,
#checkout-shipping-method-load .sp-methods dd .no-display + label,
#co-shipping-method-form .sp-methods dd .no-display + label,
.product-options ul.options-list .no-display + label {
  padding-left: 10px;
  background-color: transparent; }

.form-list .control .no-display + label:hover,
.sp-methods dt .no-display + label:hover,
#checkout-shipping-method-load .sp-methods dd .no-display + label:hover,
#co-shipping-method-form .sp-methods dd .no-display + label:hover,
.product-options ul.options-list .no-display + label:hover {
  background-color: transparent; }

.product-options ul.options-list label,
.col2-set .form-list .control label {
  min-width: inherit;
  width: 250px;
  max-width: 100%; }

.col2-set .form-list .control label {
  font-weight: bold;
  font-size: 13px;
  padding: 8px 10px 6px 40px; }

.form-list .control.remember-me-box label {
  width: auto;
  max-width: none;
  min-width: inherit; }

.form-list .control.remember-me-box label {
  background-color: inherit; }

.form-list .control {
  margin-top: 10px; }

.form-list .control label {
  float: none; }

.form-list .control .radio,
.form-list .control .checkbox {
  margin-right: 6px; }

.form-list .control .input-box {
  clear: none;
  display: inline-block;
  width: auto;
  padding: 0; }

::-webkit-input-placeholder {
  font-style: italic; }

:-moz-placeholder {
  font-style: italic; }

::-moz-placeholder {
  font-style: italic; }

:-ms-input-placeholder {
  font-style: italic; }

form .form-instructions {
  font-style: italic;
  font-size: 13px;
  color: #a0a0a0; }

/* ============================================ *
 * Table Helpers
 * ============================================ */
.hide-th {
  text-indent: -9999px; }

/* ============================================ *
 * Data Table
 * ============================================ */
.data-table {
  width: 100%; }

.data-table td,
.data-table th {
  padding: 10px 5px;
  vertical-align: top; }

.data-table th {
  background: #f4f4f4;
  line-height: 1.4;
  white-space: nowrap; }

.data-table thead th,
.data-table tbody td {
  border-bottom: 1px solid silver; }

.data-table tfoot tr {
  background: #f4f4f4; }

.data-table tbody td .item-options {
  margin-left: 20px;
  margin-top: 10px; }

.data-table tbody td .item-options dt:after {
  content: ':'; }

.data-table .button {
  padding: 2px 5px;
  text-transform: none;
  width: 80px;
  white-space: normal; }

/* ============================================ *
 * Zebra-Stripe Table
 * ============================================ */
.zebra-table tr:first-child,
.zebra-table th:first-child {
  border-top: 1px solid silver; }

.zebra-table td,
.zebra-table th {
  border-bottom: 1px solid silver;
  padding: 6px;
  background-color: transparent; }

.zebra-table tr {
  background-color: #eeeded; }

.zebra-table tr:nth-child(odd) {
  background-color: #f8f7f5; }

/* ============================================ *
 * Linearize Table
 * ============================================ */
@media only screen and (max-width: 479px) {
  .linearize-table {
    /* Helpers */ }
  .linearize-table tr,
  .linearize-table th,
  .linearize-table td {
    display: block; }
  .linearize-table thead th {
    border-right: 0;
    border-left: 0; }
  .linearize-table thead th.lin-hide {
    display: none; }
  .linearize-table thead th:nth-child(1n+2) {
    display: none; }
  .linearize-table tbody tr {
    position: relative;
    border-bottom: 1px solid #cccccc; }
  .linearize-table tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0; }
  .linearize-table tbody td.lin-hide {
    display: none; }
  .linearize-table tbody td:first-child {
    padding-top: 10px; }
  .linearize-table tbody td:first-child,
  .linearize-table tbody td:first-child h3 {
    font-weight: bold; }
  .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px; }
  .linearize-table tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    padding-right: 5px;
    text-transform: uppercase; }
  .linearize-table tfoot tr {
    display: block;
    text-align: right; }
  .linearize-table tfoot tr:after {
    content: '';
    display: table;
    clear: both; }
  .linearize-table tfoot td {
    display: block;
    float: left; }
  .linearize-table tfoot td.lin-hide {
    display: none; }
  .linearize-table tfoot td:nth-child(odd) {
    clear: left;
    width: 60%; }
  .linearize-table tfoot td:nth-child(even) {
    text-align: left;
    width: 40%; }
  .linearize-table .linearize-hide {
    display: none; }
  .linearize-table .linearize-unpad {
    padding: 0; }
  .linearize-table .linearize-show {
    display: block; } }

@media only screen and (max-width: 599px) {
  .linearize-table-large {
    /* Helpers */ }
  .linearize-table-large tr,
  .linearize-table-large th,
  .linearize-table-large td {
    display: block; }
  .linearize-table-large thead th {
    border-right: 0;
    border-left: 0; }
  .linearize-table-large thead th.lin-hide {
    display: none; }
  .linearize-table-large thead th:nth-child(1n+2) {
    display: none; }
  .linearize-table-large tbody tr {
    position: relative;
    border-bottom: 1px solid #cccccc; }
  .linearize-table-large tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0; }
  .linearize-table-large tbody td.lin-hide {
    display: none; }
  .linearize-table-large tbody td:first-child {
    padding-top: 10px; }
  .linearize-table-large tbody td:first-child,
  .linearize-table-large tbody td:first-child h3 {
    font-weight: bold; }
  .linearize-table-large tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px; }
  .linearize-table-large tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    padding-right: 5px;
    text-transform: uppercase; }
  .linearize-table-large tfoot tr {
    display: block;
    text-align: right; }
  .linearize-table-large tfoot tr:after {
    content: '';
    display: table;
    clear: both; }
  .linearize-table-large tfoot td {
    display: block;
    float: left; }
  .linearize-table-large tfoot td.lin-hide {
    display: none; }
  .linearize-table-large tfoot td:nth-child(odd) {
    clear: left;
    width: 60%; }
  .linearize-table-large tfoot td:nth-child(even) {
    text-align: left;
    width: 40%; }
  .linearize-table-large .linearize-hide {
    display: none; }
  .linearize-table-large .linearize-unpad {
    padding: 0; }
  .linearize-table-large .linearize-show {
    display: block; } }

@media only screen and (min-width: 600px) {
  .linearize-table .linearize-collapse {
    display: none; } }

/* ============================================ *
 * Catalog Event
 * ============================================ */
.event-container {
  clear: both;
  border: 1px solid #3399cc;
  position: relative;
  z-index: 2;
  border-width: 1px 1px;
  margin-top: 7px;
  height: 59px; }

.event-container:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #3399cc;
  border-bottom: none;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px; }

.event-container .event {
  padding-bottom: 18px;
  margin-bottom: -18px;
  padding-top: 5px;
  height: 52px;
  line-height: 50px;
  text-align: center;
  width: auto;
  position: relative;
  z-index: 2;
  border-bottom: 0 !important; }

.event-container .event .event-ticker {
  display: inline;
  font-size: 28px;
  height: auto; }

.event-container .event .event-ticker span {
  line-height: 50px;
  height: 50px;
  padding: 0; }

.event-container .container {
  display: inline;
  margin: 0;
  padding: 0;
  background: none; }

.event-container .status {
  display: inline;
  margin: 0 10px 0 0;
  background: none;
  font-size: 22px; }

.event-container .event-dates {
  display: inline;
  font-size: 22px;
  height: auto; }

.event-container .event-dates div,
.event-container .event-dates p {
  display: inline; }

.event-container .event-dates .time-part {
  font-size: 14px; }

/* ============================================ *
 * Catalog - Product
 * ============================================ */
.product-view .product-essential .extra-info .ratings .rating-box,
.product-view .product-essential .extra-info .ratings .amount {
  float: left; }

.product-view .product-essential .extra-info .ratings .rating-box {
  margin-top: 8px;
  margin-right: 10px; }

.product-view .product-essential .extra-info .ratings:after {
  content: '';
  display: table;
  clear: both; }

.product-view .product-essential:after {
  content: '';
  display: table;
  clear: both; }

.product-view .product-shop .product-name .h1,
.product-view .product-img-box .product-name h1 {
  color: #3399cc;
  margin-bottom: 10px;
  border: 0; }

.product-view .product-shop {
  width: 50%;
  float: right; }

.product-view .product-shop .product-name {
  display: none;
  float: left; }

.product-view .product-shop .product-name .h1 {
  float: left;
  margin-bottom: 5px; }

.product-view .product-shop .extra-info {
  float: left;
  padding-right: 15px;
  clear: left; }

.product-view .product-shop .price-info {
  float: right;
  padding-left: 15px;
  text-align: right; }

.product-view .product-shop .extra-info,
.product-view .product-shop .price-info {
  max-width: 50%;
  margin-bottom: 10px; }

.product-view .product-shop .short-description {
  margin-bottom: 10px;
  clear: left; }

.product-view .product-shop .ratings {
  margin-bottom: 8px; }

.product-view .product-shop .availability {
  font-size: 16px; }

.product-view .product-shop .price-box {
  margin-top: 0; }

.product-view .product-shop .price-box .old-price,
.product-view .product-shop .price-box .special-price,
.product-view .product-shop .price-box .regular-price {
  padding-right: 0;
  line-height: 1.2; }

.product-view .product-shop .price-box .regular-price .price,
.product-view .product-shop .price-box .special-price .price,
.product-view .product-shop .price-box .full-product-price .price {
  color: #3399cc;
  font-size: 24px; }

.product-view .product-shop .price-box .special-price .price-label {
  font-size: 16px;
  text-transform: uppercase; }

.product-view .product-shop .price-box .price-excluding-tax,
.product-view .product-shop .price-box .price-including-tax {
  display: block;
  line-height: 1.2; }

.product-view .product-shop .price-box .price-excluding-tax .label,
.product-view .product-shop .price-box .price-including-tax .label {
  font-size: 16px;
  font-weight: 300; }

.product-view .product-shop .price-box .price-excluding-tax .price,
.product-view .product-shop .price-box .price-including-tax .price {
  font-size: 20px; }

.product-view .old-price .price-label {
  display: none; }

.product-view .add-to-cart-wrapper,
.product-view .block-related {
  width: 50%;
  float: right;
  clear: right; }

@media only screen and (max-width: 850px) {
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 15px; }
  .product-view .product-shop .price-box .price-excluding-tax .price,
  .product-view .product-shop .price-box .price-including-tax .price {
    font-size: 18px; } }

@media only screen and (max-width: 770px) {
  .product-view .add-to-cart-wrapper {
    float: none;
    width: 100%;
    clear: both; }
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 16px; }
  .product-view .product-shop .price-box .price-excluding-tax .price,
  .product-view .product-shop .price-box .price-including-tax .price {
    font-size: 20px; } }

@media only screen and (max-width: 420px) {
  .product-view .product-shop .price-box .price-excluding-tax,
  .product-view .product-shop .price-box .price-including-tax {
    margin-bottom: 5px; }
  .product-view .product-shop .price-box .price-excluding-tax span,
  .product-view .product-shop .price-box .price-including-tax span {
    display: block; }
  .social .social-icons, .footer .links {
    margin: 0; } }

.product-img-box {
  width: 50%;
  float: left; }

.product-img-box .product-name h1 {
  border: 0; }

.product-img-box .product-image {
  margin-bottom: 10px; }

.product-img-box .product-image img {
  max-width: 100%;
  max-height: 750px;
  margin: 0px auto; }

@media only screen and (max-width: 479px) {
  .product-img-box .product-image img {
    max-height: 450px; } }

.product-image-gallery {
  position: relative; }

.product-image-gallery .gallery-image {
  display: none; }

.product-image-gallery .gallery-image.visible {
  display: block; }

.product-image-gallery .gallery-image.visible.hidden {
  visibility: hidden; }

.product-image-gallery:before, .product-image-gallery:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none; }

.product-image-gallery:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2; }

.product-image-gallery:after {
  background-image: url("../../default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3; }

.product-image-gallery.loading {
  position: relative; }

.product-image-gallery.loading:before, .product-image-gallery.loading:after {
  display: block; }

.product-image-thumbs li {
  display: inline-block; }

.product-image-thumbs li:first-child {
  margin-left: -1px; }

.product-image-thumbs a {
  display: inline-block;
  border: 1px solid transparent; }

.no-touch .product-image-thumbs a:hover {
  border-color: #c7c7c7; }

.product-view .product-shop,
.product-view .add-to-cart-wrapper,
.product-view .block-related {
  padding-left: 15px; }

.product-img-box {
  padding-right: 15px; }

.product-view .product-shop,
.product-img-box,
.product-collateral,
.product-view .block-related,
.box-collateral {
  margin-bottom: 10px; }

.product-view {
  /* Set a min-height so that the floated elements break appropriately */ }

.product-view .add-to-box:after,
.product-view .add-to-cart:after {
  content: '';
  display: table;
  clear: both; }

.product-view .add-to-cart {
  padding-bottom: 3px;
  margin-bottom: 10px;
  border-bottom: 1px solid #cccccc; }

.product-view .add-to-cart .qty-wrapper,
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart-buttons {
  min-height: 40px; }

.product-view .product-options-bottom .price-box,
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart-buttons .button,
.product-view .add-to-cart-buttons .paypal-logo {
  margin-bottom: 10px; }

.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart .qty-wrapper label {
  margin-right: 7px;
  float: left; }

.product-view .add-to-cart .qty-wrapper label {
  line-height: 40px; }

.product-view .add-to-cart .qty-wrapper .qty {
  float: left;
  height: 40px; }

.product-view .add-to-cart-buttons {
  float: left;
  margin-right: 10px; }

.product-view .add-to-cart-buttons .paypal-logo {
  clear: left;
  text-align: center; }

.product-view .add-to-cart-buttons .paypal-logo .paypal-button {
  margin: 0 auto;
  display: block;
  width: 145px; }

.product-view .add-to-cart-buttons .paypal-logo .bml_button {
  display: block;
  width: 150px;
  margin: 0 auto; }

.product-view .add-to-cart-buttons .paypal-logo .bml_button a {
  text-align: center; }

.product-view .add-to-cart-buttons .paypal-logo .paypal-or {
  display: block;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  line-height: 1;
  text-align: center; }

.product-view .add-to-cart-buttons .button {
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  padding: 0px 30px;
  float: left;
  min-width: 160px;
  width: 100%; }

@media only screen and (max-width: 479px) {
  .product-view .add-to-cart-buttons .paypal-or {
    line-height: 20px; }
  .product-view .add-to-cart-buttons .paypal-logo,
  .product-view .add-to-cart-buttons .paypal-or,
  .product-view .add-to-cart-buttons .paypal-button,
  .product-view .add-to-cart-buttons .button {
    text-align: center;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-left: 0;
    float: none; } }

/* This is the "or" that separates the "Add to Cart" and "Add to X" links */
.add-to-box .or {
  display: none; }

.product-view .add-to-links {
  clear: both;
  margin-top: 0px;
  margin-right: 15px;
  float: left; }

.product-view .add-to-links:after {
  content: '';
  display: table;
  clear: both; }

.product-view .add-to-links li {
  float: left; }

.product-view .add-to-links a {
  padding: 2px 7px 2px 0px;
  margin-left: 7px;
  border-right: 1px solid #cccccc; }

.product-view .add-to-links li:first-child a {
  margin-left: 0px; }

.product-view .add-to-links li:last-child a {
  border-right: 0px; }

.product-view .sharing-links {
  float: left; }

.product-view .sharing-links:after {
  content: '';
  display: table;
  clear: both; }

.product-view .sharing-links li {
  float: left;
  padding: 0px 7px 7px; }

.product-view .sharing-links a {
  text-indent: -9999px;
  display: block;
  width: 26px;
  height: 26px; }

.product-view .sharing-links a:hover {
  opacity: 0.8; }

.product-view .sharing-links a.link-wishlist {
  background-position: 0px -225px; }

.product-view .sharing-links a.link-compare {
  background-position: 0px -250px; }

.product-view .sharing-links a.link-email-friend {
  background-position: 0px -322px; }

.product-view .sharing-links a.link-facebook {
  background-position: 0px -425px; }

.product-view .sharing-links a.link-twitter {
  background-position: 0px -372px; }

@media only screen and (max-width: 599px) {
  .add-to-box .add-to-links a {
    float: none;
    width: auto;
    text-indent: 0; } }

.product-collateral {
  clear: both; }

.collateral-tabs dd h2 {
  display: none; }

.box-collateral {
  clear: both; }

@media only screen and (min-width: 771px) {
  .product-collateral .toggle-tabs {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #cccccc;
    background-color: #f4f4f4; }
  .product-collateral .toggle-tabs li {
    float: left;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent; }
  .product-collateral .toggle-tabs li > span {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    display: inline-block;
    padding: 0 30px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    bottom: -1px; }
  .product-collateral .toggle-tabs li.current {
    border-right: 1px solid #cccccc;
    border-left: 1px solid #cccccc; }
  .product-collateral .toggle-tabs li.current > span {
    background-color: #FFFFFF;
    z-index: 5; }
  .product-collateral .toggle-tabs li.current span,
  .product-collateral .toggle-tabs li:hover span {
    color: #3399cc; }
  .product-collateral .toggle-tabs li:first-child {
    border-left: none; }
  .product-collateral .toggle-tabs:after {
    content: '';
    display: table;
    clear: both; }
  .product-collateral > dl {
    width: 100%; }
  .product-collateral > dl > dt {
    display: none; }
  .product-collateral > dl > dd {
    width: 100%;
    display: none;
    padding: 15px;
    border: 1px solid #cccccc;
    border-top: 0; }
  .product-collateral > dl > dd.current {
    display: block; }
  .social .social-icons {
    margin: 0; } }

@media only screen and (max-width: 770px) {
  .product-collateral .toggle-tabs {
    display: none; }
  .product-collateral > dl > dt {
    margin: 0;
    margin-bottom: 10px;
    color: #636363;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: uppercase;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #cccccc;
    position: relative;
    background-color: #f4f4f4;
    display: block; }
  .product-collateral > dl > dt:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #3399cc;
    border-bottom: none;
    left: 10px;
    top: 50%;
    margin-top: -3px; }
  .product-collateral > dl > dd {
    padding: 10px;
    margin: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #cccccc; }
  .product-collateral > dl > dd:last-child {
    border-width: 0 1px 1px 1px; }
  .product-collateral > dl > dt {
    cursor: pointer;
    border-bottom-width: 0; }
  .product-collateral > dl > dt:hover {
    color: #3399cc; }
  .product-collateral > dl > dt:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #3399cc;
    border-right: none; }
  .product-collateral > dl > dt.last {
    border-bottom-width: 1px; }
  .product-collateral > dl > dd {
    display: none; }
  .product-collateral.accordion-open > dl > dt.current {
    border-bottom-width: 1px; }
  .product-collateral.accordion-open > dl > dt.current:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #3399cc;
    border-bottom: none;
    left: 6px;
    top: 50%;
    margin-top: -3px; }
  .product-collateral.accordion-open > dl > dd.current {
    display: block; } }

@media only screen and (max-width: 770px) {
  .product-view .product-shop,
  .product-view .add-to-cart-wrapper,
  .product-view .block-related,
  .product-img-box,
  .product-collateral {
    width: 100%;
    float: none;
    padding-right: 0;
    padding-left: 0; } }

@media only screen and (min-width: 771px) {
  .product-view .product-shop .product-name {
    display: block; }
  .product-img-box .product-name {
    display: none; } }

@media only screen and (max-width: 479px) {
  .product-view .product-shop,
  .product-img-box,
  .product-collateral,
  .product-view .block-related,
  .box-collateral {
    margin-bottom: 15px; } }

.product-view .ratings .rating-links {
  clear: left;
  float: left;
  margin-top: 0; }

#product-attribute-specs-table {
  max-width: 50em;
  border: 1px solid silver; }

#product-attribute-specs-table th {
  border-right: 1px solid silver;
  border-bottom: 1px solid silver; }

/* -------------------------------------------- *
 * Catalog - Grouped Product List
 */
.grouped-items-table-wrapper {
  border: solid 1px silver;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px; }

.grouped-items-table-wrapper tbody tr:last-child td {
  border-bottom: none; }

@media only screen and (max-width: 479px) {
  .grouped-items-table-wrapper {
    margin-bottom: 15px; } }

.grouped-items-table .name-wrapper {
  color: #3399cc; }

.grouped-items-table .qty-wrapper {
  padding-top: 7px; }

.grouped-items-table .qty-label {
  margin-left: 7px; }

.grouped-items-table td {
  padding: 4px; }

/* -------------------------------------------- *
 * Catalog - Product Options
 */
.product-options {
  width: 100%;
  margin: 10px 0 0;
  padding: 10px 15px 15px;
  border: 1px solid #cccccc;
  clear: both;
  position: relative; }

.product-options p.required {
  position: absolute;
  top: 6px;
  right: 15px; }

.product-options dt {
  margin: 10px 0 3px;
  font-weight: normal; }

.product-options dt:first-child {
  margin-top: 0; }

.product-options dd .qty-holder {
  display: block;
  padding: 10px 0 0 0; }

.product-options dd .qty-holder .qty {
  width: 4em; }

.product-options dd .qty-holder label {
  vertical-align: middle; }

.product-options dd .qty-disabled {
  background: none;
  border: 0;
  padding: 0 2px; }

.product-options dd {
  padding: 0 0 10px 0;
  margin: 0 0 5px;
  border-bottom: 1px solid #ededed; }

.product-options dl.last dd.last {
  border-bottom: 0;
  padding-bottom: 5px;
  margin-bottom: 0; }

.product-options dd .input-text {
  width: 98%; }

.product-options dd .input-box {
  padding-top: 0; }

.product-options dd input.datetime-picker {
  width: 150px; }

.product-options dd .time-picker {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  padding: 2px 0;
  vertical-align: middle; }

.product-options dd textarea {
  width: 98%;
  height: 8em; }

.product-options dd select {
  width: 330px;
  max-width: 100%; }

.product-options ul.options-list {
  margin-right: 5px; }

.product-options ul.options-list li {
  line-height: 1.5;
  margin-bottom: 7px; }

.product-options ul.options-list li:last-child {
  margin-bottom: 0; }

.product-options ul.options-list .radio,
.product-options ul.options-list .checkbox {
  float: left;
  margin-top: 5px; }

.product-options ul.options-list .label {
  display: block; }

.product-options ul.options-list label {
  font-weight: normal; }

.product-options p.note {
  margin: 0;
  font-size: 11px; }

.product-options-bottom {
  background-color: #f4f4f4;
  padding: 15px 20px;
  border: 1px solid #cccccc;
  border-top: 0;
  margin-bottom: 10px; }

.product-options-bottom:after {
  content: '';
  display: table;
  clear: both; }

.product-options-bottom .product-pricing,
.product-options-bottom .tier-prices {
  float: right;
  margin: 0;
  padding: 0 0 10px;
  border: 0;
  background: 0;
  color: #636363; }

@media only screen and (max-width: 479px) {
  .product-options-bottom .product-pricing,
  .product-options-bottom .tier-prices {
    float: none;
    width: 100%;
    text-align: right;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #cccccc; } }

.product-options-bottom .tier-prices li {
  background: 0;
  padding: 2px 0; }

.product-options-bottom .tier-prices .price,
.product-options-bottom .tier-prices .benefit {
  color: #636363; }

/* "display: none" should be removed if products on site have a long list of product options and those product options */
/*  affect the price so that the customer can see the updated price close to the "Add to Cart" button */
.product-options-bottom .price-box {
  display: none;
  float: right;
  margin: 0 0 10px;
  padding: 0; }

@media only screen and (max-width: 479px) {
  .product-options-bottom .price-box .price-as-configured {
    text-align: right; }
  .product-options-bottom .price-box .price-as-configured .price-label {
    display: block; } }

.product-options-bottom .price-tax {
  float: left; }

/* -------------------------------------------- *
 * Related Products
 */
/* Block: Related */
.block-related li {
  margin-bottom: 7px; }

.block-related .block-title {
  border-bottom: none; }

.block-related .block-title h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #636363;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  margin-bottom: 0; }

.block-related .block-subtitle {
  margin-bottom: 7px; }

.block-related .product {
  margin-left: 20px;
  position: relative; }

.block-related .checkbox {
  float: left;
  margin-top: 36px; }

.block-related .product-details {
  margin-left: 90px; }

.block-related .product-name {
  margin-bottom: 3px; }

.block-related .product-details .price-box {
  margin: 2px 0 3px; }

.block-related .product-details .price-box a,
.block-related .product-details .price-box p,
.block-related .product-details .price-box span {
  float: left;
  margin-left: 3px; }

.block-related .product-details .price-box a:first-child,
.block-related .product-details .price-box p:first-child,
.block-related .product-details .price-box span:first-child {
  margin-left: 0; }

.block-related .product-details .price-box:after {
  content: '';
  display: table;
  clear: both; }

.block-related .link-wishlist {
  display: none; }

/* -------------------------------------------- *
 * Upsell Products
 */
.box-up-sell {
  margin-top: 20px; }

.box-up-sell .ratings {
  display: none; }

/* ============================================ *
 * Catalog - MSRP MAP Popup
 * ============================================ */
.cart-msrp-totals {
  color: red;
  font-size: 12px !important;
  font-weight: bold;
  margin: 10px 10px 0;
  padding: 10px;
  text-align: right;
  text-transform: uppercase; }

.map-cart-sidebar-total {
  color: red;
  display: block;
  font-size: 10px;
  font-weight: bold;
  text-align: left;
  padding: 2px 5px; }

.map-popup {
  background: #FFFFFF;
  border: 5px solid #cccccc;
  margin: 12px 0 0;
  position: absolute;
  text-align: left;
  width: 450px;
  z-index: 100;
  top: 20%;
  left: -webkit-calc(50% - 225px);
  left: calc(50% - 225px); }

#artwork-popup.map-popup {
  position: fixed; }

@media only screen and (min-width: 771px) {
  .map-popup.map-popup-right {
    left: 10px !important; }
  .map-popup.map-popup-left {
    left: auto !important;
    right: 10px !important; } }

@media only screen and (max-width: 770px) {
  .map-popup {
    width: 100vw;
    left: 0 !important; } }

.map-popup .map-popup-heading {
  padding: 8px 10px;
  margin-right: 40px;
  width: auto; }

.map-popup .map-popup-heading h3 {
  font-size: 14px;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: break-word;
  text-align: left;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis; }

@media only screen and (max-width: 479px) {
  .map-popup .map-popup-heading h3 {
    text-align: center; } }

.map-popup .map-popup-close {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 36px;
  width: 36px;
  font-size: 20px;
  line-height: 32px;
  text-align: center; }

.map-popup .map-popup-content {
  border-top: 1px solid #ededed;
  padding: 10px;
  margin: 0 10px;
  overflow: hidden;
  text-align: left; }

@media only screen and (max-width: 479px) {
  .map-popup .map-popup-content {
    text-align: center; } }

.map-popup .map-popup-checkout {
  padding: 10px 0; }

.map-popup .map-popup-checkout form:after {
  content: '';
  display: table;
  clear: both; }

.map-popup .map-popup-checkout span {
  display: block; }

.map-popup .map-popup-checkout .button {
  float: left;
  margin: 0 2px;
  clear: left; }

.map-popup .map-popup-checkout .additional-addtocart-box {
  float: left;
  min-width: 210px; }

.map-popup .map-popup-checkout .additional-addtocart-box li {
  list-style-type: none; }

.map-popup .map-popup-checkout .paypal-logo {
  width: auto; }

.map-popup .map-popup-checkout .paypal-logo a {
  display: inline-block;
  float: left;
  clear: left; }

.map-popup .map-popup-checkout .paypal-logo .paypal-or {
  float: left;
  text-align: center;
  padding: 5px 15px;
  clear: left; }

.map-popup .map-popup-checkout .paypal-logo:after {
  content: '';
  display: table;
  clear: both; }

.map-popup .map-popup-checkout .paypal-logo .bml_button a {
  clear: left; }

@media only screen and (max-width: 479px) {
  .map-popup .map-popup-checkout {
    text-align: center; }
  .map-popup .map-popup-checkout .button,
  .map-popup .map-popup-checkout .additional-addtocart-box,
  .map-popup .map-popup-checkout .paypal-logo a,
  .map-popup .map-popup-checkout .paypal-logo .paypal-or {
    float: none; }
  .map-popup .map-popup-checkout .additional-addtocart-box {
    min-width: 0px; }
  .map-popup .map-popup-checkout .paypal-logo .paypal-or {
    margin: 0px;
    margin-bottom: 10px; } }

.map-popup .map-popup-checkout:after {
  content: '';
  display: table;
  clear: both; }

.map-popup .map-popup-price {
  padding: 10px 0; }

.map-popup .map-popup-price .price-box,
.map-popup .map-popup-price .price-box .special-price {
  display: inline-block;
  margin: 0;
  padding: 0; }

@media only screen and (max-width: 479px) {
  .map-popup .map-popup-price {
    text-align: center;
    padding-top: 0px; } }

.map-popup .map-popup-text {
  padding: 10px 0;
  margin: 0 10px;
  word-wrap: break-word; }

.map-popup .map-popup-text,
.map-popup .map-popup-only-text {
  border-top: 1px solid #ededed; }

/* ============================================ *
 * Catalog - Compare
 * ============================================ */
.block-compare .product-name:after {
  content: '';
  display: table;
  clear: both; }

.compare-table .product-image {
  display: inline-block; }

.compare-table .product-shop-row.top td {
  padding-bottom: 0;
  border-bottom: 0; }

.compare-table .product-shop-row.bottom td {
  padding-top: 0; }

/* ============================================ *
 * Checkout - Layout
 * ============================================ */
.cart-forms,
.cart-totals-wrapper,
.crosssell {
  float: right;
  clear: right;
  width: 40%;
  padding-left: 20px; }

.cart-forms {
  float: left;
  padding: 0; }

.cart-table,
.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  margin-bottom: 20px; }

#cart-options-after-table {
  overflow: hidden; }

.display-both-prices .cart-table {
  float: none;
  width: 100%; }

.display-both-prices .cart-forms {
  float: left;
  padding-right: 10px;
  padding-left: 0; }

.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  padding-left: 10px; }

.display-both-prices .cart-forms,
.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  width: 50%; }

.display-both-prices .crosssell {
  clear: right;
  float: right; }

@media only screen and (max-width: 979px) {
  .display-single-price .cart-table {
    float: none;
    width: 100%; }
  .display-single-price .cart-forms {
    float: left;
    padding-right: 10px;
    padding-left: 0; }
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-left: 10px; }
  .display-single-price .cart-forms,
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    width: 50%; }
  .display-single-price .crosssell {
    clear: right;
    float: right; } }

@media only screen and (max-width: 599px) {
  .product-cart-sku {
    display: none; }
  .display-both-prices .cart-forms,
  .display-both-prices .cart-totals-wrapper,
  .display-both-prices .crosssell,
  .display-single-price .cart-forms,
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    float: none;
    margin: 0 auto;
    width: 80%; } }

/* ============================================ *
 * Checkout - Cart
 * ============================================ */
.cart.loading {
  position: relative; }

.cart.loading:after,
.cart.loading:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  right: -1px;
  bottom: 0; }

.cart.loading:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2; }

.cart.loading:after {
  background-image: url("../../default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3; }

.cart .page-title {
  margin-bottom: 15px;
  border-bottom: 1px solid #ededed; }

.cart .page-title:after {
  content: '';
  display: table;
  clear: both; }

.cart .page-title h1 {
  float: left;
  border-bottom: none;
  margin-bottom: 6px;
  margin-right: 10px; }

.checkout-types {
  float: right;
  text-align: right;
  max-width: 100%;
  /* We always want this shipping method to display on its own line */ }

.checkout-types li {
  vertical-align: top;
  margin: 0 0 5px 5px; }

.checkout-types li:after {
  content: '';
  display: table;
  clear: both; }

.checkout-types li img {
  display: inline;
  vertical-align: top; }

.checkout-types li:first-child {
  margin-left: 0; }

.checkout-types .method-checkout-cart-methods-multishipping {
  display: block; }

.checkout-types.top li {
  display: inline-block; }

.checkout-types.top .bml_button {
  display: inline-block;
  vertical-align: top; }

.checkout-types.top .bml_button img {
  display: block; }

.checkout-types.bottom .paypal-logo a, .checkout-types.minicart .paypal-logo a {
  display: block; }

.checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
  margin: 0px;
  width: 150px;
  display: block;
  text-align: center;
  float: right; }

.cart .method-checkout-cart-methods-multishipping {
  display: none; }

.cart-totals .checkout-types .btn-checkout {
  margin-bottom: 7px; }

.cart-totals .checkout-types .button {
  background: #39C;
  padding: 10px 60px;
  text-transform: uppercase; }

@media only screen and (max-width: 670px) {
  .checkout-types {
    float: right; }
  .checkout-types.bottom {
    float: none;
    text-align: center; }
  .checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
    width: auto;
    float: none; }
  .checkout-types li {
    float: none;
    width: 100%;
    margin-left: 0; }
  .btn-checkout {
    width: 100%; } }

.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top; }

.cart-table .spacer,
.cart-table .spacer td {
  border: none;
  height: 20px;
  margin: 0;
  padding: 0; }

.cart-table h2 {
  color: #636363;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0; }

.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 10px 5px; }

.cart-table .product-cart-info {
  padding: 10px; }

.cart-table tbody tr,
.cart-table tbody td,
.cart-table tbody th {
  border: 1px solid silver; }

.cart-table tbody th {
  font-weight: bold; }

.cart-table tbody:last-child .spacer {
  display: none; }

.cart-table th {
  background: none; }

.cart-table tfoot tr {
  background: none;
  border: none; }

.cart-table tfoot tr td {
  padding: 5px 0; }

.cart-table tfoot tr > td:after {
  content: '';
  display: table;
  clear: both; }

.cart-table tfoot .btn-empty span,
.cart-table tfoot .btn-empty span span {
  text-transform: none; }

.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase; }

.cart-table .product-cart-image .cart-links,
.cart-table .product-cart-info .btn-remove,
.cart-table .product-cart-actions .button {
  display: none; }

.cart-table .product-cart-image {
  padding: 10px; }

.cart-table .product-cart-image .product-image img {
  max-width: 100%;
  width: 100%; }

.cart-table .product-cart-image a.cart-edit {
  display: none; }

.cart-table .product-cart-sku {
  color: #999;
  margin: 5px 0 8px; }

.cart-table .product-cart-sku .label {
  color: #636363;
  display: inline-block;
  font-weight: normal;
  min-width: 65px; }

.cart-table .data-table {
  width: auto; }

.cart-table .data-table,
.cart-table .data-table tr,
.cart-table .data-table th,
.cart-table .data-table td {
  border: none;
  padding: 5px; }

.cart-table .data-table td {
  color: #999; }

.cart-table .btn-empty {
  float: left; }

.cart-table .product-cart-total,
.cart-table .product-cart-price {
  text-align: center; }

.cart-table .cart-tax-total {
  position: relative;
  cursor: pointer; }

.cart-table .cart-tax-total:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #3399cc;
  border-left: none;
  position: absolute;
  top: 3px;
  right: -11px; }

.cart-table .cart-tax-total.cart-tax-total-expanded:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #3399cc;
  border-bottom: none;
  right: -15px;
  top: 6px; }

.cart-table .cart-links > li {
  white-space: nowrap;
  line-height: 1.3;
  margin-bottom: 5px;
  min-width: 65px;
  font-size: 13px; }

.cart-table .cart-links > li > a {
  display: block; }

.cart-table .cart-links > li:last-child {
  margin-bottom: 0; }

.cart-table .product-cart-actions {
  min-width: 60px;
  text-align: center; }

.cart-table .product-cart-actions .qty {
  height: 30px;
  border-color: silver;
  -webkit-border-radius: 0;
          border-radius: 0;
  margin-bottom: 10px;
  text-align: center;
  width: 6em; }

.cart-table .product-cart-actions .button {
  margin-bottom: 5px; }

.cart-table .item-options {
  padding-left: 15px; }

.cart-table .product-image {
  float: left;
  margin-right: 10px; }

.cart-table .product-info {
  /* overflow: hidden; */ }
  @media (max-width: 768px) {
    .cart-table .product-info {
      clear: both;
      width: 100%; } }

.cart-table td[data-rwd-label="Versions"] span {
  color: #999;
  display: block; }

@media only screen and (max-width: 770px) {
  .cart-table th {
    font-size: 12px; }
  .cart-table th,
  .cart-table td {
    padding: 7px 6px; }
  .cart-table .product-cart-actions > li {
    white-space: inherit; }
  .cart-table .thead {
    display: none; }
  .fotorama__custom--prev,
  .fotorama__custom--next {
    font-size: 18px; } }

@media only screen and (max-width: 699px) {
  .display-both-prices .cart-table thead th.cart-total-head,
  .display-both-prices .cart-table td.product-cart-total {
    display: none; } }

@media only screen and (max-width: 599px) {
  .cart-table .product-cart-actions .qty {
    width: 3em; }
  .cart-table colgroup, .cart-table thead {
    display: none; }
  .cart-table tr {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%; }
  .cart-table tr:after {
    content: '';
    display: table;
    clear: both; }
  .cart-table tfoot tr {
    padding-bottom: 0; }
  .cart-table td {
    border: none;
    display: block; }
  .cart-table .data-table tr {
    display: table-row;
    overflow: auto;
    position: static;
    width: auto; }
  .cart-table .data-table td {
    display: table-cell; }
  .cart-table td[data-rwd-label] {
    float: none;
    text-align: center;
    padding: 0;
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: 25%; }
  .cart-table td[data-rwd-label="Price"] {
    display: none; }
  .cart-table td[data-rwd-label="Versions"] span {
    padding: 0 5px 10px; }
  .product-cart-sku {
    display: block; }
  .cart-table td[data-rwd-label] .price {
    font-weight: normal; }
  .cart-table td[data-rwd-label]:after {
    content: '';
    border-right: 1px solid silver;
    position: absolute;
    top: 0;
    right: 0;
    height: 1000px;
    width: 0; }
  .cart-table td[data-rwd-label]:before {
    display: block;
    border: solid silver;
    border-width: 1px 1px 1px 0;
    padding: 4px 0;
    margin-bottom: 10px;
    content: attr(data-rwd-label);
    font-size: 12px;
    text-align: center;
    text-transform: uppercase; }
  .cart-table td[data-rwd-label]:last-child:after,
  .cart-table td[data-rwd-label]:last-child:before {
    border-right: 0; }
  .cart-table h2 {
    font-size: 12px; }
  .cart-table .cart-links {
    padding-top: 5px;
    padding-right: 5px; }
  .cart-table .cart-links > li {
    white-space: normal;
    text-align: center; }
  .cart-table .cart-links > li > a {
    padding: 2px 0px; }
  .cart-table .cart-tax-info {
    font-style: italic;
    padding-left: 15px;
    font-size: 13px; }
  .cart-table .cart-tax-info .price {
    font-size: 13px; }
  .cart-table .product-cart-image {
    width: 25%;
    float: left;
    padding-bottom: 0; }
  .cart-table .product-cart-image a.cart-edit {
    display: block;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase; }
  .cart-table .product-cart-info,
  .cart-table td[data-rwd-label] {
    border: none; }
  .cart-table .product-cart-info {
    display: block;
    overflow: hidden;
    width: 100%; }
  .cart-table .product-cart-actions,
  .cart-table .product-cart-price {
    padding-bottom: 0;
    padding-top: 0;
    float: right; }
  
  .cart-table .product-cart-total,
  .cart-table .product-cart-actions .cart-links {
    display: none; }
  .cart-table .product-cart-image .cart-links,
  .cart-table .product-cart-info .btn-remove {
    display: block; }
  .cart-table .product-cart-actions .button {
    display: none; }
  .cart-table .product-cart-info .btn-remove {
    float: right;
    margin: -4px 0px 2px 7px; }
  .cart-table .product-cart-info .product-cart-sku {
    margin-bottom: 5px; }
  .cart-table .product-cart-actions {
    text-align: left; }
  .cart-table .price,
  .cart-table .product-cart-price:before {
    font-weight: 500;
    font-size: 15px;
    font-family: "Helvetica Neue", Verdana, Arial, sans-serif; }
  .cart-table .cart-footer-actions {
    text-align: center;
    width: 100%; }
  .cart-table .cart-footer-actions #empty_cart_button {
    float: right; }
  .cart-table .cart-footer-actions .btn-continue {
    float: left; }
  .cart-table .cart-footer-actions .btn-update,
  .cart-table .cart-footer-actions span.or {
    display: none; }
  .display-both-prices .cart-table td[data-rwd-tax-label]:before {
    content: attr(data-rwd-tax-label) ":"; } }

/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
.shipping h2 {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 5px; }

.shipping select {
  max-width: 100%;
  height: 30px;
  display: block;
  border: 1px solid silver; }

.shipping select.validation-failed {
  border-color: red; }

.shipping .shipping-desc {
  display: none; }

.shipping .buttons-set {
  border: none;
  margin: 0;
  padding: 0; }

.shipping .form-list:after {
  content: '';
  display: table;
  clear: both; }

.shipping .form-list li {
  float: left;
  margin: 5px 2% 10px 0; }

.shipping .form-list .shipping-country {
  width: 37%; }

.shipping .form-list .shipping-region {
  width: 41%; }

.shipping .form-list .shipping-postcode {
  margin-right: 0;
  width: 18%; }

.shipping .form-list .shipping-postcode input {
  margin-top: 4px; }

.shipping .form-list .input-box {
  padding-top: 0; }

.shipping .form-list input {
  height: 30px;
  margin-top: 4px; }

.shipping .form-list label {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase; }

.shipping .sp-methods {
  padding: 10px 0 0;
  text-align: left; }

.shipping .sp-methods dd {
  margin-bottom: 10px; }

.shipping .sp-methods label {
  font-size: 12px;
  font-style: italic;
  min-width: 100px; }

.shipping .sp-methods label span {
  font-weight: bold;
  font-style: normal; }

.shipping #co-shipping-method-form .buttons-set .button {
  float: left;
  margin-left: 0; }

.shipping #co-shipping-method-form .sp-methods dd label {
  border: 1px solid #cccccc;
  background-color: #e7e7e7;
  min-width: 220px; }

.shipping #co-shipping-method-form .sp-methods dd label:hover {
  background-color: #dbdbdb; }

@media only screen and (max-width: 770px) {
  .shipping .shipping-form .form-list > li {
    width: 100%;
    float: none; }
  .shipping .shipping-form .form-list > li label {
    display: block; }
  .shipping .shipping-form .form-list > li input,
  .shipping .shipping-form .form-list > li select {
    width: 100%; } }

.cart .button2 {
  font-weight: bold;
  text-decoration: none; }

.cart .button2 span {
  text-decoration: none; }

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

.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both; }

.cart .cart-totals table {
  font-size: 12px;
  margin-bottom: 5px;
  width: 100%; }

.cart .cart-totals table td {
  padding: 2px 0px; }

.cart .cart-totals table td:first-child {
  padding-right: 10px;
  min-width: 120px; }

.cart .cart-totals table tfoot strong {
  font-weight: 600; }

@media only screen and (max-width: 600px) {
  .cart-totals {
    text-align: right; } }

.discount-form:after,
#giftcard-form:after {
  content: '';
  display: table;
  clear: both; }

#discount-coupon-form,
.cart .giftcard {
  width: auto; }

#discount-coupon-form h2,
.cart .giftcard h2 {
  display: none; }

#discount-coupon-form label,
.cart .giftcard label {
  font-size: 13px;
  font-weight: bold;
  text-align: left;
  max-width: 150px;
  display: block; }

#discount-coupon-form .field-wrapper,
.cart .giftcard .field-wrapper {
  display: inline-block; }

#discount-coupon-form .validation-advice,
.cart .giftcard .validation-advice {
  margin: -5px 0 5px; }

#discount-coupon-form .button-wrapper > button,
.cart .giftcard .button-wrapper > button {
  background: #999;
  text-transform: none;
  margin: 0 0 5px;
  width: 100%; }

#discount-coupon-form .button-wrapper > button:hover,
.cart .giftcard .button-wrapper > button:hover {
  background: #555; }

#discount-coupon-form .input-text,
.cart .giftcard .input-text {
  -webkit-border-radius: 0;
          border-radius: 0;
  height: 30px;
  margin: 5px 0 10px;
  width: 190px; }

.cart .giftcard p {
  margin-bottom: 7px; }

.cart .giftcard .check-gc-status {
  float: left;
  padding: 0px; }

.cart .giftcard .check-gc-status > span > span {
  font-size: 14px;
  text-transform: none; }

@media only screen and (max-width: 770px) {
  .cart .cart-totals table {
    margin: 0 auto 5px;
    width: auto; }
  .cart .cart-totals table tfoot td {
    font-weight: bold; }
  #discount-coupon-form,
  .cart .giftcard {
    margin-bottom: 20px; }
  #discount-coupon-form label,
  .cart .giftcard label {
    text-align: left; }
  #discount-coupon-form .input-text,
  .cart .giftcard .input-text {
    width: 100%; }
  #discount-coupon-form .field-wrapper,
  .cart .giftcard .field-wrapper {
    display: block; } }

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */
.crosssell h2 {
  color: #3399cc; }

.crosssell #crosssell-products-list .button,
.crosssell #crosssell-products-list .add-to-links {
  display: none; }

/* Change the layout to 2 columns at a breakpoint that is higher than a 3 columns layout would normally break */
@media only screen and (max-width: 979px) {
  .crosssell {
    /* Undo three-column config */ }
  .crosssell .products-grid > li:nth-child(even),
  .crosssell .products-grid > li:nth-child(3n),
  .crosssell .products-grid > li {
    width: 47.72727%;
    margin-right: 4.54545%; }
  .crosssell .products-grid > li:nth-child(odd) {
    clear: left; }
  .crosssell .products-grid > li:nth-child(even) {
    margin-right: 0; }
  .crosssell .products-grid > li:nth-child(3n+1) {
    clear: none; } }

@media only screen and (max-width: 320px) {
  .crosssell ul .item {
    padding: 0 0px 40px; }
  .crosssell ul .product-details .crosssell-actions {
    padding: 0 5px; } }

/* ============================================ *
 * Checkout - One Page
 * ============================================ */
.checkout-onepage-index .col-right,
.checkout-onepage-index .col-left {
  display: none; }

.checkout-onepage-index .col-main {
  width: auto;
  float: none; }

.checkout-onepage-index .col-main .back-link small {
  display: none; }

.checkout-onepage-index .page-title h1 {
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: none; }

.opc #checkout-step-login h3 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 0; }

.opc #checkout-step-login #login-form p.description {
  margin-bottom: 20px; }

.opc #checkout-step-login .control div.description {
  font-weight: normal; }

.opc #checkout-step-login .control div.description ul {
  list-style-type: disc;
  margin-left: 16px; }

.opc #checkout-step-login .col2-set .col-1, .opc #checkout-step-login .col2-set .col-2 {
  padding: 10px 30px; }

.opc #checkout-step-login .col-2 {
  border-left: #636363 1px solid; }

.checkout-onepage-index #opc-login .step-title {
  display: none; }

.checkout-onepage-index .opc .section .step-title,
.checkout-onepage-index .opc .section.active .step-title,
.checkout-onepage-index .opc .section.allow .step-title {
  overflow: hidden;
  border: none;
  background: none;
  margin-bottom: 2px; }

.checkout-onepage-index .no-touch .opc .section.allow:hover .step-title,
.checkout-onepage-index .opc .section.allow:hover .step-title {
  background: none !important; }

.checkout-onepage-index .opc .section .step-title .number,
.checkout-onepage-index .opc .section.allow.active .step-title .number,
.checkout-onepage-index .opc .section.allow.active:hover .step-title .number,
.checkout-onepage-index .opc .section.allow:hover .step-title .number,
.checkout-onepage-index .no-touch .opc .section.allow:hover .step-title .number,
.checkout-onepage-index .opc .section.allow .step-title .number,
.checkout-onepage-index .no-touch .opc .section:hover .step-title .number {
  background: #f1f1f2 !important;
  color: #000 !important;
  width: 30px !important;
  height: 30px !important;
  margin-top: -15px !important;
  line-height: 30px !important; }

.checkout-onepage-index .opc .section.active .step-title .number {
  font-weight: bold; }

.checkout-onepage-index .opc .section.allow:hover .step-title .number {
  background: #f1f1f2;
  color: #fff;
  height: 30px;
  line-height: 30px; }

.checkout-onepage-index .opc .section.active:hover .step-title h2,
.checkout-onepage-index .no-touch .opc .section:hover .step-title .number,
.checkout-onepage-index .opc .section.allow:hover .step-title .number {
  color: #E09135 !important; }

.checkout-onepage-index .opc .section.allow:not(.active) .step-title a {
  line-height: 30px;
  height: 30px;
  padding: 5px 10px; }

.checkout-onepage-index .opc .section .step-title h2 {
  line-height: 30px;
  height: 30px;
  width: 100%;
  background: #f1f1f2;
  margin-left: 31px;
  padding-left: 15px; }

.checkout-onepage-index .opc .section.active .step-title h2 {
  background: #000;
  color: #fff;
  font-weight: bold; }

.checkout-onepage-index .opc .section .step-title .number:after {
  content: '.'; }

.checkout-onepage-index .opc .section.allow.active .step-title .number,
.checkout-onepage-index .opc .section.allow.active:hover .step-title .number {
  background: #000 !important;
  color: #fff !important; }

.checkout-onepage-index .opc .section.allow:hover .step-title .number,
.checkout-onepage-index .opc .section.allow:hover .step-title h2 {
  color: #E09135 !important; }

.checkout-onepage-index .opc .section.allow:hover .step-title {
  outline: 1px solid #E09135; }

.checkout-onepage-index .opc .section.allow.active:hover .step-title {
  outline-style: none; }

.checkout-onepage-index .opc .section.allow.active:hover .step-title h2 {
  color: #fff !important; }

.checkout-onepage-index .opc .section .step-title a {
  margin-top: -35px; }

#checkout-review-load-wrapper.loading {
  position: relative; }

#checkout-review-load-wrapper.loading:after {
  content: '';
  background: url(../images/loading.gif?update) no-repeat center rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3; }

#checkout-progress-wrapper .block-progress .block-content {
  margin-left: 35px; }

#checkout-progress-wrapper .block-progress .block-content dl div > dt {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  text-transform: none;
  margin-top: 10px; }

#checkout-progress-wrapper .block-progress .block-content dl div > dt.complete {
  color: #a6b03d;
  font-weight: bold; }

#checkout-progress-wrapper .block-progress .block-content dl div > dt:before,
#checkout-progress-wrapper .block-progress .block-content dl div > dt.complete:before {
  content: '';
  background: url(../images/checkout-progress.png) no-repeat -40px 0;
  display: inline-block;
  width: 41px;
  height: 41px;
  margin-left: -40px;
  margin-top: -10px;
  position: absolute; }

#checkout-progress-wrapper .block-progress .block-content dl div > dt.complete:before {
  background: url(../images/checkout-progress.png) no-repeat; }

#checkout-progress-wrapper .block-progress dd,
#checkout-progress-wrapper .block-progress > dd,
#checkout-progress-wrapper .block-progress dd address,
#checkout-progress-wrapper .block-progress dt {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-style: normal;
  padding-left: 0; }

#checkout-progress-wrapper .block-progress dd {
  padding-left: 10px; }

#checkout-progress-wrapper .opc-block-progress dt.complete a,
#checkout-progress-wrapper .opc-block-progress dt.complete .separator {
  display: none;
  font-weight: normal; }

#checkout-progress-wrapper .opc-block-progress dt.complete a {
  font-size: 13px; }

#checkout-progress-wrapper .block:first-child .block-title strong {
  text-transform: none;
  color: #636363;
  font-size: 17px;
  font-weight: bold;
  font-family: inherit; }

.checkout-onepage-index .section .buttons-set {
  border: none;
  margin-top: 0; }

@media only screen and (min-width: 980px) {
  .checkout-onepage-index .col-main,
  body[class*="checkout-multishipping"] .col-main {
    border-right: 1px solid #999;
    float: left;
    width: 68.75%;
    padding-right: 20px; }
  .checkout-onepage-index .col-right,
  .checkout-onepage-index .col-left,
  body[class*="checkout-multishipping"] .col-right {
    width: 31.25%;
    display: block; }
  .checkout-onepage-index .col-right,
  body[class*="checkout-multishipping"] .col-right {
    padding-left: 0; } }

.opc select {
  width: 365px; }

.opc .custom-select select {
  height: 28px; }

/* -------------------------------------------- *
 * Checkout Billing step
*/
#checkout-step-billing input[type=email],
#checkout-step-billing input[type=search],
#checkout-step-billing input[type=number],
#checkout-step-billing input[type=password],
#checkout-step-billing input[type=tel],
#checkout-step-billing input[type=text] {
  width: 100%; }

#checkout-step-billing div.name-firstname,
#checkout-step-billing div.city,
#checkout-step-billing div.zip,
#checkout-step-billing div.left {
  float: left;
  width: 270px; }

#checkout-step-billing div.name-lastname,
#checkout-step-billing div.state,
#checkout-step-billing div.country,
#checkout-step-billing div.right {
  float: right;
  width: 270px; }

#checkout-step-billing div.customer-name,
#checkout-step-billing div.zip,
#checkout-step-billing div.phone,
#checkout-step-billing div.left,
#checkout-step-billing .fields,
#checkout-step-billing .control,
#checkout-step-billing div.phone,
#checkout-step-billing .wide {
  clear: both; }

#checkout-step-billing #billing-buttons-container button {
  float: right;
  width: 270px;
  margin-right: 0; }

@media only screen and (max-width: 770px) {
  #checkout-step-billing div.name-firstname,
  #checkout-step-billing div.city,
  #checkout-step-billing div.zip,
  #checkout-step-billing div.left,
  #checkout-step-billing div.name-lastname,
  #checkout-step-billing div.state,
  #checkout-step-billing div.country,
  #checkout-step-billing div.right {
    float: none;
    padding: 0;
    width: auto; } }

/* -------------------------------------------- *
 * Checkout Shipping step
*/
#checkout-step-shipping input[type=email],
#checkout-step-shipping input[type=search],
#checkout-step-shipping input[type=number],
#checkout-step-shipping input[type=password],
#checkout-step-shipping input[type=tel],
#checkout-step-shipping input[type=text] {
  width: 100%; }

#checkout-step-shipping .name-firstname,
#checkout-step-shipping .city,
#checkout-step-shipping .left,
#checkout-step-shipping .zip {
  float: left;
  width: 270px; }

#checkout-step-shipping .name-lastname,
#checkout-step-shipping .state,
#checkout-step-shipping .right,
#checkout-step-shipping .country {
  float: right;
  width: 270px; }

#checkout-step-shipping .customer-name,
#checkout-step-shipping .zip,
#checkout-step-shipping .phone,
#checkout-step-shipping .left,
#checkout-step-shipping .fields,
#checkout-step-shipping .control,
#checkout-step-shipping .phone,
#checkout-step-shipping .wide {
  clear: both; }

#checkout-step-shipping #shipping-buttons-container button,
#checkout-step-shipping #shipping-buttons-container > p {
  float: right; }

#checkout-step-shipping #shipping-buttons-container button {
  margin-right: 0;
  width: 270px; }

#checkout-step-shipping #shipping-buttons-container > span {
  float: left; }

@media only screen and (max-width: 770px) {
  #checkout-step-shipping .name-firstname,
  #checkout-step-shipping .city,
  #checkout-step-shipping .left,
  #checkout-step-shipping .zip,
  #checkout-step-shipping .name-lastname,
  #checkout-step-shipping .state,
  #checkout-step-shipping .right,
  #checkout-step-shipping .country {
    float: none;
    padding: 0;
    width: auto; } }

/* -------------------------------------------- *
 * Multiple Addresses Checkout
 */
.checkout-progress {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  list-style-type: decimal;
  list-style-position: inside; }

.checkout-progress .buttons-set {
  border: none;
  margin: 15px 0;
  padding: 0; }

.checkout-progress > a > li {
  color: #636363;
  background: #F1F1F2;
  font-size: 13px;
  font-weight: normal;
  line-height: 30px;
  height: 30px;
  width: 100%;
  background: #f1f1f2;
  padding-left: 15px;
  margin-bottom: 2px; }

.checkout-progress > a > li > span {
  border-left: 1px solid #fff;
  margin-left: 5px;
  padding-left: 10px;
  display: inline-block; }

.checkout-progress > a:hover {
  text-decoration: none; }

.checkout-progress > a:hover > li {
  outline: 1px solid #E09135; }

.checkout-progress > a:hover[href="#"] > li,
.checkout-progress > a:hover > li.active {
  cursor: default;
  outline-style: none; }

.checkout-progress > a > li.active {
  background: #000;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase; }

body[class*="checkout-multishipping-"] .breadcrumbs {
  display: none; }

body[class*="checkout-multishipping-"] .page-title h1 {
  text-transform: none;
  color: #636363;
  font-size: 17px;
  font-weight: bold;
  font-family: inherit;
  text-transform: uppercase; }

body[class*="checkout-multishipping-"] .page-title p {
  padding-bottom: 10px; }

body[class*="checkout-multishipping-"] .please-wait {
  float: left;
  margin-top: 4px; }

.checkout-multishipping-addresses #multiship-addresses-table td[colspan="3"] {
  padding: 10px; }

.checkout-multishipping-addresses #multiship-addresses-table select {
  height: 28px;
  width: 100%;
  max-width: 100%; }

.checkout-multishipping-addresses #multiship-addresses-table table {
  border-collapse: collapse;
  margin-bottom: 40px; }

.checkout-multishipping-addresses #multiship-addresses-table table td,
.checkout-multishipping-addresses #multiship-addresses-table table th {
  border: 1px solid #e6e7e8; }

.checkout-multishipping-addresses #multiship-addresses-table table tr th {
  background: none;
  font-weight: bold; }

.checkout-multishipping-addresses #multiship-addresses-table .data-table .data-table {
  border: none;
  width: auto; }

.checkout-multishipping-addresses #multiship-addresses-table .data-table .data-table th,
.checkout-multishipping-addresses #multiship-addresses-table .data-table .data-table td {
  border: none;
  padding: 5px; }

.checkout-multishipping-addresses .scaffold-form {
  margin: 10px 0 0; }

.checkout-multishipping-addresses .scaffold-form .fields .field {
  float: left;
  width: 50%; }

.checkout-multishipping-addresses .scaffold-form .fields .field + .field {
  padding-left: 20px; }

.checkout-multishipping-addresses .scaffold-form .fields,
.checkout-multishipping-addresses .scaffold-form .wide {
  margin: 0 0 10px;
  padding: 0;
  width: 100%; }

.checkout-multishipping-addresses .scaffold-form .wide input.input-text {
  width: 100%; }

.checkout-multishipping-addresses .scaffold-form .checkbox {
  margin-top: 6px; }

.checkout-multishipping-addresses .scaffold-form .control {
  clear: left;
  padding-left: 0;
  width: 50%; }

.checkout-multishipping-addresses .scaffold-form .control label {
  color: #636363;
  font-weight: bold; }

.checkout-multishipping-address-newshipping-form {
  padding: 20px; }

.checkout-multishipping-address-newshipping-form .custom-select select {
  height: 28px; }

.checkout-multishipping-address-newshipping .scaffold-form .form-list .control label {
  padding-left: 0; }

.checkout-multishipping-address-newshipping .scaffold-form .form-list .control label:hover {
  background: none; }

.checkout-multishipping-address-newshipping .scaffold-form .form-list .control input.checkbox {
  margin-left: 0;
  margin-top: 12px;
  margin-right: 10px; }

.checkout-multishipping-shipping .multiple-checkout h2,
.checkout-multishipping-billing .multiple-checkout h2,
.checkout-multishipping-overview .multiple-checkout h2 {
  font-size: 16px;
  font-weight: bold; }

.checkout-multishipping-shipping .multiple-checkout h3,
.checkout-multishipping-billing .multiple-checkout h3,
.checkout-multishipping-overview .multiple-checkout h3 {
  font-size: 14px;
  font-weight: bold; }

.checkout-multishipping-shipping .multiple-checkout h3 a,
.checkout-multishipping-billing .multiple-checkout h3,
.checkout-multishipping-overview .multiple-checkout h3 {
  font-weight: normal; }

.checkout-multishipping-addresses .multiple-checkout .box-sp-methods,
.checkout-multishipping-overview .multiple-checkout .box {
  margin-top: 20px; }

.checkout-multishipping-shipping .multiple-checkout .shipping-wrapper:first-child {
  margin-top: 30px; }

.checkout-multishipping-addresses .multiple-checkout > p {
  margin: 20px 0 30px; }

.checkout-multishipping-shipping .multiple-checkout .shipping-wrapper .col-1,
.checkout-multishipping-shipping .multiple-checkout .shipping-wrapper .col-2 {
  padding: 10px; }

.checkout-multishipping-shipping .multiple-checkout .shipping-wrapper .col-1 {
  border-right: 1px solid #ccc; }

.checkout-multishipping-shipping .multiple-checkout .shipping-wrapper .col-2 {
  border-left: 1px solid #ccc;
  position: relative;
  left: -1px; }

.checkout-multishipping-shipping .multiple-checkout .shipping-wrapper .col-2 .data-table {
  border: none;
  margin: -5px 0 25px; }

.checkout-multishipping-shipping .multiple-checkout .shipping-wrapper .col-2 .data-table th,
.checkout-multishipping-shipping .multiple-checkout .shipping-wrapper .col-2 .data-table td {
  background: none;
  border: none;
  padding: 5px 5px 0 0; }

.checkout-multishipping-shipping .multiple-checkout .shipping-wrapper .shipping-info {
  position: relative;
  padding-left: 80px;
  margin-bottom: 20px; }

.checkout-multishipping-shipping .multiple-checkout .shipping-wrapper .shipping-info b {
  color: #999;
  font-weight: normal;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 80px; }

.checkout-multishipping-shipping .multiple-checkout .messages {
  margin: 15px 0 -15px; }

.checkout-multishipping-billing .multiple-checkout #payment_form_threedsi {
  margin: 0 0 10px;
  padding: 20px 0; }

.checkout-multishipping-billing .multiple-checkout #payment_form_threedsi dt {
  display: none; }

.checkout-multishipping-addresses .buttons-set button,
.checkout-multishipping-addresses .buttons-set > p,
.checkout-multishipping-shipping .buttons-set > p,
.checkout-multishipping-shipping .buttons-set button,
.checkout-multishipping-billing .buttons-set > p,
.checkout-multishipping-billing .buttons-set button {
  float: right; }

.checkout-multishipping-shipping .buttons-set button,
.checkout-multishipping-addresses .buttons-set button,
.checkout-multishipping-billing .buttons-set button {
  margin-right: 0;
  width: 270px; }

.checkout-multishipping-overview .col-main {
  position: relative; }

.checkout-multishipping-overview #discount-coupon-form {
  float: left;
  margin-bottom: 5px;
  margin-left: 20px; }

.checkout-multishipping-overview .place-order .btn-checkout {
  float: right;
  margin-right: 0;
  background: #a6b03d;
  width: 270px; }

.checkout-multishipping-overview #review-buttons-container.disabled {
  overflow: hidden;
  padding-bottom: 30px; }

.checkout-multishipping-overview .place-order .please-wait {
  position: absolute;
  bottom: 40px;
  right: 40px; }

.checkout-multishipping-overview .place-order .grand-total {
  display: block;
  float: right;
  text-align: right;
  margin: 30px 0 10px; }

.checkout-multishipping-overview .place-order .grand-total big {
  display: inline-block;
  font-size: 13px;
  margin: 10px 0; }

.checkout-multishipping-overview .buttons-set {
  display: none; }

.checkout-multishipping-overview .multiple-checkout-review {
  padding: 20px; }

.checkout-multishipping-overview .multiple-checkout-review-item {
  margin: 0 0 30px; }

.checkout-multishipping-overview .multiple-checkout-review-item-shipping {
  margin-bottom: 20px; }

.checkout-multishipping-success .checkout-progress {
  display: none; }

.checkout-multishipping-success .multiple-checkout {
  border-bottom: 1px solid #999;
  margin-bottom: -30px;
  padding: 0 0 15px; }

.checkout-multishipping-success .multiple-checkout .order-line {
  font-size: 15px;
  line-height: 22px; }

.checkout-multishipping-success .multiple-checkout .order-line strong {
  margin-right: 10px; }

.checkout-multishipping-success .multiple-checkout .order-line-confirmation {
  margin: 5px 0 15px; }

.checkout-multishipping-success .success-order-info {
  margin: 30px 0 0;
  padding: 30px 0 0; }

.checkout-multishipping-success .success-order-info > h4 {
  font-size: 13px;
  margin-bottom: 0; }

.checkout-multishipping-success .success-order-info ul {
  margin-bottom: 15px; }

.checkout-multishipping-success .multishipping-success-totals {
  float: right;
  text-align: right; }

.checkout-multishipping-success .multishipping-success-totals td {
  padding: 5px; }

.checkout-multishipping-success .multishipping-success-totals td:last-of-type {
  padding-left: 10px; }

.checkout-multishipping-address-newshipping input[type=email],
.checkout-multishipping-address-newshipping input[type=search],
.checkout-multishipping-address-newshipping input[type=number],
.checkout-multishipping-address-newshipping input[type=password],
.checkout-multishipping-address-newshipping input[type=tel],
.checkout-multishipping-address-newshipping input[type=text] {
  width: 100%; }

.checkout-multishipping-address-newshipping .name-firstname,
.checkout-multishipping-address-newshipping .city,
.checkout-multishipping-address-newshipping .left,
.checkout-multishipping-address-newshipping .zip {
  float: left;
  padding-right: 20px;
  width: 50%; }

.checkout-multishipping-address-newshipping .name-lastname,
.checkout-multishipping-address-newshipping .state,
.checkout-multishipping-address-newshipping .right,
.checkout-multishipping-address-newshipping .country {
  float: right;
  width: 50%; }

.checkout-multishipping-address-newshipping .customer-name,
.checkout-multishipping-address-newshipping .zip,
.checkout-multishipping-address-newshipping .phone,
.checkout-multishipping-address-newshipping .company,
.checkout-multishipping-address-newshipping .control,
.checkout-multishipping-address-newshipping .left {
  clear: both; }

.checkout-multishipping-address-newshipping .buttons-set button,
.checkout-multishipping-address-newshipping .buttons-set > p {
  float: right; }

.checkout-multishipping-address-newshipping .buttons-set button {
  margin-right: 0;
  width: 270px; }

.checkout-multishipping-address-newshipping .buttons-set > span {
  float: left; }

/* -------------------------------------------- *
 * Checkout Shipping Method step
 */
#checkout-step-shipping_method {
  margin: 0 -20px 0 -10px; }

.co-shipping-method-form-heading {
  color: #636363;
  font-weight: bold;
  margin: 0;
  padding: 5px 10px;
  border-bottom: 1px solid silver; }

#checkout-step-shipping_method #checkout-shipping-method-load,
#checkout-step-shipping_method #checkout-shipping-product-list {
  float: left; }

#checkout-step-shipping_method #checkout-shipping-product-list {
  padding-left: 20px; }

.shipping-wrapper {
  border: 1px solid #ccc;
  overflow: hidden; }

#checkout-step-shipping_method .shipping-note {
  font-size: 11px;
  margin-bottom: 20px; }

#checkout-review-load-wrapper .shipping-note, .multiple-checkout-review .shipping-note {
  font-size: 11px;
  margin-top: 67px; }

.checkout-multishipping-overview .shipping-note {
  padding-left: 20px;
  clear: both;
  padding-top: 37px;}

#checkout-shipping-method-load {
  border-right: 1px solid #ccc;
  margin-right: -1px;
  padding: 10px;
  width: 40%; }

#checkout-shipping-product-list {
  border-left: 1px solid #ccc;
  padding: 10px;
  width: 60%; }

#checkout-shipping-product-list b {
  display: inline-block;
  width: 80px; }

#checkout-step-shipping_method #shipping-method-buttons-container button,
#checkout-step-shipping_method #shipping-method-buttons-container > p {
  float: right; }

#checkout-step-shipping_method #shipping-method-buttons-container button {
  margin-right: 0;
  width: 270px; }

#checkout-step-shipping_method #shipping-method-buttons-container > span {
  float: left; }

#checkout-step-shipping_method .shipping-info li,
#checkout-step-shipping_method .products-info li {
  padding-left: 83px;
  position: relative; }

#checkout-step-shipping_method .shipping-info li:first-child b,
#checkout-step-shipping_method .products-info li:first-child b {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 80px; }

#checkout-shipping-method-load .sp-methods dd label, #co-shipping-method-form .sp-methods dd label {
  min-width: 140px; }

#checkout-step-shipping_method .products-info li {
  margin: 0.5em 0; }

#checkout-step-shipping_method .products-info li:first-child {
  margin-top: 0; }

/* -------------------------------------------- *
 * Checkout Payment step
 */
#checkout-step-payment {
  margin: 0 -20px 0 -10px;
  position: relative; }

#checkout-step-payment input[type=text] {
  width: 100%; }

#checkout-step-payment #payment_form_ccsave .type,
#checkout-step-payment #payment_form_ccsave .expiration-date {
  float: left;
  width: 270px; }

#checkout-step-payment #payment_form_ccsave .number,
#checkout-step-payment #payment_form_ccsave .verification-number {
  float: right;
  width: 270px; }

#checkout-step-payment #payment_form_ccsave .expiration-date,
#checkout-step-payment #payment_form_ccsave .name {
  clear: both; }

#checkout-step-payment #payment-buttons-container button,
#checkout-step-payment #payment-buttons-container > p {
  float: right; }

#checkout-step-payment #payment-buttons-container button {
  margin-right: 0;
  width: 270px; }

#checkout-step-payment #payment-buttons-container > span {
  float: left; }

#checkout-step-payment .sp-methods .form-list {
  padding: 0; }

#checkout-step-payment .sp-methods dt .no-display + label {
  padding-left: 0; }

#payment_form_threedsi .cc-saved {
  padding-right: 20px;
  width: 50%; }

#payment_form_threedsi .custom-select select {
  height: 28px; }

#payment_form_threedsi li.cc-new {
  float: left;
  padding-right: 20px;
  margin-bottom: 30px;
  width: 50%; }

#payment_form_threedsi li.cc-new:nth-child(even) {
  padding-right: 0; }

#payment_form_threedsi li.cc-new:nth-child(odd) {
  clear: both; }

#payment_form_threedsi li.cc-new:last-child {
  margin-bottom: 0; }

/*#threedsi_cc_type_exp_div .validation-advice {
  position: absolute;
}*/
#threedsi_cc_type_exp_div .v-fix:first-child {
  margin-right: 0;
  padding-right: 10px;
  width: 60%; }

#threedsi_cc_type_exp_div .v-fix:last-child {
  margin-right: 0;
  width: 40%; }

#threedsi_cc_type_cvv_div .v-fix,
#threedsi_cc_type_cvv_div .v-fix input {
  width: 100% !important; }

#payment_form_threedsi select.month,
#payment_form_threedsi select.year {
  width: 100%; }

#payment_form_threedsi #threedsi_cc_type_cvv_div {
  margin-bottom: 0; }

#payment-tool-tip {
  background: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  padding: 15px 20px 20px;
  position: absolute;
  text-align: right;
  left: 50%;
  margin: 0 0 0 -250px; }

#payment-tool-tip .btn-close {
  margin-bottom: 10px; }

#payment_form_threedsi:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

#payment_form_threedsi {
  margin-bottom: 30px; }

@media only screen and (max-width: 770px) {
  #checkout-step-payment {
    margin: 10px; }
  #payment_form_threedsi .cc-saved,
  #payment_form_threedsi li.cc-new {
    padding: 0;
    width: 100%; } }

/* -------------------------------------------- *
 * Checkout Review step
 */
#checkout-step-review .btn-checkout {
  float: right;
  margin-right: 0;
  width: 270px; }

#checkout-step-review .product-image {
  width: 80px; }

#checkout-review-table-wrapper {
  position: relative; }

#checkout-step-review #checkout-review-table tfoot tr:first-child td {
  padding-top: 20px; }

#checkout-step-review #discount-coupon-form {
  position: absolute;
  bottom: -5px;
  left: 0; }

#checkout-review-submit {
  margin-top: -20px; }

#checkout-step-review .buttons-set.disabled {
  margin-bottom: 30px; }

#checkout-step-review .buttons-set.disabled .please-wait {
  position: absolute;
  left: -10px;
  bottom: -40px; }

/* -------------------------------------------- *
 * Section Styling - Default
 */
.opc .section .step-title {
  width: 100%;
  border-top: 1px solid #ececec;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none; }

.opc .section .step-title:after {
  content: '';
  display: table;
  clear: both; }

.opc .section.allow:not(.active) .step-title {
  cursor: pointer; }

/* Using .no-touch since touch devices emulate hover, thereby making steps look active that are not */
.no-touch .opc .section.allow:not(.active) .step-title:hover {
  background-color: #f4f4f4; }

.opc .section.active .step-title {
  border-bottom: 1px solid #ececec; }

.opc .section .step-title a {
  display: none; }

.opc .section.allow:not(.active) .step-title a {
  display: block;
  float: right;
  line-height: 40px;
  height: 40px;
  padding: 0px 10px; }

.no-touch .opc .section .step-title a:hover {
  text-decoration: none; }

.opc .section .step-title .number,
.opc .section.allow.active .step-title .number,
.no-touch .opc .section.allow:hover .step-title .number {
  width: 26px;
  height: 26px;
  text-align: center;
  color: #FFFFFF;
  line-height: 26px;
  background-color: #3399cc;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -13px; }

.opc .section.allow .step-title .number {
  background-color: #99cce5; }

.opc .section.allow .step-title h2 {
  color: #a0a0a0; }

.opc .section.allow .step-title:hover h2,
.opc .section.active .step-title h2 {
  color: #3399cc; }

.opc .section .step-title h2 {
  font-size: 13px;
  font-weight: 400;
  line-height: 40px;
  height: 40px;
  float: left;
  margin: 0px 4px 0px 45px; }

.opc .section .step {
  padding: 20px; }

.opc .section .step:after {
  content: '';
  display: table;
  clear: both; }

@media only screen and (max-width: 979px) {
  .opc .section .step {
    padding: 10px; } }

.opc h3 {
  font-weight: 500; }

.opc .buttons-set {
  text-align: left; }

.opc .buttons-set button.button {
  float: left;
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 0;
  width: 365px;
  max-width: 100%; }

.opc .buttons-set p.required {
  float: right;
  margin-left: 5px;
  margin-bottom: 0; }

.opc .buttons-set .back-link {
  float: right;
  margin: 0; }

.opc .buttons-set a {
  line-height: 20px;
  display: inline-block;
  padding: 5px 5px 5px 0; }

@media only screen and (max-width: 479px) {
  .opc .buttons-set .button + .buttons-set .button,
  .paypal-express-review .buttons-set .button + .buttons-set .button {
    margin-left: 0; } }

.opc #opc-login .step {
  padding: 0px; }

.opc #opc-login .buttons-set {
  border-top: 0;
  padding-top: 5px; }

@media only screen and (max-width: 770px) {
  .opc #opc-login .description,
  .opc #opc-login p.required {
    display: none; } }

#opc-payment .note {
  padding: 10px; }

/* -------------------------------------------- *
 * This section hides everything but the "Checkout Method" step of the checkout process and fades in the content
 * once the customer progresses to the next step. The purpose of this is to simplify what the customer has to focus on.
 * It is limited to larger viewports since smaller devices are inherently going to be focused solely on the
 * "Checkout Method" step.
 */
.opc.opc-firststep-login .section:not(#opc-login) .step-title,
.opc-block-progress-step-login {
  -webkit-transition: opacity 300ms linear;
  -webkit-transition-delay: 0;
  -o-transition: opacity 300ms linear 0;
  -webkit-transition: opacity 300ms linear 0;
  transition: opacity 300ms linear 0; }

/* When a user progresses from the "Checkout Method" to "Billing Information" for the first time, the              */
/* "opc-has-progressed-from-login" class gets added to the body. Also, the .opc element will only have the         */
/* "opc-firststep-login" class if the first step of the checkout is the "Checkout Method" (eg, not when logged in) */
body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section:not(#opc-login) .step-title,
body:not(.opc-has-progressed-from-login) .opc-block-progress-step-login {
  opacity: 0; }

body:not(.opc-has-progressed-from-login) .opc-block-progress-step-login dt:before {
  opacity: 0; }

body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title .number {
  width: 0px;
  overflow: hidden; }

body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title h2 {
  margin-left: 0px; }

/* -------------------------------------------- *
 * Shipping and Payment methods
 */
.sp-methods {
  margin: 0 0 8px; }

.sp-methods dt {
  margin: 13px 0 5px;
  font-weight: bold; }

.sp-methods dt:first-child {
  margin: 0 0 5px; }

.sp-methods dd li {
  margin: 5px 0; }

.sp-methods label img {
  float: left; }

.sp-methods label a {
  margin-top: 6px;
  float: right;
  margin-left: 10px; }

.sp-methods .price {
  font-weight: bold; }

.sp-methods .form-list {
  padding-left: 20px; }

.sp-methods .form-list li {
  margin: 0 0 8px; }

.sp-methods select.month {
  width: 120px;
  margin-right: 10px; }

.sp-methods select.year {
  width: 96px; }

.sp-methods input.cvv {
  width: 4em !important; }

.sp-methods .checkmo-list li {
  margin: 0 0 5px;
  content: '';
  display: table;
  clear: both; }

.sp-methods .checkmo-list label {
  width: 165px;
  padding-right: 15px;
  text-align: right;
  float: left; }

.sp-methods .checkmo-list address {
  float: left; }

@media only screen and (max-width: 479px) {
  .sp-methods .checkmo-list {
    padding-left: 0; }
  .sp-methods .checkmo-list label {
    width: 135px; } }

.sp-methods .release-amounts {
  margin: 0.5em 0; }

.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0; }

/* One Page Checkout */
.block-progress {
  border: 0;
  margin: 0;
  padding-left: 20px; }

.block-progress .block-content {
  font-size: 13px; }

.block-progress dt {
  padding-top: 6px;
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: normal;
  color: #a0a0a0; }

.block-progress dt.complete {
  color: #636363; }

.block-progress dd {
  padding-left: 15px;
  margin-bottom: 10px;
  font-style: italic; }

.block-progress dd address {
  font-style: italic; }

.block-progress #payment-progress-opcheckout .subtitle {
  margin-bottom: 3px; }

.block-progress .payment-info dt {
  padding: 0;
  margin: 0 0 3px 0;
  color: #636363;
  text-transform: none;
  font-style: italic;
  float: left;
  clear: both;
  font-size: 13px; }

.block-progress .payment-info dt:after {
  content: ': '; }

.block-progress .payment-info dd {
  float: left;
  margin-bottom: 3px;
  font-size: 13px; }

.block-progress .payment-info:after {
  content: '';
  display: table;
  clear: both; }

/* review step */
#checkout-review-table .btn-remove img {
  display: none; }

/* show/hide "change" link for progress step depend on complete status
 * should be placed in .css file */
.opc-block-progress dt.complete a,
.opc-block-progress dt.complete .separator {
  display: inline; }

.opc-block-progress dt a,
.opc-block-progress dt .separator {
  display: none; }

/* On small screens, the progress review content will be moved to the review step via JS. Styled via this CSS: */
#checkout-step-review .opc-block-progress {
  border-left: none;
  padding-left: 0; }

#checkout-step-review .opc-block-progress .block-title {
  display: none; }

#checkout-step-review .opc-block-progress .block-content {
  display: block !important;
  padding: 0; }

#checkout-step-review .opc-block-progress .block-content > dl > div {
  float: left;
  width: 50%; }

#checkout-step-review .opc-block-progress .block-content .changelink {
  display: none; }

@media only screen and (max-width: 550px) {
  #checkout-review-load {
    clear: left;
    padding-top: 30px; }
  #checkout-step-review .opc-block-progress .block-content > dl > div {
    float: none;
    width: auto; }
  #checkout-step-review .cart-table tbody tr:first-child {
    display: none; }
  #checkout-step-review .cart-table tfoot tr:first-child {
    margin: 15px 0 0; }
  #checkout-step-review .cart-table tfoot td {
    float: left;
    padding: 5px;
    text-align: left;
    width: 50%; }
  #checkout-step-review .cart-table tfoot td:first-child {
    text-align: right; }
  #checkout-step-review .cart-table tfoot td .price {
    font-weight: normal;
    font-size: 13px; }
  #checkout-step-review .cart-table tfoot tr:last-child td .price {
    font-weight: bold; }
  #checkout-step-review #checkout-review-table tfoot tr:first-child td {
    padding-top: 5px; }
  #checkout-step-review .cart-table td[data-rwd-label] {
    float: left;
    width: 33.33333333%; }
  #checkout-step-review #discount-coupon-form {
    position: static;
    margin-bottom: 35px; }
  #checkout-step-review #discount-coupon-form label {
    text-align: center;
    max-width: 100%; }
  #checkout-step-review .btn-checkout {
    clear: left;
    float: none;
    width: 100%; } }

@media only screen and (max-width: 550) {
  #checkout-review-table thead > tr > th {
    display: none; }
  #checkout-review-table thead > tr > th:first-child {
    display: block; }
  #checkout-review-table thead > tr > th:first-child {
    display: block; } }

#checkout-step-review .centinel > p {
  margin-bottom: 10px; }

#checkout-step-review .centinel iframe {
  width: 100%;
  min-height: 400px; }

/* Gift options */
.gift-messages-form .item {
  content: '';
  display: table;
  clear: both;
  margin-top: 30px; }

.gift-messages-form .item h5 {
  font-weight: bold; }

.gift-messages-form .item .product-img-box {
  width: auto;
  float: left;
  padding-right: 15px; }

.gift-messages-form .item .details {
  float: left; }

.gift-message-form .inner-box > div {
  content: '';
  display: table;
  clear: both;
  width: 100%;
  margin-top: 15px; }

.gift-message-form .inner-box > div.extra-options-container p {
  margin-bottom: 15px; }

.gift-message-form .gift-wrapping-form label {
  margin-right: 10px; }

.gift-message-form .gift-wrapping-form img {
  float: left; }

/* ============================================ *
 * Checkout - Success
 * ============================================ */
.checkout-onepage-success .sub-title {
  display: none; }

.checkout-onepage-success .order-success-message,
.checkout-multishipping-success .order-success-message {
  background: url(../images/i_success.png) no-repeat 5px 4px #f7f8ed;
  border: 2px solid #a6b03d;
  color: #a6b03d;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 10px 10px 45px;
  margin: 0 0 15px; }

.checkout-onepage-success .col-main {
  border-right: 1px solid #999;
  padding: 0 20px 0 0; }

.checkout-onepage-success .col-main > p {
  margin: 0 0 10px; }

.checkout-onepage-success .col-main > p.success-order-line {
  font-size: 15px; }

.checkout-onepage-success .col-main > p.success-order-line strong {
  margin-right: 10px; }

.checkout-onepage-success .col-main > p.success-order-line + p.success-order-line {
  margin: -6px 0 10px; }

.checkout-onepage-success .col-main .button {
  min-width: 220px;
  text-transform: none; }

.checkout-onepage-success .buttons-set {
  margin: 10px 0;
  text-align: left; }

.checkout-onepage-success .buttons-set button {
  float: none; }

.checkout-onepage-success .success-order-info {
  padding: 30px 0 0;
  margin: 30px 0 0; }

.checkout-onepage-success .success-order-info:first-of-type {
  border-top: 1px solid #999; }

.checkout-onepage-success .success-order-info h4 {
  margin-bottom: 6px; }

.checkout-onepage-success .success-order-info ul {
  list-style: none;
  margin: 0 0 30px; }

.checkout-onepage-success .success-order-info li {
  margin-bottom: 6px; }

.checkout-onepage-success .cart-table th {
  font-weight: bold; }

.checkout-onepage-success .auth_note, .checkout-multishipping-success .auth_note {
  clear: both;
  font-size: 9px;
  padding-top: 20px;
  font-style: italic; }

.gift-message-form .gift-wrapping-form .gift-wrapping-design {
  height: 75px; }

.gift-message-form .gift-wrapping-form .gift-wrapping-design:after {
  content: '';
  display: table;
  clear: both; }

.gift-message-form .gift-wrapping-form .gift-wrapping-design .image-box {
  margin-right: 5px; }

.gift-message-form .gift-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #ececec; }

.gift-message-form .gift-item:after {
  content: '';
  display: table;
  clear: both; }

.gift-message-form .gift-item .product-img-box {
  width: 200px; }

.gift-message-form .gift-item .product-img-box .product-image {
  width: 75px;
  margin-left: auto;
  margin-right: auto; }

.gift-message-form .gift-item .product-img-box .product-name {
  display: block; }

.gift-message-form .gift-item .fieldset {
  margin-left: 200px; }

@media only screen and (max-width: 770px) {
  .gift-message-form .gift-item .product-img-box {
    width: 100%;
    float: none; }
  .gift-message-form .gift-item .fieldset {
    margin-left: 0px; }
  .gift-message-form .gift-item .fieldset textarea {
    width: 100%; } }

/**
 * @category   Mage
 * @package    ConfigurableSwatches
 */
/* Clears */
.clearfix:after,
.configurable-swatch-list:after,
.product-view .product-options .swatch-attr:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

.product-view .product-options .swatch-attr {
  float: none;
  display: block;
  clear: both;
  border: 0; }

.product-view .product-options dt.swatch-attr label {
  display: block;
  line-height: 1.3; }

/* General Swatch Styling */
.configurable-swatch-list {
  margin-left: -3px;
  zoom: 1;
  clear: both; }

.configurable-swatch-list li {
  float: left;
  zoom: 1;
  margin: 0 0 0 3px; }

#narrow-by-list dd .configurable-swatch-list li {
  margin: 0 0 0 3px;
  width: 47%; }

.swatch-link img {
  -webkit-border-radius: 3px;
          border-radius: 3px; }

.swatch-link,
.swatch-label {
  display: block;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  font-size: 14px;
  text-align: center;
  color: #666666;
  text-decoration: none;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.swatch-link {
  border: 1px solid #bbbbbb;
  margin: 0 0 3px; }

#narrow-by-list dd .swatch-link {
  float: left;
  margin-right: 2px;
  padding: 0; }

.currently .swatch-link {
  display: inline-block;
  margin: 0 0 0 10px; }

.swatch-label {
  border: 1px solid #fff;
  margin: 0;
  white-space: nowrap;
  background: #efefef; }

.swatch-link:hover {
  cursor: pointer; }

.currently .swatch-link:hover {
  cursor: default; }

.swatch-link .x {
  display: none;
  text-indent: -999em;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../../default/images/bg_x.png) center no-repeat transparent;
  z-index: 10; }

.configurable-swatch-list .not-available .x {
  display: block; }

.configurable-swatch-list .not-available .swatch-link {
  border-color: #e6e6e6;
  position: relative; }

.configurable-swatch-list .not-available .swatch-label {
  color: #aaa;
  background: #fff; }

/* Image Swatches */
.swatch-link.has-image .swatch-label {
  position: relative; }

.swatch-link.has-image img {
  position: absolute;
  top: 0;
  left: 0; }

.configurable-swatch-list .not-available .swatch-link.has-image img {
  opacity: 0.4;
  filter: alpha(opacity=40); }

/* Other Swatch States */
.configurable-swatch-list .hover .swatch-link,
.configurable-swatch-list .selected .swatch-link,
.swatch-link:hover {
  border-color: #44f; }

.currently .swatch-link:hover {
  border-color: #bbbbbb; }

.configurable-swatch-list .wide-swatch .swatch-label {
  padding: 0 6px; }

.configurable-swatch-box {
  background: none !important; }

.configurable-swatch-box select.swatch-select {
  display: none; }

.configurable-swatch-box .validation-advice {
  margin: 0 0 5px;
  background: #D91A00;
  padding: 2px 5px !important;
  font-weight: bold;
  color: #fff !important;
  float: left;
  display: block;
  -webkit-border-radius: 3px;
          border-radius: 3px; }

/* CUSTOM */
.availability.out-of-stock span {
  color: #333; }

.product-view .add-to-cart button.out-of-stock {
  background-position: -80px -362px;
  cursor: default; }

.product-view .product-options dd .input-box {
  width: auto;
  height: auto; }

.product-options .select-label {
  display: none; }

.product-options dt.swatch-attr label,
.product-options dt.swatch-attr .select-label {
  font-size: 12px; }

.product-options dt.swatch-attr .select-label {
  display: inline;
  font-weight: normal;
  color: #00acb1;
  padding-left: 5px; }

/* ============================================ *
 * Customer
 * ============================================ */
.customer-account-index.customer-account .col-main {
  border-right: 1px solid #999;
  padding-right: 20px; }

.post-entry .featured-image {
  display: block;
  float: none;
  margin-bottom: 1em;
  padding: 10px;
  width: 100%; }

.post-entry .featured-image img {
  -webkit-box-shadow: none;
  box-shadow: none;
  display: block;
  width: 100%; }

@media only screen and (min-width: 480px) {
  .post-entry .featured-image {
    padding: 10px;
    float: left;
    max-width: 50%;
    margin: 1em 1em 0 0;
    width: 172px; }
  .post-entry .featured-image img {
    display: block;
    max-width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none; } }

.opc #opc-login p:not(.required) {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 13px; }

.remember-me-box a.hide {
  display: none; }

.remember-me-box .link-tip {
  font-size: 13px;
  padding-left: 10px; }

.remember-me-popup {
  display: none;
  border: 1px solid #cccccc;
  padding: 10px;
  position: relative; }

.remember-me-popup.show {
  display: block; }

.remember-me-popup p {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif; }

.remember-me-popup .remember-me-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 12px; }

.remember-me-popup .remember-me-popup-close-button {
  display: none; }

.customer-account-create .buttons-set {
  max-width: 455px; }

@media only screen and (max-width: 479px) {
  .customer-account-create .fieldset,
  .customer-account-create .buttons-set {
    margin-left: 0; } }

.customer-account-create .fieldset .hidden {
  display: none; }

.customer-account-create #remember-me-popup {
  max-width: 455px; }

.customer-account-forgotpassword .fieldset,
.customer-account-resetpassword .fieldset,
.customer-account-forgotpassword .buttons-set,
.customer-account-resetpassword .buttons-set {
  max-width: 400px; }

.customer-account-forgotpassword .buttons-set,
.customer-account-resetpassword .buttons-set {
  text-align: left; }

.customer-account-forgotpassword .buttons-set .button,
.customer-account-resetpassword .buttons-set .button {
  float: none;
  margin-left: 0; }

.customer-account-forgotpassword p.required,
.customer-account-resetpassword p.required,
.customer-account-forgotpassword .back-link {
  display: none; }

@media only screen and (max-width: 479px) {
  .customer-account-forgotpassword .fieldset,
  .customer-account-forgotpassword .buttons-set {
    margin-left: 0; } }

.customer-account-resetpassword .fieldset .input-box input.input-text,
.customer-account-forgotpassword .fieldset .input-box input.input-text {
  width: 100%; }

.customer-account-create input[type=email],
.customer-account-create input[type=search],
.customer-account-create input[type=number],
.customer-account-create input[type=password],
.customer-account-create input[type=tel],
.customer-account-create input[type=text] {
  width: 100%; }

.customer-account-create .name-firstname,
.customer-account-create .city,
.customer-account-create .zip,
.customer-account-create .left {
  float: left;
  padding-right: 30px;
  width: 50%; }

.customer-account-create .name-lastname,
.customer-account-create .state,
.customer-account-create .country,
.customer-account-create .right {
  float: right;
  width: 50%; }

.customer-account-create .zip,
.customer-account-create .phone,
.customer-account-create .left,
.customer-account-create .control {
  clear: both; }

.customer-account-create .page-title h1 {
  float: left; }

.customer-account-create form {
  clear: both; }

.customer-account-create .form-instructions {
  color: inherit;
  font-style: normal;
  margin-bottom: 14px; }

.customer-account-create .buttons-set {
  float: right;
  padding: 0;
  margin: -40px 0 0;
  border: none; }

.customer-account-create .remember-me-box {
  padding-top: 14px;
  margin-left: -15px; }

.customer-account-create .buttons-set button {
  float: right;
  width: 270px;
  margin-right: 0; }

.customer-account-create .page-title .already-registered {
  float: right;
  padding-top: 10px; }

.sales-order-view .buttons-set {
  display: none; }

@media only screen and (max-width: 770px) {
  .customer-account-create .name-firstname,
  .customer-account-create .name-lastname,
  .customer-account-create .city,
  .customer-account-create .left,
  .customer-account-create .right,
  .customer-account-create .zip,
  .customer-account-create .state,
  .customer-account-create .country {
    float: none;
    padding: 0;
    width: auto; }
  .customer-account-create .form-list select {
    font-size: 14px;
    padding: 5px;
    width: 99%; }
  .customer-account-create .page-title h1 {
    padding-left: 10px; }
  .customer-account-create .fieldset,
  .customer-account-create .buttons-set {
    margin: 0 10px; }
  .customer-account-create .buttons-set {
    text-align: center;
    margin-bottom: 30px; }
  .customer-account-create .buttons-set .button {
    float: none;
    margin: 0;
    width: 100%; } }

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
body.customer-account .breadcrumbs + .page-title {
  margin-top: 30px; }

body.customer-account .col-right .quote-widget {
  max-width: 242px;
  width: auto; }

body.customer-account .my-account .title-buttons {
  position: relative;
  text-align: right; }

body.customer-account .my-account .title-buttons h1 {
  text-align: left; }

body.customer-account .my-account .title-buttons .button {
  position: absolute;
  right: 0;
  top: 0; }

body.customer-account .my-account .title-buttons a,
body.customer-account .my-account .title-buttons span.separator {
  position: relative;
  top: -42px; }

body.customer-account .my-account .fieldset h2,
body.customer-account .my-account .addresses-list h2,
body.customer-account .my-account .order-details h2 {
  width: 100%;
  display: inline-block; }

body.customer-account .my-account .addresses-list h3 {
  font-size: 14px;
  font-weight: 600; }

body.customer-account .my-account .fieldset {
  margin-top: 30px;
  margin-bottom: 30px; }

body.customer-account .data-table {
  margin-top: 5px; }

body.customer-account .sidebar .block ol#compare-items li {
  margin: 10px 0; }

body.customer-account .sidebar .block .block-content p.block-subtitle {
  margin-bottom: 15px; }

body.customer-account .sidebar .block .block-content .actions {
  margin-top: 30px; }

body.customer-account .sidebar ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0; }

body.customer-account .sidebar ol#cart-sidebar-reorder p.product-name {
  display: inline-block;
  margin-bottom: 0; }

body.customer-account .sidebar .block-cart .summary {
  margin-bottom: 15px; }

body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0; }

body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li input {
  margin-right: 10px; }

body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder p.product-name {
  display: inline;
  margin-bottom: 0; }

.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day {
  width: 40px;
  float: left;
  margin-right: 10px; }

.form-list .customer-dob .dob-year {
  width: 80px;
  float: left; }

/* ============================================ *
 * Dashboard
 * ============================================ */
.dashboard .box-head {
  margin-top: 30px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 7px; }

.dashboard .box-head h2 {
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0; }

.dashboard .box-head a {
  padding: 10px; }

.dashboard .box-account {
  margin-bottom: 45px; }

.dashboard .box-account .call-to-action {
  padding: 10px 0; }

.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2 {
  padding-right: 4.09677%;
  padding-bottom: 0; }

.dashboard .col2-set .col-1 .box-title,
.dashboard .col2-set .col-2 .box-title {
  position: relative;
  padding-bottom: 10px; }

.dashboard .col2-set .col-1 .box-title h2,
.dashboard .col2-set .col-1 .box-title h3,
.dashboard .col2-set .col-2 .box-title h2,
.dashboard .col2-set .col-2 .box-title h3 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0; }

.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 10px;
  line-height: 19.6px; }

.dashboard .box-reviews.box-account {
  padding-bottom: 0; }

.dashboard .box-reviews li {
  padding: 10px 0;
  border-top: 1px solid #ededed; }

.dashboard .box-reviews li:first-child {
  border-top: 0; }

.dashboard .box-reviews li .number {
  margin-right: -20px;
  float: left;
  line-height: 1.4;
  font-size: 13px; }

.dashboard .box-reviews li .details {
  margin-left: 20px; }

.dashboard .box-reviews li .details .ratings {
  content: '';
  display: table;
  clear: both;
  margin-bottom: 0; }

.dashboard .box-reviews li .details .ratings strong {
  float: left;
  font-size: 13px;
  margin-right: 5px; }

.dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0; }

.dashboard .welcome-msg .hello {
  margin: 0 0 15px; }

.dashboard .box-content {
  padding: 10px 0; }

/* ============================================ *
 * Address Book
 * ============================================ */
.my-account .addresses-list .col-1,
.my-account .addresses-list .col-2 {
  padding-bottom: 0; }

.my-account .addresses-list .item {
  margin: 0 0 30px 0; }

.my-account .addresses-list .item p {
  margin-top: 10px; }

.my-account .custom-select {
  width: 365px;
  max-width: 100%; }

@media only screen and (max-width: 770px) {
  .my-account .addresses-list .col-1,
  .my-account .addresses-list .col-2 {
    width: 100%;
    padding-left: 0;
    padding-right: 0; }
  .my-account .addresses-list .col-1 li.empty,
  .my-account .addresses-list .col-2 li.empty {
    width: 100%; } }

@media only screen and (max-width: 599px) {
  .my-account .addresses-list .addresses-additional p a {
    white-space: nowrap; } }

/* ============================================ *
 * Order View
 * ============================================ */
.order-info {
  padding-bottom: 10px;
  border-bottom: 1px solid #ededed;
  width: 100%;
  margin-bottom: 30px; }

.order-info-table {
  margin: 30px 0; }

.order-info-table th,
.order-info-table td {
  padding: 2px 10px 2px 0; }

.order-info-table td {
  font-weight: bold; }

.order-info dt,
.order-info dd,
.order-info ul,
.order-info li {
  display: inline; }

.order-info dt {
  margin-right: 20px; }

.order-info li {
  margin: 0 0 0 20px; }

.order-info li.current {
  font-weight: 600; }

.order-info li:first-child {
  margin-left: 0; }

.order-date {
  text-transform: uppercase; }

.order-info-box {
  margin-bottom: 40px;
  margin-top: 20px; }

.order-info-box + .order-info-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #ededed; }

.order-info-box .col-1 {
  padding-right: 0;
  width: 48%; }

.order-info-box .col-2 {
  width: 52%; }

.order-info-box .col-1,
.order-info-box .col-2 {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0; }

.order-info-box .box-title {
  width: 150px;
  padding-right: 10px;
  float: left; }

.order-info-box .box-title h2 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5; }

.order-info-box .box-title h2:after {
  content: ':'; }

.order-info-box .box-content {
  float: left; }

.order-info-box .box-content td,
.order-info-box .box-content th {
  line-height: 1.3; }

.order-info-box .box-content th {
  padding-top: 10px; }

.order-info-box .box-content td {
  padding-left: 15px; }

.order-info-box .box-content strong {
  font-weight: normal;
  text-transform: uppercase; }

#my-orders-table .option-label {
  margin-left: 10px;
  font-weight: 600;
  font-style: italic; }

#my-orders-table .option-value {
  margin-left: 20px; }

#my-orders-table tr.bundle:not(:last-child) td {
  border-bottom: none;
  border-top: none; }

ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0; }

ol#cart-sidebar-reorder li input {
  margin-right: 10px; }

ol#cart-sidebar-reorder p.product-name {
  display: inline; }

@media only screen and (max-width: 599px) {
  #my-orders-table .option-label {
    margin-left: 20px; }
  #my-orders-table .option-value {
    margin-left: 35px; }
  #my-orders-table td[data-rwd-label=Qty] .nobr br {
    display: none; }
  #my-orders-table td[data-rwd-label=Qty] .nobr strong {
    margin-right: 10px; }
  #my-orders-table tr.bundle {
    border-color: #ededed; }
  #my-orders-table tr.bundle.child td[data-rwd-label] {
    padding-left: 60px; }
  #my-orders-table tbody:last-child tr:last-child td {
    padding-bottom: 10px;
    border-bottom: 0; }
  #my-orders-table tbody:last-child tr:last-child td:last-child {
    padding-bottom: 15px; }
  #my-orders-table tfoot tr.shipping {
    margin-top: 0; } }

.order-additional {
  margin: 40px 0; }

.order-gift-message dd {
  margin-top: 10px; }

.order-items table + a.button {
  display: block;
  margin: 10px 0 0;
  width: 100%; }

#my-orders-table .order-item-missing-detail {
  font-size: 10px;
  text-align: left;
  max-width: 200px;
  font-weight: bold;
  margin-left: auto; }

/* Order History Search */
.pager-custom {
  text-align: center;
  padding: 20px 0 10px; }

.pager-custom span {
  color: #3399cc;
  cursor: pointer;
  margin: 0 10px;
  vertical-align: middle; }

.pager-custom span.disabled {
  color: #ccc;
  cursor: default; }

.sales-order-history .col-main {
  border-right: 1px solid #999; }

.sales-order-history .buttons-set {
  display: none; }

/* ====================*/
.custom-widget {
  clear: both;
  background: #f1f1f1;
  -webkit-box-shadow: 0 12px 40px -10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 12px 40px -10px rgba(0, 0, 0, 0.5);
  margin: 30px 0; }

.custom-widget a {
  font-weight: bold; }

.custom-widget-header {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background: #000;
  padding: 4px 10px;
  margin: 0; }

.custom-widget-content {
  padding: 10px 15px 15px; }

.recent-quotes-widget table {
  font-size: 12px;
  margin-bottom: 10px;
  width: 100%; }

.recent-quotes-widget th,
.recent-quotes-widget td {
  padding: 5px 0;
  border-bottom: 1px solid #dadada; }

.recent-quotes-widget td {
  color: #999; }

.quick-reorder-widget .custom-widget-content p {
  font-size: 12px;
  margin: 0 0 10px; }

.quick-reorder-widget .custom-widget-content input {
  border: 1px solid #ccc;
  line-height: 1;
  padding: 5px;
  margin: 0 0 10px;
  height: 30px;
  width: 100%; }

.quick-reorder-widget .custom-widget-content button {
  width: 100%; }

.dashboard table.info th,
.dashboard table.info td {
  padding: 2px 25px 3px 0; }

.dashboard table.info td {
  font-weight: bold; }

.sales-order-search .data-table.orders {
  margin-top: 15px; }

@media only screen and (max-width: 1199px) {
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    padding-right: 30px;
    padding-bottom: 0; }
  .dashboard .box-head h2 + a {
    border-left: 1px solid #dadada;
    margin-left: 10px;
    padding: 0 0 0 10px; }
  .dashboard .box-head h2 span {
    margin-right: 5px;
    vertical-align: top; }
  .dashboard .box-content {
    padding: 10px 0; } }

@media only screen and (max-width: 979px) {
  body.customer-account .my-account .title-buttons {
    text-align: left; }
  body.customer-account .my-account .title-buttons span.separator,
  body.customer-account .my-account .title-buttons a {
    top: -12px; }
  .data-table span.nobr {
    white-space: normal; }
  .data-table span.nobr a {
    white-space: nowrap; }
  .data-table .separator {
    display: none; }
  .dashboard .col2-set .col-1 .box-title a,
  .dashboard .col2-set .col-2 .box-title a {
    position: static;
    padding: 0; } }

@media only screen and (max-width: 770px) {
  body.customer-account .data-table.orders th.ship, body.customer-account .data-table.orders td.ship {
    display: none; }
  .order-info-box .box-content {
    clear: left; }
  .addresses-list .item {
    float: left;
    width: 50%;
    padding-right: 30px; }
  .order-info dt {
    display: none; }
  .dashboard .page-title {
    margin-top: 20px; }
  .dashboard .page-title h1 {
    margin-top: 0; }
  .dashboard .welcome-msg .hello {
    font-style: italic; }
  .dashboard .box-account {
    padding-bottom: 15px;
    margin-bottom: 30px; }
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    width: 48%;
    padding-right: 0;
    padding-left: 0; }
  .dashboard .col2-set .col-1 {
    float: left;
    margin-right: 4%; }
  .dashboard .col2-set .col-2 {
    float: right; } }

@media only screen and (max-width: 599px) {
  body.customer-account .my-account .form-list .control {
    padding-left: 0; } }

@media only screen and (max-width: 530px) {
  .data-table.orders td.status,
  .data-table.orders th.status {
    display: none; } }

@media only screen and (max-width: 479px) {
  body.customer-account .my-account .page-title h1 {
    text-align: center; }
  body.customer-account .my-account .title-buttons {
    text-align: center; }
  body.customer-account .my-account .title-buttons .button {
    width: 100%;
    position: static;
    margin-bottom: 15px; }
  body.customer-account .my-account .fieldset h2 {
    margin-bottom: 15px; }
  body.customer-account .my-account .order-details h2 {
    margin-bottom: 15px; }
  body.customer-account .my-account .buttons-set {
    border-top: 0; }
  body.customer-account .my-account .addresses-list .item {
    margin-bottom: 15px;
    padding-right: 0;
    float: none;
    width: auto; }
  body.customer-account .my-account .addresses-list h2 {
    margin-bottom: 15px; }
  .order-info {
    margin-top: 15px; }
  .data-table.orders .link-reorder,
  .data-table.orders .date {
    display: none; }
  .data-table.orders td.view {
    text-align: right; }
  .dashboard .col2-set .col-1 .box-title a,
  .dashboard .col2-set .col-2 .box-title a {
    position: absolute;
    padding: 10px; }
  .order-info-box {
    margin: 0; }
  .order-info-box .col-1,
  .order-info-box .col-2 {
    width: 100%;
    border-bottom: 1px solid #ededed;
    padding: 15px 0; }
  .order-info-box + .order-info-box {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 30px; }
  #my-reviews-table .nobr {
    white-space: normal; }
  .customer-account #quote_form {
    display: none; }
  .customer-account .block-account .block-content {
    display: block !important;
    margin-bottom: 15px; } }

/* ============================================ *
 * Newsletter Subscriptions
 * ============================================ */
body.newsletter-manage-index .my-account .fieldset {
  margin-bottom: 20px; }

body.newsletter-manage-index .my-account .fieldset h2 {
  display: none; }

body.newsletter-manage-index .my-account .form-list {
  border-top: 1px solid #ededed;
  padding-top: 10px; }

/* ============================================ *
 * Contacts
 * ============================================ */
.contacts-index-index .buttons-set {
  margin-left: 30px;
  max-width: 435px; }

.contacts-index-index .buttons-set p.required {
  float: left; }

@media only screen and (max-width: 599px) {
  .contacts-index-index .buttons-set {
    max-width: 330px;
    margin-left: 0; }
  .contacts-index-index .buttons-set button {
    float: left;
    margin-left: 0px; }
  .contacts-index-index .buttons-set p.required {
    float: right; } }

div.paypal-logo {
  text-align: center;
  margin: 15px 0;
  max-width: 100%; }

div.paypal-logo span {
  display: block;
  width: 100%; }

div.paypal-logo span a {
  display: inline-block;
  max-width: 100%; }

div.paypal-logo span a img {
  max-width: 100%; }

div.paypal-logo span > img {
  display: none; }

.checkout-types div.paypal-logo {
  text-align: right; }

.bml-checkout-type {
  list-style-type: none; }

/* ============================================ *
 * PayPal
 * ============================================ */
@media only screen and (max-width: 870px) and (min-width: 771px) {
  .paypal-review-order .col2-set .col-1,
  .paypal-review-order .col2-set .col-2 {
    padding: 0px; } }

.paypal-review-order .info-set {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ededed; }

.paypal-review-order .buttons-set {
  margin-top: 0px;
  padding-top: 0px;
  border: 0; }

.paypal-review-order .buttons-set button {
  margin-bottom: 10px; }

@media only screen and (max-width: 770px) {
  .paypal-review-order .col-1 {
    padding-bottom: 0; }
  .paypal-review-order .field.inactive {
    display: none; } }

.bml-ad {
  display: none; }

.bml-ad.small img {
  margin: auto;
  max-width: 100%; }

@media only screen and (max-width: 799px) {
  .bml-ad.small {
    display: block; } }

@media only screen and (min-width: 800px) {
  .bml-ad.large {
    display: block; } }

/* ============================================ *
 * Review - Customer
 * ============================================ */
#customer-reviews {
  width: auto;
  float: none; }

#customer-reviews .review-heading {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 10px 0 5px; }

#customer-reviews .review-heading:after {
  content: '';
  display: table;
  clear: both; }

#customer-reviews .review-heading h2 {
  float: left;
  display: block; }

#customer-reviews .review-heading .pager {
  clear: none;
  float: right;
  width: auto; }

#customer-reviews .review-heading .pager .count-container .limiter {
  margin-bottom: 0; }

#customer-reviews .review-heading .pager .count-container .limiter label {
  font-size: 10px;
  text-transform: uppercase; }

#customer-reviews .review-heading .pager .amount {
  display: none; }

#customer-reviews h2 {
  color: #3399cc;
  font-size: 12px;
  text-transform: uppercase; }

#customer-reviews h2 span {
  color: #636363; }

#customer-reviews h3 {
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase; }

#customer-reviews h3 span {
  color: #3399cc; }

#customer-reviews .fieldset {
  padding-top: 25px; }

#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #cccccc;
  font-size: 12px;
  font-weight: normal;
  padding-bottom: 5px;
  text-transform: uppercase; }

#customer-reviews .fieldset h4 em {
  display: none; }

#customer-reviews .fieldset .form-list {
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: uppercase; }

#customer-reviews .fieldset .form-list .inline-label:after {
  content: '';
  display: table;
  clear: both; }

#customer-reviews .fieldset .form-list label {
  font-size: 12px;
  font-weight: normal; }

#customer-reviews .fieldset .form-list textarea {
  border: 1px solid #cccccc;
  -webkit-border-radius: 0;
          border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none; }

#customer-reviews .fieldset .form-list input {
  border: 1px solid #cccccc;
  -webkit-border-radius: 0;
          border-radius: 0; }

#customer-reviews .fieldset .form-list input[type="text"] {
  width: 100%; }

#customer-reviews .buttons-set {
  border: none;
  margin: 0; }

#customer-reviews dl {
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 10px; }

#customer-reviews dl dt {
  margin: 10px 0;
  text-transform: uppercase; }

#customer-reviews dl dd {
  font-size: 14px;
  margin: 10px 0; }

#customer-reviews dl dd .ratings-table {
  font-size: 12px;
  width: 100%; }

#customer-reviews dl dd .ratings-table tr {
  float: left;
  margin-right: 15px; }

#customer-reviews dl dd table {
  margin: 15px 0; }

#customer-reviews dl dd .review-meta {
  color: #3399cc;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase; }

.review-summary-table {
  border-bottom: 1px solid #cccccc;
  margin: 0 0 10px; }

.review-summary-table thead {
  background: transparent; }

.review-summary-table thead th {
  background: transparent;
  border: none;
  padding: 15px 7px 10px 8px; }

.review-summary-table tbody th {
  background: #FFFFFF;
  font-size: 12px; }

.review-summary-table tbody td {
  border: none;
  text-align: center;
  padding: 0; }

.review-summary-table tbody td label {
  width: 100%;
  display: block;
  padding: 11px 0; }

.review-summary-table .rating-box .rating-number {
  display: none; }

.review-summary-table .rating-box .rating-number:after {
  content: "";
  display: inline-block;
  background-position: 0px -599px;
  width: 13px;
  height: 14px;
  margin-left: 5px;
  position: relative;
  top: 2px; }

.write-review-button {
  background: #4c9ad2;
  color: white;
  padding: 8px 10px;
  display: inline-block;
  margin-bottom: 15px;
  font-weight: bold; }

.ratings {
  overflow: hidden; }
  .ratings.category-ratings h3 {
    font-weight: bold;
    margin-bottom: 30px; }
    .ratings.category-ratings h3 .reviews-qty {
      font-weight: normal; }
  .ratings.category-ratings .ratings-columns {
    clear: both; }
    .ratings.category-ratings .ratings-columns .left {
      float: left;
      width: 200px; }
      .ratings.category-ratings .ratings-columns .left .categories li {
        border-bottom: 1px solid #636363; }
        .ratings.category-ratings .ratings-columns .left .categories li:nth-last-child(1) {
          border-bottom: none; }
      .ratings.category-ratings .ratings-columns .left .categories a {
        display: block;
        padding: 5px 0; }
        .ratings.category-ratings .ratings-columns .left .categories a span.total {
          color: #55585d; }
        .ratings.category-ratings .ratings-columns .left .categories a.active {
          color: #55585d; }
    .ratings.category-ratings .ratings-columns .right {
      float: right;
      width: 890px; }
      @media all and (max-width: 1170px) {
        .ratings.category-ratings .ratings-columns .right {
          width: 800px; } }
      @media all and (max-width: 1060px) {
        .ratings.category-ratings .ratings-columns .right {
          width: 700px; } }
      @media all and (max-width: 960px) {
        .ratings.category-ratings .ratings-columns .right {
          width: 600px; } }
      @media all and (max-width: 860px) {
        .ratings.category-ratings .ratings-columns .right {
          width: 500px; } }
      @media all and (max-width: 760px) {
        .ratings.category-ratings .ratings-columns .right {
          width: 400px; } }
      @media all and (max-width: 660px) {
        .ratings.category-ratings .ratings-columns .right {
          float: left;
          width: 100%; } }
      .ratings.category-ratings .ratings-columns .right h4 {
        font-weight: normal;
        font-size: 18px; }
      .ratings.category-ratings .ratings-columns .right .head {
        margin-bottom: 50px; }
      .ratings.category-ratings .ratings-columns .right .review-sorting {
        margin-bottom: 30px; }
        .ratings.category-ratings .ratings-columns .right .review-sorting .selected-sorting {
          position: relative;
          padding-right: 15px;
          cursor: pointer; }
          .ratings.category-ratings .ratings-columns .right .review-sorting .selected-sorting:after {
            position: absolute;
            right: 0;
            top: -webkit-calc(50% - 7px);
            top: calc(50% - 7px);
            content: "\f0d7";
            font-family: 'icomoon';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            margin-left: 5px;
            vertical-align: top; }
          .ratings.category-ratings .ratings-columns .right .review-sorting .selected-sorting .sorting-options {
            background: white;
            border-top: 1px solid black;
            -webkit-box-shadow: 0 1px 9px #888;
                    box-shadow: 0 1px 9px #888;
            display: none;
            position: absolute;
            width: 130px;
            left: 0; }
            .ratings.category-ratings .ratings-columns .right .review-sorting .selected-sorting .sorting-options.open {
              display: block;
              top: 0;
              z-index: 9999; }
            .ratings.category-ratings .ratings-columns .right .review-sorting .selected-sorting .sorting-options li a {
              display: block;
              padding: 3px 5px;
              padding-bottom: 3px;
              color: #55585d; }
              .ratings.category-ratings .ratings-columns .right .review-sorting .selected-sorting .sorting-options li a:hover {
                background: #4c9ad2;
                color: white;
                text-decoration: none; }
      .ratings.category-ratings .ratings-columns .right .ratings-list .review-item {
        overflow: hidden;
        border-bottom: 1px solid #c6c6c6;
        padding-bottom: 40px;
        margin-bottom: 40px; }
        .ratings.category-ratings .ratings-columns .right .ratings-list .review-item:nth-last-child(1) {
          border-bottom: none;
          padding-bottom: 0;
          margin-bottom: 0; }
        .ratings.category-ratings .ratings-columns .right .ratings-list .review-item .review-author {
          float: left;
          margin-right: 20px;
          width: 100px;
          font-size: 14px; }
          .ratings.category-ratings .ratings-columns .right .ratings-list .review-item .review-author .location {
            font-size: 10px; }
        .ratings.category-ratings .ratings-columns .right .ratings-list .review-item .review-body {
          overflow: hidden; }
          .ratings.category-ratings .ratings-columns .right .ratings-list .review-item .review-body .review-title {
            font-weight: bold;
            font-size: 14px;
            margin-bottom: 2px; }
          .ratings.category-ratings .ratings-columns .right .ratings-list .review-item .review-body .rating-box-wrapper {
            margin-bottom: 0; }
          .ratings.category-ratings .ratings-columns .right .ratings-list .review-item .review-body .review-time {
            margin-bottom: 4px;
            font-size: 11px; }
          .ratings.category-ratings .ratings-columns .right .ratings-list .review-item .review-body .review-details {
            margin-bottom: 15px; }
          .ratings.category-ratings .ratings-columns .right .ratings-list .review-item .review-body .i-recommend {
            background-image: url("../images/recommend-icon.png");
            background-repeat: no-repeat;
            padding-left: 15px;
            -webkit-background-size: 11px 11px;
                    background-size: 11px;
            background-position: 0 50%;
            font-weight: bold;
            margin-bottom: 20px; }
          .ratings.category-ratings .ratings-columns .right .ratings-list .review-item .review-body .status {
            overflow: hidden; }
            .ratings.category-ratings .ratings-columns .right .ratings-list .review-item .review-body .status .helpful, .ratings.category-ratings .ratings-columns .right .ratings-list .review-item .review-body .status .unhelpful {
              float: left;
              background-image: url("../images/usefull-icon.png");
              background-repeat: no-repeat;
              -webkit-background-size: 13px 13px;
                      background-size: 13px;
              background-position: 0 -15px;
              padding-left: 18px; }
            .ratings.category-ratings .ratings-columns .right .ratings-list .review-item .review-body .status .helpful {
              margin-right: 30px;
              background-position: 0 2px; }

.subcategories .rating-box-wrapper-subcategories {
  background: #3399cc;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.subcategories a:hover .rating-box-wrapper-subcategories {
  background: #E09135; }

.rating-box-wrapper {
  overflow: hidden;
  margin: auto;
  margin-bottom: 15px; }
  .rating-box-wrapper.voting-enabled {
    cursor: pointer; }
  .rating-box-wrapper .rating-label {
    float: left;
    margin-left: 10px;
    margin-top: 2px; }
  .rating-box-wrapper .rating-box {
    text-indent: 0;
    width: 74px;
    height: 16px;
    float: left;
    overflow: hidden;
    margin: 1px 0;
    background-repeat: repeat-x;
    background-image: none;
    background-position: 0 -15px;
    -webkit-background-size: 13px 27px;
            background-size: 13px 27px;
    position: relative; }
    .rating-box-wrapper .rating-box .background {
      position: absolute; }
    .rating-box-wrapper .rating-box .rating-wrapper {
      overflow: hidden;
      position: absolute; }
      .rating-box-wrapper .rating-box .rating-wrapper .rating {
        color: #f5df3c;
        height: 16px;
        background-image: none;
        background-position: 0 0;
        -webkit-background-size: 13px 27px;
                background-size: 13px 27px;
        text-indent: 0;
        width: 1000px; }
  .rating-box-wrapper.big .rating-label {
    font-size: 19px;
    font-weight: bold;
    margin-top: 0; }
  .rating-box-wrapper.big .rating-box {
    width: 100px;
    height: 20px;
    font-size: 17px;
    background-position-y: 100%;
    -webkit-background-size: 20px 40px;
            background-size: 20px 40px; }
    .rating-box-wrapper.big .rating-box .rating {
      width: 100px;
      height: 20px;
      -webkit-background-size: 20px 40px;
              background-size: 20px 40px; }

.star-voting {
  overflow: hidden; }
  .star-voting .star-vote {
    cursor: pointer;
    width: 21px;
    height: 15px;
    float: left;
    margin-right: 1px;
    overflow: hidden;
    margin: 5px 0;
    background-repeat: no-repeat;
    background-image: none;
    background-position: 0 100%;
    -webkit-background-size: 20px 35px;
            background-size: 20px 35px; }
    .star-voting .star-vote.voted {
      background-position: 0 0;
      -webkit-background-size: 20px 35px;
              background-size: 20px 35px; }
      .star-voting .star-vote.voted .fa-star-o:before {
        content: "\f005";
        color: #f5df3c; }

.review-category-newreview h1 {
  color: #4d5159;
  font-weight: bold; }

.review-category-newreview .category-description {
  margin-top: 10px;
  margin-bottom: 20px;
  height: 125px;
  overflow: hidden;
  clear: both;
  padding-top: 20px; }
  .review-category-newreview .category-description p {
    margin-bottom: 1.5em; }

.review-category-newreview h3 {
  margin-bottom: 50px; }

.review-category-newreview .form-add {
  margin-top: 50px; }

.review-category-newreview #review-form {
  width: 50%; }
  @media all and (max-width: 960px) {
    .review-category-newreview #review-form {
      width: 100%; } }
  .review-category-newreview #review-form .nickname {
    margin-bottom: 15px; }
  .review-category-newreview #review-form .recommend-wrapper {
    margin-bottom: 15px; }
    .review-category-newreview #review-form .recommend-wrapper label {
      margin-right: 35px; }
  .review-category-newreview #review-form .part-title {
    border-bottom: 1px solid black;
    padding-bottom: 2px;
    margin-bottom: 10px;
    margin-top: 30px;
    font-size: 15px; }
  .review-category-newreview #review-form .rating-block-wrapper {
    overflow: hidden; }
    .review-category-newreview #review-form .rating-block-wrapper .rating-block {
      float: left;
      width: 33%;
      margin: 0 0 20px; }
      @media all and (max-width: 960px) {
        .review-category-newreview #review-form .rating-block-wrapper .rating-block {
          width: 50%; } }
      @media all and (max-width: 440px) {
        .review-category-newreview #review-form .rating-block-wrapper .rating-block {
          float: none; } }
      .review-category-newreview #review-form .rating-block-wrapper .rating-block:nth-child(3n+1) {
        clear: left; }
      @media all and (max-width: 960px) {
        .review-category-newreview #review-form .rating-block-wrapper .rating-block:nth-child(3n+1) {
          clear: none; }
        .review-category-newreview #review-form .rating-block-wrapper .rating-block:nth-child(2n+1) {
          clear: left; } }

.success-popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.5); }
  .success-popup-wrapper .success-popup {
    background: white;
    -webkit-border-radius: 10px;
            border-radius: 10px;
    width: 800px;
    margin: auto;
    margin-top: 50px;
    padding: 25px; }
    .success-popup-wrapper .success-popup .close-popup {
      cursor: pointer;
      background-image: url("../images/review-close.png");
      background-repeat: no-repeat;
      width: 37px;
      height: 37px;
      float: right; }
    .success-popup-wrapper .success-popup h3 {
      margin-bottom: 10px; }
    .success-popup-wrapper .success-popup ul {
      margin-bottom: 10px; }
      .success-popup-wrapper .success-popup ul li {
        list-style: disc;
        margin-left: 25px; }

.latest-review h3 {
  font-size: 18px;
  text-transform: none;
  font-weight: 700;
  color: #55585d; }

.latest-review .rating-box-wrapper {
  margin-bottom: 0; }
  .latest-review .rating-box-wrapper .rating-label {
    font-weight: bold; }

.latest-review .industry {
  margin-bottom: 10px;
  font-size: 11px; }

.latest-review .review-content {
  font-size: 14px; }

.pager-custom .short-arrow-down {
  margin: 0; }
  .pager-custom .short-arrow-down:after {
    content: "\f0d7";
    font-family: 'icomoon'; }

/* ============================================ *
 * Ratings - Global
 * ============================================ */
.ratings-table {
  font-size: 12px;
  text-transform: uppercase; }

.ratings-table th {
  padding-right: 10px; }

.ratings-table .rating-box {
  background-position: 0 -615px;
  background-repeat: repeat-x;
  height: 13px;
  overflow: hidden;
  text-indent: -9999px;
  width: 65px; }

.ratings-table .rating-box .rating {
  background-position: 0 -600px;
  background-repeat: repeat-x;
  float: left;
  height: 13px;
  text-indent: -9999px; }

@media only screen and (max-width: 770px) {
  body.review-product-list .product-view .product-shop .price-info {
    padding-left: 0; }
  body.review-product-list .product-view .product-shop .extra-info {
    padding: 0;
    min-width: 84%; }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table {
    margin: 10px 0;
    width: 100%; }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
    float: left;
    margin-right: 15px; } }

@media only screen and (max-width: 535px) {
  body.review-product-list .product-view .product-shop .extra-info {
    min-width: 0; }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
    float: none;
    margin-right: 0; } }

@media only screen and (max-width: 520px) {
  #customer-reviews .fieldset {
    width: 100%; }
  #customer-reviews .fieldset .form-list {
    width: 100%; }
  #customer-reviews .fieldset .form-list .inline-label label,
  #customer-reviews .fieldset .form-list .inline-label .input-box {
    float: none; }
  #customer-reviews .buttons-set {
    width: 100%; }
  #customer-reviews .review-summary-table thead th {
    padding-left: 0px;
    padding-right: 0px; }
  #customer-reviews .review-summary-table tbody th {
    padding-left: 0px;
    padding-right: 0px; }
  #customer-reviews .review-summary-table tbody td {
    width: 20%;
    padding: 0px; }
  #customer-reviews .review-summary-table .rating-box {
    text-indent: 0px;
    text-align: center;
    background: none;
    height: 19.6px;
    width: 100%; }
  #customer-reviews .review-summary-table .rating-box .rating {
    display: none; }
  #customer-reviews .review-summary-table .rating-box .rating-number {
    display: inline-block; } }

@media only screen and (max-width: 450px) {
  #customer-reviews dl dd .ratings-table tr {
    float: none; } }

/* ============================================ *
 * Review View Page
 * ============================================ */
.review-product-view .product-review .product-details h2 {
  border-bottom: none; }

.review-product-view .product-review .product-img-box {
  width: auto;
  max-width: 50%; }

.review-product-view .product-review .product-img-box > a {
  width: 100%; }

.review-product-view .product-review .product-img-box .product-image {
  width: 100%; }

@media only screen and (max-width: 770px) {
  .review-product-view .product-review .product-img-box {
    max-width: 100%; } }

/* ============================================ *
 * Slideshow
 * ============================================ */
.slideshow-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 10px 0;
  border: 1px solid #ededed; }

.slideshow-container .slideshow {
  width: 100%;
  padding: 0;
  position: relative;
  margin: 0;
  border: 10px solid #FFFFFF; }

.slideshow-container .slideshow > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  display: block;
  margin: 0; }

.slideshow-container .slideshow > li:first-child {
  position: static;
  z-index: 100; }

.slideshow-container .slideshow > li img {
  max-width: 100%;
  width: 100%; }

.slideshow-pager {
  text-align: center;
  width: 100%;
  z-index: 115;
  position: absolute;
  bottom: 0px;
  top: auto;
  overflow: hidden;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none; }

.slideshow-pager span {
  font-family: arial;
  width: 44px;
  height: 44px;
  display: inline-block;
  color: #DDDDDD;
  cursor: pointer; }

.slideshow-pager span:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -8px;
  -webkit-border-radius: 1px;
          border-radius: 1px;
  background-color: #FFFFFF;
  position: relative; }

.slideshow-pager span:hover:before {
  background-color: #2e8ab8; }

.slideshow-pager span.cycle-pager-active:before {
  background-color: #297aa3; }

.slideshow-pager > * {
  cursor: pointer; }

.slideshow-prev,
.slideshow-next {
  position: absolute;
  top: 0;
  width: 15%;
  max-width: 80px;
  height: 100%;
  opacity: 0.6;
  z-index: 110;
  cursor: pointer;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none; }

.slideshow-prev:before,
.slideshow-next:before {
  content: '';
  width: 0;
  height: 0;
  font-size: 0;
  position: absolute;
  border-style: solid;
  display: block;
  top: 50%;
  margin-top: -15px; }

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

.slideshow-prev.disabled,
.slideshow-next.disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  cursor: default; }

.slideshow-prev {
  left: 8px; }

.slideshow-prev:before {
  border-width: 15px 15px 15px 0;
  border-color: transparent #FFFFFF transparent transparent;
  top: 50%;
  left: 10px; }

.slideshow-prev:hover:before {
  border-color: transparent #2e8ab8 transparent transparent; }

.slideshow-next {
  right: 8px; }

.slideshow-next:before {
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #FFFFFF;
  top: 50%;
  right: 10px; }

.slideshow-next:hover:before {
  border-color: transparent transparent transparent #2e8ab8; }

.cycle-caption {
  position: absolute;
  color: white;
  bottom: 15px;
  right: 15px;
  z-index: 110; }

.cycle-overlay {
  font-family: tahoma, arial;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 120;
  background: black;
  color: white;
  padding: 15px;
  opacity: .5; }

/* ============================================ *
 * Wishlist
 * ============================================ */
#wishlist-table th {
  text-align: center; }

#wishlist-table.clean-table {
  font-size: 12px;
  text-transform: uppercase;
  width: 100%; }

#wishlist-table.clean-table th {
  border-bottom: 1px solid silver; }

#wishlist-table.clean-table td {
  padding: 15px;
  vertical-align: top; }

#wishlist-table.clean-table thead th {
  font-size: 12px;
  text-transform: uppercase; }

#wishlist-table .product-name {
  font-size: 16px;
  margin-bottom: 0;
  text-transform: uppercase; }

#wishlist-table .product-name a {
  color: #3399cc; }

#wishlist-table .wishlist-sku {
  font-size: 11px;
  margin: 5px 0; }

#wishlist-table textarea {
  border: 1px solid silver;
  width: 100%;
  height: 45px;
  font-size: 11px; }

#wishlist-table textarea::-webkit-input-placeholder {
  text-transform: uppercase; }

#wishlist-table textarea:-moz-placeholder {
  text-transform: uppercase; }

#wishlist-table textarea::-moz-placeholder {
  text-transform: uppercase; }

#wishlist-table textarea:-ms-input-placeholder {
  text-transform: uppercase; }

#wishlist-table textarea:focus {
  border: 1px solid #3399cc; }

#wishlist-table .item-manage {
  text-align: right;
  max-width: 450px;
  padding-top: 5px; }

#wishlist-table .item-manage .button {
  color: #FFFFFF;
  font-size: 11px;
  padding: 3px 5px; }

#wishlist-table .cart-cell {
  text-align: center; }

#wishlist-table td.customer-wishlist-item-image {
  width: 113px; }

#wishlist-table td.customer-wishlist-item-quantity {
  width: 4em; }

#wishlist-table td.customer-wishlist-item-price {
  width: 120px;
  text-align: center; }

#wishlist-table td.customer-wishlist-item-cart {
  width: 150px; }

#wishlist-table td.customer-wishlist-item-cart .button {
  font-size: 12px;
  margin-bottom: 10px;
  padding: 3px 5px;
  width: 100%; }

#wishlist-table td.customer-wishlist-item-cart .truncated {
  margin-bottom: 10px; }

#wishlist-table td.customer-wishlist-item-cart > p {
  margin-bottom: 0; }

#wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
  text-align: center; }

#wishlist-table td.customer-wishlist-item-cart .btn-remove {
  vertical-align: top; }

#wishlist-table td.customer-wishlist-item-remove {
  width: 20px; }

#wishlist-table .price-box {
  font-size: 12px; }

#wishlist-table .price-box .price {
  color: #636363; }

#wishlist-table .giftregisty-add {
  margin-top: 5px; }

#wishlist-table .giftregisty-add .change {
  display: none; }

#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #3399cc;
  margin-bottom: 3px; }

#wishlist-table .truncated .details {
  background: none;
  color: #3399cc; }

@media only screen and (max-width: 1199px) {
  #wishlist-table.clean-table td {
    padding-left: 10px;
    padding-right: 10px; } }

@media only screen and (max-width: 979px) {
  #wishlist-table.clean-table td {
    padding-left: 5px;
    padding-right: 5px; }
  #wishlist-table.clean-table td textarea {
    height: 100px; }
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 110px; }
  #wishlist-table .product-name {
    font-size: 13px; } }

@media only screen and (max-width: 770px) {
  #wishlist-table:after {
    content: '';
    display: table;
    clear: both; }
  #wishlist-table .product-name {
    font-size: 16px; }
  #wishlist-table textarea {
    height: 68px;
    max-width: 100%; }
  #wishlist-table .item-manage {
    max-width: 100%; }
  #wishlist-table tr {
    position: relative; }
  #wishlist-table tr:after {
    content: '';
    display: table;
    clear: both; }
  #wishlist-table td.customer-wishlist-item-image {
    width: 70px; }
  #wishlist-table td.customer-wishlist-item-image img {
    width: 70px;
    height: 70px; }
  #wishlist-table td.customer-wishlist-item-cart p {
    margin-bottom: 0; }
  #wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
    margin-right: 0;
    padding-top: 4px; }
  #wishlist-table td.customer-wishlist-item-cart {
    padding-right: 15px; } }

@media only screen and (max-width: 599px) {
  #wishlist-table td.customer-wishlist-item-quantity {
    padding-left: 0; }
  #wishlist-table td.customer-wishlist-item-image,
  #wishlist-table th.customer-wishlist-item-image {
    display: none; } }

@media only screen and (max-width: 479px) {
  #wishlist-table tr {
    position: relative; }
  #wishlist-table th.customer-wishlist-item-image {
    display: block; }
  #wishlist-table td.customer-wishlist-item-image, #wishlist-table td.customer-wishlist-item-info, #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price, #wishlist-table td.customer-wishlist-item-cart {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    empty-cells: hide; }
  #wishlist-table td.customer-wishlist-item-image {
    display: block;
    overflow: hidden; }
  #wishlist-table td.customer-wishlist-item-image a {
    float: left; }
  #wishlist-table td.customer-wishlist-item-image a img {
    width: 113px;
    height: 113px; }
  #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price {
    text-align: left; }
  #wishlist-table td.customer-wishlist-item-quantity:before, #wishlist-table td.customer-wishlist-item-price:before {
    float: left;
    margin-right: 15px; }
  #wishlist-table td.customer-wishlist-item-quantity .cart-cell, #wishlist-table td.customer-wishlist-item-price .cart-cell {
    text-align: left; }
  #wishlist-table td.customer-wishlist-item-quantity .price-box, #wishlist-table td.customer-wishlist-item-price .price-box {
    margin-top: 0; }
  #wishlist-table td.customer-wishlist-item-cart .cart-cell {
    float: left;
    width: 48%; }
  #wishlist-table td.customer-wishlist-item-cart > p {
    float: right;
    width: 48%; }
  #wishlist-table td.customer-wishlist-item-remove {
    position: absolute;
    top: 15px;
    right: 0px;
    display: block;
    padding: 0px;
    height: 20px; }
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 100%; } }

/* ============================================ *
 * Wishlist Sidebar
 * ============================================ */
.block-wishlist .mini-products-list > li:not(:last-child) {
  padding-bottom: 5px; }

.block-wishlist .product-details .product-name {
  padding-top: 0;
  margin-bottom: 5px; }

.block-wishlist .price-box {
  float: left;
  margin: 0; }

.block-wishlist .price-box,
.block-wishlist .price-box .price,
.block-wishlist .link-cart {
  font-size: 12px; }

.block-wishlist .link-cart {
  float: left;
  text-transform: uppercase;
  margin-right: 7px;
  padding-right: 7px;
  border-right: 1px solid #ededed; }

/* ============================================ *
 * Search - Auto Suggest
 * ============================================ */
.search-autocomplete {
  left: 0 !important;
  overflow: visible !important;
  position: relative !important;
  top: 15px !important;
  width: 100% !important;
  z-index: 200; }

.search-autocomplete ul {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #3399cc;
  left: 0;
  padding-left: 0;
  position: absolute;
  top: 0;
  width: 100%; }

.search-autocomplete ul li {
  border-bottom: 1px solid #f4f4f4;
  color: #3399cc;
  cursor: pointer;
  font-size: 12px;
  padding: 4px 6px;
  text-align: left; }

.search-autocomplete ul li:hover {
  color: #2e8ab8; }

.search-autocomplete ul li.selected {
  background-color: #3399cc;
  color: white; }

.search-autocomplete ul li .amount {
  float: right;
  font-weight: bold; }

.search-autocomplete ul li:last-child {
  border-bottom: none; }

.search-autocomplete:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #3399cc;
  border-top: none;
  left: 50%;
  top: -7px; }

/* ============================================ *
 * Search - Advanced
 * ============================================ */
.advanced-search {
  background: #f4f4f4;
  border: 1px solid #ededed;
  padding: 30px; }

.advanced-search select.multiselect option {
  border-bottom: 1px solid #ededed;
  padding: 2px 5px; }

@media only screen and (max-width: 479px) {
  .advanced-search {
    padding: 15px; } }

/* ============================================ *
 * Account - Reviews
 * ============================================ */
.product-review .product-img-box p.label {
  border-bottom: 1px solid #cccccc;
  font-size: 16px;
  margin-top: 20px;
  padding-bottom: 10px;
  text-transform: uppercase; }

.product-review .product-img-box .rating-box {
  margin: 15px 0; }

.product-review .product-details h2 {
  border-bottom: 1px solid #cccccc;
  color: #3399CC;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 10px; }

.product-review .ratings-table th {
  padding-right: 10px; }

.product-review .ratings-table tr {
  float: left;
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase; }

.product-review .ratings-description dt {
  border-bottom: 1px solid #cccccc;
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  padding: 10px 0;
  text-transform: uppercase; }

.product-review .ratings-description dd {
  color: #737373;
  font-size: 13px; }

@media only screen and (min-width: 771px) {
  .product-review .ratings-table tr {
    float: none; } }

@media only screen and (min-width: 1126px) {
  .product-review .ratings-table tr {
    float: left;
    margin-right: 15px; } }

@media only screen and (max-width: 320px) {
  .product-review .ratings-table tr {
    float: none; } }

/* ============================================ *
 * CMS Pages
 * ============================================ */
.cms-page-view .page-title h1,
.cms-page-view .page-title h3,
.cms-page-view .page-head h1,
.cms-page-view .page-head h3,
.cms-no-route .page-title h1,
.cms-no-route .page-title h3,
.cms-no-route .page-head h1,
.cms-no-route .page-head h3 {
  border: none; }

.cms-page-view .std img,
.cms-no-route .std img {
  max-width: 100%; }

.cms-page-view .std p,
.cms-no-route .std p {
  /* color: #636363; */
  /* font-size: 14px; */
  line-height: 24px; }

.cms-page-view .std h1,
.cms-no-route .std h1 {
  color: #3399cc; }

.cms-page-view .std h2,
.cms-no-route .std h2 {
  color: #3399cc; }

.cms-page-view .std li,
.cms-no-route .std li {
  color: #636363;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px; }

.cms-page-view .col-left:after,
.cms-no-route .col-left:after {
  content: '';
  display: table;
  clear: both; }

.cms-no-route .std img {
  width: 100%; }

.cms-page-view .std .messages,
.cms-home .std .messages,
.cms-index-index .std .messages,
.cms-no-route .std .messages {
  margin-bottom: 10px; }

.cms-page-view .std .messages ul,
.cms-home .std .messages ul,
.cms-index-index .std .messages ul,
.cms-no-route .std .messages ul {
  margin-bottom: 0; }

.cms-page-view .std .messages li,
.cms-home .std .messages li,
.cms-index-index .std .messages li,
.cms-no-route .std .messages li {
  list-style: none;
  margin-left: 0;
  font-style: normal; }

#accordion .toggle-tabs {
  display: none; }

#accordion > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #cccccc;
  position: relative;
  background-color: #f4f4f4;
  display: block; }

#accordion > dl > dt:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #3399cc;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px; }

#accordion > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #cccccc; }

#accordion > dl > dd:last-child {
  border-width: 0 1px 1px 1px; }

#accordion li {
  position: relative;
  overflow: hidden; }

#accordion li .plusimage h2 {
  margin-right: 10px; }

.page-sitemap .links {
  display: block;
  text-align: right;
  margin: 0 20px 0 0; }

.page-sitemap .links a {
  position: relative; }

.page-sitemap .sitemap {
  padding: 0 20px;
  margin: 15px 0;
  font-size: 12px; }

.page-sitemap .sitemap li {
  margin: 3px 0; }

.contacts-index-index h1 {
  border: none; }

#contactForm {
  padding-left: 40px; }

#contactForm h2 {
  display: none; }

#contactForm:after {
  content: '';
  display: table;
  clear: both; }

#contactForm .fieldset .legend + .required {
  margin: 0; }

@media only screen and (max-width: 770px) {
  #contactForm {
    padding-left: 0; } }

/* ============================================ *
 * Landing pages
 * ============================================ */
.landing-top-banner, .landing-top-banner img, .landing-bottom-banner, .landing-bottom-banner img {
  max-width: 100%; }

@media only screen and (max-width: 940px) {
  .landing-page .main-container,
  .landing-page .footer-container,
  .landing-page .footer-container .footer {
    width: auto; } }

/* ============================================ *
 * Pricing Conditions
 * ============================================ */
.price-box.map-info .old-price {
  display: none; }

.price-box .minimal-price-link .label {
  color: #cf5050;
  font-size: 12px;
  text-transform: uppercase; }

/* ============================================ *
 * Cookies
 * ============================================ */
.notice-cookie .notice-inner {
  padding-bottom: 0; }

.notice-cookie .notice-inner:after {
  content: '';
  display: table;
  clear: both; }

.notice-cookie .notice-text {
  float: left;
  max-width: 90%;
  padding-top: 4px;
  text-align: left; }

.notice-cookie .notice-text p {
  padding-bottom: 14.5px;
  line-height: 1.3; }

.notice-cookie .actions {
  float: left;
  text-align: right;
  padding-bottom: 14.5px; }

@media only screen and (max-width: 979px) {
  .notice-cookie .notice-text {
    max-width: 86%; } }

@media only screen and (max-width: 770px) {
  .notice-cookie {
    padding: 0 20px; }
  .notice-cookie .notice-text {
    max-width: 82%;
    padding-top: 0; } }

@media only screen and (max-width: 620px) {
  .notice-cookie {
    padding: 0 20px; }
  .notice-cookie .notice-inner {
    background-position: left 10px; }
  .notice-cookie .notice-inner:after {
    content: '';
    display: table;
    clear: both; }
  .notice-cookie .notice-text {
    float: none;
    max-width: 100%;
    padding-top: 0; }
  .notice-cookie .actions {
    text-align: left; } }

/* ============================================ *
 * Calendar styles (restore styles from /js/calendar)
 * ============================================ */
div.calendar table {
  border-collapse: separate; }

div.calendar table td.button {
  display: table-cell;
  background: inherit;
  color: inherit;
  text-transform: none; }

.multi-scaffold-form ul li {
  float: left; }

.multi-scaffold-form ul li:nth-child(even) {
  padding: 0px 0px 0px 16px; }

.multi-scaffold-form input.input-text {
  width: 332px; }

.multi-scaffold-form select {
  width: 332px;
  height: 30px;
  padding-bottom: 5px; }

.multi-scaffold-form ul li.control {
  padding-top: 10px; }

/* ============================================ *
 * Home Page Banner
 * ============================================ */
.banner {
  float: left;
  /*margin-top: 20px;*/
  width: 664px; }

.banner-description {
  background: #2C77A1;
  color: #FFF;
  font-weight: bold;
  margin-top: -5px;
  padding: 10px 20px;
  height: 70px; }

.banner-description-text {
  display: inline-block;
  font-weight: bold;
  font-size: 1.3em;
  width: 340px;
  vertical-align: top; }

.banner-caption.active {
  display: inline-block; }

.banner-navigation {
  white-space: nowrap;
  display: inline-block;
  margin: 16px 0px 10px;
  vertical-align: top;
  float: right; }

.banner-navigation a {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: white;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  margin: 5px;
  text-align: center; }

.banner-navigation a em {
  display: inline-block;
  width: 8px;
  height: 0;
  padding-top: 8px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  background: #FFF;
  margin: 2px;
  text-indent: 100%;
  overflow: hidden;
  vertical-align: top; }

.banner-navigation .active em {
  background: #2C77A1; }

/*!
* Fotorama 4.6.0 | http://fotorama.io/license/
*/
.fotorama__cart_hidden {
  height: 200px;
  overflow: hidden; }

.fotorama__arr:focus:after, .fotorama__fullscreen-icon:focus:after, .fotorama__html, .fotorama__img, .fotorama__nav__frame:focus .fotorama__dot:after, .fotorama__nav__frame:focus .fotorama__thumb:after, .fotorama__stage__frame, .fotorama__stage__shaft, .fotorama__video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0; }

.fotorama--fullscreen, .fotorama__img {
  max-width: 99999px !important;
  max-height: 99999px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  -webkit-border-radius: 0 !important;
          border-radius: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  padding: 0 !important; }

.fotorama__wrap .fotorama__grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.fotorama__grabbing * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing; }

.fotorama__spinner {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important; }

.fotorama__wrap--css3 .fotorama__arr, .fotorama__wrap--css3 .fotorama__fullscreen-icon,
.fotorama__wrap--css3 .fotorama__nav__shaft, .fotorama__wrap--css3 .fotorama__stage__shaft,
.fotorama__wrap--css3 .fotorama__thumb-border, .fotorama__wrap--css3 .fotorama__video-close,
.fotorama__wrap--css3 .fotorama__video-play {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.fotorama__caption, .fotorama__nav:after, .fotorama__nav:before, .fotorama__stage:after, .fotorama__stage:before, .fotorama__wrap--css3 .fotorama__html, .fotorama__wrap--css3 .fotorama__nav,
.fotorama__wrap--css3 .fotorama__spinner, .fotorama__wrap--css3 .fotorama__stage,
.fotorama__wrap--css3 .fotorama__stage .fotorama__img, .fotorama__wrap--css3 .fotorama__stage__frame {
  -webkit-transform: translateZ(0);
  transform: translateZ(0); }

.fotorama__arr:focus, .fotorama__fullscreen-icon:focus, .fotorama__nav__frame {
  outline: 0; }

.fotorama__arr:focus:after, .fotorama__fullscreen-icon:focus:after, .fotorama__nav__frame:focus .fotorama__dot:after, .fotorama__nav__frame:focus .fotorama__thumb:after {
  content: '';
  -webkit-border-radius: inherit;
          border-radius: inherit;
  background-color: rgba(0, 175, 234, 0.5); }

.fotorama__wrap--video .fotorama__stage, .fotorama__wrap--video .fotorama__stage__frame--video,
.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html,
.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img,
.fotorama__wrap--video .fotorama__stage__shaft {
  -webkit-transform: none !important;
  -ms-transform: none !important;
      transform: none !important; }

.fotorama__wrap--css3 .fotorama__nav__shaft, .fotorama__wrap--css3 .fotorama__stage__shaft,
.fotorama__wrap--css3 .fotorama__thumb-border {
  transition-property: -webkit-transform, width;
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  -o-transition-property: transform, width;
  transition-property: transform, width;
  transition-property: transform, width, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
       -o-transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
  -webkit-transition-duration: 0ms;
       -o-transition-duration: 0ms;
          transition-duration: 0ms; }

.fotorama__arr, .fotorama__fullscreen-icon, .fotorama__no-select,
.fotorama__video-close, .fotorama__video-play, .fotorama__wrap {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fotorama__select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text; }

.fotorama__nav, .fotorama__nav__frame {
  margin: auto;
  padding: 0; }

.fotorama__caption__wrap, .fotorama__nav__frame, .fotorama__nav__shaft {
  display: inline-block;
  vertical-align: middle;
  *display: inline;
  *zoom: 1; }

.fotorama__wrap * {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.fotorama__caption__wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.fotorama--hidden, .fotorama__load {
  position: absolute;
  left: -99999px;
  top: -99999px;
  z-index: -1; }

.fotorama__arr, .fotorama__fullscreen-icon, .fotorama__nav, .fotorama__nav__frame,
.fotorama__nav__shaft, .fotorama__stage__frame, .fotorama__stage__shaft,
.fotorama__video-close, .fotorama__video-play {
  -webkit-tap-highlight-color: transparent; }

.fotorama__arr, .fotorama__fullscreen-icon, .fotorama__video-close,
.fotorama__video-play {
  /*background: url(fotorama.png) no-repeat*/ }

@media (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 2dppx) {
  .fotorama__arr, .fotorama__fullscreen-icon, .fotorama__video-close,
  .fotorama__video-play {
    background: url(fotorama@2x.png) no-repeat;
    -webkit-background-size: 96px 160px;
            background-size: 96px 160px; } }

.fotorama__thumb {
  background-color: #7f7f7f;
  background-color: rgba(127, 127, 127, 0.2); }

@media print {
  .fotorama__arr, .fotorama__fullscreen-icon, .fotorama__thumb-border,
  .fotorama__video-close, .fotorama__video-play {
    background: none !important; } }

.fotorama {
  min-width: 1px;
  overflow: hidden; }

.fotorama__custom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 14px;
  line-height: 25px; }

.fotorama__custom + .fotorama__nav__shaft {
  opacity: 0;
  visibility: hidden; }

.fotorama__custom--prev,
.fotorama__custom--next {
  color: #3399cc;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0; }

.fotorama__custom--prev.disabled,
.fotorama__custom--next.disabled {
  color: #999;
  cursor: default; }

.fotorama__custom--next {
  left: auto;
  right: 0; }

.fotorama:not(.fotorama--unobtrusive) > :not(:first-child) {
  display: none; }

.fullscreen {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #000; }

.fotorama--fullscreen {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  float: none !important;
  z-index: 2147483647 !important;
  background: #000;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important; }

.fotorama--fullscreen .fotorama__nav, .fotorama--fullscreen .fotorama__stage {
  background: #000; }

.fotorama__wrap {
  -webkit-text-size-adjust: 100%;
  position: relative;
  direction: ltr;
  z-index: 0; }

.fotorama__wrap--rtl .fotorama__stage__frame {
  direction: rtl; }

.fotorama__nav, .fotorama__stage {
  overflow: hidden;
  position: relative;
  max-width: 100%; }

.fotorama__wrap--pan-y {
  -ms-touch-action: pan-y; }

.fotorama__wrap .fotorama__pointer {
  cursor: pointer; }

.fotorama__wrap--slide .fotorama__stage__frame {
  opacity: 1 !important; }

.fotorama__stage__frame {
  overflow: hidden; }

.fotorama__stage__frame.fotorama__active {
  z-index: 8; }

.fotorama__wrap--fade .fotorama__stage__frame {
  display: none; }

.fotorama__wrap--fade .fotorama__fade-front, .fotorama__wrap--fade .fotorama__fade-rear,
.fotorama__wrap--fade .fotorama__stage__frame.fotorama__active {
  display: block;
  left: 0;
  top: 0; }

.fotorama__wrap--fade .fotorama__fade-front {
  z-index: 8; }

.fotorama__wrap--fade .fotorama__fade-rear {
  z-index: 7; }

.fotorama__wrap--fade .fotorama__fade-rear.fotorama__active {
  z-index: 9; }

.fotorama__wrap--fade .fotorama__stage .fotorama__shadow {
  display: none; }

.fotorama__img {
  -ms-filter: "alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  border: none !important; }

.fotorama__error .fotorama__img, .fotorama__loaded .fotorama__img {
  -ms-filter: "alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1; }

.fotorama--fullscreen .fotorama__loaded--full .fotorama__img, .fotorama__img--full {
  display: none; }

.fotorama--fullscreen .fotorama__loaded--full .fotorama__img--full {
  display: block; }

.fotorama__wrap--only-active .fotorama__nav, .fotorama__wrap--only-active .fotorama__stage {
  max-width: 99999px !important; }

.fotorama__wrap--only-active .fotorama__stage__frame {
  visibility: hidden; }

.fotorama__wrap--only-active .fotorama__stage__frame.fotorama__active {
  visibility: visible; }

.fotorama__nav {
  font-size: 0;
  line-height: 0;
  text-align: center;
  display: none;
  white-space: nowrap;
  z-index: 5; }

.fotorama__nav__shaft {
  position: relative;
  left: 0;
  top: 0;
  text-align: left; }

.fotorama__nav__frame {
  position: relative;
  cursor: pointer; }

.fotorama__nav--dots {
  display: block; }

.fotorama__nav--dots .fotorama__nav__frame {
  width: 18px;
  height: 30px; }

.fotorama__nav--dots .fotorama__nav__frame--thumb, .fotorama__nav--dots .fotorama__thumb-border {
  display: none; }

.fotorama__nav--thumbs {
  display: block; }

.fotorama__nav--thumbs .fotorama__nav__frame {
  padding-left: 0 !important; }

.fotorama__nav--thumbs .fotorama__nav__frame:last-child {
  padding-right: 0 !important; }

.fotorama__nav--thumbs .fotorama__nav__frame--dot {
  display: none; }

.fotorama__dot {
  display: block;
  width: 4px;
  height: 4px;
  position: relative;
  top: 12px;
  left: 6px;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  border: 1px solid #7f7f7f; }

.fotorama__nav__frame:focus .fotorama__dot:after {
  padding: 1px;
  top: -1px;
  left: -1px; }

.fotorama__nav__frame.fotorama__active .fotorama__dot {
  width: 0;
  height: 0;
  border-width: 3px; }

.fotorama__nav__frame.fotorama__active .fotorama__dot:after {
  padding: 3px;
  top: -3px;
  left: -3px; }

.fotorama__thumb {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%; }

.fotorama__nav__frame:focus .fotorama__thumb {
  z-index: 2; }

.fotorama__thumb-border {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  border-style: solid;
  border-color: #00afea;
  background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(255, 255, 255, 0.25)), to(rgba(64, 64, 64, 0.1)));
  background-image: -webkit-linear-gradient(top left, rgba(255, 255, 255, 0.25), rgba(64, 64, 64, 0.1));
  background-image: -o-linear-gradient(top left, rgba(255, 255, 255, 0.25), rgba(64, 64, 64, 0.1));
  background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.25), rgba(64, 64, 64, 0.1)); }

.fotorama__caption {
  position: absolute;
  z-index: 12;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #000; }

.fotorama__caption a {
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid;
  border-color: rgba(0, 0, 0, 0.5); }

.fotorama__caption a:hover {
  color: #333;
  border-color: rgba(51, 51, 51, 0.5); }

.fotorama__wrap--rtl .fotorama__caption {
  left: auto;
  right: 0; }

.fotorama__wrap--no-captions .fotorama__caption, .fotorama__wrap--video .fotorama__caption {
  display: none; }

.fotorama__caption__wrap {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5px 10px; }

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.fotorama__wrap--css3 .fotorama__spinner {
  -webkit-animation: spinner 24s infinite linear;
  animation: spinner 24s infinite linear; }

.fotorama__wrap--css3 .fotorama__html, .fotorama__wrap--css3 .fotorama__stage .fotorama__img {
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-duration: .3s;
       -o-transition-duration: .3s;
          transition-duration: .3s; }

.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html,
.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img {
  -ms-filter: "alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0; }

.fotorama__select {
  cursor: auto; }

.fotorama__video {
  top: 32px;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 10; }

@-moz-document url-prefix() {
  .fotorama__active {
    box-shadow: 0 0 0 transparent; } }

.fotorama__arr, .fotorama__fullscreen-icon, .fotorama__video-close,
.fotorama__video-play {
  position: absolute;
  z-index: 11;
  cursor: pointer; }

.fotorama__arr {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  margin-top: -16px; }

.fotorama__arr--prev {
  left: 2px;
  background-position: 0 0; }

.fotorama__arr--next {
  right: 2px;
  background-position: -32px 0; }

.fotorama__arr--disabled {
  pointer-events: none;
  cursor: default;
  *display: none;
  opacity: .1; }

.fotorama__fullscreen-icon {
  width: 32px;
  height: 32px;
  top: 2px;
  right: 2px;
  background-position: 0 -32px;
  z-index: 20; }

.fotorama__arr:focus, .fotorama__fullscreen-icon:focus {
  -webkit-border-radius: 50%;
          border-radius: 50%; }

.fotorama--fullscreen .fotorama__fullscreen-icon {
  background-position: -32px -32px; }

.fotorama__video-play {
  width: 96px;
  height: 96px;
  left: 50%;
  top: 50%;
  margin-left: -48px;
  margin-top: -48px;
  background-position: 0 -64px;
  opacity: 0; }

.fotorama__wrap--css2 .fotorama__video-play, .fotorama__wrap--video .fotorama__stage .fotorama__video-play {
  display: none; }

.fotorama__error .fotorama__video-play, .fotorama__loaded .fotorama__video-play,
.fotorama__nav__frame .fotorama__video-play {
  opacity: 1;
  display: block; }

.fotorama__nav__frame .fotorama__video-play {
  width: 32px;
  height: 32px;
  margin-left: -16px;
  margin-top: -16px;
  background-position: -64px -32px; }

.fotorama__video-close {
  width: 32px;
  height: 32px;
  top: 0;
  right: 0;
  background-position: -64px 0;
  z-index: 20;
  opacity: 0; }

.fotorama__wrap--css2 .fotorama__video-close {
  display: none; }

.fotorama__wrap--css3 .fotorama__video-close {
  -webkit-transform: translate3d(32px, -32px, 0);
  transform: translate3d(32px, -32px, 0); }

.fotorama__wrap--video .fotorama__video-close {
  display: block;
  opacity: 1; }

.fotorama__wrap--css3.fotorama__wrap--video .fotorama__video-close {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr,
.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon {
  opacity: 0; }

.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr:focus, .fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:focus {
  opacity: 1; }

.fotorama__wrap--video .fotorama__arr, .fotorama__wrap--video .fotorama__fullscreen-icon {
  opacity: 0 !important; }

.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr,
.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon {
  display: none; }

.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr:focus, .fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:focus {
  display: block; }

.fotorama__wrap--css2.fotorama__wrap--video .fotorama__arr, .fotorama__wrap--css2.fotorama__wrap--video .fotorama__fullscreen-icon {
  display: none !important; }

.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:not(:focus) {
  -webkit-transform: translate3d(32px, -32px, 0);
  transform: translate3d(32px, -32px, 0); }

.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--prev:not(:focus) {
  -webkit-transform: translate3d(-48px, 0, 0);
  transform: translate3d(-48px, 0, 0); }

.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--next:not(:focus) {
  -webkit-transform: translate3d(48px, 0, 0);
  transform: translate3d(48px, 0, 0); }

.fotorama__wrap--css3.fotorama__wrap--video .fotorama__fullscreen-icon {
  -webkit-transform: translate3d(32px, -32px, 0) !important;
  transform: translate3d(32px, -32px, 0) !important; }

.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--prev {
  -webkit-transform: translate3d(-48px, 0, 0) !important;
  transform: translate3d(-48px, 0, 0) !important; }

.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--next {
  -webkit-transform: translate3d(48px, 0, 0) !important;
  transform: translate3d(48px, 0, 0) !important; }

.fotorama__wrap--css3 .fotorama__arr:not(:focus), .fotorama__wrap--css3 .fotorama__fullscreen-icon:not(:focus), .fotorama__wrap--css3 .fotorama__video-close:not(:focus), .fotorama__wrap--css3 .fotorama__video-play:not(:focus) {
  transition-property: -webkit-transform, opacity;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: .3s;
       -o-transition-duration: .3s;
          transition-duration: .3s; }

.fotorama__nav:after, .fotorama__nav:before, .fotorama__stage:after, .fotorama__stage:before {
  content: "";
  display: block;
  position: absolute;
  text-decoration: none;
  top: 0;
  bottom: 0;
  width: 10px;
  height: auto;
  z-index: 10;
  pointer-events: none;
  background-repeat: no-repeat;
  -webkit-background-size: 1px 100%, 5px 100%;
          background-size: 1px 100%, 5px 100%; }

.fotorama__nav:before, .fotorama__stage:before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(25%, rgba(0, 0, 0, 0.2)), color-stop(75%, rgba(0, 0, 0, 0.3)), to(transparent)), radial-gradient(farthest-side at 0 50%, rgba(0, 0, 0, 0.4), transparent);
  background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), -webkit-radial-gradient(0 50%, farthest-side, rgba(0, 0, 0, 0.4), transparent);
  background-image: -o-linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), -o-radial-gradient(0 50%, farthest-side, rgba(0, 0, 0, 0.4), transparent);
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), radial-gradient(farthest-side at 0 50%, rgba(0, 0, 0, 0.4), transparent);
  background-position: 0 0, 0 0;
  left: -10px; }

.fotorama__nav.fotorama__shadows--left:before, .fotorama__stage.fotorama__shadows--left:before {
  left: 0; }

.fotorama__nav:after, .fotorama__stage:after {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(25%, rgba(0, 0, 0, 0.2)), color-stop(75%, rgba(0, 0, 0, 0.3)), to(transparent)), radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, 0.4), transparent);
  background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), -webkit-radial-gradient(100% 50%, farthest-side, rgba(0, 0, 0, 0.4), transparent);
  background-image: -o-linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), -o-radial-gradient(100% 50%, farthest-side, rgba(0, 0, 0, 0.4), transparent);
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, 0.4), transparent);
  background-position: 100% 0, 100% 0;
  right: -10px; }

.fotorama__nav.fotorama__shadows--right:after, .fotorama__stage.fotorama__shadows--right:after {
  right: 0; }

.fotorama--fullscreen .fotorama__nav:after, .fotorama--fullscreen .fotorama__nav:before, .fotorama--fullscreen .fotorama__stage:after, .fotorama--fullscreen .fotorama__stage:before, .fotorama__wrap--fade .fotorama__stage:after, .fotorama__wrap--fade .fotorama__stage:before, .fotorama__wrap--no-shadows .fotorama__nav:after, .fotorama__wrap--no-shadows .fotorama__nav:before, .fotorama__wrap--no-shadows .fotorama__stage:after, .fotorama__wrap--no-shadows .fotorama__stage:before {
  display: none; }

/* Widget */
.quote-widget {
  background: #FFF;
  counter-reset: steps;
  width: 240px;
  float: right;
  -webkit-box-shadow: 0 12px 60px -20px rgba(0, 0, 0, 0.7);
          box-shadow: 0 12px 60px -20px rgba(0, 0, 0, 0.7);
  margin-bottom: 30px; }

.product-shop .quote-widget {
  margin-left: 30px;
  clear: both; }

.catalog-category-view .quote-widget {
  margin-left: 40px; }

.quote-widget .icon-circle {
  cursor: pointer;
  display: none; }

.quote-widget .current .icon-circle {
  color: white;
  display: inline;
  font-size: 18px;
  position: absolute;
  margin-top: -23px;
  right: 15px; }

.quote-widget .current .icon-circle span {
  color: black;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: 0px;
  left: 0;
  line-height: 18px;
  text-align: center;
  width: 18px; }

@media only screen and (max-width: 550px) {
  .quote-widget {
    float: none;
    width: auto; }
  .catalog-category-view .quote-widget {
    margin-left: 0; }
  .quote-widget > img {
    width: 100%; } }

.quote-widget section > div {
  display: none;
  padding: 15px; }

.quote-widget section:last-child > div {
  padding: 0; }

.quote-widget section.current {
  position: relative; }

.quote-widget section.current > div {
  display: block; }

.quote-widget section.loading {
  position: relative; }

.quote-widget section.loading:after {
  content: '';
  background: url(../images/loading.gif?update) no-repeat center #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3; }

.quote-widget h5 {
  text-transform: none;
  color: #999;
  counter-increment: steps;
  background: #F1F1F1;
  margin: 1px 0 0 0;
  padding: 5px 13px 6px 13px;
  font-weight: normal;
  margin-left: 36px;
  cursor: pointer;
  height: 29px;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis; }

.quote-widget .custom-select {
  border-color: #000;
  -webkit-border-radius: 5px;
          border-radius: 5px; }

.quote-widget .custom-select:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  right: 0;
  margin: 0;
  border-left: 1px solid #000;
  background-image: url(../images/i_select.png);
  background-position: center;
  -webkit-background-size: 13px 11px;
          background-size: 13px 11px;
  z-index: 2;
  /* This hack make the select behind the arrow clickable in some browsers */
  pointer-events: none; }

.quote-widget h5 span {
  margin-left: 25px; }

.quote-widget .hover {
  outline: 1px solid #E09135; }

.quote-widget .hover h5 {
  color: #E09135; }

.quote-widget h5:before {
  content: counter(steps);
  display: block;
  position: absolute;
  margin-left: -49px;
  background: inherit;
  padding: 5px 14px 6px 14px;
  margin-top: -5px; }

.quote-widget .current h5 {
  background: #000;
  color: #FFF;
  text-transform: uppercase;
  font-weight: bold; }

.quote-widget .current.last h5 {
  background: #f1f1f1;
  color: #999;
  text-transform: none;
  font-weight: normal; }

.quote-widget .current.last .icon-circle {
  display: none; }

.quote-widget .shapes input[type="radio"] {
  position: absolute;
  visibility: hidden; }

.quote-widget .shapes .shape-wrapper {
  width: 49%;
  font-weight: bold;
  display: inline-block;
  margin-left: 5px; }

#shape_bumper_stickers_wrapper {
  /*margin-top: 15px;*/
  text-align: center;
  width: 65%;
  margin-top: 0;
  padding-top: 0;
  line-height: 0px; }

#shape_lip_balm_wrapper {
  /*margin-top: 15px;*/
  text-align: center;
  width: 65%;
  margin-top: 0;
  padding-top: 0;
  line-height: 0px; }

.std #shape_bumper_stickers_wrapper,
.std #shape_lip_balm_wrapper,
.col1-layout #shape_bumper_stickers_wrapper,
.col1-layout #shape_lip_balm_wrapper {
  width: 100%; }

.quote-widget .shapes .shape-wrapper label {
  cursor: pointer;
  color: #2C9FDE; }

#shape_bumper_stickers_wrapper {
  text-align: center;
  width: 65%; }

.col-right #shape_bumper_stickers_wrapper {
  text-align: center;
  width: 100%; }

#shape_lip_balm_wrapper {
  text-align: center;
  width: 65%; }

.col-right #shape_lip_balm_wrapper {
  text-align: center;
  width: 100%; }

.quote-widget .shapes .shape-wrapper input:checked + label,
.quote-widget .shapes .shape-wrapper label:hover {
  color: #E09135; }

.quote-widget .shapes .shape-wrapper input:checked + label i,
.quote-widget .shapes .shape-wrapper label:hover i {
  background: #E09135; }

.quote-widget .shapes .shape-wrapper:nth-child(3),
.quote-widget .shapes .shape-wrapper:nth-child(5) {
  width: 35%; }

.quote-widget .shapes .shape-wrapper:first-child,
.quote-widget .shapes .shape-wrapper:nth-child(2),
.quote-widget .shapes .shape-wrapper:nth-child(4) {
  margin-right: 20px; }

.quote-widget .shapes .shape-wrapper:first-child,
.quote-widget .shapes .shape-wrapper:nth-child(2),
.quote-widget .shapes .shape-wrapper:nth-child(4) {
  margin-bottom: 15px; }

.quote-widget select {
  width: 90%;
  -webkit-appearance: menulist;
  line-height: 30px;
  height: 30px;
  margin: 10px;
  font-size: 13px; }

.quote-widget label:not(.shape-label) {
  display: inline-block;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 100%; }

.quote-widget label.checkbox {
  float: right;
  width: 95%; }

.quote-widget label.checkbox input {
  float: none;
  margin-right: 5px; }

.quote-widget label .checkbox-label {
  display: inline-block;
  font-size: 0.85em;
  padding: 0;
  vertical-align: top;
  width: 80%; }

.quote-widget #qty-block .icon-circle {
  color: #000;
  position: absolute;
  top: 6px;
  right: 6px;
  margin: 0;
  width: 18px; }

.quote-widget #qty-block .icon-circle span {
  display: inline;
  color: #fff;
  margin: 0;
  width: 18px; }

.quote-widget #qty-block .fields {
  padding: 15px 15px 0 25px; }

.quote-widget .tooltip-field {
  float: right;
  width: 40%;
  position: relative; }

.quote-widget .tooltip-field.tooltip-field-wide {
  width: 100%; }

.quote-widget label span {
  width: 40%;
  margin: 0;
  display: inline-block; }

.quote-widget label input {
  width: auto;
  float: right; }

.quote-widget label .input-wide {
  border: 1px solid #000;
  padding-right: 30px;
  width: auto; }

.quote-widget label.quote-price-label {
  font-weight: normal;
  display: block;
  margin: 0;
  padding: 15px 10px 0;
  width: auto; }

.quote-widget label.quote-price-label input {
  float: left;
  margin-top: 3px;
  margin-right: 5px;
  width: auto;
  vertical-align: middle; }

.quote-widget label.quote-price-label span {
  display: table;
  margin: 0;
  vertical-align: middle;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  width: auto; }

.quote-widget .buy-more {
  margin: 0 0 -8px;
  padding: 10px 10px 0; }

.quote-widget button {
  margin-top: 15px;
  height: 30px;
  padding: 5px;
  text-transform: uppercase;
  width: 100%; }

.quote-widget button.button-to-cart {
  color: #fff;
  background: #E09135; }

.quote-widget .widget-info.hide {
  display: none !important; }

.quote-widget .widget-info-popup {
  display: none !important;
  border: 1px solid #cccccc;
  padding: 10px !important;
  position: relative; }

.quote-widget .widget-info-popup.show {
  display: block !important; }

.quote-widget .widget-info-popup p {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif; }

.quote-widget .widget-info-popup .widget-info-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 12px; }

.quote-widget .widget-info-popup-close:hover {
  text-decoration: none;
  cursor: pointer; }

.quote-widget-validation .validation-block {
  margin-bottom: 10px; }

.quote-widget-validation .validation-progress {
  font-weight: bold; }

.quote-widget-validation .valid {
  color: #afb945; }

.quote-widget-validation .invalid {
  color: red; }

#quote-update-error-msg {
  color: red;
  padding: 3px 10px;
  text-transform: uppercase; }

#quote-update-error-msg:empty {
  padding: 0; }

.banner-description {
  background: #2C77A1;
  color: #FFF;
  font-weight: bold;
  margin-top: -5px;
  padding: 10px 20px; }

.banner-description-text {
  display: inline-block;
  font-weight: bold;
  font-size: 1.3em;
  width: 340px;
  vertical-align: top; }

.banner-caption {
  display: none; }

.menu-mobile {
  display: none; }

.bumper_stickers,
.lip_balm,
.rectangle,
.circle,
.square,
.oval {
  display: inline-block;
  background: #2C9FDE;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  margin-bottom: 2px;
  margin-right: 2px; }

.oval, .circle {
  -webkit-border-radius: 50%;
          border-radius: 50%; }

.oval, .rectangle, .lip_balm {
  width: 25px; }

.bumper_stickers {
  width: 50px; }

.lip_balm {
  height: 10px;
  width: 30px; }

.lip_balm:before {
  border-right: 2px solid white;
  content: " ";
  display: block;
  height: 10px;
  width: 10px; }

a:hover .rectangle,
a:hover .circle,
a:hover .square,
a:hover .oval {
  background: #E09135; }

.order-now {
  color: #FFF;
  border: 0;
  background: #2DA0DE;
  border: 1px solid #2DA0DE;
  display: inline-block;
  font-size: 13px;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  cursor: pointer;
  font-weight: bold;
  margin: 7px 0 5px 10px;
  padding: 10px 20px; }

.reorder-text p {
  margin: 0 0 15px; }

@media only screen and (max-width: 550px) {
  .banner {
    float: none;
    margin-bottom: 55px;
    width: auto; }
  .banner-description {
    margin-bottom: 40px;
    position: relative;
    text-align: center;
    height: auto; }
  .banner-description-text {
    width: 100%; }
  .banner-navigation {
    left: 50%;
    margin-left: -56px;
    position: absolute;
    top: 100%; }
  .banner-navigation a {
    color: #636363;
    background: #636363; }
  .banner-navigation a em {
    background: #636363; }
  .banner-navigation .active em {
    background: #fff; } }

/* Home Page Text */
.text {
  clear: both;
  margin-bottom: 20px;
  overflow: hidden; }

.text .description {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 75px;
  float: left; }

.text .quotes, .landingpage_right .quotes {
  text-align: right;
  width: 50%;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 70px; }

.text .quotes {
  border-left: 1px solid #E5E5E5; }

.text .quotes-full {
  text-align: left;
  width: auto;
  border-left: none;
  margin: 0 1em 2em 0; }

.text .quotes blockquote, .landingpage_right .quotes blockquote {
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.7;
  margin: 0;
  text-align: left; }

.text .quotes blockquote:before, .landingpage_right .quotes blockquote:before {
  display: inline;
  content: '“';
  position: absolute;
  color: #E9E9E9;
  font-size: 5em;
  font-family: Arial, sans-serif;
  margin-left: -.5em;
  margin-top: -.4em; }

.text .quotes blockquote:after, .landingpage_right .quotes blockquote:after {
  display: inline;
  content: '”';
  color: #E9E9E9;
  font-size: 5em;
  font-family: arial;
  position: absolute;
  margin-top: -.5em; }

.text .quotes cite, .landingpage_right .quotes cite {
  display: block;
  font-style: italic;
  text-align: right;
  margin: 20px 20px 0 0; }

.description a,
.text .quotes a {
  font-weight: bold; }

.text .quotes a, .landingpage_right .quotes a {
  display: inline-block;
  margin-top: 20px; }

@media only screen and (max-width: 550px) {
  .text .description,
  .text .quotes {
    border: none;
    float: none;
    padding: 0;
    display: block;
    margin: 0 auto;
    width: 80%; }
  .text .description {
    margin-bottom: 30px; } }

/* Gallery Widget */
.categories {
  margin-bottom: 50px;
  clear: both;
  overflow: hidden; }

.carousel {
  height: 230px;
  position: relative;
  overflow: hidden;
  padding: 0 40px; }

.carousel .slide-left,
.carousel .slide-right {
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: 40px;
  background: #F1F1F1;
  line-height: 230px;
  font-size: 2.5em;
  text-align: center; }

.carousel .slide-left:hover,
.carousel .slide-right:hover {
  color: #E09135;
  text-decoration: none; }

.carousel .slide-left {
  left: 0; }

.carousel .slide-right {
  right: 0; }

.list {
  margin: 0;
  padding: 0;
  width: auto; }

.carousel .list {
  white-space: nowrap;
  -webkit-transition: margin .3s;
  -o-transition: margin .3s;
  transition: margin .3s; }

.carousel .list li {
  margin: 0;
  vertical-align: top; }

@media only screen and (max-width: 550px) {
  .carousel {
    margin: 0 auto;
    width: 253px; } }

/* Lightbox */
#imagelightbox {
  background: #fff;
  -webkit-box-shadow: 0 75px 200px rgba(0, 0, 0, 0.7);
          box-shadow: 0 75px 200px rgba(0, 0, 0, 0.7);
  padding: 10px;
  position: fixed;
  z-index: 9999;
  -ms-touch-action: none;
  touch-action: none; }

#imagelightbox-close {
  border: none;
  width: 2.5em;
  /* 40 */
  height: 2.5em;
  /* 40 */
  text-align: left;
  background-color: #666;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  position: fixed;
  z-index: 10002;
  top: 2.5em;
  /* 40 */
  right: 2.5em;
  /* 40 */
  margin: 10px 0 0 -20px;
  -webkit-transition: color .3s ease;
  -o-transition: color .3s ease;
  transition: color .3s ease; }

#imagelightbox-close:hover,
#imagelightbox-close:focus {
  background-color: #111; }

#imagelightbox-close:before,
#imagelightbox-close:after {
  width: 2px;
  background-color: #fff;
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 50%;
  margin-left: -1px; }

#imagelightbox-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

#imagelightbox-close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

/* FAQ Page */
.cms-page-view .sidebar li {
  border-bottom: 1px solid #999;
  padding: 10px 0; }

.cms-page-view .sidebar li:last-child {
  border: 0; }

.cms-page-view .col-main {
  border-right: 1px solid #999;
  margin: 0 0 1%; }

.cms-page-view .col-main .faq > h3 {
  margin: 30px 0 15px; }

.faq-question {
  margin: 0 0 15px; }

.faq-answer {
  padding-left: 22px; }

.faq-question + .faq-answer {
  display: none; }

.faq-question.open + .faq-answer {
  display: block; }

.faq-question .spoiler-mark-wrapper:before {
  content: '[ '; }

.faq-question .spoiler-mark-wrapper:after {
  content: ' ]'; }

.faq-question .spoiler-mark-wrapper .spoiler-mark:last-child {
  display: none; }

.faq-question.open .spoiler-mark-wrapper .spoiler-mark:first-child {
  display: none; }

.faq-question.open .spoiler-mark-wrapper .spoiler-mark:last-child {
  display: inline; }

/* Search Results */
.catalogsearch-result-index .col-main {
  width: 70%; }

.catalogsearch-result-index .col-right {
  width: 30%; }

.catalogsearch-result-index .note-msg {
  margin: 1em 0; }

/* Conctac Us Form */
.std .custom-form {
  width: 96%; }

.std .custom-form ul {
  list-style: none; }

.std .custom-form li {
  margin-left: 0; }

.std .custom-form li:last-child {
  text-align: right; }

.std .custom-form li:last-child button {
  width: 50%; }

.custom-form .fields-column > div {
  display: inline-block;
  vertical-align: top;
  width: 50%; }

.custom-form .fields-column > div:first-child {
  padding-right: 2%; }

.custom-form .input-box input[type="text"],
.custom-form .input-box input[type="tel"] {
  width: 100%; }

.custom-form .input-box textarea {
  border: 1px solid #ccc;
  width: 100%; }

.custom-form .input-box textarea.validation-failed {
  border-color: red; }

.custom-form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
          box-shadow: 0 0 0px 1000px white inset; }

.custom-form .control label {
  padding: 0; }

.custom-form .control label:hover {
  background: none; }

.custom-form .control input.checkbox {
  float: none;
  margin: 0 5px 0 0; }

@media only screen and (max-width: 1200px) {
  .custom-form .fields-column > div {
    width: auto; } }

@media only screen and (max-width: 770px) {
  .custom-form .fields-column > div {
    display: block;
    width: auto; }
  .std .custom-form,
  .std .custom-form li:last-child button {
    width: 100%; }
  .custom-form .fields-column > div:first-child {
    padding: 0; } }

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.custom-form .captcha-reload {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px; }

.custom-form .captcha-reload.refreshing {
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite; }

.custom-form .captcha-image {
  position: relative;
  margin: 10px 0;
  height: auto; }

.custom-form .captcha-img {
  width: 100%;
  height: 100%; }

.checkout-uploadartwork-index .col-main {
  border-right: 1px solid #999999; }

.checkout-uploadartwork-index .quote-widget {
  margin-bottom: 0;
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none; }

.checkout-uploadartwork-index .quote-widget:before {
  color: #fff;
  background: #000;
  font-weight: 600;
  content: 'INSTANT QUOTE';
  display: block;
  margin: 0 0 2px;
  padding: 5px;
  text-align: center; }

.checkout-uploadartwork-index .quote-widget .quote-widget-img {
  display: none; }

.checkout-uploadartwork-index .sidebar button {
  font-size: 15px;
  font-weight: bold;
  height: auto;
  padding: 10px; }

.checkout-uploadartwork-index .quote-widget .tooltip-field {
  width: 60%; }

.checkout-uploadartwork-index .quote-widget label.checkbox {
  float: right;
  width: 60%; }

.checkout-uploadartwork-index .quote-widget label .email-wid {
  width: auto; }

.checkout-uploadartwork-index .quote-widget label span {
  width: auto; }

.checkout-uploadartwork-index .quote-widget label .input-wide {
  width: 100%; }

.checkout-uploadartwork-index .quote-widget label.checkbox .input-wide {
  width: auto; }

.sticky {
  float: none;
  position: fixed;
  top: 20px;
  margin-top: 12px;
  z-index: 6;
  left: auto; }

.quote-widget-price,
.quote-widget-comments {
  margin: 0 0 20px; }

.quote-widget-price label {
  margin: 0 0 10px; }

.quote-widget-price span {
  margin-left: 5px; }

.quote-widget-price-loading {
  position: relative;
  height: 100px; }

.quote-widget-price-loading:after {
  content: '';
  background: url(../images/loading.gif?update) no-repeat center #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3; }

.quote-widget-comments label {
  margin: 0 0 5px; }

.quote-widget-total {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 5px; }

.quote-widget-total span {
  color: #afb945;
  font-weight: bold; }

.upload-artwork-content {
  padding: 10px 0 0 50px; }

.upload-artwork-content > ul {
  list-style: disc;
  padding-left: 20px;
  margin: 20px 0; }

.upload-artwork-content > ul li {
  margin: 10px 0; }

.upload-artwork-content .link {
  font-weight: bold;
  display: inline-block;
  margin: 10px 20px 20px; }

.upload-artwork-content .link span {
  vertical-align: bottom; }

.upload-artwork-version {
  border-top: 1px solid #999999;
  overflow: hidden;
  padding: 8px 0 0; }

.upload-artwork-version + .upload-artwork-version {
  margin-top: 25px; }

.upload-artwork-version .upload-artwork-image {
  float: left;
  margin-right: 40px; }
  .upload-artwork-version .upload-artwork-image img {
    width: 207px; }

.upload-artwork-version .upload-artwork-image.loading {
  position: relative; }

.upload-artwork-version .upload-artwork-image.loading:after {
  content: '';
  background: url(../images/loading.gif) no-repeat center #fff;
  -webkit-background-size: 28px;
  background-size: 28px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3; }

.upload-artwork-version .upload-artwork-fields {
  overflow: hidden; }

.upload-artwork-version .upload-artwork-fields label {
  display: block;
  margin: 0 0 2px; }

.upload-artwork-version .upload-artwork-fields input {
  margin: 0 0 20px;
  width: 100%; }

.upload-artwork-version .upload-artwork-fields button {
  font-size: 14px;
  height: auto;
  padding: 10px;
  text-transform: none; }

.upload-artwork-version .upload-artwork-fields button i {
  background: url(../images/i_upload_artwork.png) 3px 3px no-repeat #fff;
  -webkit-background-size: 10px;
  background-size: 10px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  line-height: 1;
  display: inline-block;
  height: 16px;
  padding: 2px;
  width: 16px;
  vertical-align: middle;
  margin-left: 15px; }

.upload-artwork-version .upload-artwork-fields button:hover i {
  background-position: 3px -14px; }

.upload-artwork-options h4,
.unwind-direction h4 {
  border-top: 1px solid #999999;
  margin: 40px 0 30px;
  padding: 10px 0 0; }

.quote-widget .unwind-direction-child .unwind-direction-image {
  display: block;
  background: url(../images/art_rolls.png) no-repeat 0 0;
  margin: 0 auto;
  height: 86px;
  width: 63px; }

.quote-widget .unwind-direction-child .unwind-direction-image-2 {
  background-position: -8px 0; }

.quote-widget .unwind-direction-child .unwind-direction-image-3 {
  background-position: -86px 0; }

.quote-widget .unwind-direction-child .unwind-direction-image-4 {
  background-position: -162px 0; }

.quote-widget .unwind-direction-child .unwind-direction-image-5 {
  background-position: -243px 0; }

.upload-artwork-options .tooltip {
  background: url("../images/i_tooltip.png") no-repeat 0 0;
  display: inline-block;
  height: 0;
  margin-left: 5px;
  padding: 20px 0 0;
  overflow: hidden;
  text-indent: 100%;
  vertical-align: middle;
  width: 20px; }

.custom-tooltip {
  color: #636363;
  -webkit-border-radius: 1px;
          border-radius: 1px;
  position: absolute;
  background: #f0f0f1;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  padding: 8px;
  margin: 30px 0 0;
  max-width: 200px;
  z-index: 999999 !important; }

.custom-tooltip:after {
  content: '';
  top: -5px;
  left: 50%;
  margin-left: -5px;
  border-color: transparent;
  border-style: solid;
  border-width: 0 5px 5px;
  border-bottom-color: #f0f0f1;
  position: absolute;
  width: 0;
  height: 0; }

.upload-artwork-options label.quote-price-label {
  margin: 0 0 15px 0;
  padding: 2px; }

.upload-artwork-options label.quote-price-label input {
  float: left;
  margin: 4px 10px 0 0; }

.upload-artwork-options label.quote-price-label > span {
  display: block;
  overflow: hidden; }

.unwind-direction-wrapper {
  display: table; }

.unwind-direction-child {
  border-right: 1px solid silver;
  display: table-cell;
  margin: 0;
  position: relative;
  width: 20%; }

.quote-widget .unwind-direction-child label {
  display: block;
  padding: 0 10px;
  margin: 0; }

.quote-widget .unwind-direction-child input {
  display: block;
  float: none;
  margin: 10px 0;
  width: auto; }

.quote-widget .unwind-direction-child span {
  display: block;
  margin: 10px 0;
  width: auto; }

.quote-widget .unwind-direction-child span strong {
  font-weight: normal; }

.unwind-direction-child:last-child {
  border: none; }

.unwind-direction-child img {
  max-width: 100%; }

@media only screen and (max-width: 770px) {
  .sticky {
    float: none;
    position: static;
    top: auto;
    z-index: 6;
    left: auto;
    margin: 0 auto;
    width: auto !important; }
  .quote-widget-price label {
    display: block; }
  .upload-artwork-content {
    padding-left: 0; }
  .upload-artwork-version .upload-artwork-image {
    margin-right: 10px; }
  .unwind-direction-child {
    display: inline-block;
    border: none;
    vertical-align: top;
    width: 49%; } }

#checkout-shipping-method-load {
  float: left; }

#checkout-shipping-product-list {
  width: 300px;
  float: left;
  overflow: hidden;
  padding-left: 5px; }

/* Custom select */
.custom-select {
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid silver;
  -webkit-border-radius: 2px;
          border-radius: 2px; }

.custom-select.validation-failed,
.custom-select.validation-failed:hover {
  border-color: red; }

.custom-select .validation-advice {
  display: block;
  float: left; }

.custom-select select {
  width: 100%;
  margin: 0;
  background: none;
  border: 1px solid transparent;
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* Remove select styling */
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  /* Font size must the 16px or larger to prevent iOS page zoom on focus */
  font-size: 1em;
  /* General select styles: change as needed */
  color: #444;
  padding: 4px 5px;
  line-height: 1.3; }

.custom-select:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 8px;
  top: 50%;
  right: 1em;
  margin-top: -4px;
  background-image: url(../images/select-arrow.png);
  background-repeat: no-repeat;
  -webkit-background-size: 100% 100%;
          background-size: 100%;
  z-index: 2;
  /* This hack make the select behind the arrow clickable in some browsers */
  pointer-events: none; }

.custom-select select:focus {
  outline: none;
  -webkit-box-shadow: 0 0 1px 3px #b4defa;
          box-shadow: 0 0 1px 3px #b4defa;
  background-color: transparent;
  color: #222;
  border: 1px solid #aaa; }

.custom-select option {
  font-weight: normal; }

x:-o-prefocus, .custom-select::after {
  display: none; }

.bumper_stickers {
  width: 50px; }

.std #shape_bumper_stickers_wrapper {
  width: 100%; }

.lip_balm {
  height: 10px;
  width: 30px; }

.lip_balm::before {
  border-right: 2px solid white;
  content: " ";
  display: block;
  height: 10px;
  width: 10px; }

.std #shape_lip_balm_wrapper {
  width: 100%; }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .custom-select select::-ms-expand {
    display: none; }
  .custom-select select:focus::-ms-value {
    background: transparent;
    color: #222; } }

@-moz-document url-prefix() {
  .accordion .custom-select {
    overflow: hidden; }
  .custom-select select {
    width: 120%;
    width: calc(100% + em); } }

.custom-select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000; }

/* Popup */
.custom-overlay {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100; }

.custom-overlay.fade-out {
  display: block;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s linear;
  -o-transition: opacity .3s linear;
  transition: opacity .3s linear; }

.custom-overlay.fade-in {
  visibility: visible;
  opacity: 1; }

.custom-popup {
  background: #FFF;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50px;
  left: 50%;
  margin: 0 0 0 -400px;
  padding: 20px 60px;
  max-height: 90%;
  width: 800px;
  z-index: 101; }

.custom-popup .custom-popup-header {
  padding: 10px 0 10px 60px;
  border-bottom: 1px solid #ccc;
  margin: -20px -60px 30px; }

.custom-popup .fields {
  margin: 0 0 15px; }

.custom-popup .fields2 .field {
  float: left;
  width: 50%; }

.custom-popup .fields2 .customer-name {
  overflow: hidden; }

.custom-popup .fields2 .field:first-child {
  padding-right: 30px; }

.custom-popup .fields label {
  display: block;
  margin: 0 0 3px; }

.custom-popup .fields input {
  border: 1px solid #ccc;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  padding: 5px 10px 7px;
  width: 100%; }

.custom-popup .fields.buttons {
  text-align: right; }

.custom-popup-close {
  color: #fff;
  font-size: 24px;
  position: absolute;
  top: -36px;
  right: 0; }

.custom-popup-close:hover {
  text-decoration: none; }

.custom-popup .scroll {
  overflow: auto;
  min-height: 350px;
  max-height: 350px;
  padding: 30px 40px;
  margin: -30px -60px -20px; }

.custom-popup .scroll p {
  margin: 10px 0; }

#edit-account-info-popup .custom-popup .fields.buttons {
  margin-top: 30px; }

body.no-scroll {
  overflow: hidden; }

@media only screen and (max-width: 770px) {
  .custom-popup {
    padding: 20px 20px;
    margin: 5px 0 0 -45%;
    top: 80px;
    width: 90%; }
  .custom-popup .custom-popup-header {
    padding: 10px 0 10px 20px;
    border-bottom: 1px solid #ccc;
    margin: -20px -20px 10px; }
  .custom-popup .fields2 .field {
    float: none;
    width: auto; }
  .custom-popup .fields2 .field:first-child {
    padding-right: 0;
    margin: 0 0 15px; }
  .custom-popup .fields.buttons button {
    width: 100%; }
  .custom-popup-close {
    top: -45px;
    right: 5px; }
  .custom-popup .scroll {
    margin: -10px -20px -20px; } }

@media only screen and (max-width: 770px) {
  .data-table.quotes thead,
  .data-table.orders thead {
    display: none; }
  .data-table.quotes tr,
  .data-table.orders tr {
    border-top: 1px solid #999;
    display: block;
    margin: 20px 0 40px; }
  .data-table.quotes td,
  .data-table.orders td {
    border: none;
    display: block;
    text-align: right;
    padding: 5px 0;
    position: relative; }
  .data-table.quotes tbody td[data-rwd-label],
  .data-table.orders tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30%; }
  .data-table.quotes tbody td[data-rwd-label]:before,
  .data-table.orders tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    display: inline-block;
    width: 30%;
    font-size: 12px;
    font-weight: bold;
    padding-right: 5px;
    position: absolute;
    left: 0;
    top: 5px; }
  .data-table.quotes td:last-child,
  .data-table.orders td:last-child {
    border-top: 1px solid #ccc; }
  .data-table.quotes .number,
  .data-table.orders .number {
    border-bottom: 1px solid #ccc; }
  .data-table.quotes td:last-child .button,
  .data-table.orders td:last-child .button {
    padding: 10px 20px;
    width: auto; }
  .data-table.orders .view-order {
    padding-left: 30%;
    text-align: left; } }

/* Label Materials */
.cms-label-materials .std h3 {
  font-weight: bold; }

/* Label Uses */
.catalog-category-view .categories {
  clear: none; }

.catalog-category-view .grid {
  margin-left: -15px;
  display: block; }

.catalog-category-view .grid .list li {
  margin: 17px 15px;
  vertical-align: top; }

.sales-order-quotes p + .data-table.quotes {
  margin-top: 10px; }

.sales-order-quotes p + .data-table.quotes tbody tr:last-child td {
  border-bottom: none; }

/* CUSTOM WINE LABELS */
.contents-block ol.advantageslist {
  list-style-type: upper-hexadecimal; }

/* PRODUCT OVERVIEW PAGES */
.last li {
  width: 225px; }

.list.item .content {
  font-size: 0.8em; }

.grid .list li {
  /* margin: 25px; */
  padding: 0px;
  vertical-align: top;
  width: auto;
  display: inline-block; }

.block-title a h2 {
  background-color: #FFFFFF; }

ul .listTextBox li {
  list-style-type: disc;
  float: none;
  display: block; }

.background-line-caption, .block-title h2 {
  font-weight: 700; }

.cms-page-view .page-title h1 {
  color: #3399cc;
  font-weight: 700; }

/* ROLL LABELS */
.customlabels {
  background-color: #3399CC;
  margin: 1%; }

.customlabels h1 {
  text-align: center;
  color: #FFFFFF;
  font-size: 3.3em;
  padding: 1.25% 4%; }

/* CUSTOM VINYL LABELS */
.boldblue {
  color: #3399CC;
  font-weight: 700;
  font-size: 1.3em; }

/* TOP BANNER HOMEPAGE */
.promobanner {
  width: auto;
  margin: 0 0 .25em 0; }

.bannercolor {
  width: auto;
  background-color: #E09135;
  color: #FFFFFF;
  text-align: center;
  padding: .2em 0 .1em 0;
  line-height: 1em; }

span.bannerbold {
  font-weight: 800;
  font-size: 1.875em; }

span.bannersemibold {
  font-weight: 700;
  font-size: 1em;
  line-height: 0; }

.widget-banner, .landing-top-banner, .landing-bottom-banner {
  margin-bottom: 0; }

.widget-banner > ul > li p, .landing-top-banner p, .landing-bottom-banner p {
  color: white;
  font-weight: 700;
  line-height: 1em;
  padding: 0.4em 0.5em 0.5em;
  text-align: center; }

.widget-banner > ul > li strong, .landing-top-banner strong, .landing-bottom-banner strong {
  font-size: 1.2em;
  font-weight: 800; }

.widget-banner > ul > li, .landing-top-banner {
  font-size: 1.5em; }

.landingpage_right .quotes {
  width: auto; }

.landingpage_right .quotes:last-child {
  margin-bottom: .5em; }

@media only screen and (min-width: 550px) {
  .landing-main-list {
    width: 90%; }
  .landing-main-list ul {
    width: 90%;
    display: block; } }

#tlmi-icon {
  width: 76px; }

#bbb-icon, #chamber-icon, #top-icon {
  width: 50px;
  margin: 0 auto; }

@media only screen and (min-width: 771px) {
  .landing-main-list ul {
    display: inline-block;
    width: 49%;
    padding: 4%;
    vertical-align: top; } }

@media only screen and (min-width: 1024px) {
  .landing-main-list ul {
    display: inline-block;
    width: 49%;
    padding: 4%;
    vertical-align: top; } }

@media only screen and (min-width: 1200px) {
  .grid .list.teaser li {
    margin: 0 2em 2.5em 0;
    padding: 0px;
    vertical-align: top;
    width: 21%;
    display: inline-block; }
  .background-line-caption, .block-title h2 {
    font-weight: 700;
    margin: 0 0 .5em 0; }
  .overview-message {
    padding: 0;
    margin: 0; }
  .grid ul.list.teaser img {
    margin: 0 auto; }
  .nav-primary .nav-with-popup ul.level0 a .mega-teaser-label {
    height: 78px;
    padding: 16px;
    line-height: 0;
    margin: 0;
    display: inline-block; }
  .nav-primary .nav-with-popup ul.level0 a .mega-teaser-label span {
    height: auto;
    display: inline-block;
    vertical-align: middle;
    width: 115px;
    margin: 0em 0em;
    overflow: visible;
    padding: 1%;
    font-weight: bold;
    line-height: 1;
    white-space: normal; }
  .nav-primary .nav-with-popup ul.level0 a .mega-teaser-label:before {
    content: ' ';
    vertical-align: middle;
    display: inline-block;
    height: 100%;
    width: 0; }
  .landing-main-list {
    width: 90%; }
  .landing-main-list ul {
    display: inline-block;
    width: 49%;
    padding: 4%;
    vertical-align: top; }
  .landing-main-list {
    border: #3399cc 2px solid;
    width: 90%;
    margin: 5% auto; } }

.grid ul.list.teaser img {
  margin: 0 auto; }

.block-recent-posts .item a {
  display: inline;
  margin: 0; }

.carousel .list a {
  color: white;
  font-weight: bold;
  background: #2c9fde;
  display: inline-block;
  text-align: center;
  width: 153px;
  height: 215px;
  vertical-align: top; }

.carousel .list a:hover {
  background: #e09135; }

.nav-primary .nav-with-popup ul.level0 a .mega-teaser-label {
  height: 78px;
  padding: 16px;
  line-height: 0;
  margin: 0;
  display: inline-block; }

.nav-primary .nav-with-popup ul.level0 a .mega-teaser-label span {
  height: auto;
  display: inline-block;
  vertical-align: middle;
  width: 115px;
  margin: 0em 0em;
  overflow: visible;
  padding: 1%;
  font-weight: bold;
  line-height: 1;
  white-space: normal; }

.nav-primary .nav-with-popup ul.level0 a .mega-teaser-label:before {
  content: ' ';
  vertical-align: middle;
  display: inline-block;
  height: 100%;
  width: 0; }

.item img {
  -webkit-box-shadow: 0px 0px 1px 1px #ddd;
  box-shadow: 0px 0px 1px 1px #ddd; }

.category-products .grid ul.list.teaser li.item.last {
  display: block; }

.category-products .grid .list.teaser {
  padding: 0;
  margin: 0px;
  text-align: left;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: none;
  margin-bottom: 25px;
  width: 100%; }

.category-products .grid .list.teaser li.item.last {
  padding: 0 15px 2.25em;
  width: 25%;
  height: auto;
  margin: 0px;
  margin-bottom: 2.5em;
  border: none;
  display: block;
  position: relative; }

.category-products .grid .list.teaser img {
  width: 100%; }

.category-products .grid .list a.product-button {
  margin-top: auto;
  position: absolute;
  bottom: 0; }

.category-products .block-title {
  border: none; }

.category-products .category-products.grid.list.product-image {
  margin-top: auto;
  vertical-align: bottom; }

.col1-layout .col-main {
  border-right: none; }

@media only screen and (max-width: 992px) {
  .category-products .grid .list.teaser li.item.last {
    width: 33%; } }

@media only screen and (max-width: 770px) {
  .category-products .grid .list.teaser li.item.last {
    width: 50%; } }

@media only screen and (max-width: 550px) {
  .category-products .grid .list.teaser li.item.last {
    width: 100%; } }

.landing-top-banner, .landing-bottom-banner {
  max-width: 100%;
  margin: 0 0 .5em;
  text-align: center;
  clear: both;
  color: #FFFFFF;
  line-height: 1.6em; }

.landing-bottom-banner {
  margin: .5em 0; }

.landing-bottom-banner p {
  font-size: 1.5em;
  font-style: italic; }

.landing-main-container-banner {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1em;
  font-size: 220%;
  padding: 2% 0; }

.landing-main-banner-code {
  font-size: 75%;
  font-weight: 400;
  text-transform: none; }

.landing-main-banner-code strong {
  font-weight: 700; }

img.center {
  margin-left: auto;
  margin-right: auto; }

img.fill {
  width: 100%; }

.disclaimer {
  clear: both;
  font-size: 0.8em;
  line-height: 1em !important; }

.col2-right-layout .std h2 {
  text-align: center;
  color: #636363;
  width: 90%;
  margin: 1% auto; }

.col2-right-layout .std .terms-and-conditions ul li {
  font-size: 13px;
  margin-bottom: 0;
  margin-top: 0; }

.col2-right-layout .landing-main-list h2 {
  background-color: #3399cc;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0 0 .5em;
  width: 100%; }

.landing-main-list ul {
  display: inline-block;
  padding: 0%;
  text-align: left;
  vertical-align: top;
  margin-bottom: 0; }

.landing-main-list .priority-2 {
  font-size: 1.1em; }

.widget-banner-after-breadcrumbs {
  margin-bottom: 15px; }

#x-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000; }

#x-lightbox {
  height: 128px;
  top: -webkit-calc(50% - 64px);
  top: calc(50% - 64px);
  left: -webkit-calc(50% - 312px);
  left: calc(50% - 312px);
  width: 625px;
  text-align: center;
  position: absolute;
  z-index: 1001;
  background: white;
  padding: 30px; }

#x-lightbox a {
  cursor: pointer;
  color: #fff;
  position: relative;
  display: block; }

#x-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000; }

#x-lightbox {
  height: 128px;
  top: -webkit-calc(50% - 64px);
  top: calc(50% - 64px);
  left: -webkit-calc(50% - 312px);
  left: calc(50% - 312px);
  width: 625px;
  text-align: center;
  position: absolute;
  z-index: 1001;
  background: white;
  padding: 30px; }

#x-lightbox a {
  cursor: pointer;
  color: #fff;
  position: relative;
  display: block; }

body.modal-revealed {
  /*overflow: hidden;*/ }

.full-width {
  width: 100vw;
  margin-left: 50% !important;
  margin-right: 0 !important;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

iframe[src*='youtube'] {
  max-width: 100%;
  border: 0; }

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

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

.is-loading {
  background: url(../images/loading.gif) no-repeat center #fff; }
  .is-loading img {
    opacity: 0; }

/* ============================================ *
 * Global
 * ============================================ */
html, body {
  height: 100%;
  min-width: 320px; }

.wrapper {
  min-width: 320px;
  min-height: 100%;
  margin: 0 auto;
  background: #FFFFFF;
  overflow: hidden; }

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

/* -------------------------------------------- *
 * Container
 */
.container,
.main-container,
.footer-container {
  position: relative;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 15px; }

.main-container:after,
.footer-container:after {
  content: '';
  display: table;
  clear: both; }

@media only screen and (max-width: 550px) {
  .main-container,
  .footer-container {
    padding: 0 20px;
    width: auto; }
  .main-container {
    padding-top: 20px; }
  .landing-main-list {
    width: 100%;
    border: #3399cc 2px solid;
    margin: 5% auto; } }

@media only screen and (max-width: 400px) {
  .main-container,
  .footer-container {
    padding: 0 8px; } }

.footer-container {
  padding-top: 0;
  padding-bottom: 0; }

.full-width {
  width: 100vw;
  margin-left: 50% !important;
  margin-right: 0 !important;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); }

/* ============================================ *
 * Column layouts
 * ============================================ */
.main:after,
.col-wrapper:after {
  content: '';
  display: table;
  clear: both; }

.col-left,
.col-right,
.col-main {
  padding: 0 10px; }

.col-left {
  float: left;
  width: 20%;
  padding-left: 0;
  /* Remove the 15px padding */
  clear: left; }

.col-left img {
  max-width: 100%; }

.col-right {
  float: right;
  width: 440px;
  padding-right: 0;
  /* Remove the 15px padding */ }

.col-right img {
  max-width: 100%; }

.col-main {
  float: left; }

.col1-layout .col-main {
  float: none;
  width: auto;
  padding: 0;
  /* Remove the 15px padding */ }

.col2-left-layout .col-main {
  float: right;
  padding-right: 0;
  width: 80%;
  /* Remove the 15px padding */ }

.col2-right-layout .col-main {
  float: left;
  width: -webkit-calc(100% - 440px);
  width: calc(100% - 440px);
  padding-left: 0;
  padding-right: 10px;
  /* Remove the 15px padding */ }

.col3-layout .col-right {
  width: 26.83333%; }

.col3-layout .col-wrapper {
  float: left;
  width: 72.16667%; }

.col3-layout .col-wrapper .col-main {
  float: right;
  width: 73.68421%; }

.col3-layout .col-wrapper .col-left {
  width: 26.31579%; }

@media only screen and (max-width: 1000px) {
  .col3-layout .col-right {
    float: left;
    clear: left;
    padding-left: 0;
    padding-right: 10px;
    width: 25%; }
  .col3-layout .col-wrapper {
    float: right;
    width: 100%; }
  .col3-layout .col-wrapper .col-main {
    float: right;
    width: 75%; }
  .col3-layout .col-wrapper .col-left {
    width: 25%; } }

@media only screen and (max-width: 770px) {
  .col-left,
  .col-right,
  .col-main,
  .col1-layout .col-left,
  .col1-layout .col-right,
  .col1-layout .col-main,
  .col2-left-layout .col-left,
  .col2-left-layout .col-right,
  .col2-left-layout .col-main,
  .col2-right-layout .col-left,
  .col2-right-layout .col-right,
  .col2-right-layout .col-main,
  .col3-layout .col-wrapper .col-left,
  .col3-layout .col-right,
  .col3-layout .col-wrapper .col-main {
    border: none !important;
    padding: 0;
    margin-bottom: 10px;
    float: none;
    width: auto; }
  .col3-layout .col-wrapper {
    float: none;
    width: auto; }
  .col-main {
    float: none;
    width: auto; }
  .col-main .col-left {
    padding: 0;
    /* On product listing pages, the left column gets moved inside col-main on small viewports */ } }

.col2-set {
  width: 100%; }

.col2-set .col-1,
.col2-set .col-2 {
  width: 50%;
  padding: 20px; }

@media only screen and (max-width: 770px) {
  .col2-set .col-1,
  .col2-set .col-2 {
    padding: 10px; } }

.col2-set .col-1 {
  padding-left: 0; }

.col2-set .col-2 {
  padding-right: 0; }

@media only screen and (max-width: 479px) {
  .col2-set .col-1,
  .col2-set .col-2 {
    float: none;
    width: auto;
    border: 0;
    padding-right: 0;
    padding-left: 0; } }

.col2-set .narrow {
  width: 33%; }

.col2-set .wide {
  width: 65%; }

.col2-set:after {
  content: '';
  display: table;
  clear: both; }

@media only screen and (min-width: 771px) {
  .col2-set > .col {
    width: 50%; }
    .col2-set > .col:nth-child(odd) {
      padding-right: 10px; }
    .col2-set > .col:nth-child(even) {
      padding-left: 10px; }
  .col3-set > .col {
    width: 33.33333%; }
    .col3-set > .col:nth-child(3n + 1) {
      padding-right: 7px; }
    .col3-set > .col:nth-child(3n + 2) {
      padding: 0 7px; }
    .col3-set > .col:nth-child(3n) {
      padding-left: 7px; } }
@media only screen and (min-width: 1023px) and (max-width: 1025px) {
  .col2-set > .col {
    width: 50%; }
    .col2-set > .col:nth-child(odd) {
      padding-right: 10px; }
    .col2-set > .col:nth-child(even) {
      padding-left: 10px; }
  .col3-set > .col {
    width: 33.33333%; }
    .col3-set > .col:nth-child(3n + 1) {
      padding-right: 7px; }
    .col3-set > .col:nth-child(3n + 2) {
      padding: 0 54px; }
    .col3-set > .col:nth-child(3n) {
      padding-left: 7px; } }

.col2-set,
.col3-set {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  @media only screen and (max-width: 770px) {
    .col2-set,
    .col3-set {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .col2-set .col + .col,
      .col3-set .col + .col {
        padding-top: 20px; } }

/* ============================================ *
 * Footer
 * ============================================ */
.footer {
  clear: both;
  width: 100%;
  background: #F1F1F1;
  padding: 30px 0; }
  .footer a, .footer a:hover {
    color: #55585d;
    font-size: 14px;
    -webkit-transition: 300ms all;
    -o-transition: 300ms all;
    transition: 300ms all; }
  .footer h5 {
    font-size: 12px;
    font-weight: 700;
    color: #55585d; }
  .footer .block-content {
    margin: 0; }
  .footer .copyright {
    padding-top: 15px; }
    @media only screen and (max-width: 770px) {
      .footer .copyright {
        padding-top: 30px; } }
  .footer .col3-set {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap; }
    .footer .col3-set .col {
      width: auto; }
    @media only screen and (max-width: 770px) {
      .footer .col3-set .col.links {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1;
        padding-top: 40px; }
      .footer .col3-set .col.contact-col {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
            -ms-flex-order: -1;
                order: -1;
        padding: 0;
        text-align: center; }
      .footer .col3-set .ekomi-widget-container {
        text-align: left; }
        .footer .col3-set .ekomi-widget-container .db7_4 {
          float: none;
          margin: 0 auto; } }

@media only screen and (max-width: 770px) and (min-width: 480px) {
  .footer .middle-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .footer .middle-col .social,
    .footer .middle-col .recognition {
      width: 50%; }
    .footer .middle-col .social {
      padding-right: 5px; }
    .footer .middle-col .recognition {
      padding-left: 5px; } }
  .footer .recognition-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .footer .recognition-icons a {
      max-width: 36px; }
    .footer .recognition-icons img {
      max-width: 100%;
      height: auto; }
  @media only screen and (min-width: 771px) {
    .footer .social {
      margin-bottom: 15px; } }
  @media only screen and (max-width: 770px) {
    .footer .social {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media only screen and (max-width: 479px) {
    .footer .social {
      padding-bottom: 20px; } }
  .footer .social-icons a:hover {
    text-decoration: none;
    opacity: 0.6; }
  .footer .social-icons i {
    font-size: 26px; }
  @media only screen and (max-width: 770px) {
    .footer .social-icons {
      margin: auto 0; } }
  .footer .social-icons a:not(:last-child),
  .footer .recognition-icons *:not(:last-child) {
    margin-right: 10px; }
  @media only screen and (max-width: 770px) {
    .footer .social,
    .footer .recognition {
      text-align: center; }
      .footer .social h5,
      .footer .recognition h5 {
        font-size: 18px; }
      .footer .social div[class$="-icons"],
      .footer .recognition div[class$="-icons"] {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; } }
  .footer .links ul {
    -webkit-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 20px;
            column-gap: 20px; }
    @media only screen and (min-width: 980px) {
      .footer .links ul a {
        white-space: nowrap; } }
    @media only screen and (min-width: 771px) {
      .footer .links ul {
        max-width: 300px; } }
    @media only screen and (max-width: 770px) {
      .footer .links ul {
        text-align: center; } }
    @media only screen and (max-width: 479px) {
      .footer .links ul a {
        font-size: 10px; } }
  .footer .block-subscribe .block-content {
    padding-top: 7px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 440px;
    margin: 0 auto; }
  .footer .block-subscribe .input-box {
    width: -webkit-calc(100% - 90px);
    width: calc(100% - 90px);
    padding-top: 0; }
  .footer .block-subscribe .input-text {
    padding: 10px 10px;
    height: 40px;
    width: 100%;
    max-width: 350px;
    -webkit-border-radius: 8px;
            border-radius: 8px;
    -webkit-border-top-right-radius: 0;
            border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
            border-bottom-right-radius: 0;
    outline: none; }
  .footer .block-subscribe .actions {
    margin: 0; }
  .footer .block-subscribe .actions .button {
    padding: 10px 15px;
    height: 40px;
    width: 90px;
    line-height: 17px;
    text-transform: none;
    -webkit-border-top-right-radius: 8px;
            border-top-right-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
            border-bottom-right-radius: 8px; }
  .footer .block-subscribe .newsletter-label {
    font-size: 18px; }
  .footer .phone {
    margin-bottom: 15px; }
  .footer .callus {
    font-size: 18px;
    margin-top: 0; }
    .footer .callus strong {
      display: block; }
  @media only screen and (max-width: 770px) {
    .footer div#gts_container {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      float: none !important; } }

.float-none {
  float: none; }

.float-left {
  float: left; }

/* ============================================ *
 * Header
 * ============================================ */
@media only screen and (min-width: 771px) {
  .page-header-container {
    position: relative; }
  .landing-main-list {
    border: #3399cc 2px solid;
    width: 90%;
    margin: 5% auto; } }

.page-header a:hover,
.page-header a:active,
.page-header a:focus {
  color: #55585d; }

.top-bar {
  background: #F1F1F1; }
  .top-bar .container {
    padding: 0 15px; }
  .top-bar .skip-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px; }
  @media only screen and (max-width: 770px) {
    .top-bar {
      display: none; } }

.page-header .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%; }
  .page-header .row.bottom-row {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-bottom: 0;
    padding-top: 5px; }
    .page-header .row.bottom-row .phone {
      max-width: -webkit-calc(100% - 75px);
      max-width: calc(100% - 75px);
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    @media only screen and (max-width: 770px) {
      .page-header .row.bottom-row {
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap; } }
  .page-header .row.main-row {
    display: block;
    border-bottom: 4px solid #F1F1F1; }
    .page-header .row.main-row .container {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      @media only screen and (max-width: 979px) {
        .page-header .row.main-row .container {
          -webkit-flex-wrap: wrap;
              -ms-flex-wrap: wrap;
                  flex-wrap: wrap;
          -webkit-box-pack: start;
          -webkit-justify-content: flex-start;
              -ms-flex-pack: start;
                  justify-content: flex-start; } }
  @media only screen and (max-width: 770px) {
    .page-header .row.bottom-row .phone {
      max-width: 100%;
      text-align: center;
      padding-top: 10px; } }

.phone {
  padding: 0; }

.callus {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
  color: #55585d; }

.skip-free-samples {
  font-size: 14px;
  font-weight: 500; }

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
.header-language-background {
  padding: 10px;
  background-color: #3399cc;
  text-transform: uppercase; }

.header-language-background .header-language-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto; }

.header-language-background:after {
  content: '';
  display: table;
  clear: both; }

.header-language-background .form-language,
.header-language-background .currency-switcher {
  float: left;
  margin-right: 10px; }

.header-language-background .welcome-msg {
  float: right; }

.page-header-container .store-language-container {
  display: none;
  float: right;
  max-width: 35%;
  padding: 13px 15px 10px 10px; }

.page-header-container .store-language-container label {
  display: none; }

.page-header-container .store-language-container select {
  max-width: 100%; }

@media only screen and (max-width: 479px) {
  .page-header-container .store-language-container {
    padding-top: 8px; }
  .page-header-container .store-language-container select {
    font-size: 12px; } }

.header-language-background,
.header-language-background a {
  color: #e6e6e6; }

@media only screen and (max-width: 770px) {
  .header-language-background {
    display: none; }
  .landing-main-list {
    border: #3399cc 2px solid;
    width: 90%;
    margin: 5% auto; } }

/* ============================================ *
 * Logo
 * ============================================ */
.page-header .logo {
  width: 100%;
  height: auto;
  max-width: 300px;
  overflow: hidden; }
  @media only screen and (max-width: 770px) {
    .page-header .logo {
      width: -webkit-calc(100% - 66px);
      width: calc(100% - 66px);
      max-width: 500px;
      margin: 0 auto; } }
  @media only screen and (min-width: 980px) {
    .page-header .logo {
      width: 300px;
      max-width: -webkit-calc(100% - 760px);
      max-width: calc(100% - 760px); } }

.page-header .logo a {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 18%;
  display: block; }

.page-header .logo svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0; }

.anniversary-logo {
  padding-left: 5px; }
  @media only screen and (max-width: 979px) {
    .anniversary-logo {
      padding-left: 15px; } }
  @media only screen and (max-width: 770px) {
    .anniversary-logo {
      padding-left: 0;
      padding-top: 10px;
      margin: 0 auto; } }
  .anniversary-logo img {
    max-width: 70px; }

@media only screen and (max-width: 1100px) and (min-width: 980px) {
  .anniversary-logo img {
    max-width: 50px; } }

/* ============================================
 * Skip Links
 * ============================================ */
/* -------------------------------------------- *
 * Skip - Link
 */
.skip-link,
.skip-cart > a,
.skip-url {
  position: relative;
  color: #55585d;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer; }
  .skip-link i.fa,
  .skip-cart > a i.fa,
  .skip-url i.fa {
    font-size: 16px;
    margin-right: 5px; }
  .skip-link > a:hover,
  .skip-cart > a > a:hover,
  .skip-url > a:hover {
    text-decoration: none; }

a.skip-link,
a.skip-url {
  text-decoration: none; }

@media only screen and (max-width: 770px) {
  .skip-link:last-child {
    border-right: 0; } }

/* -------------------------------------------- *
 * Skip Link - Label
 */
.skip-link .label,
.skip-url .label {
  vertical-align: middle;
  line-height: 16px; }

/* ============================================ *
 * Skip Content
 * ============================================ */
.skip-content {
  display: none; }

.skip-content.skip-active {
  clear: left;
  display: block; }
  @media only screen and (min-width: 771px) {
    .skip-content.skip-active {
      background: #fff;
      position: absolute;
      top: 34px;
      right: 0;
      border-top: 4px solid #55585d;
      z-index: 200;
      -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
              box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); } }

@media only screen and (min-width: 771px) {
  .skip-link,
  .skip-url {
    padding: 10px;
    position: relative; }
    .skip-link:after,
    .skip-url:after {
      content: "";
      display: block;
      position: absolute;
      right: 0;
      top: 10px;
      height: 16px;
      width: 1px;
      background: #55585d; }
  .skip-cart {
    border: none; }
  .skip-url {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; } }

@media only screen and (max-width: 770px) {
  #header-nav .skip-link,
  #header-nav .skip-url {
    padding: 18px 20px;
    border-bottom: 1px solid #cccccc;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background: #F1F1F1; }
    #header-nav .skip-link .fa,
    #header-nav .skip-url .fa {
      font-size: 24px;
      line-height: 16px; }
  .skip-link.run-redirect .skip-content,
  .skip-content.run-redirect {
    display: none; } }

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
@media only screen and (max-width: 770px) {
  #header-account li a,
  .nav-primary a.level0,
  .nav-primary label.level0 {
    font-size: 17px;
    font-weight: bold;
    margin: 0;
    padding: 10px 20px;
    border-bottom: 1px solid #cccccc;
    text-align: left;
    color: #636363;
    text-transform: uppercase;
    line-height: 1; }
  #header-account li:last-child a {
    border-bottom: 0; }
  .no-touch #header-account a:hover,
  .no-touch .nav-primary a:hover {
    text-decoration: none; }
  .skip-login {
    right: inherit;
    display: block;
    position: relative; } }

/* ============================================ *
 * Nav - Skip Link
 * ============================================ */
.skip-nav {
  display: block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 15px;
  width: 26px;
  height: 19px; }
  .skip-nav span {
    display: block;
    width: 100%;
    height: 3px;
    background: #9E9E9E;
    -webkit-transition: 250ms all;
    -o-transition: 250ms all;
    transition: 250ms all; }
    .skip-nav span:not(:last-child) {
      margin-bottom: 5px; }
  .skip-nav.skip-active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
        -ms-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg); }
  .skip-nav.skip-active span:nth-of-type(2) {
    -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
            transform: translateX(-100px); }
  .skip-nav.skip-active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
        -ms-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg); }

@media only screen and (min-width: 771px) {
  .skip-nav {
    display: none; } }

/* ============================================ *
 * Nav - Skip Content
 * ============================================ */
#header-nav {
  position: relative; }

#header-nav .free-shipping {
  display: none; }

@media only screen and (min-width: 771px) {
  #header-nav {
    display: block; } }
  @media only screen and (min-width: 771px) and (max-width: 979px) {
    #header-nav {
      width: 100%; }
      #header-nav .nav-primary {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between; } }

/* ============================================ *
 * Nav Primary
 * ============================================ */
@media only screen and (min-width: 771px) {
  .nav-primary {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  #header-nav .free-shipping {
    color: #636363;
    display: none;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 16px;
    right: 0; }
  #header-nav .free-shipping span {
    font-size: 24px;
    vertical-align: text-top; }
  #header-nav .free-shipping:hover {
    text-decoration: none; } }

/* ============================================ *
 * General Navigation Styles
 * ============================================ */
.nav-primary a,
.nav-primary label {
  text-decoration: none;
  position: relative;
  display: block;
  color: #55585d;
  font-size: 16px;
  line-height: 30px; }

.nav-primary li {
  position: relative; }

.nav-primary li.level0.active-cat > a,
.nav-primary li.level0.active-cat > label {
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  color: #999; }

.nav-primary .menu-active > ul.level0,
.nav-primary li.level0 li.sub-menu-active > ul {
  display: block; }

.nav-primary li.level0 > a,
.nav-primary li.level0 > label {
  text-transform: none;
  text-decoration: none;
  font-weight: bold; }

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
@media only screen and (max-width: 770px) {
  #header-nav {
    position: absolute;
    top: -webkit-calc(100% + 4px);
    top: calc(100% + 4px);
    background: #fff;
    width: 100%;
    left: 0;
    z-index: 600;
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden; }
  .nav-primary a.level0,
  .nav-primary a,
  .nav-primary label.level0,
  .nav-primary label {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px; }
  .nav-primary li.level0 > a,
  .nav-primary li.level0 > label {
    padding: 18px 20px;
    text-transform: uppercase; }
  .nav-primary li.level0 ul {
    padding: 10px 0;
    display: none;
    border-bottom: 1px solid #ccc; }
    .nav-primary li.level0 ul li {
      padding: 0; }
  .nav-primary li.level1 a,
  .nav-primary li.level1 label {
    padding: 10px 20px; }
  .nav-primary li.level2 a,
  .nav-primary li.level2 label {
    padding-left: 40px; }
  .nav-primary a.has-children,
  .nav-primary label {
    position: relative;
    padding-right: 55px; }
    .nav-primary a.has-children:before, .nav-primary a.has-children:after,
    .nav-primary label:before,
    .nav-primary label:after {
      width: 14px;
      height: 2px;
      background: #55585d;
      display: block;
      content: "";
      position: absolute;
      top: -webkit-calc(50% - 1px);
      top: calc(50% - 1px);
      right: 20px;
      -webkit-transition: 200ms all;
      -o-transition: 200ms all;
      transition: 200ms all; }
    .nav-primary a.has-children:after,
    .nav-primary label:after {
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg); }
  .nav-primary li.sub-menu-active > a.has-children:before,
  .nav-primary li.sub-menu-active > label.has-children:before,
  .nav-primary li.menu-active > a.has-children:before,
  .nav-primary li.menu-active > label.has-children:before {
    -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
            transform: translateX(40px); }
  .nav-primary li.sub-menu-active > a.has-children:after,
  .nav-primary li.sub-menu-active > label.has-children:after,
  .nav-primary li.menu-active > a.has-children:after,
  .nav-primary li.menu-active > label.has-children:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); } }

/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
@media only screen and (min-width: 771px) {
  .nav-primary {
    padding: 10px 0 10px 10px; } }

@media only screen and (min-width: 771px) and (max-width: 1180px) {
  .nav-primary a {
    font-size: 14px; } }

@media only screen and (min-width: 771px) {
  .nav-primary li.level0:not(:last-child) a.level0 {
    padding: 0 20px 0 0; }
  .nav-primary li.level0,
  .nav-primary a.level0 {
    display: inline-block; } }
  @media only screen and (min-width: 771px) and (max-width: 1180px) {
    .nav-primary li.level0,
    .nav-primary a.level0 {
      font-size: 14px; } }

@media only screen and (min-width: 771px) {
  .nav-primary .menu-active,
  .nav-primary li.level0:hover {
    z-index: 200; }
  .nav-primary li.level0 ul {
    position: absolute;
    left: 0;
    top: 24px;
    z-index: 10;
    min-width: 250px;
    display: none;
    background: #FFF;
    border-top: 3px solid #55585d;
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    padding: 10px; }
  .nav-primary li.level1 ul {
    display: none !important;
    left: 60px;
    top: 15px; }
  .nav-primary li:hover > ul {
    display: block;
    /* Force display */ }
  .nav-primary .nav-with-popup .close {
    font-size: 20px;
    position: absolute;
    top: 5px;
    right: 10px; }
  .nav-primary .nav-with-popup .close i {
    color: #2C9FDE; }
  .nav-primary .nav-with-popup .close:hover i {
    color: #E09135; }
  .nav-primary .nav-with-popup ul.level0 {
    padding: 20px 0 0;
    width: 750px; }
  .nav-primary .nav-with-popup ul.level0 li {
    display: inline-block;
    padding: 17px;
    vertical-align: top; }
  .nav-primary .nav-with-popup ul.level0 li a {
    border: none;
    color: white;
    background: #2C9FDE;
    display: inline-block;
    text-align: center;
    width: 153px;
    vertical-align: top; }
  .nav-primary .nav-with-popup ul.level0 li a:hover {
    background: #E09135; }
  .nav-primary .nav-with-popup ul.level0 li span {
    padding: 0 10px;
    display: block;
    height: 37px;
    font-weight: bold;
    line-height: 1.5;
    overflow: hidden;
    width: 153px; }
  .nav-primary .nav-with-popup ul.level0 li span.middle {
    line-height: 37px; }
  .nav-primary .nav-with-popup ul.level0 li img {
    border: none;
    margin: 0;
    max-width: 153px; }
  .nav-primary li.level0.parent > label,
  .nav-primary li.level0.parent > a.level0 {
    position: relative;
    padding-right: 30px; }
  .nav-primary li.level0.parent > label:after,
  .nav-primary li.level0.parent > a:after {
    position: absolute;
    right: 15px;
    top: -webkit-calc(50% - 8px);
    top: calc(50% - 8px);
    content: "\f0d7";
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    margin-left: 5px;
    vertical-align: top;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .nav-primary li.level0 ul.level0.position-test {
    display: block; }
  .nav-primary li.level0 ul.level0.spill {
    right: 0;
    left: auto; }
  .nav-primary li.level0 ul.level0.spill li.level1 ul {
    left: auto;
    right: 50px;
    top: 20px; }
  .nav-primary li.level0 li.parent > label,
  .nav-primary li.level0 li.parent > a {
    position: relative; }
  .nav-primary li.level0 li.parent > label:after,
  .nav-primary li.level0 li.parent > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: none;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #cccccc;
    border-right: none;
    right: 5px;
    top: 50%;
    margin-top: -3px; }
  .nav-primary li:not(.nav-with-popup) li.level1 a {
    color: #55585d;
    font-weight: 400;
    position: relative;
    display: block;
    padding: 5px 10px;
    line-height: 23px; }
  .nav-primary li:not(.nav-with-popup) li.level1 a:hover {
    background: #55585d;
    color: #fff;
    font-weight: 400; } }

/* ============================================ *
 * Search - Skip Link
 * ============================================ */
.skip-search:not(.skip-active):hover .icon {
  background-position: -46px -146px; }

.skip-search .icon {
  background-position: 4px -146px; }

@media only screen and (min-width: 771px) {
  .skip-search {
    display: none; }
  .skip-link .label,
  .skip-url .label {
    display: inline; } }

/* ============================================ *
 * Search - Skip Content
 * ============================================ */
#header-search {
  padding: 15px 20px 0; }

@media only screen and (min-width: 771px) {
  #header-search {
    display: block;
    position: absolute;
    top: 63px;
    right: 0;
    height: 50px;
    padding: 0; } }

/* ============================================ *
 * Search Input
 * ============================================ */
#search_mini_form .input-box {
  position: relative;
  padding-top: 0; }

#search_mini_form label {
  display: none; }

#search {
  float: left;
  border: 1px solid #c7c7c7;
  -webkit-border-radius: 0;
          border-radius: 0;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 13px;
  padding: 10px 15px;
  margin-right: 5px;
  height: 40px;
  width: 272px; }

@media only screen and (max-width: 550px) {
  #search {
    width: 80%; } }

#search + .validation-advice {
  clear: both;
  top: 45px;
  position: absolute; }

#search_mini_form .search-button {
  float: left;
  border: 0;
  background: #2da0de;
  font-size: 1.6em;
  position: relative;
  text-align: middle;
  padding: 5px;
  width: 47px;
  height: 40px; }

#search_mini_form .search-button:hover {
  background: #E09135; }

/* ============================================ *
 * Search - Auto Suggest
 * ============================================ */
.search-autocomplete {
  left: 0 !important;
  overflow: visible !important;
  position: relative !important;
  top: 15px !important;
  width: 100% !important;
  z-index: 200; }

.search-autocomplete ul {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #3399cc;
  left: 0;
  padding-left: 0;
  position: absolute;
  top: 0;
  width: 100%; }

.search-autocomplete ul li {
  border-bottom: 1px solid #f4f4f4;
  color: #3399cc;
  cursor: pointer;
  font-size: 12px;
  padding: 4px 6px;
  text-align: left; }

.search-autocomplete ul li:hover {
  color: #2e8ab8; }

.search-autocomplete ul li.selected {
  background-color: #3399cc;
  color: white; }

.search-autocomplete ul li .amount {
  float: right;
  font-weight: bold; }

.search-autocomplete ul li:last-child {
  border-bottom: none; }

.search-autocomplete:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #3399cc;
  border-top: none;
  left: 50%;
  top: -7px; }

/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
@media only screen and (min-width: 771px) {
  .skip-link-mobile {
    display: none; }
  #header-account.skip-active {
    min-width: 180px;
    left: -webkit-calc(50% - 90px);
    left: calc(50% - 90px); }
  #header-account.skip-active .links {
    background: #fff;
    padding: 10px 0;
    text-align: left; }
  #header-account a {
    display: block;
    padding: 5px 10px;
    color: #636363;
    line-height: 2; }
  #header-account a:hover {
    color: #3399cc; }
  .skip-account .icon-caret-down {
    display: inline;
    vertical-align: middle; }
  .skip-account {
    /*
         * Copied from _header.scss -> .skip-content.skip-active
         * in order to use pure CSS menu instead of JS
         */ }
    .skip-account:hover #header-account {
      clear: left;
      display: block;
      min-width: 180px;
      left: -webkit-calc(50% - 90px);
      left: calc(50% - 90px); } }
    @media only screen and (min-width: 771px) and (min-width: 771px) {
      .skip-account:hover #header-account {
        background: #fff;
        position: absolute;
        top: 34px;
        right: 0;
        border-top: 4px solid #55585d;
        z-index: 200;
        -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); } }

@media only screen and (min-width: 771px) {
      .skip-account:hover #header-account .links {
        background: #fff;
        padding: 10px 0;
        text-align: left; } }

@media only screen and (max-width: 770px) {
  .skip-link-desktop {
    display: none; }
  #header-account {
    border-bottom: 1px solid #ccc; }
  .skip-account:not(.run-redirect):before, .skip-account:not(.run-redirect):after {
    width: 14px;
    height: 2px;
    background: #55585d;
    display: block;
    content: "";
    position: absolute;
    top: -webkit-calc(50% - 1px);
    top: calc(50% - 1px);
    right: 20px;
    -webkit-transition: 200ms all;
    -o-transition: 200ms all;
    transition: 200ms all; }
  .skip-account:not(.run-redirect):after {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg); }
  .skip-account:not(.run-redirect).skip-active:before {
    -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
            transform: translateX(40px); }
  .skip-account:not(.run-redirect).skip-active:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); } }

#header-account .login-drop {
  padding: 10px 20px; }
  #header-account .login-drop .button {
    color: #fff;
    text-transform: none; }
  #header-account .login-drop span {
    display: block;
    margin-top: 10px; }
  #header-account .login-drop a:not(.button) {
    padding: 0;
    line-height: 16px;
    cursor: pointer; }
    #header-account .login-drop a:not(.button):hover {
      color: #3399cc;
      background: #fff; }

/* -------------------------------------------- *
 * Account Links
 */
#header-account {
  cursor: default; }

#header-account a {
  color: #2C9FDE;
  font-weight: bold;
  position: relative;
  display: block;
  margin: 0 10px;
  line-height: 23px; }

#header-account a:hover {
  background: #2DA0DE;
  color: #fff;
  text-decoration: none; }

/* ============================================ *
 * Header - Cart
 * ============================================ */
@media only screen and (min-width: 771px) {
  .skip-cart {
    padding: 10px 0 10px 5px; }
    .skip-cart:after {
      display: none; }
  #header-cart.skip-active {
    display: block;
    width: 320px; }
  #header-cart.skip-active .header-minicart-wrapper {
    background: #fff;
    padding: 20px; } }

/* -------------------------------------------- *
 * Skip Cart Notifier
 */
.skip-cart:hover {
  text-decoration: none; }

.skip-cart .count {
  z-index: 5;
  background: rgba(51, 153, 204, 0.9);
  text-align: center;
  padding: 0 3px;
  background: none;
  -webkit-border-radius: 0;
          border-radius: 0;
  display: inline;
  line-height: 16px;
  font-size: 13px;
  margin-left: 3px;
  vertical-align: middle;
  height: auto;
  width: auto;
  color: #636363; }
  .skip-cart .count:before {
    content: '('; }
  .skip-cart .count:after {
    content: ')'; }

/* -------------------------------------------- *
 * Mini Cart - Empty
 */
.cart-menu .empty {
  padding: 20px;
  text-align: center; }

/* -------------------------------------------- *
 * Mini Cart - Full
 */
/* Actions */
.cart-menu .actions {
  overflow: hidden;
  padding: 15px; }

.cart-menu .actions .button {
  float: left;
  width: 48%; }

.cart-menu .actions .button + .button {
  margin-left: 4%; }

/* Subtotal */
.cart-menu .subtotal {
  padding: 0 15px 15px;
  font-size: 24px;
  line-height: 1.2; }

/* List */
.mini-cart-list {
  margin-bottom: 5px; }

.mini-cart-list li {
  position: relative;
  min-height: 90px;
  padding: 15px 15px 15px 90px;
  border-top: 1px solid #cccccc;
  font-size: 13px;
  line-height: 1.35; }

.mini-cart-list .product-name {
  display: inline-block; }

.mini-cart-list .product-image {
  position: absolute;
  left: 15px;
  top: 15px; }

.mini-cart-list .product-image img {
  width: 60px;
  height: 60px; }

.mini-cart-list .has-options {
  margin-bottom: 0;
  color: #a0a0a0;
  font-size: 12px; }

/* Too full - additional items will be shown in cart */
.cart-menu .last-added {
  padding: 10px 15px 15px;
  border-top: 1px solid #cccccc;
  font-size: 13px; }

/* ============================================ *
 * Checkout - Mini cart
 * ============================================ */
.header-minicart .minicart-message {
  display: block;
  padding: 10px; }

.header-minicart .minicart-wrapper {
  clear: both;
  position: relative; }

.header-minicart .minicart-wrapper:before, .header-minicart .minicart-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none; }

.header-minicart .minicart-wrapper:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2; }

.header-minicart .minicart-wrapper:after {
  background-image: url("../../default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3; }

.header-minicart .minicart-wrapper.loading {
  position: relative; }

.header-minicart .minicart-wrapper.loading:before, .header-minicart .minicart-wrapper.loading:after {
  display: block; }

.header-minicart .block-cart {
  display: none; }

.header-minicart .block-cart .empty {
  padding: 10px;
  text-align: center; }

.header-minicart .block-subtitle {
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase; }

.header-minicart .block-subtitle .close {
  width: 40px;
  float: right;
  display: block;
  color: #636363;
  text-decoration: none;
  font-weight: normal;
  font-size: 30px;
  position: absolute;
  top: -8px;
  right: -3px; }

.header-minicart .mini-products-list li {
  padding: 8px 0;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
  text-align: left; }

.header-minicart .mini-products-list li:first-child {
  border-top: 1px solid #ddd; }

.header-minicart .mini-products-list li.last {
  border: none; }

.header-minicart .mini-products-list li .product-details {
  position: relative; }

.header-minicart .product-details .product-name {
  padding-top: 0px;
  font-weight: bold; }

.header-minicart .product-details .product-name a {
  color: #3399cc; }

.header-minicart .info-wrapper {
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 0.5em; }

.header-minicart .info-wrapper th {
  padding-right: 10px; }

.header-minicart .info-wrapper td {
  color: #3399cc;
  clear: right; }

.header-minicart .info-wrapper .qty-wrapper td {
  height: 33px;
  line-height: 33px; }

.header-minicart .info-wrapper .qty {
  padding-left: 4px;
  padding-right: 4px;
  margin-right: 2px;
  width: 5em; }

.header-minicart .info-wrapper .quantity-button {
  opacity: 0;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 100ms;
  -o-transition-duration: 100ms;
  transition-duration: 100ms; }

.header-minicart .info-wrapper .quantity-button[disabled] {
  cursor: default; }

.header-minicart .info-wrapper .quantity-button.visible {
  opacity: 1; }

.header-minicart .block-subtitle strong {
  display: block;
  color: #636363;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 5px 0; }

.header-minicart .block-content {
  border-top: 1px solid #ddd;
  line-height: 1;
  padding: 10px 0;
  text-transform: none; }

.header-minicart .subtotal {
  color: #636363;
  line-height: 2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.header-minicart .subtotal .label {
  padding-right: 3px; }

.header-minicart .checkout-types {
  float: none;
  text-align: center;
  width: 100%; }

.header-minicart .subtotal .price {
  color: #3399cc; }

.header-minicart .minicart-actions {
  margin-top: 0;
  overflow: hidden;
  position: relative;
  text-align: center; }

.header-minicart .minicart-actions .checkout-button {
  width: 100%;
  color: #fff; }

.header-minicart .minicart-actions .paypal-logo .paypal-or {
  line-height: 1.6; }

.header-minicart #minicart-error-message {
  text-align: center;
  color: red;
  display: none; }

.header-minicart #minicart-success-message {
  text-align: center;
  color: green;
  display: none; }

.header-minicart .jcarousel-control-prev,
.header-minicart .jcarousel-control-next {
  display: none; }

.header-minicart.skip-active .block-cart,
.block-cart.skip-active {
  display: block; }

@media only screen and (max-width: 479px) {
  .header-minicart a.skip-cart {
    z-index: 1; } }

@media only screen and (max-width: 770px) {
  .header-minicart .subtotal .label {
    color: #636363; }
  .header-minicart .minicart-wrapper:before {
    background-color: #EDEDED; }
  .header-minicart .quantity-button {
    float: none; }
  .header-minicart .header-minicart .block-cart {
    padding: 15px; }
  .header-minicart .header-minicart .block-subtitle {
    padding-top: 59px; }
  .header-minicart .minicart-actions {
    padding-bottom: 33px; }
  .header-minicart .minicart-actions .cart-link {
    bottom: 0;
    right: 10px;
    left: auto; }
  .header-minicart .minicart-actions .checkout-types.minicart li {
    display: inline-block; }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo > a {
    display: inline; }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .bml_button {
    display: inline-block;
    vertical-align: top; }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    width: auto;
    float: none;
    display: inline;
    margin: 0 10px 5px 10px;
    line-height: 40px; } }

@media only screen and (max-width: 670px) {
  .header-minicart .minicart-actions .checkout-button {
    width: 100%; }
  .header-minicart .minicart-actions .cart-link {
    right: auto;
    left: 0;
    text-align: center;
    width: 100%; }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or,
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-button {
    width: 100%;
    display: block;
    margin-left: 0; }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    line-height: 1.6; } }

.is-blog .tabs .tab-content:not(.on) {
  display: none; }

.block-blog-archives .tabs {
  margin-left: 0; }

.block-blog-archives .tabs .tab-trigger:focus,
.block-blog-archives .tabs .tab-trigger:active {
  color: #3399cc; }

.block-blog-archives .tabs .tab-trigger:hover {
  color: #E09135; }

.block-blog-archives .tabs .tab-content {
  padding-top: 5px; }

.block-blog-archives .tabs .tab-trigger,
.block-blog-archives .tabs .tab-content {
  position: relative;
  padding-left: 18px; }

.block-blog-archives .tabs > .tab-trigger:before,
.block-blog-archives .tabs > .tab-trigger:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background: #3399cc;
  left: 0;
  top: -webkit-calc(50% - 1px);
  top: calc(50% - 1px);
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all; }

.block-blog-archives .tabs > .tab-trigger:after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }

.block-blog-archives .tabs > .tab-trigger.on:before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0; }

.block-blog-archives .tabs > .tab-trigger.on:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }

.is-blog .social_share_wrapper {
  overflow: hidden;
  display: block; }
  .is-blog .social_share_wrapper .social_share {
    display: inline-block;
    border: 1px solid #CCC;
    padding: 0 0 0 4px; }
    .is-blog .social_share_wrapper .social_share a {
      display: block;
      float: left;
      margin-right: 4px;
      margin-top: 3px; }
      .is-blog .social_share_wrapper .social_share a:hover {
        text-decoration: none; }
    .is-blog .social_share_wrapper .social_share .facebook {
      color: #3b5998; }
      .is-blog .social_share_wrapper .social_share .facebook:hover {
        margin-top: 0; }
    .is-blog .social_share_wrapper .social_share .google {
      display:none;
      color: #d34836; }
      .is-blog .social_share_wrapper .social_share .google:hover {
        margin-top: 0; }
    .is-blog .social_share_wrapper .social_share .twitter {
      color: #0084b4; }
      .is-blog .social_share_wrapper .social_share .twitter:hover {
        margin-top: 0; }
    .is-blog .social_share_wrapper .social_share .linkedin {
      color: #0077B5; }
      .is-blog .social_share_wrapper .social_share .linkedin:hover {
        margin-top: 0; }
    .is-blog .social_share_wrapper .social_share .pinterest {
      color: #BD081C; }
      .is-blog .social_share_wrapper .social_share .pinterest:hover {
        margin-top: 0; }
    .is-blog .social_share_wrapper .social_share .label {
      display: none; }

.post-list .item {
  padding-bottom: 10px;
  border-bottom: 2px solid #CCC;
  margin-bottom: 50px;
  clear: both; }
  .post-list .item .post-list-item .post-entry .read-more {
    display: block; }
  .post-list .item .post-list-item .post-meta {
    clear: both; }
  .post-list .item:nth-last-child(1) {
    border-bottom: 0; }

.quoter-widget {
  background-color: #000;
  background-image: url(../images/widget/quoter_widget_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  max-width: 440px;
  width: 100%;
  margin: 0 auto 30px;
  color: #FFF;
  text-align: center;
  padding: 40px 10px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer; }
  .quoter-widget .title {
    font-style: italic;
    color: #fff;
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
    font-size: 12px; }
    .quoter-widget .title sup {
      font-size: 7px;
      left: 2px;
      top: -5px; }
  .quoter-widget .subtitle {
    font-size: 32px;
    line-height: 36px;
    max-width: 250px; }
  .quoter-widget .button {
    width: 100%;
    max-width: 212px;
    height: 84px;
    line-height: 44px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-transform: none;
    padding: 20px 15px;
    font-size: 25px;
    font-weight: 700; }

.product-shop .quoter-widget {
  margin-left: 30px;
  clear: both; }

.cms-home .quoter-banner > .container .widget,
.cms-index-index .quoter-banner > .container .widget {
  height: 100%; }

.cms-home .quoter-widget,
.cms-index-index .quoter-widget {
  min-height: 0;
  float: right;
  height: 100%;
  max-height: 300px;
  max-width: 400px;
  border: 2px solid #fff; }
  @media only screen and (max-width: 979px) {
    .cms-home .quoter-widget,
    .cms-index-index .quoter-widget {
      padding: 15px; } }
  @media only screen and (max-width: 770px) {
    .cms-home .quoter-widget,
    .cms-index-index .quoter-widget {
      float: none;
      height: 200px;
      width: -webkit-calc(100% + 30px);
      width: calc(100% + 30px);
      max-width: -webkit-calc(100% + 30px);
      max-width: calc(100% + 30px);
      margin: 0 -15px; }
      .cms-home .quoter-widget .button,
      .cms-index-index .quoter-widget .button {
        max-width: 150px; } }
  @media all and (max-width: 1050px) {
    .cms-home .quoter-widget .button,
    .cms-index-index .quoter-widget .button {
      padding: 10px 15px;
      height: 64px; } }
  @media all and (max-width: 900px) {
    .cms-home .quoter-widget .button,
    .cms-index-index .quoter-widget .button {
      padding: 5px 15px;
      height: 54px; } }
  @media all and (max-width: 850px) {
    .cms-home .quoter-widget .button,
    .cms-index-index .quoter-widget .button {
      padding: 0px 15px;
      height: 45px;
      font-size: 19px; } }

/* ============================================ *
 * Customer Login Page
 * ============================================ */
.customer-account-login label.required:after, .customer-account-login span.required:after {
  display: none; }

.customer-account-login h1, .customer-account-login h2,
.customer-account-login form a {
  font-weight: bold; }

.customer-account-login h1 {
  font-size: 17px;
  text-transform: uppercase; }

.customer-account-login h2 {
  font-size: 16px; }

.customer-account-login .input-text {
  width: 100%; }

.customer-account-login .form-instructions {
  font-size: 13px;
  font-style: normal;
  color: #636363;
  margin-bottom: 20px; }

.customer-account-login .form-list .remember-me-box .checkbox {
  margin-left: 0; }

.customer-account-login .form-list .remember-me-box label {
  font-weight: normal;
  line-height: 15px;
  padding-left: 20px; }

.customer-account-login .col2-set .buttons-set {
  border-top: 0; }

.customer-account-login .col2-set .buttons-set button,
.customer-account-login .col2-set .buttons-set .button {
  float: none;
  width: 100%;
  margin: 0; }

.customer-account-login .col2-set .new-users ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 20px 0; }

.customer-account-login .col2-set .col-2 {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1; }

@media only screen and (min-width: 771px) {
  .customer-account-login .col2-set .col-1,
  .customer-account-login .col2-set .col-2 {
    padding-top: 0; }
  .customer-account-login .col2-set .col-2 {
    border-right: 1px solid #ededed;
    padding-left: 0;
    padding-right: 60px;
    width: 40%; }
  .customer-account-login .col2-set .col-1 {
    padding-left: 60px;
    width: 60%; } }

@media only screen and (min-width: 771px) and (max-width: 979px) {
  .customer-account-login .col2-set .col-2 {
    padding-right: 30px; }
  .customer-account-login .col2-set .col-1 {
    padding-left: 30px; } }

@media only screen and (max-width: 770px) {
  .customer-account-login .col2-set .col-1,
  .customer-account-login .col2-set .col-2 {
    padding: 0;
    width: 100%; }
  .customer-account-login .col2-set .col-1 {
    padding-top: 15px;
    padding-bottom: 20px;
    border-top: 1px solid #ededed; }
  .customer-account-login .col2-set .col-2 {
    padding: 0 0 20px; } }

#crossell-carousel {
  clear: both; }
  #crossell-carousel .title {
    font-weight: 700;
    font-size: 18px;
    color: #625b5e; }
  #crossell-carousel .content {
    -webkit-border-radius: 15px;
            border-radius: 15px;
    background-color: #010101;
    padding: 20px 0;
    margin: 10px 0; }
  #crossell-carousel #owl {
    padding: 0 40px; }
  #crossell-carousel .item {
    cursor: pointer;
    position: relative; }
    #crossell-carousel .item img {
      display: block;
      width: 100%;
      -webkit-box-shadow: none;
              box-shadow: none; }
  #crossell-carousel .owl-item {
    padding: 0 10px;
    overflow: hidden; }
  #crossell-carousel .owl-buttons .owl-next {
    right: 0; }
  #crossell-carousel .owl-buttons .owl-prev {
    left: 0; }
  #crossell-carousel .owl-buttons .owl-next,
  #crossell-carousel .owl-buttons .owl-prev {
    color: #5795e8;
    font-size: 20px;
    position: absolute;
    top: -webkit-calc(50% - 10px);
    top: calc(50% - 10px);
    width: 30px;
    height: 20px;
    text-align: center; }
  #crossell-carousel .owl-caption {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    z-index: 76;
    bottom: 0;
    font-weight: 700;
    font-size: 17px;
    color: #00a2e1;
    text-align: center;
    line-height: 25px;
    padding: 10px;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    #crossell-carousel .owl-caption span {
      font-weight: 700;
      margin-left: 5px; }
    #crossell-carousel .owl-caption:hover {
      text-decoration: none; }

/* ================================================= *
 * General Category Page styles
 * ================================================= */
.category-title h1,
body.catalogsearch-result-index .page-title h1 {
  border-bottom: none; }

/* ============================================ *
 * Category Image
 * ============================================ */
.category-image {
  margin-bottom: 1.5em; }
  @media only screen and (min-width: 771px) {
    .category-image {
      float: left;
      width: 60%; } }
  .category-image img {
    max-width: 100%;  height:auto; }
    .category-image img:hidden {
      display: none; }

@media only screen and (min-width: 771px) {
  .review-category-newreview .quoter-widget, .catalog-category-view .quoter-widget {
    max-width: -webkit-calc(40% - 30px);
    max-width: calc(40% - 30px);
    margin-left: 30px;
    float: right; } }

/* ============================================ *
 * Category items list
 * ============================================ */
.items-list {
  clear: both;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 30px -10px 10px; }
  .items-list .item {
    padding: 0 10px 20px;
    width: 20%; }
    .items-list .item a {
      height: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .items-list .item a:hover .item-name {
        text-decoration: none;
        background: #E09135; }
  .items-list .item-image {
    border: 1px solid #ddd;
    -webkit-box-shadow: none;
            box-shadow: none;
    float: none;
    width: 100%;
    height: auto;
    min-height: 130px;
    margin: 0; }
  .items-list .item-name {
    background: #3399cc;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin: 0;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-transform: none; }

/* ============================================ *
 * Category Gallery
 * ============================================ */
.category-product-gallery {
  background: #f2f2f2;
  background: -webkit-linear-gradient(top, #f2f2f2 0%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#ffffff));
  background: -o-linear-gradient(top, #f2f2f2 0%, #ffffff 100%);
  background: linear-gradient(to bottom, #f2f2f2 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#ffffff',GradientType=0 ); }
  .category-product-gallery .main-container {
    padding: 30px 15px 30px; }
  .category-product-gallery .title {
    font-size: 18px;
    margin-bottom: 20px; }
  .category-product-gallery .items-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 -15px; }
    .category-product-gallery .items-list .image {
      width: 16.66667%;
      display: block;
      padding: 0 15px 20px;
      position: relative; }
    .category-product-gallery .items-list .image img {
      width: 100%;
      height: auto;
      min-height: 100px;
      display: block;
      border: 1px solid #CDCDCD; }
    .category-product-gallery .items-list .image:before {
      width: -webkit-calc(100% - 32px);
      width: calc(100% - 32px);
      height: -webkit-calc(100% - 22px);
      height: calc(100% - 22px);
      display: block;
      content: "";
      position: absolute;
      left: 16px;
      top: 1px;
      opacity: 0;
      -webkit-transition: 200ms all;
      -o-transition: 200ms all;
      transition: 200ms all;
      background: rgba(44, 159, 222, 0.7); }
    .category-product-gallery .items-list .image:after {
      width: 50px;
      height: 50px;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      display: block;
      content: "\f002";
      position: absolute;
      left: -webkit-calc(50% - 25px);
      left: calc(50% - 25px);
      top: -webkit-calc(50% - 40px);
      top: calc(50% - 40px);
      opacity: 0;
      -webkit-transition: 200ms all;
      -o-transition: 200ms all;
      transition: 200ms all;
      background: rgba(0, 0, 0, 0.2);
      font: normal normal normal 14px/1 FontAwesome;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 50px;
      text-align: center;
      color: #fff;
      font-size: 26px; }
    .category-product-gallery .items-list .image:hover:before,
    .category-product-gallery .items-list .image:hover:after {
      opacity: 1; }

@media only screen and (max-width: 770px) {
  .category-product-gallery .items-list .image,
  .items-list .item {
    width: 33.33333%; } }

@media only screen and (max-width: 479px) {
  .category-product-gallery .items-list .image,
  .items-list .item {
    width: 50%; } }

.box-reviews dl dd {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 15px;
  margin-bottom: 15px; }

.related-blog-posts {
  background: #f2f2f2;
  max-width: 1230px;
  margin: 50px auto;
  position: relative; }
  .related-blog-posts:after, .related-blog-posts:before {
    content: '';
    background: #f2f2f2;
    position: absolute;
    top: 0;
    height: 100%;
    width: 5000px; }
  .related-blog-posts:after {
    right: 100%; }
  .related-blog-posts:before {
    left: 100%; }
  .related-blog-posts__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    /*justify-content: center;*/ }
  .related-blog-posts__link {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .related-blog-posts__figure {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    margin-bottom: 10px; }
  .related-blog-posts__title {
    padding-top: 20px; }
  .related-blog-posts__img {
    width: 240px;
    height: 150px;
    margin: 0 auto; }
  .related-blog-posts__description {
    color: #3399cc;
    font-size: 13px;
    width: 240px;
    font-weight: 600;
    margin: 0 auto; }

.related-products-sidebar__title {
  font-weight: bold; }

.related-products-sidebar__list-item {
  margin: 10px 0;
  color: #3399cc; }

.related-products-sidebar__link {
  font-size: 13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media only screen and (min-width: 770px) {
    .related-products-sidebar__link {
      font-size: 11px; } }

.related-products-sidebar__icon {
  width: 20px;
  height: 20px;
  margin-right: 5px; }

/* ============================================ *
 * Layered Navigation
 * ============================================ */
.block-layered-nav .block-subtitle--filter {
  display: none;
  margin: 0;
  color: #636363;
  font-size: 14px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: normal;
  padding: 7px 10px 7px 24px;
  border: 1px solid #cccccc;
  position: relative;
  background-color: #f4f4f4;
  cursor: pointer; }
  .block-layered-nav .block-subtitle--filter:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #3399cc;
    border-bottom: none;
    left: 10px;
    top: 50%;
    margin-top: -3px; }
  @media only screen and (max-width: 770px) {
    .block-layered-nav .block-subtitle--filter {
      background-color: #3399cc;
      border: 0;
      margin-bottom: 0;
      display: block;
      color: #FFFFFF; }
      .block-layered-nav .block-subtitle--filter:after, .block-layered-nav .block-subtitle--filter.active:after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        display: block;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 4px solid white;
        border-right: none;
        right: 10px;
        top: 50%;
        margin-top: -5px; }
      .block-layered-nav .block-subtitle--filter:hover {
        background-color: #2e8ab8;
        color: #FFFFFF; }
      .block-layered-nav .block-subtitle--filter.active:after {
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
        border-top: 4px solid white;
        border-bottom: none;
        margin-top: -3px; } }

.block-layered-nav .block-content .toggle-tabs {
  display: none; }

.block-layered-nav .block-content > dl > dt {
  margin: 0;
  color: #636363;
  font-size: 14px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: normal;
  padding: 7px 10px 7px 24px;
  border: 1px solid #cccccc;
  position: relative;
  background-color: #f4f4f4;
  display: block; }
  .block-layered-nav .block-content > dl > dt:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #3399cc;
    border-bottom: none;
    left: 10px;
    top: 50%;
    margin-top: -3px; }
  @media only screen and (min-width: 771px) {
    .block-layered-nav .block-content > dl > dt {
      padding-left: 10px; }
      .block-layered-nav .block-content > dl > dt:after {
        display: none; } }

.block-layered-nav .block-content > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #cccccc; }
  .block-layered-nav .block-content > dl > dd:last-child {
    border-width: 0 1px 1px 1px; }

@media only screen and (max-width: 770px) {
  .block-layered-nav .block-content {
    padding-top: 0;
    margin-top: 15px; }
    .block-layered-nav .block-content > dl > dt {
      cursor: pointer;
      border-bottom-width: 0; }
      .block-layered-nav .block-content > dl > dt:hover {
        color: #3399cc; }
      .block-layered-nav .block-content > dl > dt:after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        display: block;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 4px solid #3399cc;
        border-right: none; }
      .block-layered-nav .block-content > dl > dt .last {
        border-bottom-width: 1px; }
    .block-layered-nav .block-content > dl > dd {
      display: none; }
    .block-layered-nav .block-content.accordion-open > dl > dt.current {
      border-bottom-width: 1px; }
      .block-layered-nav .block-content.accordion-open > dl > dt.current:after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        display: block;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
        border-top: 4px solid #3399cc;
        border-bottom: none;
        left: 6px;
        top: 50%;
        margin-top: -3px; }
    .block-layered-nav .block-content.accordion-open > dl > dd.current {
      display: block; } }

.block-layered-nav dl dd {
  margin-bottom: 10px;
  margin-top: 10px; }
  .block-layered-nav dl dd ol > li > span,
  .block-layered-nav dl dd ol > li > a {
    padding: 5px 15px;
    display: block; }
  .block-layered-nav dl dd ol > li > a .count {
    color: #a0a0a0; }

.block-layered-nav .currently .block-subtitle {
  display: block;
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase; }

.block-layered-nav .currently ol {
  padding-left: 10px;
  margin-bottom: 10px; }
  .block-layered-nav .currently ol li {
    margin-bottom: 5px; }
  .block-layered-nav .currently ol li .label {
    font-weight: bold; }
  .block-layered-nav .currently ol li:after {
    content: '';
    display: table;
    clear: both; }

.block-layered-nav .actions {
  text-align: right;
  margin-bottom: 7px; }

@media only screen and (max-width: 770px) {
  .sidebar .block.block-layered-nav {
    border-bottom: none; }
  .block-layered-nav--no-filters .block-title {
    display: none; }
  #narrow-by-list,
  #narrow-by-list2 {
    padding: 10px;
    border: 1px solid #cccccc;
    border-top: 0; }
  .block-layered-nav dl ol > li > a,
  .block-layered-nav dl ol > li > span {
    padding: 7px;
    margin: 5px; }
  .block-layered-nav dl ol > li > a {
    color: #636363;
    background-color: #f4f4f4;
    padding: 5px 10px; }
    .block-layered-nav dl ol > li > a:hover {
      text-decoration: none;
      background: #e7e7e7; } }

/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */
/* -------------------------------------------- *
 * Product Name
 */
h2.product-name,
h3.product-name,
h4.product-name,
h5.product-name,
p.product-name {
  margin: 0 0 0.5em;
  color: #636363;
  font-style: normal;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  font-size: 13px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.4; }
  h2.product-name a,
  h3.product-name a,
  h4.product-name a,
  h5.product-name a,
  p.product-name a {
    color: #636363; }
    h2.product-name a:hover,
    h3.product-name a:hover,
    h4.product-name a:hover,
    h5.product-name a:hover,
    p.product-name a:hover {
      color: #3399cc;
      text-decoration: none; }

.products-grid .product-name,
.products-list .product-name {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 14px; }
  .products-grid .product-name a,
  .products-list .product-name a {
    font-weight: 500; }

/* ============================================ *
 * Product Grid
 * ============================================ */
.products-grid {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -10px; }
  .products-grid:after {
    content: '';
    display: table;
    clear: both; }
  .products-grid > li {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
    padding: 0 10px; }
    .products-grid > li:after {
      content: '';
      display: table;
      clear: both; }
    @media only screen and (min-width: 480px) {
      .products-grid > li {
        width: 33.33333%; } }
  .products-grid .product-image {
    width: 100%;
    margin-bottom: 15px; }
    .products-grid .product-image img {
      width: 100%;
      height: auto; }
      .products-grid .product-image img:hidden {
        display: none; }
  .products-grid .product-info {
    position: relative;
    padding-bottom: 95px; }
  .products-grid .actions {
    padding-top: 10px;
    position: absolute;
    bottom: 0;
    min-height: 85px;
    width: 100%; }
  .products-grid .ratings .rating-box {
    margin: 0 auto; }
  .products-grid .ratings .amount {
    display: none; }
  .products-grid .price-box {
    color: #a0a0a0;
    font-size: 13px;
    margin: 0 0 5px; }
  .products-grid .add-to-links {
    margin-bottom: 0; }
  .products-grid .product-image {
    margin-bottom: 5px; }
    .products-grid .product-image:before, .products-grid .product-image:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: none; }
    .products-grid .product-image:before {
      background-color: white;
      opacity: 0.8;
      z-index: 2; }
    .products-grid .product-image:after {
      background-image: url("../../default/images/opc-ajax-loader.gif");
      background-repeat: no-repeat;
      background-position: center;
      z-index: 3; }
  .products-grid .product-image.loading {
    position: relative; }
    .products-grid .product-image.loading:before, .products-grid .product-image.loading:after {
      display: block; }
  @media only screen and (min-width: 980px) {
    .products-grid .products-grid--max-4-col > li {
      width: 25%; }
    .products-grid .products-grid--max-5-col > li {
      width: 20%; }
    .products-grid .products-grid--max-6-col > li {
      width: 16.66667%; } }

/* ============================================ *
 * Product List
 * ============================================ */
.products-list {
  margin-top: 20px;
  margin-bottom: 20px; }
  .products-list li {
    padding-bottom: 20px;
    margin-bottom: 20px; }
    .products-list li:after {
      content: '';
      display: table;
      clear: both; }
    .products-list li .product-image {
      float: left;
      width: 33.33333%; }
      .products-list li .product-image img {
        width: 100%;
        max-width: 100%; }
      @media only screen and (min-width: 480px) {
        .products-list li .product-image a {
          font-size: 18px; } }
    .products-list li:last-child {
      padding-bottom: 0;
      border-bottom: none; }
  .products-list .product-shop {
    float: right;
    width: 66.66667%;
    padding-left: 20px; }
    .products-list .product-shop .product-name {
      margin-bottom: 0; }
    .products-list .product-shop .ratings {
      margin: 0; }
      .products-list .product-shop .ratings .rating-box,
      .products-list .product-shop .ratings .rating-links {
        float: left;
        margin-right: 7px; }
      .products-list .product-shop .ratings .rating-links {
        margin-top: 4px; }
    .products-list .product-shop .price-box {
      margin-top: 0; }
      .products-list .product-shop .price-box .price {
        font-size: 18px; }
    .products-list .product-shop .action {
      margin: 7px 0; }
    .products-list .product-shop .product-primary,
    .products-list .product-shop .desc {
      float: left;
      width: 75%;
      overflow: hidden; }
    .products-list .product-shop .product-secondary {
      float: right;
      width: 25%;
      text-align: right;
      clear: right; }
    @media only screen and (max-width: 1199px) {
      .products-list .product-shop .product-primary,
      .products-list .product-shop .desc {
        float: left;
        width: 60%;
        padding-right: 20px; }
      .products-list .product-shop .product-secondary {
        float: right;
        width: 40%; } }
    @media only screen and (max-width: 599px) {
      .products-list .product-shop .price-box .special-price {
        padding-left: 0; }
      .products-list .product-shop .product-primary,
      .products-list .product-shop .product-secondary,
      .products-list .product-shop .desc {
        float: none;
        width: 100%;
        padding-right: 0;
        text-align: left; } }

/* ============================================ *
 * Mini Product List
 * ============================================ */
.mini-products-list .product-image {
  float: left;
  min-width: 50px; }

.mini-products-list .product-details {
  margin-left: 60px; }
  .mini-products-list .product-details .product-name {
    padding-top: 10px; }

.mini-products-list li {
  clear: both; }
  .mini-products-list li:after {
    content: '';
    display: table;
    clear: both; }

.mini-products-images-list:after {
  content: '';
  display: table;
  clear: both; }

.mini-products-images-list li.item {
  float: left;
  width: 50%;
  margin: 0;
  padding: 0 5px 10px 0; }
  .mini-products-images-list li.item:nth-child(even) {
    padding-right: 0;
    padding-left: 5px; }
  .mini-products-images-list li.item .product-image {
    display: block; }
    .mini-products-images-list li.item .product-image img {
      width: 100%;
      max-width: 100%; }

.modal-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  background: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* Hide by default */
  pointer-events: none;
  opacity: 0; }
  .modal-wrapper.active {
    pointer-events: auto;
    opacity: 1; }

.modal-content {
  overflow-y: auto;
  width: auto;
  max-width: 640px;
  background-color: #FFF;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  height: auto;
  max-height: 90vh;
  position: relative; }

.modal-content:before {
  content: attr(data-title);
  display: block;
  background: #2C9FDE;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding: 10px 20px; }

.modal-content .modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  z-index: 2;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 18px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: #4C4C4C;
  text-align: center; }

.modal-content img {
  max-height: -webkit-calc(90vh - 50px);
  max-height: calc(90vh - 50px);
  width: auto;
  max-width: 100%; }

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  background: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 99;
  /* Hide by default */
  pointer-events: none;
  opacity: 0; }
  .popup.show {
    pointer-events: auto;
    opacity: 1; }
    .popup.show .popup-content {
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1); }
  .popup .popup-content {
    overflow-y: auto;
    width: 800px;
    max-width: 90vw;
    background-color: #F1F2F4;
    height: auto;
    max-height: 90vh;
    position: relative;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
    -webkit-border-radius: 20px;
            border-radius: 20px;
    color: #000;
    -webkit-transform: scale(0.6);
        -ms-transform: scale(0.6);
            transform: scale(0.6); }
    .popup .popup-content ul li{
      list-style: disc;
      margin-left: 25px;
    }
	.popup .popup-content ul{
      margin-bottom:10px;
    }
    .popup .popup-content .title {
      text-align: center;
      font-size: 16px;
      font-weight: 700;
      color: #000;
      padding: 20px 30px 10px; }
    .popup .popup-content .separator {
      padding: 20px; }

.popup-content .popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  z-index: 2;
  width: 30px;
  height: 30px;
  color: #55585d;
  font-size: 18px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  text-align: center; }

body.catalog-product-view .quoter-widget {
  margin: 0; }
  body.catalog-product-view .quoter-widget.bottom {
    display: none; }
  body.catalog-product-view .quoter-widget.top {
    display: none; }
  body.catalog-product-view .quoter-widget.content {
    float: right;
    max-width: 350px; }

@media all and (max-width: 1150px) {
  body.catalog-product-view .quoter-widget.content {
    max-width: 320px; } }

@media all and (max-width: 1100px) {
  body.catalog-product-view .quoter-widget.content {
    display: none; }
  body.catalog-product-view .quoter-widget.top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; } }

@media all and (max-width: 770px) {
  body.catalog-product-view .quoter-widget {
    margin: auto; }
    body.catalog-product-view .quoter-widget.bottom {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
    body.catalog-product-view .quoter-widget.top {
      display: none; } }

body.cms-right-quoter .quoter-widget {
  float: right;
  margin: 0 0 15px 15px;
  max-width: -webkit-calc(40% - 30px);
  max-width: calc(40% - 30px); }

body.cms-right-quoter .std .category-header-image img {
  max-width: 60%; }

body.cms-right-quoter .block-title {
  border: none; }

@media (max-width: 767px) {
  body.cms-right-quoter .quoter-widget {
    float: none;
    margin: auto;
    margin-bottom: 25px;
    max-width: 440px; }
  body.cms-right-quoter .std .category-header-image img {
    max-width: 100%; } }

.bumper-sticker-quoter {
  float: right;
  width: 440px; }

.input-box .select {
  background: white;
  width: 100%;
  height: 28px;
  border: 1px solid silver;
  -webkit-border-radius: 2px;
          border-radius: 2px; }

.contact-map {
  margin-top: 20px; }
  .contact-map .map {
    width: 100%; }

.account-mapping-check {
  padding-bottom: 10px;
  display: block;
  clear: both;
  float: none; }
  .account-mapping-check .field {
    display: inline-block;
    margin-right: 15px; }
    .account-mapping-check .field label {
      font-size: 14px; }
    .account-mapping-check .field input {
      width: 17px;
      height: 17px; }
  .account-mapping-check .information {
    width: 12px;
    height: 12px;
    z-index: 2;
    background: #3399cc;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-right: 10px; }
    .account-mapping-check .information i {
      position: absolute;
      left: 4px;
      top: 2px;
      color: #fff;
      font-size: 9px; }
    .account-mapping-check .information .information-content {
      position: absolute;
      display: none;
      width: 220px;
      bottom: 125%;
      left: 50%;
      margin-left: -110px;
      background-color: black;
      color: #fff;
      text-align: center;
      padding: 5px 0;
      -webkit-border-radius: 6px;
              border-radius: 6px; }
      .account-mapping-check .information .information-content::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent; }
    @media only screen and (max-width: 770px) {
      .account-mapping-check .information .information-content {
        margin-left: -180px; }
        .account-mapping-check .information .information-content::after {
          margin-left: 65px; } }
    .account-mapping-check .information:hover .information-content {
      display: block; }

#account-mapping-form-wrapper #account-mapping-form .fields {
  width: 100%; }

#account-mapping-form-wrapper #account-mapping-form .verify-or {
  text-align: center; }

#account-mapping-form-wrapper .buttons-set {
  clear: both;
  float: none;
  margin: 0 0 30px 0;
  max-width: 100%; }
  #account-mapping-form-wrapper .buttons-set button {
    margin-left: 0;
    float: right;
    display: block;
    width: auto; }

#account-mapping-form-wrapper .popup-content .buttons-set {
  margin: 15px 0 0 0; }
  #account-mapping-form-wrapper .popup-content .buttons-set button {
    margin: 0; }

#account-mapping-form-wrapper.loading .loading {
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -32px;
  margin-top: -32px;
  background: url(../images/configurator/ajax-loader.gif) no-repeat;
  height: 40px;
  width: 40px;
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
  z-index: 10; }

#account-mapping-form-wrapper.loading .loading-container {
  display: block;
  left: 0px;
  width: 100%;
  z-index: 1;
  position: fixed;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s; }

#account-mapping-form-wrapper .custom-select .tooltip {
  position: absolute;
  display: none;
  width: 220px;
  top: -50%;
  left: 105%;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  z-index: 2; }

#account-mapping-form-wrapper .custom-select:hover .tooltip {
  display: block; }

@media only screen and (max-width: 770px) {
  #account-mapping-form-wrapper .custom-select .tooltip {
    bottom: 150%;
    left: 50%;
    margin-left: -110px;
    top: auto; } }

@media only screen and (max-width: 770px) {
  #account-mapping-form-wrapper #account-mapping-form .fields {
    max-width: 100%; }
  #account-mapping-form-wrapper .buttons-set {
    float: right;
    margin: 0 10px 30px 10px; } }

.popup.am-popup .popup-content {
  padding: 25px; }
  .popup.am-popup .popup-content .actions {
    text-align: center;
    margin-top: 10px; }
    .popup.am-popup .popup-content .actions .button-no {
      background-color: #C8C8C8; }
  .popup.am-popup .popup-content .messages {
    color: red; }

.am-dashboard-notification .actions {
  text-align: center; }

.customer-account #account-mapping-form-wrapper .form-instructions {
  color: #55585d; }

.customer-account #account-mapping-form-wrapper input {
  width: 100%; }

.customer-account #account-mapping-form-wrapper #account-mapping-form .fields {
  max-width: 365px; }

.customer-account #account-mapping-form-wrapper #account-mapping-form .buttons-set {
  max-width: 365px; }

@media only screen and (max-width: 770px) {
  .customer-account #account-mapping-form-wrapper #account-mapping-form input {
    width: 100%; }
  .customer-account #account-mapping-form-wrapper #account-mapping-form .fields {
    max-width: 100%; }
  .customer-account #account-mapping-form-wrapper #account-mapping-form .buttons-set {
    max-width: 100%;
    float: none;
    margin: 0 0 30px 0; } }

#checkout-step-billing #account-mapping-form-wrapper #account-mapping-form .buttons-set {
  margin: 0 0 30px 0; }
  #checkout-step-billing #account-mapping-form-wrapper #account-mapping-form .buttons-set button {
    margin-right: 0;
    width: 270px; }

.category-reviews .popup .popup-content {
  padding: 20px;
  width: auto; }

.category-reviews .review-summary-table tbody th {
  background: none; }

.category-reviews .review-meta {
  display: block; }

.category-reviews.loading .loading {
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -32px;
  margin-top: -32px;
  background: url(../images/configurator/ajax-loader.gif) no-repeat;
  height: 40px;
  width: 40px;
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
  z-index: 10; }

.category-reviews.loading .loading-container {
  display: block;
  left: 0px;
  width: 100%;
  z-index: 1;
  position: fixed;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s; }

.review-category-view .product-img-box {
  width: 100%;
  float: none; }

@media only screen and (min-width: 771px) {
  .review-category-view .category-image {
    float: none; } }

@media only screen and (min-width: 771px) {
  .review-category-view .quoter-widget {
    max-width: -webkit-calc(40% - 30px);
    max-width: calc(40% - 30px);
    margin-left: 30px;
    float: right; } }

.category-reviews-microdata {
  display: none; }

.cart .cart-item-invalid-tooltip {
  display: none; }

.cart .cart-item-invalid td.product-cart-remove {
  position: relative; }

.cart .cart-item-invalid .cart-item-value-invalid {
  border: 1px solid red; }

.cart .cart-item-invalid .cart-item-tooltip-wrap {
  position: relative;
  width: 1px;
  height: 1px;
  margin: 0 auto; }
  .cart .cart-item-invalid .cart-item-tooltip-wrap .cart-item-invalid-tooltip {
    display: block;
    position: absolute;
    width: 200px;
    line-height: normal;
    left: 50px;
    top: 0;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    -webkit-border-radius: 6px;
            border-radius: 6px;
    z-index: 2; }
    .cart .cart-item-invalid .cart-item-tooltip-wrap .cart-item-invalid-tooltip::after {
      content: "";
      position: absolute;
      right: 100%;
      top: 20px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 5px 5px 5px 0;
      border-color: transparent #000000 transparent transparent; }

/* cart-table is used by cart, onepage checkout and multishipping checkout */
.cart-table .cart-price {
  white-space: nowrap; }

.cart-table .customer-discount-msg {
  padding: 5px;
  font-weight: bold;
  display: inline-block; }

@media (max-width: 1630px) {
  .cart .cart-item-invalid .cart-item-tooltip-wrap .cart-item-invalid-tooltip {
    right: -30px;
    bottom: 15px;
    margin-top: 0px;
    left: auto;
    top: auto; }
    .cart .cart-item-invalid .cart-item-tooltip-wrap .cart-item-invalid-tooltip::after {
      top: 100%;
      right: 25px;
      border-width: 5px 5px 0 5px;
      border-color: #000000 transparent transparent transparent; } }

.success-continue-shopping {
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  text-align: right;
  margin-top: 10px; }

@media only screen and (max-width: 600px) {
  #top-continue {
    display: block;
    width: 100%;
    height: 30px; } }

.cms-home .page-title,
.cms-home .page-subtitle,
.cms-index-index .page-title,
.cms-index-index .page-subtitle {
  color: #3399cc;
  text-transform: none;
  font-weight: 700; }

.cms-home h1.page-title,
.cms-index-index h1.page-title {
  font-size: 36px; }
  @media only screen and (max-width: 770px) {
    .cms-home h1.page-title,
    .cms-index-index h1.page-title {
      font-size: 24px; } }

.cms-home h2.page-subtitle,
.cms-index-index h2.page-subtitle {
  font-size: 24px; }
  @media only screen and (max-width: 770px) {
    .cms-home h2.page-subtitle,
    .cms-index-index h2.page-subtitle {
      font-size: 16px; } }

.cms-home h3.block-title,
.cms-index-index h3.block-title {
  width: 100%;
  font-size: 18px;
  text-transform: none;
  font-weight: 700;
  color: #55585d;
  border: none;
  padding: 0; }

.cms-home .std p,
.cms-index-index .std p {
  font-size: 16px;
  color: #55585d;
  width: 100%; }

.cms-home .block,
.cms-index-index .block {
  margin-bottom: 30px; }
  .cms-home .block ul,
  .cms-index-index .block ul {
    list-style: none; }
  .cms-home .block ul li:before,
  .cms-home .block ul li a:before,
  .cms-index-index .block ul li:before,
  .cms-index-index .block ul li a:before {
    position: absolute;
    display: block;
    content: "";
    width: 3px;
    height: 3px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    left: 0;
    top: -webkit-calc(0.75em - 1px);
    top: calc(0.75em - 1px); }
  .cms-home .block ul li,
  .cms-index-index .block ul li {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    padding-left: 8px;
    position: relative;
    padding-bottom: 8px; }
    .cms-home .block ul li:before,
    .cms-index-index .block ul li:before {
      background: #55585d; }
  .cms-home .block ul li a,
  .cms-index-index .block ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #3399cc; }
    .cms-home .block ul li a:before,
    .cms-index-index .block ul li a:before {
      background: #3399cc; }
  .cms-home .block blockquote,
  .cms-index-index .block blockquote {
    font-size: 14px; }
    .cms-home .block blockquote span,
    .cms-index-index .block blockquote span {
      font-style: italic; }
  .cms-home .block cite,
  .cms-index-index .block cite {
    display: block;
    padding-bottom: 15px; }

.cms-home .products-list,
.cms-index-index .products-list {
  margin: 0 -10px; }
  .cms-home .products-list ul,
  .cms-index-index .products-list ul {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
  .cms-home .products-list a,
  .cms-index-index .products-list a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    border: 1px solid #ededed; }
    .cms-home .products-list a:hover .product-name,
    .cms-index-index .products-list a:hover .product-name {
      text-decoration: none;
      background: #E09135; }
    .cms-home .products-list a:hover .rating-box-wrapper-home,
    .cms-index-index .products-list a:hover .rating-box-wrapper-home {
      background: #E09135; }
  .cms-home .products-list img,
  .cms-index-index .products-list img {
    width: 100%;
    height: auto;
    min-height: 135px;
    -webkit-box-shadow: none;
            box-shadow: none;
    display: block;
    border-bottom: none; }
    @media only screen and (min-width: 1199px) {
      .cms-home .products-list img,
      .cms-index-index .products-list img {
        min-height: 231px; } }
  .cms-home .products-list .item,
  .cms-index-index .products-list .item {
    width: 33.33333%;
    margin: 0;
    padding: 0 10px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
            max-height:350px;}
    @media only screen and (max-width: 979px) {
      .cms-home .products-list .item,
      .cms-index-index .products-list .item {
        width: 50%; } }
  .cms-home .products-list .product-name,
  .cms-index-index .products-list .product-name {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    background: #3399cc;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: #fff;
    text-transform: none;
    text-decoration: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    margin-bottom: 0;
    padding: 15px 20px;
    max-height:90px;}
  .cms-home .products-list .rating-box-wrapper-home,
  .cms-index-index .products-list .rating-box-wrapper-home {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: #3399cc;
    color: #fff; }

.quoter-banner {
  padding-bottom: 30px; }
  .quoter-banner > .container {
    overflow: hidden; }
    @media only screen and (min-width: 771px) {
      .quoter-banner > .container {
        position: absolute;
        width: 100%;
        margin: 0 auto;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        z-index: 9;
        pointer-events: none;
        height: -webkit-calc(100% - 30px);
        height: calc(100% - 30px); }
        .quoter-banner > .container .quoter-widget {
          pointer-events: auto; } }
    @media only screen and (max-width: 770px) {
      .quoter-banner > .container {
        padding-top: 0;
        padding-bottom: 0; } }

#sizes .size-content .content-container {
  padding: 10px;
  color: #000; }

#sizes .size-content .subtitle {
  font-size: 18px;
  color: #000;
  font-weight: 700; }

#sizes .size-content .content-container .field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end; }

#sizes .size-content .input-box {
  margin-bottom: 8px; }
  #sizes .size-content .input-box label {
    display: block; }

@media only screen and (max-width: 979px) {
  #sizes .size-content .content-container .input-box {
    max-width: -webkit-calc(100% - 70px);
    max-width: calc(100% - 70px); } }

#sizes .size-content .input-text {
  height: 40px;
  -webkit-border-radius: 0;
          border-radius: 0; }
  #sizes .size-content .input-text:focus {
    outline: none;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); }
    #sizes .size-content .input-text:focus:not(.validation-failed) {
      border-color: #3399cc; }
  #sizes .size-content .input-text.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed; }

#sizes .size-content .field-separator {
  padding: 0 20px 16px;
  font-size: 22px;
  font-weight: 700; }
  @media only screen and (min-width: 980px) {
    #sizes .size-content .field-separator {
      -webkit-align-self: flex-end;
          -ms-flex-item-align: end;
              align-self: flex-end; } }
  @media only screen and (max-width: 979px) {
    #sizes .size-content .field-separator {
      padding: 15px 32px; } }

#sizes .size-content .label-icon {
  width: 40px;
  height: 50px;
  background-image: url(../images/label_icon.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  margin-right: 10px;
  position: relative; }
  #sizes .size-content .label-icon .arrows {
    display: block;
    background: #CE0508;
    height: 2px;
    position: relative;
    margin: 0 3px;
    width: 34px; }
    #sizes .size-content .label-icon .arrows:before, #sizes .size-content .label-icon .arrows:after {
      content: '';
      display: block;
      position: absolute;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 5px 8px 5px 0;
      border-color: transparent #ce0508 transparent transparent; }
    #sizes .size-content .label-icon .arrows:before {
      left: -3px;
      top: -4px; }
    #sizes .size-content .label-icon .arrows:after {
      right: -3px;
      top: -4px;
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
  #sizes .size-content .label-icon.icon-top {
    height: 60px; }
    @media only screen and (max-width: 979px) {
      #sizes .size-content .label-icon.icon-top {
        margin-left: 20px; } }
  #sizes .size-content .label-icon.icon-left {
    width: 60px; }
    #sizes .size-content .label-icon.icon-left .arrows {
      position: absolute;
      left: 7px;
      bottom: 10px;
      -webkit-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
              transform: rotate(-90deg);
      -webkit-transform-origin: left;
          -ms-transform-origin: left;
              transform-origin: left; }

#sizes .size-content .clear-filter {
  margin-left: 50px; }
  @media only screen and (max-width: 979px) {
    #sizes .size-content .clear-filter {
      margin-left: 70px; } }

#sizes .size-content .size-filters .filters-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

@media only screen and (max-width: 979px) {
  #sizes .size-content .filters-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; } }

#sizes .size-content .sizes-block {
  background: transparent;
  margin: -212px 0 0; 
  /*margin-top: -212px !important;*/
  }
  #sizes .size-content .sizes-block .menu {
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    #sizes .size-content .sizes-block .menu li {
      padding: 0; }
    #sizes .size-content .sizes-block .menu a {
      display: block;
      font-size: 18px;
      font-weight: 700;
      color: #000;
      padding: 8px 20px 8px 40px;
      position: relative; }
      #sizes .size-content .sizes-block .menu a:before, #sizes .size-content .sizes-block .menu a:after {
        position: absolute;
        content: '';
        -webkit-border-radius: 50px;
                border-radius: 50px; }
      #sizes .size-content .sizes-block .menu a:before {
        width: 16px;
        height: 16px;
        border: 2px solid #3399cc;
        left: 14px;
        top: -webkit-calc(50% - 8px);
        top: calc(50% - 8px); }
      #sizes .size-content .sizes-block .menu a:after {
        width: 8px;
        height: 8px;
        background: #3399cc;
        left: 18px;
        top: -webkit-calc(50% - 4px);
        top: calc(50% - 4px);
        -webkit-transform: scale(2);
            -ms-transform: scale(2);
                transform: scale(2);
        opacity: 0; }
      #sizes .size-content .sizes-block .menu a.on {
        background: #F4F4F4; }
        #sizes .size-content .sizes-block .menu a.on:after {
          -webkit-transform: scale(1);
              -ms-transform: scale(1);
                  transform: scale(1);
          opacity: 1; }
      #sizes .size-content .sizes-block .menu a:hover {
        text-decoration: none; }
        #sizes .size-content .sizes-block .menu a:hover:not(.on) {
          background: #e0e0e0; }
          #sizes .size-content .sizes-block .menu a:hover:not(.on):before {
            -webkit-transform: scale(1.2);
                -ms-transform: scale(1.2);
                    transform: scale(1.2); }

#sizes .size-content .sizes-content {
  background: #F4F4F4;
  padding: 10px;
  height: 360px;
  overflow-y: auto; }
  #sizes .size-content .sizes-content:empty:before {
    position: relative;
    z-index: 2;
    content: "";
    display: block;
    width: 300px;
    height: 10px;
    background: #E3E4E5;
    margin: 6px 0 12px;
    -webkit-box-shadow: 15px 38px 0 0 #F6F7F9, 15px 82px 0 0 #F6F7F9, 15px 126px 0 0 #F6F7F9, 15px 170px 0 0 #F6F7F9, 15px 214px 0 0 #F6F7F9;
            box-shadow: 15px 38px 0 0 #F6F7F9, 15px 82px 0 0 #F6F7F9, 15px 126px 0 0 #F6F7F9, 15px 170px 0 0 #F6F7F9, 15px 214px 0 0 #F6F7F9;
    -webkit-animation: pulse 1.5s ease-in-out infinite both;
            animation: pulse 1.5s ease-in-out infinite both; }
  #sizes .size-content .sizes-content:empty:after {
    content: "";
    display: block;
    width: 100%;
    height: 40px;
    background: #fff;
    -webkit-box-shadow: 0 44px 0 0 #fff, 0 88px 0 0 #fff, 0 132px 0 0 #fff, 0 176px 0 0 #fff;
            box-shadow: 0 44px 0 0 #fff, 0 88px 0 0 #fff, 0 132px 0 0 #fff, 0 176px 0 0 #fff;
    -webkit-animation: pulse 1.5s ease-in-out infinite both;
            animation: pulse 1.5s ease-in-out infinite both; }
  #sizes .size-content .sizes-content:not(.on) {
    display: none; }

#sizes .size-content .size-item {
  background: #fff;
  padding: 8px 10px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  #sizes .size-content .size-item:hover, #sizes .size-content .size-item:focus {
    outline: none;
    background: #3399cc;
    color: #fff; }
    #sizes .size-content .size-item:hover .pdf-link, #sizes .size-content .size-item:focus .pdf-link {
      color: #fff; }
  #sizes .size-content .size-item:not(:last-of-type) {
    margin-bottom: 4px; }

#sizes .size-content .sizes-label {
  color: #000;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 9px; }
  #sizes .size-content .sizes-label:not(:first-of-type) {
    margin-top: 15px; }

#sizes .size-content .size-notice {
  margin-bottom: 20px;
  font-size: 16px; }

#sizes .size-content #size_request_form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  padding: 0 15px; }
  #sizes .size-content #size_request_form .button {
    font-weight: bold;
    font-size: 17px;
    text-transform: none;
    margin: 0; }
  #sizes .size-content #size_request_form .buttons-set {
    border: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  #sizes .size-content #size_request_form .field {
    width: 365px;
    max-width: 100%; }
  #sizes .size-content #size_request_form .messages {
    width: 100%;
    max-width: 360px; }
    #sizes .size-content #size_request_form .messages ul li {
      padding-bottom: 7px;
      background: #e6e6e6; }
  #sizes .size-content #size_request_form .call-assistance {
    padding-top: 10px;
    font-size: 16px; }

@-webkit-keyframes pulse {
  0% {
    opacity: 1; }
  50% {
    opacity: 0.6; }
  100% {
    opacity: 1; } }

@keyframes pulse {
  0% {
    opacity: 1; }
  50% {
    opacity: 0.6; }
  100% {
    opacity: 1; } }

@media only screen and (max-width: 414px) {
  .main-container .main{
    display:flex;
	flex-wrap:wrap;} 
	.main-container .main .breadcrumbs{
	overflow: hidden;
    margin: -15px 0 15px;flex: 0 0 100%;}
	.main-container .main .col-main{order: 2;}
.main-container .main .col-right{order: 1;flex-grow: 1;}
.main-container .main .col-right .landingpage_right .quotes{display:none;}
}
@media only screen and (min-width: 767px) and (max-width:769px) {
  .main-container .main{
    display:flex;
	flex-wrap:wrap;} 
	.main-container .main .breadcrumbs{
	overflow: hidden;
    margin: -15px 0 15px;flex: 0 0 100%;}
	.main-container .main .col-main{order: 2;}
.main-container .main .col-right{order: 1;flex-grow: 1;}
.main-container .main .col-right .landingpage_right .quotes{display:none;}
.main .landing-bottom-banner{width:1200px;}
}

@media only screen and (min-width: 320px) and (max-width:414px) {
	.review-proof-options{
		flex-wrap: wrap;
	}
	.proof-options-item{
		width:50%;
		flex-grow:1;
	}
}
@media only screen and (min-width: 768px) and (max-width:1024px) {
	.review-proof-options{
		flex-wrap: wrap;
	}
	.proof-options-item{
		width:35%;
		flex-grow:1;
	}
}

@media only screen and (max-width: 415px){
	.roll-container-image{
		position: absolute;
		left: 8%;
		top: 15%;
		max-width: 250px;
		height: 228px;
	}
	.windDirection{
		position: absolute;
		left: 15%;
		top: 0%;
	}
}

@media only screen and (min-width:415px) and (max-width:771px){
	.proof-options-item-label-header{
		line-height:1;
		font-weight:700;
		position: absolute;
		top: -8px;
		font-size: xx-small;
		font-family: sans-serif;
		right: 0px;
		left: 46px;
	}
	.proof-options-item-label-text{
		position: absolute;
		top: 12px;
		left: 46px;
		font-size: smaller;
		font-family: sans-serif;
		line-height:1;
	}
	.proof-options-item-label-content .proof-options-item-labelicon{
		color: #a7afaf;
		margin: 15px 10px 10px 3px;
		font-size:3em;
	}
}

/* online proofing size page resdeisgn */
/*.parent-roll
	{
		position: relative;
		top: -16px;
		left: 0;
		width: 174px;
		height: 161px;
		transform: rotate(270deg);
		
	}*/
	.parent-roll
	{
		position: relative;
		top: -18px;
		left: 33px;
		width: 174px;
		height: 161px;
		transform: rotate(90deg);
	}
	
	.childDiv
	{
		position: absolute; 
		top: 25%; 
		left: 22%; 
		background-color: black; 
		width: 94px; 
		height: 100px;
	}
	.child{
		    position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%,-50%) rotateZ(0deg);
			max-width: 100%;
			max-height: 100%;
			font-family: 'Arial-BoldMT', 'Arial Bold', 'Arial';
			font-weight: 700;
			font-style: normal;
			font-size: 40px;
			color: #FF0000;
	}
	.unwind-title{
			font-family: 'Arial-BoldMT', 'Arial Bold', 'Arial';
			font-weight: 700;
			font-size: 11px;
			margin: 0 0 6px 0 !important;
	}
	.unwind-selector{
			font-weight: 400;
			font-size: 11px;
			width: 197px;
			height: 24px;
			position: unset !important;
	}
	
	.input-text{
			font-weight: 400;
			/*font-size: 11px;*/
			width: 9%;
			/*height: 27px !important;*/
	}
	.inches-cls{
	        font-family: 'Arial-BoldMT', 'Arial Bold', 'Arial';
			font-weight: 700;
			font-size: 11px;
	}
	.radio-txt{
	        font-family: 'Arial-BoldMT', 'Arial Bold', 'Arial';
			font-weight: 400;
			font-size: 13px;
	}
	.input-dimensions{
		width: 10% !important;
	}
	
	#cust_height{
		position: absolute;
		left: 66px;
		top: 0px;
	}
	
	.roll-main{
	position: relative;
    left: 22%;
    top: -248px;
    width: 250px;
    height: 250px;
	background-color:white;
	}
	.unwindroll-txt{
	font-family: 'Arial-BoldMT', 'Arial Bold', 'Arial';
    font-weight: 700;
    font-style: normal;
    font-size: 10px;
    color: #666666;padding-left: 23%;
	}
	.rollwidth-txt{
		border-width: 0px;
		font-size: 11px;
		font-family: 'ArialMT', 'Arial';
		font-weight: 400;
		margin-bottom: 2px;
		padding-left: 30%;
		position: relative;
		top: -14px;
	}
	.width-line{
		margin-bottom: 14px;
		padding-left: 16%;
		position: absolute;
		top: 40px;
		top: 42px;
		left: 17px;
	}
	.height-line{
	transform: rotate(90deg);
    margin-left: 57%;
    margin-top: -56%;
    position: absolute;
	}
	.rollheight-txt{
		transform: rotate(90deg);
		/*margin: -64% 0% 0% 71% !important;*/
		top: 245px;
		left: 97px;
		position: absolute;
		font-size: 11px;
		font-family: 'ArialMT', 'Arial';
		font-weight: 400;
		/*width:0px !important;*/
	}
	.headerText{
		    font-size: 16px;
			font-weight: 700;
			font-style: normal;
			font-family: 'Arial-BoldMT', 'Arial Bold', 'Arial';
			margin: 1px !important;
	}
	
	input[type=radio] {
		width: 17px;
		height: 17px;
		margin-right: 0px;
		margin-left: 12px;
	}
	.label-submit{    
		    position: relative;
			bottom: 0;
			right: -426px;
			top: -114px;
	}
	.size-input-text{
		height:27px !important;
	}
	.label-measure {
		position: relative;
		bottom: 0;
		right: -375px;
		top: -59px;
	}
	/* Popup box BEGIN */
	.hover_measure_label{
		background:rgba(0,0,0,.4);
		cursor:pointer;
		display:none;
		height:100%;
		position:fixed;
		text-align:center;
		top:0;
		left:0;
		width:100%;
		z-index:10000;
	}
	.hover_measure_label .helper{
		display:inline-block;
		height:100%;
		vertical-align:middle;
	}
	.hover_measure_label > div {
		background-color: #fff;
		box-shadow: 10px 10px 60px #555;
		display: inline-block;
		height: 70%;
		max-width: 70%;
		min-height: 31px;
		vertical-align: middle;
		width: 80%;
		position: relative;
		border-radius: 8px;
		padding: 15px 5%;
		top:10%;
	}
	.popupCloseButton {
		background-color: #fff;
		border: 3px solid #999;
		border-radius: 30px;
		cursor: pointer;
		display: inline-block;
		font-family: arial;
		font-weight: bold;
		position: absolute;
		top: -10px;
		right: -10px;
		font-size: 14px;
		line-height: 20px;
		width: 25px;
		height: 25px;
		text-align: center;
	}
	.popupCloseButton:hover {
		background-color: #ccc;
	}
	.trigger_popup_fricc {
		cursor: pointer;
		font-size: 20px;
		margin: 20px;
		display: inline-block;
		font-weight: bold;
	}
	.measure-content {
		text-align: left;
	}
	.measure-content p {
		text-align: justify;
	}
	/* Popup box End */
	@media only screen and (max-width:1024px){
		.roll-main{
			position: relative;
			left:0%;
			top: 0px;
			width: 250px;
			height: 250px;
			background-color:white;
		}
		.input-text{
			font-weight: 400;
			font-size: 11px;
			width: 25%;
			height: 27px;
		}
		#sizes .size-content .sizes-block {
			background: transparent;
			margin: 38px 0 0; 
		}
		#sizes .size-content .input-text {
			width: 197px !important;
		}
		.label-submit {
    position: relative;
    bottom: 0;
    right: 0;
    top: 14px;
	}
}
/*End of size page resign */
/*new upload page style*/

.title-block{
	background-color: #1785d9;
    color: white;
    font-size: 18px;
    font-weight: 400;
    padding: 4px 0px 5px 10px;
	font-family:inherit;
}
.upload-container{
    border: 5px dashed #1785d9;
	height: 50%;
    margin: 46px;
    border-radius: 15px;
	height:301px;
}
.icon-upload-new {
    width: 102px;
    height: 119px;
    background-image: url("../images/configurator/drag-and-drop.png");
    -webkit-background-size: 102px 119px;
    background-size: 102px 119px;
    margin: 20px auto;
}
.upload-label{
	display:block;
	text-align:center;
	
}
.upload-link{
	    color: #3399cc;
    cursor: pointer;
	font-weight:700;
}
.container-upload-images{
	text-align:center;
}
.container-upload-form{
	cursor:pointer;
}
  .new-file-icon{
      color: #9da4ac;
    font-size: 56px;
    position: relative;
    margin: 20px 5px 30px 0;
  }
  .new-file-icon:after{
	content: '';
    position: absolute;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    bottom: 5px;
    left: 0;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
  }
   .container-upload-form .container-upload-images i.jpg::after {
  content: 'jpg'; }

 .container-upload-form .container-upload-images i.gif::after {
  content: 'gif'; }

 .container-upload-form .container-upload-images i.png::after {
  content: 'png'; }

 .container-upload-form .container-upload-images i.eps::after {
  content: 'eps'; }

 .container-upload-form .container-upload-images i.pdf::after {
  content: 'pdf'; }

 .container-upload-form .container-upload-images i.psd::after {
  content: 'psd'; }

 .container-upload-form .container-upload-images i.tiff::after {
  content: 'tiff'; }

 .container-upload-form .container-upload-images i.bmp::after {
  content: 'bmp'; }

 .container-upload-form .container-upload-images i.ai::after {
  content: 'ai'; }

 .container-upload-form .container-upload-images i.zip::after {
  content: 'zip'; }
  .imag-loader{
	position: absolute;
    top: -100%;
    left: -100%;
    width: 500%;
    height: 500%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
    display: none;
	}
	.loder-img{
		left: 30%;
		top: 30%;
		right: 0px;
		bottom: 0px;
		position:absolute;
	}
	.art-disable {
		pointer-events: none;
		position:relative;
	}
	.art-msg{
		position: absolute;
		display: none;
		width: 100%;
		background: #000000ba;
		height: 100%;
		top: 0;
		text-align: center;
		color: #ffffff;
		padding: 0px 10px;
		padding-top: 14%;
		font-weight: bold;
		font-size: 12px;
		border-radius: 8px;
	}
	.valid-proof{
		border: 1px solid red;
		/*padding: 3px;*/
	}
   @media only screen and (max-width:414px){
	.upload-container{
	
		height:375px;
	}
  }
  /*end of new upload page style*/
/*****-Switch PDF css Start*******/
.alltocart-success {
    border: 1px solid #ccc;
    padding: 20px;
    color: green;
    font-size: 13px;
    margin: 4px 0 2px 0;
    font-weight: bold;
}
.failed-pdf-msg {
	color: #000;
    font-size: small;
    display: inline-block;
    margin-left: 5px;
}
.pdf-failed-icon {
    font-size: 18px;
    display: block;
    margin: 30px 0 2px 30px;
}
.pdf-notapproved {
    position: absolute;
    background: #cac1c16b;
    height: 100%;
    width: 100%;
    border: 1px solid #e2dddd;
}
.switch-loading {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: #00000094;
    width: 100%;
    z-index: 99;
}
.switch-loading img{
	    position: absolute;
    left: 48%;
    top: 50%;
    width: 50px;
}
.pdf-consent-buttons{
	display: flex;
    width: 24%;
    padding-left: 25px;
    flex-direction: column;
    /* flex: 1; */
    padding-right: 18px;
}

.pdf-approved{
	background-color: rgba(198, 238, 206, 0.59);
    border: 3px solid #56e67cf2;
    /* filter: grayscale(0%) !important; */
    width: 100%;
    height: 100%;
    position: absolute;
}


.pdf-approved .pdf-approvedCheck{
	display:block;
	position: absolute;
    left: 42%;
    top: 42%;
}

.pdf-approved .pdf-thumbnailArtwork{
mix-blend-mode: multiply;
opacity: 0.2;
}
.pdf-width-label{
	position:absolute;
	left:112px;
	top:12px;
}

.pdf-width-line-image{
	width: 76px;
    position: absolute;
    top: 10px;
    left: 78px;
}
.pdf-width-text{
    position: absolute;
    font-size: 9.5px;
    left: 96px;
    top: -5px;
    letter-spacing: 1px;
    font-weight: bold;
}
.pdf-height-text{
	font-size: 9.5px;
    position: absolute;
    left: 205px;
    top: -81px;
    transform: rotate(180deg) !important;
    letter-spacing: 1px;
    font-weight: bold;
}

.pdf-height-label{
	transform:rotate(270deg);
	position: absolute;
    top: 348px;
    left: 361px;
}
.pdf-height-line-image{
    height: 4.6px;
    position: absolute;
    top: -87px;
    left: 201px;
}

.pdf-thumbnailArtwork{
	width:100%;
	height:100%;
}
.pdf-version-details-tab{
	border: 1px solid #c4bbbb;
	display:flex;
}
.pdf-proof-tab{
	margin-top: 10px;
	border: 1px solid #c4bbbb;
	/*display:flex;*/
}
.pdf-version-details-item{
	margin: 8px 18px 8px 8px;
    border-right: 1px solid #beb1b1;
    padding-right: 45px;
    text-align: center;
}
.pdf-version-details-item:last-child{
	border:0px;
}
p{
	margin:0px;
	padding:0px;
}
.pdf-proof-image{
	width: 35%;
    max-height: 100%;
	margin: 40px;
    border: 3px solid #8ac48c;
	background-image: url("Koala.jpg");
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
.proof-action-icons{
 /*border: 1px solid #c4bbbb;*/
 display: flex;
 flex-direction: column;
 margin:8px 0 8px 0;
 max-height: 100%;
}
.proof-action-icons-item{
	/*border-bottom:1px solid #beb1b1;*/
	padding: 5px;
	opacity: 0.5;
	cursor: pointer;
}
.proof-action-icons-item:last-child{
	margin-top: 10px;
	border-bottom:0px solid #beb1b1;
}
.pdf-artwork-details{
	display:flex;
	flex-direction: column;
	margin: 20px;
	position:relative;
	    margin-top: -18px !important;
}
.pdf-artwork-review-alerts{
	margin: 20 0 0 0;
}
.pdf-artwork-review{
	border: 1px solid #c4bbbb;
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow-y: scroll;
    height: 280px;
    max-width: 100%;
    box-sizing: border-box;
}
.pdf-warning-icon{
	display:block;
	margin:10px 0 2px 0px;
}
.pdf-alert-icon-text{
	display: inline-block;
    margin-left: 10px;
    color: #000000a6;
    font-size: small;
}
.pdf-parent
	{
		position: relative;
		top: 0;
		left: 0;
		max-width:80%;
		max-height:80%;
	}
	.pdf-childDiv
	{
		position: absolute;
		top: 28%;
		left: 40%;
		background-color: white;
		width: 54px;
		height: 54px;
	}
	.pdf-artwork-consent-buttons{
	
		float:right;
		width: 30%;
		margin-right: 9px;
	}
	.pdf-child{
		position:absolute;
		top:50%;
		left: 50%;
		transform: translate(-50%,-50%) rotateZ(90deg);
		width: 100%;
		height: 100%;
	}
	.pdf-label-roll{
		position: absolute;
		left: 146px;
		top: 56px;
		width: 150px;
		/* height: 150px; */
		margin: 5px;
		transform: rotate(90deg);
	}
	.pdf-artwork-versions{
		border: 1px solid #c4bbbb;
		display: flex;
		margin:4px 0 4px 0;
		width: 69%;
		float:left;
	}
	/*.artwork1{
		background-image: url("Koala.jpg");
		background-repeat:no-repeat;
		background-position:center;
		background-size:cover;
		
	}*/
	/*.artwork2{
		background-image: url("Capture.png");
		background-repeat:no-repeat;
		background-position:center;
		background-size:cover;
		
	}*/
	/*.artwork3{
		background-image: url("Lighthouse.jpg");
		background-repeat:no-repeat;
		background-position:center;
		background-size:cover;
		
	}*/
	.pdf-active-artwork{
		border: 2px solid #000000;
		filter:grayscale(0%) !important;
		border: 2px solid #000000 !important;
	}
	.pdf-artwork{
		/*width: 10%;*/
		height: 87px;
		margin: 21px;
		position:relative;
		/*filter:grayscale(100%);*/
		border: 1px solid #988b8b;
	}
	.pdf-chiliViewButton{
		position: absolute;
		left: 4%;
		top: 4%;
		margin: 2px;
	}
	/*.changeProofMethodButton{
		position: absolute;
		top: 4%;
		left: 19%;
		margin: 2px;
	}*/
	.pdf-version-label
	{
		position: absolute;
		top: 107%;
		font-size: medium;
		left: 28%;
		font-family:'ArialMT', 'Arial';
		font-size: smaller;
	}
	.pdf-artwork-consent{
		border: 1px solid #c4bbbb;
		display: flex;
		margin: 0px;
		position: relative;
		float: left;
		width: 69%;
		height: 161px;
	}
	.artwork-chili-buttons{
		border: 1px solid #c4bbbb;
		display: flex;
		margin:8px 0 8px 0;
		position:relative;
		height:124px;
		padding: 46px;
		min-height: 100%;
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		flex:3;
	}
	.pdf-consent-text-div{
		display: flex;
		width: 30%;
		margin: 5px;
		/* font-size: smaller; */
		font-size: 14px;
		font-family: 'Open Sans', Helvetica, Arial, sans-serif;
		/* flex: 1; */
		text-align: justify;
		padding: 4px;;
	}
	.pdf-consent-checkbox{
		margin:5px;
	}
	.proofButton{
		background-color: #00adff;
		/* padding: 5px; */
		border-radius: 8px;
		height: 45px;
		width: 100%;
		color: white;
		border: none;
		/* padding: 26px; */
		cursor: pointer;
		/* display: flex; */
		/* flex-basis: calc(50% - 40px); */
		/* justify-content: center; */
		/* flex-direction: column; */
		margin: 5px 85px 9px 9px;
		font-weight: 700;
	}
	.pdf-warning-label{
		    border: 1px solid #00000061;
			width: 25%;
			padding: 3px;
			margin-bottom: 0px;
			font-size: smaller !important;
			font-weight: 700 !important;
			color: #6e6e72;
	}
	.saveContinueButton{
		position: absolute;
		right: 4%;
		bottom: 10%;
	}
	a.skipProof{
		    text-decoration: none;
		color: #00adff;
		font-size: medium;
		font-stretch: semi-expanded;
		font-weight: 700;
		display: inline-block;
		width: 38%;
		float: left;
		margin-right: 10px;
		margin-top: 12px;
}
	#style-2::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

#style-2::-webkit-scrollbar
{
	width: 12px;
	background-color: #ffffff;
}

#style-2::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #e3dede;
}
.uploadNewFileButton{
	    background-color: white;
		padding: 5px;
		border-radius: 8px;
		height: 34px;
		width: 171px;
		color: black;
		border:none;
		padding:10px;
		border:1px solid;
		cursor: pointer;
		position: absolute;
		top: 0%;
		right: 23%;
		font-weight: 700;
		font-size: x-small;

}
.slider
{
    writing-mode: bt-lr; /* IE */
    -webkit-appearance: slider-vertical; /* WebKit */
    width: 5px;
    height: 50px;
    padding: 0 11px;
}
.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #4CAF50;
  cursor: pointer;
}
	
.pdf-guidelinesDiv {
    display: flex;
    /*position: absolute;
    top: 93%;
    left: 4%;*/
	    margin-left: 10px;
}
	
.pdf-guidelinesDiv p{
	display:inline;
	margin-left:56px;
}
.pdf-tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #f0f5f3;
  color: #212020;
  text-align: center;
  border-radius:0px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top:50%;
  left:25%;
  font-size: 10px;
  font-family: sans-serif;
  font-style: inherit;
  text-align: center;
}
.pdf-tooltiptext:before{
	content: "";
    width: 0px;
    /* height: 32px; */
    /* background-color: blue; */
    position: relative;
    border-top: 3px solid transparent;
    border-bottom: 2px solid #f0f5f3;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    top: -23px;
    border-width: 10px 5px;
}
.pdf-cutLineDiv:hover .pdf-tooltiptext{
	visibility: visible;
}
.pdf-notconvertDiv:hover .pdf-tooltiptext{
	visibility: visible;
}
.pdf-clearSpaceDiv:hover .pdf-tooltiptext{
	visibility: visible;
}
.pdf-bleedLineDiv:hover .pdf-tooltiptext{
	visibility: visible;
}
.pdf-cutLineDiv{
	position:relative;
}
.pdf-cutLineDiv:before{
	content: "";
    width: 36px;
    height: 1px;
    border-bottom: 3px solid #324996;
    position: absolute;
    top: 45%;
    left: 15%;
}
.pdf-notconvertDiv{
	position:relative;
}
.pdf-notconvertDiv:before{
	content: "";
    /*width: 36px;
    height: 1px;
    border-bottom: 3px solid #34cee7;*/
    position: absolute;
    top: 45%;
    left: 15%;
}
.pdf-clearSpaceDiv{
	position:relative;
}
.pdf-clearSpaceDiv:before{
	content: "";
    width: 36px;
    height: 1px;
    border-bottom: 3px solid #0CF1FF;
    position: absolute;
    top: 45%;
    left: 15%;
}
.pdf-bleedLineDiv{
	position:relative;
}
.pdf-bleedLineDiv:before{
	content: "";
    width: 36px;
    height: 1px;
    border-bottom: 3px solid #51e3e8;
    position: absolute;
    top: 45%;
    left: 15%;
}
.pdf-chili-actions{
	display:flex;
}
.warning-error{
	margin-top:10px;
}
.pdf-review-alerts-direction-label{
	top: 57px;
    position: absolute;
    left: 8px;
    width: 118px;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: inherit;
}
.pdf-review-alerts-label{
	position: absolute;
    left: 6px;
    top: 6px;
}
.pdf-review-alerts{
	position:relative;
	flex:2;
	margin-left: 26px;
}
.pdf-approvedCheck-fixes {
	margin: 4px 0px 0 1px;
}
p.version-label {
    text-align: center;
}
.review-head {
	font-size: 12px;
    font-weight: 900;
}
@media only screen and (max-width:1024px){
	.pdf-review-alerts{
		margin-top: 35px;
	}
	    
	.pdf-version-details-tab{
		flex-direction:column;
	}
	.pdf-version-details-item {
		/* margin: 8px 15px 8px 7px; */
		border-right: 0px solid #beb1b1;*/
		/* padding-right: 72px; */
	}
	.pdf-guidelinesDiv{
		flex-wrap:wrap;
	}
	.pdf-artwork-consent{width:100%;    flex-direction: column;    height: 467px !important;}
    .pdf-artwork-consent-buttons{float: unset;width: 100%;}
	.pdf-artwork-versions{
		width:100% !important;
		float:unset;
	}
	.pdf-height-text{
	    /* left: 44% !important; */
    /* top: -317px !important; */
	}
	.version-details-item {
    margin: 8px 27px 8px 31px;
    border-right: 0 !important;
    padding-right: 0;
   flex: 0 !important;
}
.version-details-tab {
    border: 1px solid #c4bbbb;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.pdf-proof-image {
    width: 90% !important;
}
.pdf-guidelinesDiv p {
    display: block !important;
    margin-left: 56px;
	width: 100%;
}
.pdf-artwork {
    width: 100px !important;
}
.proofButton {
    width: 100% !important;
}
.pdf-consent-buttons {
        display: flex;
    width: 100%;
    /* padding-left: 50px; */
    flex-direction: column;
    order: 3;
    justify-content: center;
}
.pdf-consent-text-div {
    display: flex;
    width: 56%;
    margin: 5px;
    font-size: smaller;
    font-family: 'ArialMT', 'Arial';
}
}
.lSPrev{
	left: 0px !important;
    background: #000000;
    width: 20px !important;
    height: 20px !important;
    line-height: 1.2;
    padding: 0px 6px;
    font-weight: bolder;
    font-size: 15px;
    color: #fff;
    text-decoration: none !important;
    border: 1px solid;
    border-radius: 9px;
	}
	.lSNext{
	    right: 0px !important;
    background: #000000;
    width: 20px !important;
    height: 20px !important;
    line-height: 1.2;
    padding: 0px 6px;
    font-weight: bolder;
    font-size: 15px;
    color: #fff;
    text-decoration: none !important;
    border: 1px solid;
    border-radius: 9px;
	}
	.lSAction > a:hover {
    background-color: #00adff;
    border: 0.5px solid #ffffff;
    color: #000000;
	}
	.onling-proof-loading {		
		position: fixed;		
		top: 55%;		
		z-index: 999;		
		color: rgb(255, 255, 255);		
		text-align: center;		
		left: 35.5%; 		
	}
	.review-version {
		background-color: #cccccc73;
		padding: 2px;
		border: 1px solid #b5afaf;
		border-radius: 8px;
		font-size: 12px;
	}
	.overRelay-spec {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: rgba(0,0,0,.7);
		transition: opacity 500ms;
		visibility: visible;
		opacity: 1;
	}
	.popupClosespec{
		position: absolute;
		right: 4px;
		top: 4px;
		width: 25px;
		height: 25px;
		border-radius: 50%;
		border: 3px solid #999;
		color: #424242;
		font-weight: 600;
		text-align: center;
		z-index: 9999;
		cursor: pointer;
	}
	.hover_spec_label{
		position: absolute;
		background: #fff;
		width: 90%;
		left: 5%;
		z-index: 999;
		padding: 30px;
		border-radius: 10px;
		overflow: auto;
		top: 0%;}
	.spec-content p {
		text-align: justify;
		font-family: inherit;
		margin: 6px 0px 2px 0px;
	}
	.proofButton-invalid {
		background-color: #b0b8bb;
		border-radius: 8px;
		height: 45px;
		width: 100%;
		color: white;
		border: none;
		margin: 5px 85px 9px 9px;
		font-weight: 700;
		cursor: not-allowed;
	}
	@-moz-document url-prefix() {
    
	.pdf-childDiv {
		position: absolute;
		top: 18% !important;
		left: 47% !important;
	}
	.pdf-width-label {

		position: absolute;
		left: 73px;
		top: 1px;

	}
	
	.pdf-width-text {
		position: absolute;
		font-size: 9px;
		left: 125px;
		top: -2px;
	}
	.pdf-width-line-image {
		width: 88px;
		position: absolute;
		top: 12px;
		left: 106px;
	}
	/*.pdf-parent {
		position: relative;
		top: 0;
		left: 0;
		max-width: 98%;
	    max-height: 80%;
	}*/
	.pdf-label-roll
	{
		position: absolute;
		left: 109px;
		top: 19px;
		width: 169px;
		height: 150px;
		margin: 5px;
		transform: rotate(90deg);
	}
	.pdf-height-text {
		font-size: 9.5px;
		position: absolute;
		left: 198px;
		top: -77px;
		transform: rotate(180deg) !important;
		letter-spacing: 2px;
	}
	.pdf-height-line-image {
		height: 4.9px;
		position: absolute;
		top: -127px;
		left: 170px;
	}
}
/*****-Switch PDF css END*******/
