﻿@charset "UTF-8";
@import url(http://fonts.googleapis.com/css?family=Roboto);
body {
  font-family: 'Roboto', sans-serif; }

/*PLUGINS*/
.noty_layout_mixin, #noty_layout__top, #noty_layout__topLeft, #noty_layout__topCenter, #noty_layout__topRight, #noty_layout__bottom, #noty_layout__bottomLeft, #noty_layout__bottomCenter, #noty_layout__bottomRight, #noty_layout__center, #noty_layout__centerLeft, #noty_layout__centerRight {
  position: fixed;
  margin: 0;
  padding: 0;
  z-index: 9999999;
  transform: translateZ(0) scale(1, 1);
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  filter: blur(0);
  -webkit-filter: blur(0);
  max-width: 90%; }

#noty_layout__top {
  top: 0;
  left: 5%;
  width: 90%; }

#noty_layout__topLeft {
  top: 20px;
  left: 20px;
  width: 325px; }

#noty_layout__topCenter {
  top: 5%;
  left: 50%;
  width: 325px;
  transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__topRight {
  top: 20px;
  right: 20px;
  width: 325px; }

#noty_layout__bottom {
  bottom: 0;
  left: 5%;
  width: 90%; }

#noty_layout__bottomLeft {
  bottom: 20px;
  left: 20px;
  width: 325px; }

#noty_layout__bottomCenter {
  bottom: 5%;
  left: 50%;
  width: 325px;
  transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__bottomRight {
  bottom: 20px;
  right: 20px;
  width: 325px; }

#noty_layout__center {
  top: 50%;
  left: 50%;
  width: 325px;
  transform: translate(calc(-50% - .5px), calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__centerLeft {
  top: 50%;
  left: 20px;
  width: 325px;
  transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__centerRight {
  top: 50%;
  right: 20px;
  width: 325px;
  transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }

.noty_progressbar {
  display: none; }

.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #646464;
  opacity: 0.2;
  filter: alpha(opacity=10); }

.noty_bar {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
  transform: translate(0, 0) scale(1, 1);
  -webkit-font-smoothing: subpixel-antialiased;
  overflow: hidden; }

.noty_effects_open {
  opacity: 0;
  transform: translate(50%);
  animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-fill-mode: forwards; }

.noty_effects_close {
  animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-fill-mode: forwards; }

.noty_fix_effects_height {
  animation: noty_anim_height 75ms ease-out; }

.noty_close_with_click {
  cursor: pointer; }

.noty_close_button {
  position: absolute;
  top: 2px;
  right: 2px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  cursor: pointer;
  transition: all .2s ease-out; }

.noty_close_button:hover {
  background-color: rgba(0, 0, 0, 0.1); }

.noty_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 10000;
  opacity: .3;
  left: 0;
  top: 0; }

.noty_modal.noty_modal_open {
  opacity: 0;
  animation: noty_modal_in .3s ease-out; }

.noty_modal.noty_modal_close {
  animation: noty_modal_out .3s ease-out;
  animation-fill-mode: forwards; }

@keyframes noty_modal_in {
  100% {
    opacity: .3; } }

@keyframes noty_modal_out {
  100% {
    opacity: 0; } }

@keyframes noty_anim_in {
  100% {
    transform: translate(0);
    opacity: 1; } }

@keyframes noty_anim_out {
  100% {
    transform: translate(50%);
    opacity: 0; } }

@keyframes noty_anim_height {
  100% {
    height: 0; } }

.noty_theme__sunset.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative; }
  .noty_theme__sunset.noty_bar .noty_body {
    padding: 10px;
    font-size: 14px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); }
  .noty_theme__sunset.noty_bar .noty_buttons {
    padding: 10px; }

.noty_theme__sunset.noty_type__alert, .noty_theme__sunset.noty_type__notification {
  background-color: #073B4C;
  color: #fff; }

.noty_theme__sunset.noty_type__alert .noty_progressbar, .noty_theme__sunset.noty_type__notification .noty_progressbar {
  background-color: #fff; }

.noty_theme__sunset.noty_type__warning {
  background-color: #FFD166;
  color: #fff; }

.noty_theme__sunset.noty_type__error {
  background-color: #EF476F;
  color: #fff; }
  .noty_theme__sunset.noty_type__error .noty_progressbar {
    opacity: .4; }

.noty_theme__sunset.noty_type__info, .noty_theme__sunset.noty_type__information {
  background-color: #118AB2;
  color: #fff; }

.noty_theme__sunset.noty_type__info .noty_progressbar, .noty_theme__sunset.noty_type__information .noty_progressbar {
  opacity: .6; }

.noty_theme__sunset.noty_type__success {
  background-color: #06D6A0;
  color: #fff; }

/* Switchery defaults. */
.switchery {
  background-color: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  height: 30px;
  position: relative;
  vertical-align: middle;
  width: 50px;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: content-box;
  background-clip: content-box; }
  .switchery > small {
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    height: 30px;
    position: absolute;
    top: 0;
    width: 30px; }

/* Switchery sizes. */
.switchery-small {
  border-radius: 20px;
  height: 20px;
  width: 33px; }
  .switchery-small > small {
    height: 20px;
    width: 20px; }

.switchery-large {
  border-radius: 40px;
  height: 40px;
  width: 66px; }
  .switchery-large > small {
    height: 40px;
    width: 40px; }

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

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

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

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

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

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

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

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

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

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

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

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

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

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

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

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

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

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

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

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

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

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

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

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

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

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=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,
:root .fa-flip-both {
  filter: none; }

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

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

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

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

.fa-inverse {
  color: #fff; }

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

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-acquisitions-incorporated:before {
  content: "\f6af"; }

.fa-ad:before {
  content: "\f641"; }

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

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

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

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

.fa-adobe:before {
  content: "\f778"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-air-freshener:before {
  content: "\f5d0"; }

.fa-airbnb:before {
  content: "\f834"; }

.fa-algolia:before {
  content: "\f36c"; }

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

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

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

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

.fa-alipay:before {
  content: "\f642"; }

.fa-allergies:before {
  content: "\f461"; }

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

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

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

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

.fa-amilia:before {
  content: "\f36d"; }

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

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

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

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

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

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

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

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

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

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

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

.fa-angry:before {
  content: "\f556"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-ankh:before {
  content: "\f644"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

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

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

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

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

.fa-archway:before {
  content: "\f557"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-artstation:before {
  content: "\f77a"; }

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

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

.fa-asymmetrik:before {
  content: "\f372"; }

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

.fa-atlas:before {
  content: "\f558"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-atom:before {
  content: "\f5d2"; }

.fa-audible:before {
  content: "\f373"; }

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

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-award:before {
  content: "\f559"; }

.fa-aws:before {
  content: "\f375"; }

.fa-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backspace:before {
  content: "\f55a"; }

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

.fa-bacon:before {
  content: "\f7e5"; }

.fa-bahai:before {
  content: "\f666"; }

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

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

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

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

.fa-band-aid:before {
  content: "\f462"; }

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

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

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

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

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

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

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

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

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

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

.fa-battle-net:before {
  content: "\f835"; }

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

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

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

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

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

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

.fa-bezier-curve:before {
  content: "\f55b"; }

.fa-bible:before {
  content: "\f647"; }

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

.fa-biking:before {
  content: "\f84a"; }

.fa-bimobject:before {
  content: "\f378"; }

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

.fa-biohazard:before {
  content: "\f780"; }

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

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

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

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

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blender:before {
  content: "\f517"; }

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

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

.fa-blog:before {
  content: "\f781"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

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

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

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

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

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

.fa-bone:before {
  content: "\f5d7"; }

.fa-bong:before {
  content: "\f55c"; }

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

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

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

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

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

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

.fa-bootstrap:before {
  content: "\f836"; }

.fa-border-all:before {
  content: "\f84c"; }

.fa-border-none:before {
  content: "\f850"; }

.fa-border-style:before {
  content: "\f853"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-box-tissue:before {
  content: "\f95b"; }

.fa-boxes:before {
  content: "\f468"; }

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

.fa-brain:before {
  content: "\f5dc"; }

.fa-bread-slice:before {
  content: "\f7ec"; }

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

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

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

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

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

.fa-buffer:before {
  content: "\f837"; }

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

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

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

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

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

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

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

.fa-business-time:before {
  content: "\f64a"; }

.fa-buy-n-large:before {
  content: "\f8a6"; }

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

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

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

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

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

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

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

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

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

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

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

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

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candy-cane:before {
  content: "\f786"; }

.fa-cannabis:before {
  content: "\f55f"; }

.fa-capsules:before {
  content: "\f46b"; }

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

.fa-car-alt:before {
  content: "\f5de"; }

.fa-car-battery:before {
  content: "\f5df"; }

.fa-car-crash:before {
  content: "\f5e1"; }

.fa-car-side:before {
  content: "\f5e4"; }

.fa-caravan:before {
  content: "\f8ff"; }

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

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

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

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

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

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

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

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

.fa-carrot:before {
  content: "\f787"; }

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

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

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

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

.fa-cc-apple-pay:before {
  content: "\f416"; }

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

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

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

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

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

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

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

.fa-centercode:before {
  content: "\f380"; }

.fa-centos:before {
  content: "\f789"; }

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

.fa-chair:before {
  content: "\f6c0"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-charging-station:before {
  content: "\f5e7"; }

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

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

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

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

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

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

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

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

.fa-cheese:before {
  content: "\f7ef"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

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

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

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

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

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

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

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

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

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

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

.fa-chromecast:before {
  content: "\f838"; }

.fa-church:before {
  content: "\f51d"; }

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

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

.fa-city:before {
  content: "\f64f"; }

.fa-clinic-medical:before {
  content: "\f7f2"; }

.fa-clipboard:before {
  content: "\f328"; }

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

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

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

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

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

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

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

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

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

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

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

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

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

.fa-cloud-sun-rain:before {
  content: "\f743"; }

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

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-cocktail:before {
  content: "\f561"; }

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

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

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

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

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

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

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

.fa-coins:before {
  content: "\f51e"; }

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

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

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

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

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

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

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

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

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

.fa-compact-disc:before {
  content: "\f51f"; }

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

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

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

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

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

.fa-confluence:before {
  content: "\f78d"; }

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

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

.fa-cookie:before {
  content: "\f563"; }

.fa-cookie-bite:before {
  content: "\f564"; }

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

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

.fa-cotton-bureau:before {
  content: "\f89e"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cpanel:before {
  content: "\f388"; }

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

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

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

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

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

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

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

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

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

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

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

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

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

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

.fa-critical-role:before {
  content: "\f6c9"; }

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

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

.fa-cross:before {
  content: "\f654"; }

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

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-crutch:before {
  content: "\f7f7"; }

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

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

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

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

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

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dailymotion:before {
  content: "\f952"; }

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

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

.fa-deaf:before {
  content: "\f2a4"; }

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

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

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

.fa-dev:before {
  content: "\f6cc"; }

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

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

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

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-digital-tachograph:before {
  content: "\f566"; }

.fa-directions:before {
  content: "\f5eb"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-disease:before {
  content: "\f7fa"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dizzy:before {
  content: "\f567"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dog:before {
  content: "\f6d3"; }

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

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

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

.fa-dove:before {
  content: "\f4ba"; }

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

.fa-draft2digital:before {
  content: "\f396"; }

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

.fa-dragon:before {
  content: "\f6d5"; }

.fa-draw-polygon:before {
  content: "\f5ee"; }

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

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

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

.fa-drum:before {
  content: "\f569"; }

.fa-drum-steelpan:before {
  content: "\f56a"; }

.fa-drumstick-bite:before {
  content: "\f6d7"; }

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

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

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

.fa-dungeon:before {
  content: "\f6d9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

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

.fa-edit:before {
  content: "\f044"; }

.fa-egg:before {
  content: "\f7fb"; }

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

.fa-elementor:before {
  content: "\f430"; }

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

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

.fa-ello:before {
  content: "\f5f1"; }

.fa-ember:before {
  content: "\f423"; }

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

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

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

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

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

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

.fa-equals:before {
  content: "\f52c"; }

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

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-ethernet:before {
  content: "\f796"; }

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

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

.fa-evernote:before {
  content: "\f839"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-facebook-messenger:before {
  content: "\f39f"; }

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

.fa-fan:before {
  content: "\f863"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

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

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

.fa-faucet:before {
  content: "\f905"; }

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

.fa-feather:before {
  content: "\f52d"; }

.fa-feather-alt:before {
  content: "\f56b"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

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

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

.fa-figma:before {
  content: "\f799"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-file-invoice-dollar:before {
  content: "\f571"; }

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

.fa-file-medical-alt:before {
  content: "\f478"; }

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

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

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

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

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

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

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

.fa-fill:before {
  content: "\f575"; }

.fa-fill-drip:before {
  content: "\f576"; }

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

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

.fa-fingerprint:before {
  content: "\f577"; }

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

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

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

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

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

.fa-first-aid:before {
  content: "\f479"; }

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

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

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-fish:before {
  content: "\f578"; }

.fa-fist-raised:before {
  content: "\f6de"; }

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

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

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

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

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

.fa-flipboard:before {
  content: "\f44d"; }

.fa-flushed:before {
  content: "\f579"; }

.fa-fly:before {
  content: "\f417"; }

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

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

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

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

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

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

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-font-awesome-logo-full:before {
  content: "\f4e6"; }

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

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

.fa-football-ball:before {
  content: "\f44e"; }

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

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

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

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

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

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

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frog:before {
  content: "\f52e"; }

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

.fa-frown-open:before {
  content: "\f57a"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-funnel-dollar:before {
  content: "\f662"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

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

.fa-gas-pump:before {
  content: "\f52f"; }

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

.fa-gem:before {
  content: "\f3a5"; }

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

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

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

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

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

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

.fa-gifts:before {
  content: "\f79c"; }

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

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

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

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

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

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

.fa-gitkraken:before {
  content: "\f3a6"; }

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

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-cheers:before {
  content: "\f79f"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.fa-glasses:before {
  content: "\f530"; }

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

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

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

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

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

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

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

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

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

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

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

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

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

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

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

.fa-gopuram:before {
  content: "\f664"; }

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

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

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

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-grimace:before {
  content: "\f57f"; }

.fa-grin:before {
  content: "\f580"; }

.fa-grin-alt:before {
  content: "\f581"; }

.fa-grin-beam:before {
  content: "\f582"; }

.fa-grin-beam-sweat:before {
  content: "\f583"; }

.fa-grin-hearts:before {
  content: "\f584"; }

.fa-grin-squint:before {
  content: "\f585"; }

.fa-grin-squint-tears:before {
  content: "\f586"; }

.fa-grin-stars:before {
  content: "\f587"; }

.fa-grin-tears:before {
  content: "\f588"; }

.fa-grin-tongue:before {
  content: "\f589"; }

.fa-grin-tongue-squint:before {
  content: "\f58a"; }

.fa-grin-tongue-wink:before {
  content: "\f58b"; }

.fa-grin-wink:before {
  content: "\f58c"; }

.fa-grip-horizontal:before {
  content: "\f58d"; }

.fa-grip-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guitar:before {
  content: "\f7a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

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

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-hamburger:before {
  content: "\f805"; }

.fa-hammer:before {
  content: "\f6e3"; }

.fa-hamsa:before {
  content: "\f665"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-medical:before {
  content: "\f95c"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-holding-water:before {
  content: "\f4c1"; }

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

.fa-hand-middle-finger:before {
  content: "\f806"; }

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

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

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

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

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

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

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

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

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

.fa-hand-sparkles:before {
  content: "\f95d"; }

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

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-hands-wash:before {
  content: "\f95e"; }

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

.fa-handshake-alt-slash:before {
  content: "\f95f"; }

.fa-handshake-slash:before {
  content: "\f960"; }

.fa-hanukiah:before {
  content: "\f6e6"; }

.fa-hard-hat:before {
  content: "\f807"; }

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

.fa-hat-cowboy:before {
  content: "\f8c0"; }

.fa-hat-cowboy-side:before {
  content: "\f8c1"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

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

.fa-head-side-cough:before {
  content: "\f961"; }

.fa-head-side-cough-slash:before {
  content: "\f962"; }

.fa-head-side-mask:before {
  content: "\f963"; }

.fa-head-side-virus:before {
  content: "\f964"; }

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

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

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

.fa-headset:before {
  content: "\f590"; }

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

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

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

.fa-helicopter:before {
  content: "\f533"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

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

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

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

.fa-hooli:before {
  content: "\f427"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

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

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

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

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotdog:before {
  content: "\f80f"; }

.fa-hotel:before {
  content: "\f594"; }

.fa-hotjar:before {
  content: "\f3b1"; }

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

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

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

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

.fa-house-damage:before {
  content: "\f6f1"; }

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

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

.fa-hryvnia:before {
  content: "\f6f2"; }

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

.fa-hubspot:before {
  content: "\f3b2"; }

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

.fa-ice-cream:before {
  content: "\f810"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-icons:before {
  content: "\f86d"; }

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

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

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-ideal:before {
  content: "\f913"; }

.fa-igloo:before {
  content: "\f7ae"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

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

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

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

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

.fa-infinity:before {
  content: "\f534"; }

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

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

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

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

.fa-intercom:before {
  content: "\f7af"; }

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

.fa-invision:before {
  content: "\f7b0"; }

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

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

.fa-itch-io:before {
  content: "\f83a"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi:before {
  content: "\f669"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joint:before {
  content: "\f595"; }

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

.fa-journal-whills:before {
  content: "\f66a"; }

.fa-js:before {
  content: "\f3b8"; }

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

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

.fa-kaaba:before {
  content: "\f66b"; }

.fa-kaggle:before {
  content: "\f5fa"; }

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

.fa-keybase:before {
  content: "\f4f5"; }

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

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-khanda:before {
  content: "\f66d"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kiss:before {
  content: "\f596"; }

.fa-kiss-beam:before {
  content: "\f597"; }

.fa-kiss-wink-heart:before {
  content: "\f598"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-landmark:before {
  content: "\f66f"; }

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

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

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

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

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

.fa-laravel:before {
  content: "\f3bd"; }

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

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

.fa-laugh:before {
  content: "\f599"; }

.fa-laugh-beam:before {
  content: "\f59a"; }

.fa-laugh-squint:before {
  content: "\f59b"; }

.fa-laugh-wink:before {
  content: "\f59c"; }

.fa-layer-group:before {
  content: "\f5fd"; }

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

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

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

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

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

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

.fa-life-ring:before {
  content: "\f1cd"; }

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

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

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

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

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

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

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

.fa-lira-sign:before {
  content: "\f195"; }

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

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

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

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

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

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

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

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

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

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

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

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

.fa-luggage-cart:before {
  content: "\f59d"; }

.fa-lungs:before {
  content: "\f604"; }

.fa-lungs-virus:before {
  content: "\f967"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

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

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

.fa-mail-bulk:before {
  content: "\f674"; }

.fa-mailchimp:before {
  content: "\f59e"; }

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

.fa-mandalorian:before {
  content: "\f50f"; }

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

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

.fa-map-marked-alt:before {
  content: "\f5a0"; }

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

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

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

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

.fa-markdown:before {
  content: "\f60f"; }

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

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

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

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

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

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

.fa-mask:before {
  content: "\f6fa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

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

.fa-mdb:before {
  content: "\f8ca"; }

.fa-medal:before {
  content: "\f5a2"; }

.fa-medapps:before {
  content: "\f3c6"; }

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

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

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

.fa-medrt:before {
  content: "\f3c8"; }

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

.fa-megaport:before {
  content: "\f5a3"; }

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

.fa-meh-blank:before {
  content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
  content: "\f5a5"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

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

.fa-meteor:before {
  content: "\f753"; }

.fa-microblog:before {
  content: "\f91a"; }

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

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

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

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

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

.fa-microscope:before {
  content: "\f610"; }

.fa-microsoft:before {
  content: "\f3ca"; }

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

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

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

.fa-mitten:before {
  content: "\f7b5"; }

.fa-mix:before {
  content: "\f3cb"; }

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

.fa-mixer:before {
  content: "\f956"; }

.fa-mizuni:before {
  content: "\f3cc"; }

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

.fa-mobile-alt:before {
  content: "\f3cd"; }

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

.fa-monero:before {
  content: "\f3d0"; }

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

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

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

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-monument:before {
  content: "\f5a6"; }

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

.fa-mortar-pestle:before {
  content: "\f5a7"; }

.fa-mosque:before {
  content: "\f678"; }

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

.fa-mountain:before {
  content: "\f6fc"; }

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

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

.fa-mug-hot:before {
  content: "\f7b6"; }

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

.fa-napster:before {
  content: "\f3d2"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

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

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

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

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

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

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

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

.fa-oil-can:before {
  content: "\f613"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-om:before {
  content: "\f679"; }

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

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

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

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

.fa-orcid:before {
  content: "\f8d2"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-otter:before {
  content: "\f700"; }

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

.fa-page4:before {
  content: "\f3d7"; }

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

.fa-pager:before {
  content: "\f815"; }

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

.fa-paint-roller:before {
  content: "\f5aa"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

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

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

.fa-parachute-box:before {
  content: "\f4cd"; }

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

.fa-parking:before {
  content: "\f540"; }

.fa-passport:before {
  content: "\f5ab"; }

.fa-pastafarianism:before {
  content: "\f67b"; }

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

.fa-patreon:before {
  content: "\f3d9"; }

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

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

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

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

.fa-peace:before {
  content: "\f67c"; }

.fa-pen:before {
  content: "\f304"; }

.fa-pen-alt:before {
  content: "\f305"; }

.fa-pen-fancy:before {
  content: "\f5ac"; }

.fa-pen-nib:before {
  content: "\f5ad"; }

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

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

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

.fa-penny-arcade:before {
  content: "\f704"; }

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

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-pepper-hot:before {
  content: "\f816"; }

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

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

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

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

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

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

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

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

.fa-photo-video:before {
  content: "\f87c"; }

.fa-php:before {
  content: "\f457"; }

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

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

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

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

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

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

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

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

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

.fa-pizza-slice:before {
  content: "\f818"; }

.fa-place-of-worship:before {
  content: "\f67f"; }

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

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

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

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

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

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

.fa-playstation:before {
  content: "\f3df"; }

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

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

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

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

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

.fa-poll:before {
  content: "\f681"; }

.fa-poll-h:before {
  content: "\f682"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-poo-storm:before {
  content: "\f75a"; }

.fa-poop:before {
  content: "\f619"; }

.fa-portrait:before {
  content: "\f3e0"; }

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

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

.fa-pray:before {
  content: "\f683"; }

.fa-praying-hands:before {
  content: "\f684"; }

.fa-prescription:before {
  content: "\f5b1"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

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

.fa-procedures:before {
  content: "\f487"; }

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

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pump-medical:before {
  content: "\f96a"; }

.fa-pump-soap:before {
  content: "\f96b"; }

.fa-pushed:before {
  content: "\f3e1"; }

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

.fa-python:before {
  content: "\f3e2"; }

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

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

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

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

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

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

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

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

.fa-quran:before {
  content: "\f687"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

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

.fa-raspberry-pi:before {
  content: "\f7bb"; }

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

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-readme:before {
  content: "\f4d5"; }

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

.fa-receipt:before {
  content: "\f543"; }

.fa-record-vinyl:before {
  content: "\f8d9"; }

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

.fa-red-river:before {
  content: "\f3e3"; }

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

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

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

.fa-redhat:before {
  content: "\f7bc"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

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

.fa-remove-format:before {
  content: "\f87d"; }

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

.fa-reply:before {
  content: "\f3e5"; }

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

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

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

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

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

.fa-robot:before {
  content: "\f544"; }

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

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-route:before {
  content: "\f4d7"; }

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

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

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-running:before {
  content: "\f70c"; }

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

.fa-sad-cry:before {
  content: "\f5b3"; }

.fa-sad-tear:before {
  content: "\f5b4"; }

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

.fa-salesforce:before {
  content: "\f83b"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

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

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

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

.fa-scroll:before {
  content: "\f70e"; }

.fa-sd-card:before {
  content: "\f7c2"; }

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

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

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

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

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

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

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

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

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

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-shapes:before {
  content: "\f61f"; }

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

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

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

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

.fa-shekel-sign:before {
  content: "\f20b"; }

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

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

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

.fa-shipping-fast:before {
  content: "\f48b"; }

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

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopify:before {
  content: "\f957"; }

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

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

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

.fa-shopware:before {
  content: "\f5b5"; }

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

.fa-shuttle-van:before {
  content: "\f5b6"; }

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

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

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

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

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

.fa-signature:before {
  content: "\f5b7"; }

.fa-sim-card:before {
  content: "\f7c4"; }

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

.fa-sistrix:before {
  content: "\f3ee"; }

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

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

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

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

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

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

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

.fa-sleigh:before {
  content: "\f7cc"; }

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

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

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

.fa-smile-beam:before {
  content: "\f5b8"; }

.fa-smile-wink:before {
  content: "\f4da"; }

.fa-smog:before {
  content: "\f75f"; }

.fa-smoking:before {
  content: "\f48d"; }

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

.fa-sms:before {
  content: "\f7cd"; }

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

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

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

.fa-snowboarding:before {
  content: "\f7ce"; }

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

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.fa-soap:before {
  content: "\f96e"; }

.fa-socks:before {
  content: "\f696"; }

.fa-solar-panel:before {
  content: "\f5ba"; }

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

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

.fa-sort-alpha-down-alt:before {
  content: "\f881"; }

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

.fa-sort-alpha-up-alt:before {
  content: "\f882"; }

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

.fa-sort-amount-down-alt:before {
  content: "\f884"; }

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

.fa-sort-amount-up-alt:before {
  content: "\f885"; }

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

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

.fa-sort-numeric-down-alt:before {
  content: "\f886"; }

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

.fa-sort-numeric-up-alt:before {
  content: "\f887"; }

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

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

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

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

.fa-speakap:before {
  content: "\f3f3"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

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

.fa-spider:before {
  content: "\f717"; }

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

.fa-splotch:before {
  content: "\f5bc"; }

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

.fa-spray-can:before {
  content: "\f5bd"; }

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

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

.fa-square-root-alt:before {
  content: "\f698"; }

.fa-squarespace:before {
  content: "\f5be"; }

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

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

.fa-stackpath:before {
  content: "\f842"; }

.fa-stamp:before {
  content: "\f5bf"; }

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

.fa-star-and-crescent:before {
  content: "\f699"; }

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

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

.fa-star-of-david:before {
  content: "\f69a"; }

.fa-star-of-life:before {
  content: "\f621"; }

.fa-staylinked:before {
  content: "\f3f5"; }

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

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

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

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

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

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

.fa-sticker-mule:before {
  content: "\f3f7"; }

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

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

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

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-stopwatch-20:before {
  content: "\f96f"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-store-alt-slash:before {
  content: "\f970"; }

.fa-store-slash:before {
  content: "\f971"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

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

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

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

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

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

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

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

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

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

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

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

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

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

.fa-supple:before {
  content: "\f3f9"; }

.fa-surprise:before {
  content: "\f5c2"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-swatchbook:before {
  content: "\f5c3"; }

.fa-swift:before {
  content: "\f8e1"; }

.fa-swimmer:before {
  content: "\f5c4"; }

.fa-swimming-pool:before {
  content: "\f5c5"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-synagogue:before {
  content: "\f69b"; }

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

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

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

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

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

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

.fa-tablets:before {
  content: "\f490"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

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

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

.fa-tape:before {
  content: "\f4db"; }

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

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

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-teeth:before {
  content: "\f62e"; }

.fa-teeth-open:before {
  content: "\f62f"; }

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

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

.fa-temperature-high:before {
  content: "\f769"; }

.fa-temperature-low:before {
  content: "\f76b"; }

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

.fa-tenge:before {
  content: "\f7d7"; }

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

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

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

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

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

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

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-theater-masks:before {
  content: "\f630"; }

.fa-themeco:before {
  content: "\f5c6"; }

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

.fa-thermometer:before {
  content: "\f491"; }

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

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

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

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

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

.fa-think-peaks:before {
  content: "\f731"; }

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

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

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

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

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

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

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

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

.fa-tired:before {
  content: "\f5c8"; }

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

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

.fa-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toilet-paper-slash:before {
  content: "\f972"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

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

.fa-traffic-light:before {
  content: "\f637"; }

.fa-trailer:before {
  content: "\f941"; }

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

.fa-tram:before {
  content: "\f7da"; }

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

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

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

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

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

.fa-trash-restore-alt:before {
  content: "\f82a"; }

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

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

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

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

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

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

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

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

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

.fa-tshirt:before {
  content: "\f553"; }

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

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

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

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

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

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

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

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbraco:before {
  content: "\f8e8"; }

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

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

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

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

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-unity:before {
  content: "\f949"; }

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

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

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

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

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

.fa-untappd:before {
  content: "\f405"; }

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

.fa-ups:before {
  content: "\f7e0"; }

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

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

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

.fa-user-alt-slash:before {
  content: "\f4fa"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-users-cog:before {
  content: "\f509"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-ussunnah:before {
  content: "\f407"; }

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

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

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

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

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

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

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

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

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

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

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

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vihara:before {
  content: "\f6a7"; }

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

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

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

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

.fa-virus:before {
  content: "\f974"; }

.fa-virus-slash:before {
  content: "\f975"; }

.fa-viruses:before {
  content: "\f976"; }

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

.fa-vnv:before {
  content: "\f40b"; }

.fa-voicemail:before {
  content: "\f897"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

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

.fa-volume-mute:before {
  content: "\f6a9"; }

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

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

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

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

.fa-warehouse:before {
  content: "\f494"; }

.fa-water:before {
  content: "\f773"; }

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

.fa-waze:before {
  content: "\f83f"; }

.fa-weebly:before {
  content: "\f5cc"; }

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

.fa-weight:before {
  content: "\f496"; }

.fa-weight-hanging:before {
  content: "\f5cd"; }

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

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

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

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

.fa-whmcs:before {
  content: "\f40d"; }

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

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

.fa-wind:before {
  content: "\f72e"; }

.fa-window-close:before {
  content: "\f410"; }

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

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

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

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

.fa-wine-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

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

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

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

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

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

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

.fa-wpressr:before {
  content: "\f3e4"; }

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

.fa-x-ray:before {
  content: "\f497"; }

.fa-xbox:before {
  content: "\f412"; }

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

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

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

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

.fa-yammer:before {
  content: "\f840"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yarn:before {
  content: "\f7e3"; }

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

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yin-yang:before {
  content: "\f6ad"; }

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

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

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

.fa-zhihu:before {
  content: "\f63f"; }

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

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

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-brands-400.eot");
  src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400; }

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.eot");
  src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-regular-400.eot");
  src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); }

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../plugins/slick/ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../scss/fonts/slick.eot");
  src: url("../scss/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../scss/fonts/slick.woff") format("woff"), url("../scss/fonts/slick.ttf") format("truetype"), url("../scss/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  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;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
    .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-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    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%; }
  .owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .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 {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    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 {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

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

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

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

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

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

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
    .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
      max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

.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("../scss/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }
  .owl-carousel .owl-video-play-icon:hover {
    -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;
  background-size: contain;
  transition: opacity 400ms ease; }

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

/*
 * 	Owl Carousel - Video Plugin
 */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }
  .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

/*COMPONENTES*/
/*********** CSS RESET **********/
* {
  margin: 0;
  outline: none;
  padding: 0;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

html {
  margin: 0;
  -webkit-text-size-adjust: none; }

ol, ul {
  list-style: none; }

a img {
  border: none; }

a:active {
  outline: none; }

input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner {
  margin: 0;
  border: 0;
  padding: 0; }

input[type="button"], input[type="submit"], input[type="reset"], input[type="text"], input[type="email"], input[type="tel"], input[type="password"] {
  border-radius: 0; }

textarea {
  border-radius: 0; }

input[type="button"], input[type="submit"], input[type="reset"] {
  -webkit-appearance: none; }

input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #fff; }

script {
  display: none !important; }

/*********** GLOBAL STYLES **********/
body {
  max-width: 100%;
  overflow-x: hidden;
  background-color: #fff;
  font: normal 14px Arial, Helvetica, sans-serif;
  color: #777; }

h1, h2, h3, h4, h5, h6 {
  color: #444; }

a {
  color: inherit;
  cursor: pointer; }
  a img {
    opacity: 0.99;
    /*firefox scale bug fix*/ }

table {
  width: 100%;
  border-collapse: collapse; }

input[type="text"], input[type="email"], input[type="tel"], input[type="password"] {
  height: 36px;
  /*safari padding fix*/
  border: 1px solid #ddd;
  padding: 8px;
  vertical-align: middle; }

textarea, select {
  height: 36px;
  /*safari padding fix*/
  border: 1px solid #ddd;
  padding: 8px;
  vertical-align: middle; }

input, textarea, select, button {
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: #777; }

textarea {
  min-height: 150px; }

select {
  min-width: 50px;
  height: 32px;
  /*safari padding fix*/
  padding: 6px; }

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="password"]:focus {
  border-color: #ccc;
  color: #444; }

textarea:focus, select:focus {
  border-color: #ccc;
  color: #444; }

input[type="checkbox"], input[type="radio"], input[type="checkbox"] + *, input[type="radio"] + * {
  vertical-align: middle; }

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

button, .button-1, .button-2 {
  cursor: pointer; }

label {
  vertical-align: middle; }
  label + * {
    vertical-align: middle; }

.master-wrapper-content {
  position: relative;
  z-index: 0;
  width: 90%;
  margin: 0 auto; }

.master-column-wrapper {
  position: relative;
  z-index: 0; }
  .master-column-wrapper:after {
    content: "";
    display: block;
    clear: both; }

.center-1 {
  margin: 0 0 100px; }

.center-2 {
  margin: 0 0 50px; }

.side-2 {
  margin: 0 0 50px; }
  .side-2:after {
    content: "";
    display: block;
    clear: both; }

.page {
  min-height: 200px;
  text-align: center; }

.page-title {
  min-height: 50px;
  margin: 0 0 25px;
  border-bottom: 1px solid #ddd;
  padding: 6px 10px; }
  .page-title h1 {
    font-size: 30px;
    font-weight: normal; }

.page:after, .page-title:after, .page-body:after {
  content: "";
  display: block;
  clear: both; }

.center-1 .page-title, .center-1 .title {
  text-align: center; }

.buttons {
  margin: 0 0 30px; }

.link-rss {
  display: none;
  width: 24px;
  height: 24px;
  background: url("../images/rss.png") center no-repeat;
  font-size: 0 !important; }

.category-description ul, .manufacturer-description ul, .full-description ul, .topic-block ul, .topic-page ul, .post-body ul {
  margin: 12px 0;
  padding: 0 0 0 36px;
  list-style: disc; }

.category-description ol, .manufacturer-description ol, .full-description ol, .topic-block ol, .topic-page ol, .post-body ol {
  margin: 12px 0;
  padding: 0 0 0 36px;
  list-style: decimal; }

.category-description p, .manufacturer-description p, .full-description p, .topic-block p, .topic-page p, .post-body p, .news-body p {
  margin: 10px 0;
  text-align: justify; }

.flyout-cart {
  display: none; }

/*********** GLOBAL FORMS ***********/
.fieldset, .section {
  position: relative;
  margin: 0 0 40px; }

.fieldset .title, .section .title {
  margin: 0 0 15px;
  padding: 0 10px;
  font-size: 20px;
  color: #444; }

.fieldset .title strong, .section .title strong {
  font-weight: normal; }

.form-fields {
  position: relative;
  border-top: 1px solid #e6e6e6;
  background-color: #f9f9f9;
  padding: 30px 15px; }

.inputs {
  position: relative;
  margin: 0 0 15px;
  text-align: center;
  white-space: nowrap;
  /*fix for 'required' elements*/
  font-size: 0; }
  .inputs:after {
    content: "";
    display: block;
    clear: both; }
  .inputs label {
    display: block;
    width: 100%;
    margin: 0 0 10px;
    text-align: center;
    font-size: 14px;
    /*reset zeroing*/
    color: #444; }
  .inputs input[type="text"], .inputs input[type="email"], .inputs input[type="tel"], .inputs input[type="password"] {
    width: 400px;
    max-width: 100%;
    background-color: #fff; }
  .inputs select, .inputs textarea {
    width: 400px;
    max-width: 100%;
    background-color: #fff; }
  .inputs.custom-attributes {
    white-space: normal; }
  .inputs .option-list {
    display: inline-block;
    max-width: 95%;
    vertical-align: middle; }
    .inputs .option-list li {
      display: inline-block;
      margin: 5px;
      border: 1px solid #ddd;
      background-color: #fff;
      padding: 8px 10px; }
    .inputs .option-list label {
      display: inline-block;
      width: auto !important;
      margin: 0 0 0 5px; }
  .inputs.reversed {
    margin: 0 0 20px;
    text-align: center; }

.required {
  margin: 0 -8px 0 3px;
  /*siblings offset*/
  vertical-align: top;
  font-size: 20px;
  font-weight: normal;
  color: #e4434b; }

.message-error, .field-validation-error, .username-not-available-status, .poll-vote-error, .password-error {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #e4434b;
  margin-top: 5px; }

.field-validation-valid, .username-available-status {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #4cb17c; }

.captcha-box {
  text-align: center;
  line-height: 0;
  /*firefox line-height bug fix*/ }
  .captcha-box > div {
    display: inline-block;
    max-width: 100%; }
  .captcha-box input {
    height: auto; }

/*********** GLOBAL TABLES ***********/
.table-wrapper {
  overflow-x: auto; }

.data-table .hidden-row {
  height: 1px;
  border: none; }

.data-table tr.hidden-row th {
  padding: 0;
  border-top: none; }
  .data-table tr.hidden-row th > span {
    height: 1px;
    width: 1px;
    position: absolute;
    overflow: hidden;
    top: -10px; }

.cart th, .data-table th {
  border-width: 1px 1px 0;
  border-style: solid;
  border-color: #ddd;
  background-color: #f6f6f6;
  padding: 10px;
  white-space: nowrap;
  font-weight: normal; }

.forum-table th {
  border-width: 1px 1px 0;
  border-style: solid;
  border-color: #ddd;
  background-color: #f6f6f6;
  padding: 10px;
  white-space: nowrap;
  font-weight: normal; }
  .forum-table th.replies, .forum-table th.views, .forum-table th.votes, .forum-table th.latest-post, .forum-table th.topics, .forum-table th.posts {
    display: none; }

.forum-table td.replies, .forum-table td.views, .forum-table td.votes, .forum-table td.latest-post, .forum-table td.topics, .forum-table td.posts {
  display: none; }

.forum-table td.image {
  min-width: 0; }

.cart td, .data-table td {
  min-width: 50px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent #ddd #ddd;
  background-color: #fff;
  padding: 20px;
  color: #444; }

.forum-table td {
  min-width: 50px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent #ddd #ddd;
  background-color: #fff;
  padding: 20px;
  color: #444;
  min-width: 90px;
  padding: 10px; }

.cart a, .data-table a, .forum-table a {
  font-weight: normal;
  color: #4ab2f1; }

.cart a:hover, .data-table a:hover, .forum-table a:hover {
  text-decoration: underline; }

.cart .product {
  min-width: 225px;
  text-align: left; }

.data-table .product, .data-table .message, .data-table .info, .data-table .name {
  min-width: 225px;
  text-align: left; }

.forum-table .forum-details, .forum-table .topic-details {
  text-align: left; }

.cart .product a {
  font-weight: bold;
  color: #444; }

.data-table .product a, .data-table .info a {
  font-weight: bold;
  color: #444; }

.cart .product a:hover {
  color: #4ab2f1;
  text-decoration: none; }

.data-table .product a:hover, .data-table .info a:hover {
  color: #4ab2f1;
  text-decoration: none; }

.cart .product .edit-item {
  margin: 10px 0 0; }
  .cart .product .edit-item a {
    font-weight: normal;
    color: #4ab2f1; }
    .cart .product .edit-item a:hover {
      text-decoration: underline; }

.cart .remove-from-cart, .cart .add-to-cart {
  text-align: center; }

.data-table .select-boxes, .data-table .order {
  text-align: center; }

.cart td.unit-price, .data-table td.unit-price {
  white-space: nowrap; }

.cart td.quantity input {
  width: 50px;
  text-align: center; }

.cart td.subtotal {
  white-space: nowrap;
  color: #444; }

.data-table td.total {
  white-space: nowrap;
  color: #444; }

.cart td.subtotal .discount, .cart td.subtotal .discount-additional-info {
  font-style: italic;
  color: #4ab2f1; }

.data-table em a {
  font-weight: bold;
  color: #444; }

.data-table div.download {
  margin: 10px 0 0; }

/*********** NOTIFICATIONS & POPUPS  ***********/
.bar-notification-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  line-height: 16px;
  color: #fff;
  opacity: 0.95; }

.bar-notification {
  position: relative;
  display: none;
  padding: 15px 25px 15px 10px; }
  .bar-notification.success {
    background-color: #4bb07a; }
  .bar-notification.error {
    background-color: #e4444c; }
  .bar-notification.warning {
    background-color: #f39c12; }
  .bar-notification .content {
    margin: 0 10px 0 0; }
    .bar-notification .content a {
      color: #fff;
      text-decoration: underline; }
  .bar-notification .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    margin: 7px;
    background: #fff url("../images/close.png") center no-repeat;
    cursor: pointer; }

.popup-notification {
  border-radius: 5px;
  padding: 3px;
  margin: 5px 0; }
  .popup-notification.success {
    border: 2px rgba(75, 176, 122, 0.5) solid; }
  .popup-notification.error {
    border: 2px rgba(228, 68, 76, 0.5) solid; }
  .popup-notification.warning {
    border: 2px rgba(243, 156, 18, 0.5) solid; }

.noscript {
  border-bottom: 1px solid #333;
  background-color: #ff9;
  padding: 30px 15px;
  text-align: center;
  line-height: 22px;
  color: #444; }

.ajax-loading-block-window {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  background: url("../images/loading.gif") center no-repeat; }

.please-wait {
  background: url("../images/ajax-loader-small.gif") no-repeat;
  padding-left: 20px;
  font-size: 14px; }

.ui-dialog {
  max-width: 90%;
  border: 1px solid #ddd;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background-color: #fff;
  /*override jQuery UI styles, do not delete doubled properties*/
  border-radius: 0;
  padding: 0;
  font: normal 14px Arial, Helvetica, sans-serif; }
  .ui-dialog:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); }

.ui-dialog-titlebar {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  background-color: #eee;
  padding: 10px 15px;
  /*override jQuery UI styles, do not delete doubled properties*/
  border-width: 0 0 1px;
  border-radius: 0;
  background-image: none;
  padding: 10px 15px !important;
  font-weight: normal;
  cursor: auto !important; }
  .ui-dialog-titlebar > span {
    float: left;
    font-size: 18px;
    color: #444;
    /*override jQuery UI styles, do not delete doubled properties*/
    margin: 0 !important; }
  .ui-dialog-titlebar button {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    border: none;
    overflow: hidden;
    background: url("../images/close.png") center no-repeat;
    font-size: 0;
    /*override jQuery UI styles, do not delete doubled properties*/
    top: 0 !important;
    right: 0 !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0;
    background: url("../images/close.png") center no-repeat !important;
    padding: 0 !important; }
    .ui-dialog-titlebar button span {
      display: none !important; }

.ui-dialog-content {
  padding: 15px;
  line-height: 20px;
  /*override jQuery UI styles, do not delete doubled properties*/
  background-color: #fff !important;
  padding: 15px 15px 20px 15px !important;
  color: #777; }
  .ui-dialog-content .page {
    min-height: 0; }
  .ui-dialog-content .page-title {
    min-height: 0;
    margin: 0 0 15px;
    padding: 0px 10px 10px 10px;
    text-align: center; }
    .ui-dialog-content .page-title h1 {
      font-size: 24px;
      line-height: 30px; }
  .ui-dialog-content .back-in-stock-subscription-page {
    text-align: center; }
    .ui-dialog-content .back-in-stock-subscription-page .tooltip {
      margin-bottom: 10px; }
    .ui-dialog-content .back-in-stock-subscription-page .button-1 {
      border: none;
      background-color: #4ab2f1;
      padding: 10px 15px;
      font-size: 15px;
      color: #fff;
      text-transform: uppercase; }
      .ui-dialog-content .back-in-stock-subscription-page .button-1:hover {
        background-color: #248ece; }

.eu-cookie-bar-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1050;
  width: 320px;
  height: 180px;
  margin: -90px 0 0 -160px;
  border: 1px solid #ccc;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  padding: 20px;
  text-align: center; }
  .eu-cookie-bar-notification .text {
    margin-bottom: 20px;
    line-height: 20px; }
  .eu-cookie-bar-notification button {
    min-width: 60px;
    margin: 5px 0 10px;
    border: none;
    background-color: #4ab2f1;
    padding: 8px 12px;
    font-size: 14px;
    color: #fff; }
    .eu-cookie-bar-notification button:hover {
      background-color: #248ece; }
  .eu-cookie-bar-notification a {
    display: block;
    color: #4ab2f1; }
    .eu-cookie-bar-notification a:hover {
      text-decoration: underline; }

/*********** HEADER ***********/
.admin-header-links {
  background-color: #333;
  text-align: center;
  color: #eee; }
  .admin-header-links * {
    display: inline-block;
    margin: 0 10px;
    line-height: 35px;
    font-size: 12px;
    font-weight: bold; }
  .admin-header-links .impersonate {
    display: inline-block; }
    .admin-header-links .impersonate a {
      background-color: #555;
      padding: 0 15px; }
      .admin-header-links .impersonate a:hover {
        background-color: #666; }

.header {
  position: relative;
  z-index: 10;
  width: 95%;
  margin: auto;
  text-align: center; }

.header-upper {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #ddd; }

.header-selectors-wrapper {
  border-bottom: 1px solid #ddd;
  padding: 10px 0; }
  .header-selectors-wrapper > div {
    display: block;
    width: 50%;
    margin: 10px auto;
    vertical-align: middle; }
  .header-selectors-wrapper select {
    width: 100%; }

.language-list {
  max-width: 100%;
  font-size: 0; }
  .language-list li {
    display: inline-block;
    margin: 0 1px;
    vertical-align: middle; }
  .language-list a {
    display: block;
    position: relative;
    width: 24px;
    height: 32px;
    line-height: 0; }
  .language-list img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto; }

.header-links-wrapper {
  position: relative;
  padding: 20px 0; }

.header-links ul {
  font-size: 0; }

.header-links li {
  display: inline-block;
  margin: 0 10px; }

.header-links span {
  display: inline-block;
  font-size: 12px;
  /*reset zeroing*/
  line-height: 36px;
  text-transform: uppercase; }

.header-links a {
  display: inline-block;
  font-size: 12px;
  /*reset zeroing*/
  line-height: 45px; }
  .header-links a:hover {
    color: #4ab2f1; }

#topcartlink {
  display: block;
  width: 70%;
  max-width: 400px;
  margin: 10px auto 0;
  background-color: #f6f6f6;
  padding: 0 20px; }
  #topcartlink a {
    background: url("../images/shopping-bag.png") left center no-repeat;
    padding: 0 0 0 20px; }

.header-lower {
  position: relative;
  z-index: 0;
  padding: 35px 0; }

.header-logo {
  margin: 0 0 20px;
  text-align: center; }
  .header-logo a {
    display: inline-block;
    max-width: 100%;
    line-height: 0;
    /*firefox line-height bug fix*/ }
    .header-logo a img {
      max-width: 100%;
      opacity: 1; }

.search-box form {
  display: inline-block; }
  .search-box form:after {
    content: "";
    display: block;
    clear: both; }

.search-box input.search-box-text {
  float: left;
  width: 200px;
  height: 36px;
  margin: 0 -1px 0 0; }

.search-box .search-box-button {
  float: left;
  min-width: 86px;
  height: 36px;
  border: none;
  background-color: #4ab2f1;
  padding: 0 15px;
  text-align: center;
  color: #fff;
  text-transform: uppercase; }
  .search-box .search-box-button:hover {
    background-color: #248ece; }

.search-box .ui-autocomplete-loading {
  background: #fff url("../images/ajax-loader-small.gif") right center no-repeat; }

.ui-helper-hidden-accessible {
  display: none !important; }

.ui-autocomplete {
  width: 285px !important;
  border: 1px solid #ddd;
  border-top: none;
  overflow: hidden;
  background-color: #fff;
  text-align: left;
  /*override jQuery UI styles, do not delete doubled properties*/
  border-radius: 0;
  padding: 0;
  font: normal 14px Arial, Helvetica, sans-serif; }
  .ui-autocomplete li {
    border-top: 1px solid #ddd; }
    .ui-autocomplete li:first-child {
      border-top: none; }
  .ui-autocomplete a {
    display: block;
    padding: 15px;
    font-size: 14px;
    /*override jQuery UI styles, do not delete doubled properties*/
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: none !important;
    padding: 15px !important;
    line-height: normal !important;
    color: #777 !important; }
    .ui-autocomplete a:hover, .ui-autocomplete a.ui-state-focus {
      background-color: #f6f6f6 !important; }
  .ui-autocomplete img {
    display: none;
    min-width: 20px;
    margin: 0 10px 0 0;
    vertical-align: middle; }

/*********** FOOTER ***********/
.footer {
  background-color: #eee;
  text-align: center; }

.footer-upper {
  width: 95%;
  margin: auto;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  padding: 40px 0;
  font-size: 0; }

.footer-block {
  width: 95%;
  margin: 1px auto;
  text-align: left;
  font-size: 14px;
  /*reset zeroing*/ }
  .footer-block .title {
    margin: 0 0 1px;
    background: #4ab2f1 url("../images/toggle-white.png") right center no-repeat;
    padding: 10px 15px;
    font-size: 20px;
    color: #fff;
    cursor: pointer; }
    .footer-block .title strong {
      font-weight: normal; }
  .footer-block .list {
    display: none;
    margin: 0 0 20px;
    background-color: #fff;
    padding: 10px 15px; }
    .footer-block .list a {
      display: block;
      padding: 10px 15px;
      line-height: 20px; }
      .footer-block .list a:hover {
        color: #4ab2f1; }

.follow-us {
  margin: 30px auto 0;
  text-align: center; }
  .follow-us .title {
    margin: 0 0 10px;
    background: none;
    color: #444;
    cursor: auto; }
  .follow-us .social ul {
    margin: 0 0 30px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 30px;
    font-size: 0; }
  .follow-us .social li {
    display: inline-block;
    margin: 0 5px; }
  .follow-us .social a {
    display: block;
    width: 38px;
    height: 38px;
    background: url("../images/social-sprite.png") no-repeat;
    font-size: 0; }
  .follow-us .social .facebook a {
    background-position: 0 0; }
  .follow-us .social .twitter a {
    background-position: -38px 0; }
  .follow-us .social .rss a {
    background-position: -76px 0; }
  .follow-us .social .youtube a {
    background-position: -114px 0; }
  .follow-us .social .google-plus a {
    background-position: -152px 0; }

.newsletter-email {
  display: inline-block;
  overflow: hidden; }
  .newsletter-email input[type="email"] {
    float: left;
    width: 180px;
    height: 36px;
    margin: 0 -1px 0 0; }

.newsletter-subscribe-button {
  float: left;
  height: 36px;
  border: none;
  background-color: #4ab2f1;
  padding: 0 15px;
  text-align: center;
  color: #fff;
  text-transform: uppercase; }
  .newsletter-subscribe-button:hover {
    background-color: #248ece; }

.newsletter-email .options {
  clear: both;
  padding: 10px 0 0; }

.newsletter-validation, .newsletter-result {
  width: 100%;
  overflow: hidden;
  line-height: 28px; }

/*.newsletter-validation .please-wait {
	display: none !important; 
}*/
.footer-lower {
  width: 95%;
  margin: auto;
  overflow: hidden;
  padding: 25px 0;
  font-size: 12px; }

.footer-tax-shipping a {
  font-weight: bold;
  color: #4ab2f1; }
  .footer-tax-shipping a:hover {
    text-decoration: underline; }

.footer-powered-by {
  margin: 10px 0 0; }
  .footer-powered-by a {
    font-weight: bold;
    color: #4ab2f1; }
    .footer-powered-by a:hover {
      text-decoration: underline; }

.theme-selector {
  margin: 10px 0 0; }
  .theme-selector select {
    width: 170px; }

/*********** SIDE COLUMN ***********/
.block {
  max-width: 600px;
  /*width limit in mobile*/
  min-height: 50px;
  margin: auto;
  text-align: left; }
  .block .title {
    position: relative;
    margin: 0 0 10px;
    border-bottom: 1px solid #ddd;
    background: #f6f6f6 url("../images/toggle-gray.png") right 14px no-repeat;
    padding: 12px 30px 12px 10px;
    font-size: 20px;
    color: #444;
    cursor: pointer; }
    .block .title strong {
      font-weight: normal; }
  .block .listbox {
    display: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 5px; }
  .block .list li {
    padding: 5px 0 5px 15px; }
  .block .list a {
    display: inline-block;
    position: relative;
    padding: 5px 0;
    font-size: 16px;
    color: #444;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease; }
    .block .list a:before {
      content: "";
      position: absolute;
      top: 12px;
      left: -15px;
      width: 5px;
      height: 5px;
      background-color: #ddd; }
  .block .list .active > a, .block .list a:hover {
    color: #4ab2f1; }
  .block a.product-picture {
    display: none; }
    .block a.product-picture:before {
      display: none; }
  .block .sublist {
    margin: 15px 0 5px; }
    .block .sublist a {
      font-size: 14px; }
  .block .view-all {
    margin: 10px 0 0; }
    .block .view-all a {
      display: inline-block;
      padding: 10px 15px;
      font-size: 16px;
      color: #4ab2f1; }
      .block .view-all a:hover {
        text-decoration: underline; }
  .block .tags {
    margin: 5px 0 10px; }
    .block .tags ul {
      font-size: 0; }
    .block .tags li {
      display: inline-block;
      position: relative;
      margin: 0 10px;
      overflow: hidden;
      font-size: 17px !important;
      /*setting base size*/ }

.product-tags-all-page li {
  display: inline-block;
  position: relative;
  margin: 0 10px;
  overflow: hidden;
  font-size: 17px !important;
  /*setting base size*/ }

.block .tags li a, .product-tags-all-page li a {
  float: left;
  line-height: 30px;
  color: #444; }

.block .tags li a:hover, .product-tags-all-page li a:hover {
  color: #4ab2f1; }

.poll strong {
  display: block;
  margin: 10px 0;
  background-color: #f6f6f6;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: normal;
  color: #444;
  text-transform: uppercase; }

.poll-options, .poll-results {
  margin: 10px 0 15px;
  overflow: hidden;
  font-size: 15px;
  color: #444; }

.poll-options li, .poll-results li {
  margin: 10px 0; }

.poll-options li > input {
  margin: 0 5px 0 0;
  cursor: pointer; }

.poll-options li > label {
  display: inline-block;
  font-size: 16px;
  cursor: pointer; }

.poll .buttons input {
  border: none;
  background-color: #aaa;
  padding: 10px 20px;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase; }
  .poll .buttons input:hover {
    background-color: #bbb; }

.poll-total-votes {
  display: block;
  margin: 10px 0 0;
  font-weight: bold;
  font-style: italic;
  color: #444; }

.home-page-polls {
  text-align: center; }
  .home-page-polls .title {
    border-bottom: 1px solid #ddd;
    color: #444;
    font-size: 30px;
    font-weight: normal;
    margin: 0 0 30px;
    padding: 0 0 15px; }
    .home-page-polls .title strong {
      font-weight: normal; }
  .home-page-polls li {
    display: inline-block;
    margin: 10px; }

/********** CATEGORY PAGE **********/
.breadcrumb {
  margin: 0 0 50px;
  background-color: #f6f6f6;
  padding: 5px 10px; }
  .breadcrumb ul {
    font-size: 0; }
  .breadcrumb li {
    display: inline-block; }
    .breadcrumb li * {
      display: inline-block;
      margin: 0 5px;
      font-size: 14px;
      /*reset zeroing*/
      line-height: 32px; }
  .breadcrumb strong {
    font-weight: normal; }
  .breadcrumb a:hover {
    color: #4ab2f1; }

.category-description, .manufacturer-description, .vendor-description {
  margin: 0 0 25px;
  line-height: 22px; }

.contact-vendor {
  margin: 0 0 30px; }
  .contact-vendor .button-2 {
    border: none;
    background-color: #4ab2f1;
    padding: 10px 15px;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase; }
    .contact-vendor .button-2:hover {
      background-color: #248ece; }

.product-selectors {
  margin: 0 0 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 20px 0; }
  .product-selectors:first-child {
    border-top: none; }
  .product-selectors:after {
    content: "";
    display: block;
    clear: both; }
  .product-selectors > div {
    display: inline-block;
    margin: 5px; }
  .product-selectors span {
    vertical-align: middle;
    font-size: 16px; }
  .product-selectors select {
    margin: 0 8px; }
  .product-selectors .product-viewmode {
    display: none;
    font-size: 0; }

.product-filters {
  display: table;
  width: 100%;
  margin: -20px 0 20px;
  border-bottom: 1px solid #ddd; }

.product-filter {
  margin: 0 0 10px; }
  .product-filter .filter-title {
    margin: 0 0 10px;
    background-color: #f6f6f6;
    padding: 10px;
    font-size: 17px;
    color: #444; }
    .product-filter .filter-title strong {
      font-weight: normal; }
  .product-filter .filter-content {
    padding: 10px;
    color: #444; }
  .product-filter .available-items:after {
    content: "";
    display: block;
    clear: both; }
  .product-filter .group {
    margin: 0 0 10px; }
    .product-filter .group li {
      font-size: 15px; }
      .product-filter .group li a, .product-filter .group li strong {
        display: inline-block;
        padding: 5px 0; }
      .product-filter .group li a:hover {
        color: #4ab2f1; }
      .product-filter .group li.item {
        display: inline-block;
        position: relative;
        margin: 0 15px 0 0;
        padding: 0 0 0 15px; }
        .product-filter .group li.item:before {
          content: "";
          position: absolute;
          top: 12px;
          left: 0;
          width: 5px;
          height: 5px;
          background-color: #ddd; }
      .product-filter .group li.color-item {
        padding: 0;
        display: inline-block; }
        .product-filter .group li.color-item a {
          padding: 0; }
        .product-filter .group li.color-item:before {
          display: none; }

.filtered-items .title {
  margin: 0 0 5px;
  font-style: italic; }

.filtered-items .item {
  color: #4ab2f1; }

.remove-filter {
  margin: 15px 0; }
  .remove-filter a {
    display: inline-block;
    background-color: #aaa;
    padding: 10px 20px;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase; }
    .remove-filter a:hover {
      background-color: #999; }

.item-grid:after {
  content: "";
  display: block;
  clear: both; }

.item-box {
  position: relative;
  /*width: 100%;
	float: left;*/
  margin: 0 0 80px;
  text-align: left; }
  .item-box .picture {
    z-index: 1;
    overflow: hidden;
    background-color: #fff;
    margin: 0 0 20px; }
    .item-box .picture a {
      display: block;
      position: relative; }
      .item-box .picture a:before {
        content: "";
        display: block;
        padding-top: 100%; }
      .item-box .picture a img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        max-width: 100%;
        max-height: 100%;
        margin: auto;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -webkit-transform: translateZ(0) scale(1, 1); }
  .item-box:hover .picture a img {
    opacity: 0.85; }
  .item-box .details {
    padding: 0 10px; }
  .item-box .product-title {
    margin: 0 0 10px;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.2;
    font-weight: normal;
    color: #4ab2f1; }
    .item-box .product-title a {
      display: block; }
      .item-box .product-title a:hover {
        color: #248ece; }
  .item-box .sku {
    margin: 0 0 15px; }
  .item-box .product-rating-box {
    display: inline-block;
    margin: 0 0 10px; }
  .item-box .rating {
    background: url("../images/rating1.png") repeat-x;
    width: 95px;
    height: 14px; }
    .item-box .rating div {
      background: url("../images/rating2.png") repeat-x;
      height: 14px; }
  .item-box .description {
    display: none; }
    .item-box .description a {
      display: block;
      overflow: hidden; }
  .item-box .prices {
    margin: 0;
    overflow: hidden; }
  .item-box .old-price {
    margin: 0 5px 0 0;
    font-size: 16px;
    color: #aaa;
    text-decoration: line-through; }
  .item-box .actual-price {
    margin: 0 5px 0 0;
    font-size: 16px;
    color: #666; }
  .item-box .tax-shipping-info a {
    color: #4ab2f1; }
    .item-box .tax-shipping-info a:hover {
      text-decoration: underline; }
  .item-box .buttons {
    margin: 0;
    font-size: 0; }
  .item-box input[type="button"] {
    display: inline-block;
    height: 40px;
    border: none;
    vertical-align: middle; }
  .item-box .product-box-add-to-cart-button {
    width: 60%;
    background-color: #4ab2f1;
    text-align: center;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase; }
    .item-box .product-box-add-to-cart-button:hover {
      background-color: #248ece; }
  .item-box .add-to-compare-list-button, .item-box .add-to-wishlist-button {
    width: 20%;
    border-left: 1px solid #fff !important;
    background-color: #eaeaea;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0; }
  .item-box .add-to-compare-list-button {
    background-image: url("../images/compare-button.png"); }
  .item-box .add-to-wishlist-button {
    background-image: url("../images/wishlist-button.png"); }
  .item-box .add-to-compare-list-button:hover, .item-box .add-to-wishlist-button:hover {
    background-color: #ddd; }

.home-page-category-grid, .sub-category-grid, .manufacturer-grid, .vendor-grid {
  margin: 0 0 20px; }

.home-page-category-grid .title, .sub-category-grid .title {
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.home-page-category-grid .title a, .sub-category-grid .title a {
  display: block;
  padding: 0 0 15px; }

.home-page-category-grid .picture, .sub-category-grid .picture {
  margin: 0; }

.home-page-category-grid .picture a:before, .sub-category-grid .picture a:before {
  padding-top: 65%; }

.product-grid, .product-list {
  margin: 0 0 50px; }

.product-grid .title {
  margin: 0 0 30px;
  border-bottom: 1px solid #ddd;
  padding: 0 0 15px;
  font-size: 30px;
  font-weight: normal;
  color: #444; }
  .product-grid .title strong {
    font-weight: normal; }

.manufacturer-grid .title, .vendor-grid .title {
  margin: 0 0 15px;
  text-align: center;
  font-size: 16px; }
  .manufacturer-grid .title a:hover, .vendor-grid .title a:hover {
    color: #4ab2f1; }

.manufacturer-grid .picture, .vendor-grid .picture {
  border: 1px solid #ddd; }

.pager {
  margin: 0 0 20px; }
  .pager ul {
    text-align: right;
    font-size: 0; }
  .pager li {
    display: inline-block;
    margin: 0 5px;
    vertical-align: top; }
    .pager li a {
      display: block;
      min-width: 35px;
      height: 35px;
      border: 1px solid #ddd;
      background-color: #eee;
      padding: 8px;
      text-align: center;
      font-size: 14px;
      /*reset zeroing*/
      cursor: pointer; }
    .pager li span {
      display: block;
      min-width: 35px;
      height: 35px;
      border: 1px solid #ddd;
      background-color: #eee;
      padding: 8px;
      text-align: center;
      font-size: 14px;
      /*reset zeroing*/
      cursor: pointer;
      border-color: transparent;
      background-color: #4ab2f1;
      color: #fff; }
    .pager li.previous-page *, .pager li.next-page *, .pager li.first-page *, .pager li.last-page * {
      background-position: center;
      background-repeat: no-repeat;
      font-size: 0;
      color: #fff; }
    .pager li.previous-page * {
      background-image: url("../images/prev.png"); }
    .pager li.next-page * {
      background-image: url("../images/next.png"); }
    .pager li.first-page * {
      background-image: url("../images/first.png"); }
    .pager li.last-page * {
      background-image: url("../images/last.png"); }
    .pager li a:hover {
      border-color: transparent;
      background-color: #ddd; }

/********** PRODUCT PAGE **********/
.product-details-page {
  padding: 20px 0 0; }

.product-essential {
  margin: 0 0 40px;
  border-bottom: 1px solid #ddd;
  padding: 0 0 10px; }
  .product-essential:after {
    content: "";
    display: block;
    clear: both; }

.gallery {
  margin: 0 auto 50px; }
  .gallery .picture-wrapper {
    margin: 0 0 10px; }
  .gallery .picture {
    position: relative;
    max-width: 100%;
    margin: 0 auto 10px;
    overflow: hidden; }
    .gallery .picture:before {
      content: "";
      display: block;
      padding-top: 100%; }
    .gallery .picture img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      max-width: 100%;
      max-height: 100%;
      margin: auto; }
  .gallery .picture-thumbs img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto; }

.variant-picture img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto; }

.gallery .picture-thumbs {
  overflow: hidden;
  font-size: 0; }
  .gallery .picture-thumbs .thumb-item {
    display: inline-block;
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 5px 10px;
    overflow: hidden;
    cursor: pointer; }

.overview {
  position: relative;
  margin: 0 0 50px; }
  .overview .discontinued-product {
    background: #f3f3f3;
    margin: 0 0 20px; }
    .overview .discontinued-product h4 {
      display: inline-block;
      font-size: 14px;
      padding: 17px 17px 17px 40px;
      background: url("../images/discontinued-product-icon.png") no-repeat 13px center;
      color: #de444c; }
  .overview .product-name {
    margin: 0 0 25px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 10px; }
    .overview .product-name h1 {
      font-size: 30px;
      font-weight: normal; }
  .overview .short-description {
    margin: 0 0 25px;
    line-height: 22px;
    color: #666; }

.product-no-reviews, .product-reviews-overview {
  margin: 0 0 25px;
  color: #444; }

.product-no-reviews a {
  text-decoration: underline; }

.product-review-box {
  display: inline-block;
  margin: 0 0 8px; }
  .product-review-box .rating {
    width: 95px;
    height: 14px;
    background: url("../images/rating1.png") repeat-x; }
    .product-review-box .rating div {
      height: 14px;
      background: url("../images/rating2.png") repeat-x; }

.product-review-links a {
  text-decoration: underline; }
  .product-review-links a:hover {
    color: #4ab2f1; }

.overview .value, .variant-overview .value {
  color: #444; }

.overview .value a, .variant-overview .value a {
  color: #4ab2f1; }

.overview .value a:hover, .variant-overview .value a:hover {
  text-decoration: underline; }

.overview-buttons {
  margin: 0 0 25px;
  font-size: 0; }
  .overview-buttons div {
    width: 80%;
    margin: 0 auto 3px; }

.overview .button-2, .variant-overview .button-2 {
  display: block;
  width: 100%;
  border: none;
  background-color: #eaeaea;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 12px 15px 12px 40px;
  text-align: left;
  font-size: 14px;
  /*reset zeroing*/
  color: #666; }

.overview .button-2:hover, .variant-overview .button-2:hover {
  background-color: #ddd; }

.overview .add-to-compare-list-button {
  background-image: url("../images/compare-button.png"); }

.overview .email-a-friend-button, .overview .subscribe-button {
  background-image: url("../images/email-button.png"); }

.variant-overview .subscribe-button {
  background-image: url("../images/email-button.png"); }

.overview .download-sample-button, .variant-overview .download-sample-button {
  background-image: url("../images/download-button.png"); }

.overview .add-to-wishlist-button, .variant-overview .add-to-wishlist-button {
  background-image: url("../images/wishlist-button.png"); }

.overview .manufacturers {
  margin: 0 0 20px; }

.overview .availability {
  margin: 0 0 20px;
  overflow: hidden; }

.variant-overview .availability {
  margin: 0 0 20px;
  overflow: hidden; }

.overview .availability .stock, .variant-overview .availability .stock {
  margin: 0 0 10px; }

.overview .availability .back-in-stock-subscription, .variant-overview .availability .back-in-stock-subscription {
  display: inline-block; }

.overview .additional-details, .variant-overview .additional-details {
  margin: 0 0 20px; }

.overview .additional-details div, .variant-overview .additional-details div {
  margin: 0 0 8px; }

.overview .delivery, .variant-overview .delivery {
  overflow: hidden; }

.overview .free-shipping, .variant-overview .free-shipping {
  display: inline-block;
  margin: 10px 0;
  background: url("../images/shipping.png") left center no-repeat;
  padding: 2px 0 2px 28px;
  font-weight: bold;
  color: #444; }

.overview .free-shipping.invisible, .variant-overview .free-shipping.invisible {
  display: none; }

.overview .delivery-date, .variant-overview .delivery-date {
  margin: 10px 0; }

.overview .min-qty-notification, .variant-overview .min-qty-notification {
  margin: 10px 0;
  font-style: italic;
  color: #444; }

.overview .download-sample, .variant-overview .download-sample {
  display: inline-block;
  margin: 0 0 25px; }

.overview .prices, .variant-overview .prices {
  margin: 0 0 10px;
  overflow: hidden; }

.overview .prices > div, .variant-overview .prices > div {
  margin: 0 0 5px; }

.overview .prices > div > span, .variant-overview .prices > div > span {
  vertical-align: middle; }

.overview .old-product-price, .variant-overview .old-product-price, .overview .non-discounted-price, .variant-overview .non-discounted-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through; }

.overview .product-price, .variant-overview .product-price {
  font-size: 20px;
  font-weight: bold;
  color: #444; }

.overview .tax-shipping-info a, .variant-overview .tax-shipping-info a {
  color: #4ab2f1; }

.overview .tax-shipping-info a:hover, .variant-overview .tax-shipping-info a:hover {
  text-decoration: underline; }

.customer-entered-price {
  margin: 0 0 20px;
  overflow: hidden; }
  .customer-entered-price .price-input label {
    display: block;
    margin: 0 0 5px;
    font-weight: bold;
    color: #444; }
  .customer-entered-price .price-input input {
    width: 170px;
    text-align: center; }
  .customer-entered-price .price-range {
    margin: 5px 0 0;
    color: #777; }

.tier-prices {
  margin: 0 0 20px; }
  .tier-prices .title {
    display: none; }
  .tier-prices table td {
    border: 1px solid #ddd;
    padding: 10px;
    color: #444; }
  .tier-prices .field-header {
    min-width: 80px; }
  .tier-prices .item-price {
    background-color: #f9f9f9;
    font-size: 16px;
    color: #e4434b; }

.overview .add-to-cart {
  margin: 0 0 20px; }

.overview .add-to-cart-panel {
  display: inline-block;
  position: relative; }

.variant-overview .add-to-cart-panel {
  display: inline-block;
  position: relative; }

.overview .add-to-cart-panel > *, .variant-overview .add-to-cart-panel > * {
  float: left; }

.overview .qty-label, .variant-overview .qty-label {
  display: none !important; }

.overview .qty-input, .variant-overview .qty-input {
  width: 45px;
  height: 43px;
  padding: 0 12px;
  text-align: center;
  font-size: 15px;
  color: #444; }

.overview .qty-dropdown, .variant-overview .qty-dropdown {
  height: 43px;
  padding: 0 12px;
  font-size: 15px;
  color: #444; }

.overview .add-to-cart-button, .variant-overview .add-to-cart-button {
  height: 43px;
  border: none;
  background-color: #4ab2f1;
  padding: 0 24px;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase; }

.overview .add-to-cart-button:hover, .variant-overview .add-to-cart-button:hover {
  background-color: #248ece; }

.product-share-button {
  display: inline-block;
  overflow: hidden; }

.full-description {
  clear: both;
  line-height: 24px; }

.product-collateral {
  margin: 0 0 75px; }
  .product-collateral .title {
    margin: 0 0 10px;
    font-size: 18px;
    color: #444; }
    .product-collateral .title strong {
      font-weight: normal; }

.product-variant-line {
  margin: 0 0 30px;
  border-bottom: 1px solid #ddd;
  padding: 0 0 20px; }
  .product-variant-line:after {
    content: "";
    display: block;
    clear: both; }

.variant-picture {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 15px;
  overflow: hidden; }

.variant-overview {
  width: 100%; }
  .variant-overview .variant-name {
    margin: 0 0 10px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #4ab2f1; }
  .variant-overview .variant-description {
    margin: 0 0 15px;
    line-height: 22px; }
  .variant-overview .add-to-wishlist {
    margin: 0 0 25px; }
  .variant-overview .add-to-wishlist-button {
    display: inline-block;
    width: auto; }
  .variant-overview .add-to-cart {
    margin: 0 0 10px; }

.product-specs-box {
  margin: 0 0 40px; }
  .product-specs-box td {
    border: 1px solid #ddd;
    padding: 10px; }

.product-tags-list {
  font-size: 0; }
  .product-tags-list li {
    display: inline-block;
    font-size: 14px;
    /*reset zeroing*/ }
    .product-tags-list li.separator {
      margin: 0 5px 0 3px; }
  .product-tags-list a {
    display: inline-block;
    line-height: 24px; }
    .product-tags-list a:hover {
      color: #444; }

.attributes {
  margin: 20px 0; }
  .attributes dl {
    overflow: hidden;
    padding: 0 2px;
    /* fix for Chrome in Mac, the checkboxes get cut off */ }
  .attributes dt {
    display: block;
    margin: 0 0 5px;
    white-space: nowrap;
    font-weight: bold;
    color: #444; }

.attribute-label {
  display: block;
  margin: 0 0 5px;
  white-space: nowrap;
  font-weight: bold;
  color: #444; }

.attributes dd, .attribute-data {
  margin: 0 0 10px; }

.attributes li {
  margin: 8px 0 12px; }

.attributes select {
  width: auto;
  min-width: 100px;
  max-width: 100%; }

.attributes .option-list label {
  margin: 0 5px; }

.attributes .datepicker {
  width: 280px;
  text-align: center;
  color: #444; }

.attributes .qty-box input {
  width: 48px;
  height: 32px;
  text-align: center; }

.ui-datepicker {
  width: 280px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  text-align: center;
  /*override jQuery UI styles, do not delete doubled properties*/
  border: none;
  border-radius: 0;
  padding: 0;
  font: normal 14px Arial, Helvetica, sans-serif;
  color: #777; }

.ui-datepicker-header {
  position: relative;
  height: 32px;
  background-color: #4ab2f1;
  color: #fff;
  /*override jQuery UI styles, do not delete doubled properties*/
  border: none;
  border-radius: 0;
  background-image: none;
  padding: 0 !important;
  font-weight: normal; }
  .ui-datepicker-header a {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 0;
    /*override jQuery UI styles, do not delete doubled properties*/
    top: 0 !important;
    width: 32px !important;
    height: 32px !important;
    border: none !important; }
    .ui-datepicker-header a.ui-datepicker-prev {
      left: 0;
      background: url("../images/calendar-prev.png") center no-repeat; }
    .ui-datepicker-header a.ui-datepicker-next {
      right: 0;
      background: url("../images/calendar-next.png") center no-repeat; }
    .ui-datepicker-header a span {
      /*override jQuery UI styles, do not delete doubled properties*/
      display: none !important; }

.ui-datepicker-title {
  position: relative;
  z-index: 0;
  line-height: 32px;
  font-weight: bold;
  text-transform: uppercase;
  /*override jQuery UI styles, do not delete doubled properties*/
  line-height: 32px !important; }

.ui-datepicker-calendar {
  /*override jQuery UI styles, do not delete doubled properties*/
  margin: 0 !important;
  font-size: 14px !important; }
  .ui-datepicker-calendar th {
    background-color: #eee;
    width: 14.285%;
    border: 1px solid #ddd;
    /*override jQuery UI styles, do not delete doubled properties*/
    padding: 0; }
  .ui-datepicker-calendar td {
    width: 14.285%;
    border: 1px solid #ddd;
    /*override jQuery UI styles, do not delete doubled properties*/
    padding: 0; }
  .ui-datepicker-calendar th span {
    display: block;
    min-height: 32px;
    line-height: 32px;
    color: #444; }
  .ui-datepicker-calendar td a {
    display: block;
    min-height: 32px;
    line-height: 32px;
    color: #444;
    /*override jQuery UI styles, do not delete doubled properties*/
    border: none !important;
    background: none !important;
    padding: 0;
    text-align: center;
    color: #444 !important; }
  .ui-datepicker-calendar .ui-state-active {
    outline: 2px solid #4ab2f1;
    font-weight: bold;
    color: #4ab2f1;
    /*override jQuery UI styles, do not delete doubled properties*/
    color: #4ab2f1 !important; }

.attribute-squares {
  font-size: 0; }
  .attribute-squares li {
    display: inline-block;
    margin: 0 5px 5px;
    text-align: center; }
  .attribute-squares .attribute-square-container {
    display: block;
    position: relative;
    z-index: 0;
    padding: 1px; }
  .attribute-squares label {
    display: block;
    margin: 0 !important;
    overflow: hidden; }
  .attribute-squares .attribute-square {
    display: table !important;
    width: 32px !important;
    height: 32px !important;
    border: 1px solid #444 !important;
    cursor: pointer; }
  .attribute-squares .selected-value .attribute-square-container {
    background-color: #4ab2f1; }
  .attribute-squares li input {
    position: relative;
    z-index: -1;
    margin: -32px 0 0; }

.tooltip-container {
  position: absolute;
  width: 200px;
  color: #000000;
  background: #FFFFFF;
  border: 1px solid #eeeeee;
  text-align: center;
  visibility: hidden;
  border-radius: 5px; }
  .tooltip-container:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -7px;
    width: 0;
    height: 0;
    border-bottom: 7px solid #eeeeee;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent; }
  .tooltip-container:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -6px;
    width: 0;
    height: 0;
    border-bottom: 6px solid #FFFFFF;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent; }

.attribute-squares li:hover .tooltip-container {
  visibility: visible;
  margin-left: -83px;
  margin-top: 5px;
  z-index: 999; }

.tooltip-container .tooltip-header {
  background-color: #F6F6F6;
  height: 25px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  padding-left: 10px;
  padding-top: 5px;
  text-align: left;
  width: 198px;
  font-size: 15px;
  border-bottom: 1px #EEEEEE solid; }

.tooltip-container .tooltip-body {
  margin: 5px; }
  .tooltip-container .tooltip-body img {
    border: 0px #FFF;
    width: 190px; }

.giftcard {
  margin: 0 0 20px;
  overflow: hidden; }
  .giftcard div {
    margin: 0 0 10px; }
  .giftcard label {
    display: block;
    margin: 0 auto 5px;
    font-weight: bold;
    color: #444; }
  .giftcard input {
    width: 350px;
    max-width: 100%; }
  .giftcard textarea {
    width: 350px;
    max-width: 100%;
    height: 150px; }

/********** PRODUCT REVIEWS **********/
.product-reviews-page h1 a {
  color: #4ab2f1; }
  .product-reviews-page h1 a:before, .product-reviews-page h1 a:after {
    content: "''"; }

.product-reviews-page .title {
  margin: 0 0 20px;
  font-size: 20px;
  color: #444; }
  .product-reviews-page .title strong {
    font-weight: normal; }

.write-review {
  margin: 0 0 60px; }
  .write-review .fieldset {
    margin: 0 0 30px; }

.tooltip {
  position: initial;
  display: inline-block;
  border-bottom: 1px dotted black;
  color: #444; }
  .tooltip .tooltiptext {
    visibility: hidden;
    width: auto;
    background: #f0f0f0 no-repeat 100% 5%;
    border: #c0c0c0 1px dotted;
    text-align: Left;
    padding: 10px 10px 5px 5px;
    position: absolute;
    z-index: 1;
    left: 10%;
    opacity: 0;
    transition: opacity 0.3s; }
    .tooltip .tooltiptext::after {
      content: "";
      position: absolute; }
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
    cursor: help; }

.write-review .review-rating {
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px; }
  .write-review .review-rating label {
    display: block;
    margin: 0 0 5px;
    font-size: 14px;
    color: #444; }
  .write-review .review-rating div.first {
    color: #e4444c; }
  .write-review .review-rating div.rating-options {
    padding-top: 2px; }
    .write-review .review-rating div.rating-options input {
      vertical-align: baseline; }
  .write-review .review-rating div.last {
    color: #4cb17c; }

.write-review .captcha-box {
  margin: 15px 0 0; }

.write-review .button-1 {
  border: none;
  background-color: #4ab2f1;
  padding: 10px 25px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase; }
  .write-review .button-1:hover {
    background-color: #248ece; }

.product-reviews-page .result, .product-reviews-page .message-error {
  margin: 0 0 20px; }

.product-review-list {
  overflow: hidden; }

.product-review-item {
  margin: 0 0 40px; }
  .product-review-item .review-item-head {
    border-top: 1px solid #ddd;
    overflow: hidden;
    background-color: #f6f6f6;
    padding: 10px; }
  .product-review-item .review-title {
    line-height: 20px;
    font-size: 15px;
    color: #444; }
  .product-review-item .product-review-box {
    margin: 3px 0 0; }
  .product-review-item .review-content {
    padding: 20px 10px; }
  .product-review-item .review-text {
    margin: 0 0 15px;
    line-height: 22px;
    color: #444; }
  .product-review-item .avatar {
    margin: 0 0 10px; }
  .product-review-item .reply {
    margin: 15px 0;
    border-top: 1px solid #ddd; }
  .product-review-item .reply-header {
    margin: 15px 0;
    font-weight: bold; }
  .product-review-item .reply-text {
    line-height: 22px; }
  .product-review-item .review-info {
    margin: 0 0 5px; }
    .product-review-item .review-info label {
      font-weight: normal; }
    .product-review-item .review-info a {
      display: inline-block;
      padding: 0 5px;
      color: #4ab2f1;
      cursor: pointer; }

.product-review-helpfulness .vote {
  display: inline-block;
  padding: 0 5px;
  color: #4ab2f1;
  cursor: pointer; }

.product-review-helpfulness .question {
  margin: 0 5px 0 0;
  font-style: italic; }

.product-review-helpfulness .result {
  margin: 0 0 0 10px; }

.product-review-item .review-type-rating-ext {
  overflow: hidden;
  margin: 0 0 20px; }

/********** WISHLIST & COMPARE LIST **********/
.wishlist-page .page-title {
  margin: 0 0 -1px; }

.wishlist-content {
  margin: 0 0 20px; }
  .wishlist-content .message-error {
    margin: 20px 0; }
  .wishlist-content .table-wrapper {
    margin: 0 0 30px; }
  .wishlist-content .product-content {
    min-width: 300px;
    text-align: left; }
  .wishlist-content .tax-shipping-info {
    margin: 0 0 20px;
    text-align: center; }
    .wishlist-content .tax-shipping-info a {
      color: #4ab3f1; }
      .wishlist-content .tax-shipping-info a:hover {
        text-decoration: underline; }
  .wishlist-content .buttons {
    font-size: 0; }
  .wishlist-content .button-2 {
    display: block;
    width: 250px;
    margin: 0 auto 3px;
    border: none;
    padding: 10px 25px;
    text-align: center;
    line-height: 20px;
    font-size: 15px;
    color: #fff; }
  .wishlist-content .update-wishlist-button, .wishlist-content .wishlist-add-to-cart-button {
    background-color: #4ab2f1;
    text-transform: uppercase; }
  .wishlist-content .update-wishlist-button:hover, .wishlist-content .wishlist-add-to-cart-button:hover {
    background-color: #248ece; }
  .wishlist-content .email-a-friend-wishlist-button {
    background-color: #aaa; }
    .wishlist-content .email-a-friend-wishlist-button:hover {
      background-color: #999; }

.wishlist-page .share-info {
  text-align: center; }
  .wishlist-page .share-info span {
    display: block;
    margin: 0 0 5px; }
  .wishlist-page .share-info a {
    font-weight: bold;
    color: #444; }
    .wishlist-page .share-info a:hover {
      color: #4ab2f1; }

.wishlist-page .no-data {
  margin: 25px 0 0; }

.compare-products-page {
  position: relative;
  overflow: hidden; }
  .compare-products-page .clear-list {
    display: inline-block;
    margin: 0 0 20px;
    background-color: #4ab2f1;
    padding: 10px 15px;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase; }
    .compare-products-page .clear-list:hover {
      background-color: #248ece; }
  .compare-products-page .table-wrapper {
    margin: 0 0 30px;
    padding: 0 0 1px;
    /*IE mobile table border fix*/ }

.compare-products-table td {
  min-width: 150px;
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 20px;
  text-align: left;
  vertical-align: top;
  color: #444; }
  .compare-products-table td:first-child {
    min-width: 0; }
  .compare-products-table td label {
    font-weight: normal;
    color: #777; }

.compare-products-table .remove-button {
  display: inline-block;
  border: none;
  background: url("../images/remove.png") left center no-repeat;
  padding: 0 0 0 18px;
  font-size: 12px;
  color: #666; }
  .compare-products-table .remove-button:hover {
    color: #4ab2f1; }

.compare-products-table .picture {
  display: block;
  position: relative;
  max-width: 200px;
  height: 200px;
  overflow: hidden; }
  .compare-products-table .picture img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto; }

.compare-products-table .product-name td {
  font-weight: bold; }
  .compare-products-table .product-name td a:hover {
    color: #4ab2f1; }

.compare-products-table .short-description td {
  line-height: 22px; }

.compare-products-table .full-description td {
  display: none; }

.compare-products-page .no-data {
  margin: 25px 0 0; }

/*********** TOPICS ***********/
.topic-block {
  margin: 0 0 25px; }

.topic-block-title {
  min-height: 50px;
  margin: 0 0 25px;
  border-bottom: 1px solid #ddd;
  padding: 0 0 15px; }
  .topic-block-title h2 {
    font-size: 30px;
    font-weight: normal; }

.topic-block-body {
  text-align: justify;
  line-height: 24px;
  font-size: 16px; }

.topic-page .page-body {
  text-align: justify;
  line-height: 22px; }

.topic-block a, .topic-page a {
  text-decoration: underline; }

.topic-block strong, .topic-page strong {
  color: #444; }

.home-page .topic-block {
  margin: 0 0 50px; }

.popup-window .topic-page {
  padding: 15px; }

.not-found-page p {
  margin: 30px 15px; }

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

.enter-password-title {
  margin: 0 0 20px;
  color: #444; }

.enter-password-form {
  display: inline-block;
  overflow: hidden; }
  .enter-password-form input[type="password"] {
    float: left;
    width: 200px;
    height: 40px;
    margin: 0 -1px 0 0; }
  .enter-password-form input[type="submit"] {
    float: left;
    width: auto;
    min-width: 86px;
    height: 40px;
    border: none;
    background-color: #4ab2f1;
    padding: 0 15px;
    color: #fff;
    text-transform: uppercase; }
    .enter-password-form input[type="submit"]:hover {
      background-color: #248ece; }

/*********** CONTACT & EMAIL A FRIEND & APPLY FOR VENDOR ACCOUNT ***********/
.contact-page .page-title, .email-a-friend-page .page-title, .apply-vendor-page .page-title {
  margin: 0 0 -1px; }

.contact-page .result, .contact-page .message-error {
  margin: 20px 0; }

.email-a-friend-page .result, .email-a-friend-page .message-error {
  margin: 20px 0; }

.apply-vendor-page .result, .apply-vendor-page .message-error {
  margin: 20px 0; }

.contact-page .button-1, .email-a-friend-page .button-1, .apply-vendor-page .button-1 {
  min-width: 140px;
  border: none;
  background-color: #4ab2f1;
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase; }

.contact-page .button-1:hover, .email-a-friend-page .button-1:hover, .apply-vendor-page .button-1:hover {
  background-color: #248ece; }

.contact-page .topic-block, .email-a-friend-page .title, .apply-vendor-page .title {
  margin: 25px 0; }

.email-a-friend-page .title h2 {
  font-weight: normal;
  color: #4ab2f1; }

.apply-vendor-page .terms-of-service {
  text-align: center; }
  .apply-vendor-page .terms-of-service > * {
    display: inline-block;
    line-height: 32px; }
  .apply-vendor-page .terms-of-service span, .apply-vendor-page .terms-of-service a {
    color: #4ab2f1;
    cursor: pointer; }

/********** REGISTRATION, LOGIN, ACCOUNT PAGES  **********/
.gender {
  display: inline-block; }
  .gender span {
    display: inline-block;
    margin: 0 5px; }
    .gender span > * {
      display: inline !important;
      margin: 0 5px;
      line-height: 32px; }

.date-of-birth .date-picker-wrapper {
  display: inline; }

.date-of-birth select {
  width: 31%;
  /*always single line*/
  max-width: 126px; }
  .date-of-birth select + select {
    margin: 0 0 0 10px; }

.date-of-birth .select-wrapper + .select-wrapper {
  margin: 0 0 0 10px; }

#check-availability-button {
  margin: 10px 0 0;
  border: none;
  background-color: #888;
  padding: 10px 15px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase; }
  #check-availability-button:hover {
    background-color: #999; }

.inputs.accept-consent {
  text-align: center; }
  .inputs.accept-consent > * {
    display: inline-block;
    line-height: 32px; }
  .inputs.accept-consent span, .inputs.accept-consent a {
    color: #4ab2f1;
    cursor: pointer;
    font-size: 14px; }
  .inputs.accept-consent label {
    width: auto;
    margin-left: 10px;
    margin-bottom: 0; }

.registration-page .button-1, .registration-result-page .button-1, .login-page .button-1, .password-recovery-page .button-1, .account-page .button-1, .return-request-page .button-1 {
  min-width: 140px;
  border: none;
  background-color: #4ab2f1;
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase; }

.registration-page .button-1:hover, .registration-result-page .button-1:hover, .login-page .button-1:hover, .password-recovery-page .button-1:hover, .account-page .button-1:hover {
  background-color: #248ece; }

.return-request-page .button-1:hover {
  background-color: #248ece; }

.return-request-page h1 a {
  color: #4ab2f1; }

.return-request-page .return-request-file {
  font-size: 14px; }
  .return-request-page .return-request-file .uploadedfileinput {
    display: inline-block; }

.registration-page .message-error, .login-page .message-error, .account-page .message-error {
  margin: 0 0 10px; }

.registration-result-page .result {
  margin: 0 0 30px;
  padding: 30px 0;
  text-align: center;
  font-size: 16px;
  color: #4cb17c; }

.customer-info-page .email-to-revalidate, .customer-info-page .readonly-username {
  margin: 0 5px;
  font-size: 14px; }

.customer-info-page .vat-status {
  margin: 0 5px;
  font-size: 14px;
  display: block; }

.registration-page .vat-note {
  display: block;
  font-size: 14px;
  margin-top: 7px;
  white-space: normal; }

.customer-info-page .vat-note, .customer-info-page .email-to-revalidate-note {
  display: block;
  font-size: 14px;
  margin-top: 7px;
  white-space: normal; }

.login-page .customer-blocks {
  margin: 0 0 30px; }

.login-page .title {
  margin: 0 0 15px;
  font-size: 20px;
  color: #444; }
  .login-page .title strong {
    font-weight: normal; }

.login-page .new-wrapper {
  margin: 0 0 50px; }
  .login-page .new-wrapper .text {
    margin: 0 0 30px;
    border-top: 1px solid #e6e6e6;
    background-color: #f9f9f9;
    padding: 30px;
    line-height: 22px; }
  .login-page .new-wrapper .topic-block {
    margin: 0; }
  .login-page .new-wrapper .topic-block-body strong {
    color: #444; }
  .login-page .new-wrapper .button-1 {
    margin: 0 0 5px; }

.login-page .returning-wrapper {
  margin: 0; }
  .login-page .returning-wrapper .form-fields {
    overflow: hidden;
    padding: 30px 15px 0; }
  .login-page .returning-wrapper .inputs.reversed {
    white-space: normal; }
    .login-page .returning-wrapper .inputs.reversed * {
      display: inline-block;
      width: auto;
      margin: 5px;
      font-size: 14px;
      /*reset zeroing*/
      color: #444; }
    .login-page .returning-wrapper .inputs.reversed a:hover {
      color: #4ab2f1; }

.login-page .captcha-box {
  margin: -15px 0 20px; }

.login-page .returning-wrapper .buttons {
  background-color: #fff;
  padding: 30px 0; }

.external-authentication {
  margin: 0 0 50px;
  overflow: hidden;
  text-align: center; }
  .external-authentication .title {
    margin: 0 0 15px;
    font-size: 20px;
    color: #444; }
  .external-authentication .buttons {
    margin: 0 0 30px;
    border-top: 1px solid #e6e6e6;
    padding: 30px; }

.external-auth-errors {
  color: #e4444c; }

.external-auth-association {
  color: #444; }
  .external-auth-association a {
    color: #4ab2f1; }
    .external-auth-association a:hover {
      text-decoration: underline; }

.password-recovery-page .result {
  margin: 0 0 5px;
  font-weight: bold;
  color: #444; }

.password-recovery-page .tooltip {
  margin: 0 0 25px; }

.add-more-external-records {
  text-align: center; }
  .add-more-external-records a {
    color: #4ab2f1; }
    .add-more-external-records a:hover {
      text-decoration: underline; }

.account-page .buttons {
  text-align: center; }

.account-page .description {
  margin: 0 0 25px;
  padding: 0 10px; }

.account-page .table-wrapper {
  margin: 0 0 30px; }

.gdpr-tools-page .result {
  margin: 20px 0;
  font-size: 13px;
  color: #e4434b; }

.gdpr-tools-page .buttons {
  margin-top: 20px; }

.address-list-page .info, .order-list-page .info {
  margin: 0 0 10px;
  border-top: 1px solid #e6e6e6;
  background-color: #f9f9f9;
  padding: 20px;
  line-height: 26px;
  color: #444; }

.address-list-page .info .name, .order-list-page .info .name {
  font-size: 16px;
  font-weight: bold; }

.address-list-page .button-2, .order-list-page .button-2 {
  display: inline-block;
  margin: 0 0 0 10px;
  border: none;
  padding: 0 0 0 18px;
  font-size: 12px;
  color: #444; }

.edit-address-button {
  background: url("../images/edit.png") left center no-repeat; }

.delete-address-button, .cancel-recurring-order-button {
  background: url("../images/remove.png") left center no-repeat; }

.retry-recurring-order-button {
  background: url("../images/retry.png") left center no-repeat; }

.return-items-button {
  background: url("../images/return.png") left center no-repeat; }

.order-details-button {
  background: url("../images/details.png") left center no-repeat; }

.address-list-page .button-2:hover, .order-list-page .button-2:hover {
  color: #4ab2f1; }

.address-list-page .add-button {
  margin: 0 0 20px;
  text-align: center; }

.address-edit-page .page-title {
  margin: 0 0 -1px; }

.address-edit-page .message-error {
  margin: 20px 0; }

.address-edit-page .edit-address {
  margin: 0 0 30px;
  border-top: 1px solid #e6e6e6;
  background-color: #f9f9f9;
  padding: 30px 15px; }

.recurring-payments table td {
  white-space: nowrap; }
  .recurring-payments table td:first-child {
    min-width: 120px;
    white-space: normal; }

.recurring-payments .button-2 {
  font-size: 14px; }

.return-request-list-page .details {
  border-top: 1px solid #e6e6e6;
  background-color: #f9f9f9;
  padding: 20px;
  line-height: 22px;
  color: #444; }

.return-request-list-page label {
  margin: 0 5px 0 0; }

.return-request-list-page a {
  color: #4ab2f1; }
  .return-request-list-page a:hover {
    text-decoration: underline; }

.return-request-list-page .comments div {
  margin: 10px 0 0;
  font-size: 15px;
  font-style: italic;
  color: #444; }

.downloadable-products-page table td {
  color: #444; }

.reward-points-overview {
  margin: 0 0 25px; }

.reward-points-history table td {
  color: #444; }
  .reward-points-history table td:first-child {
    min-width: 120px; }

.change-password-page .page-title {
  margin: 0 0 -1px; }

.change-password-page .result, .change-password-page .message-error {
  margin: 20px 0; }

.change-password-page .fieldset {
  margin: 0 0 30px; }

.avatar-page .page-title {
  margin: 0; }

.avatar-page .page-body {
  margin: 0 0 30px;
  overflow: hidden;
  background-color: #f9f9f9;
  padding: 30px 25px; }

.avatar-page .message-error {
  margin: 0 0 10px; }

.avatar-page .image {
  margin: 0 0 10px; }
  .avatar-page .image img {
    border: 1px solid #ccc; }

.avatar-page .button-1 {
  font-size: 14px; }

.avatar-page .button-2 {
  border: none;
  background-color: #888;
  padding: 10px 15px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase; }
  .avatar-page .button-2:hover {
    background-color: #999; }

.avatar-page .info {
  color: #444; }

.vendorinfo-page .button-2 {
  border: medium none;
  background-color: #888;
  padding: 10px 15px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase; }
  .vendorinfo-page .button-2:hover {
    background-color: #999; }

.vendorinfo-page .vendor-picture {
  width: 400px;
  margin: 0 auto; }
  .vendorinfo-page .vendor-picture * {
    display: block;
    margin-top: 15px; }

.check-gift-card-balance-page .page-title {
  margin: 0 0 -1px; }

.check-gift-card-balance-page .result, .check-gift-card-balance-page .message-error {
  margin: 20px 0; }

.check-gift-card-balance-page .fieldset {
  margin: 0 0 30px; }

/********** SHOPPING CART **********/
.order-progress {
  margin: 0 0 50px;
  background-color: #f6f6f6;
  padding: 15px 0;
  text-align: center; }
  .order-progress ul {
    font-size: 0; }
  .order-progress li {
    display: inline-block;
    margin: 10px; }
  .order-progress a {
    display: block;
    min-width: 70px;
    font-size: 14px;
    /*reset zeroing*/
    color: #444; }
    .order-progress a:before {
      content: "";
      display: block;
      width: 40px;
      height: 40px;
      margin: 0 auto 15px;
      border: 1px solid #bbb;
      background: #fff url("../images/pointer.png") center no-repeat; }
  .order-progress li.active-step a {
    cursor: pointer; }
  .order-progress li.inactive-step a {
    opacity: 0.3;
    cursor: default; }

.shopping-cart-page .page-title {
  margin: 0 0 -1px;
  padding: 10px; }

.shopping-cart-page .message-error {
  margin: 20px 0; }

.shopping-cart-page td .message-error {
  margin: 10px 0 0;
  text-align: left; }

.shopping-cart-page .checkout-attributes a {
  color: #4ab3f1; }
  .shopping-cart-page .checkout-attributes a:hover {
    text-decoration: underline; }

.shopping-cart-page .tax-shipping-info {
  margin: 20px 0;
  text-align: center; }
  .shopping-cart-page .tax-shipping-info a {
    color: #4ab3f1; }
    .shopping-cart-page .tax-shipping-info a:hover {
      text-decoration: underline; }

.shopping-cart-page .common-buttons {
  margin: 0 0 60px;
  background-color: #f6f6f6;
  padding: 20px;
  font-size: 0; }
  .shopping-cart-page .common-buttons input {
    display: inline-block;
    min-width: 180px;
    margin: 5px;
    border: none;
    background-color: #aaa;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff; }
    .shopping-cart-page .common-buttons input:hover {
      background-color: #999; }
    .shopping-cart-page .common-buttons input:first-child {
      background-color: #4ab2f1; }
      .shopping-cart-page .common-buttons input:first-child:hover {
        background-color: #248ece; }

.checkout-attributes {
  margin: -30px 0 30px;
  color: #444; }
  .checkout-attributes dt {
    margin: 0 0 5px;
    font-weight: bold; }
  .checkout-attributes dd {
    margin: 0 0 20px; }
  .checkout-attributes input[type="text"], .checkout-attributes select {
    min-width: 170px; }
  .checkout-attributes ul {
    font-size: 0; }
  .checkout-attributes li {
    display: inline-block;
    margin: 5px;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 8px 10px;
    font-size: 14px;
    /*reset zeroing*/ }
  .checkout-attributes .attribute-squares li {
    border: none;
    padding: 0;
    line-height: 0; }
  .checkout-attributes li label {
    display: inline-block;
    margin: 0 0 0 5px; }

.selected-checkout-attributes {
  margin: 30px 0;
  color: #444; }
  .selected-checkout-attributes br {
    content: "";
    display: block;
    margin: 3px; }

.cart-footer {
  margin: 0 0 50px;
  border-top: 1px solid #ddd; }
  .cart-footer:after {
    content: "";
    display: block;
    clear: both; }
  .cart-footer .totals {
    width: 350px;
    max-width: 100%;
    margin: 0 auto 50px;
    background-color: #f9f9f9;
    padding: 10px;
    color: #444; }
  .cart-footer .total-info {
    margin: 0 0 20px;
    border-bottom: 1px solid #ddd;
    padding: 5px 30px 15px; }

.cart-total td {
  width: 50%;
  padding: 5px 0;
  text-align: right; }
  .cart-total td:first-child {
    text-align: left; }

.cart-total .giftcard-remaining {
  display: block;
  font-style: italic; }

.cart-total .order-total {
  font-size: 20px;
  color: #4ab2f1; }
  .cart-total .order-total strong {
    font-weight: normal; }

.cart-total .earn-reward-points {
  font-style: italic; }

.min-amount-warning {
  margin: 0 0 20px;
  padding: 0 30px;
  color: #e4434b; }

.terms-of-service {
    margin: 15px 0 20px;
    color: white;
    font-size: 1.3em;
}
  .terms-of-service label {
    cursor: pointer; }
  .terms-of-service a {
    margin: 0 0 0 3px;
    color: #4ab2f1; }

.cart-footer .checkout-buttons {
  padding: 0 10px; }

.cart-footer .checkout-disabled {
  font-size: 20px;
  text-align: center;
  background: #ffa500;
  border: 1px solid #c3891e;
  color: #fff;
  padding: 15px 50px; }

.cart-footer .checkout-button {
  display: inline-block;
  min-width: 160px;
  border: none;
  background-color: #4ab2f1;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase; }
  .cart-footer .checkout-button:hover {
    background-color: #248ece; }

.cart-footer .addon-buttons {
  margin: 20px 0 0;
  padding: 0 10px; }

.cart-collaterals {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 50px;
  padding: 25px 0 0; }
  .cart-collaterals > div {
    max-width: 400px;
    margin: 0 0 50px; }
  .cart-collaterals .button-2 {
    display: inline-block;
    border: none;
    background-color: #aaa;
    padding: 10px 15px;
    color: #fff;
    text-transform: uppercase; }
    .cart-collaterals .button-2:hover {
      background-color: #999; }
  .cart-collaterals .title {
    margin: 0 0 5px;
    font-size: 18px;
    color: #444; }
    .cart-collaterals .title strong {
      font-weight: normal; }
  .cart-collaterals .hint {
    margin: 0 0 10px; }
  .cart-collaterals .deals > div {
    margin: 0 0 20px; }
  .cart-collaterals .coupon-code {
    overflow: hidden; }
    .cart-collaterals .coupon-code input[type="text"] {
      float: left;
      width: 60%;
      height: 36px;
      /*safari padding fix*/
      margin: 0 -1px 0 0; }
    .cart-collaterals .coupon-code input[type="submit"] {
      float: left;
      width: 40%;
      height: 36px;
      /*safari padding fix*/
      padding: 0; }
  .cart-collaterals .message-failure {
    margin: 5px 0 0;
    font-size: 12px;
    color: #e4434b; }
  .cart-collaterals .message-success {
    margin: 5px 0 0;
    font-size: 12px;
    color: #4cb17c; }
  .cart-collaterals .current-code {
    margin: 5px 0 0;
    color: #4cb17c; }

.remove-discount-button, .remove-gift-card-button {
  width: 16px;
  height: 16px;
  border: 1px solid #999;
  background: #fff url("../images/close.png") center no-repeat;
  cursor: pointer; }

.cart-collaterals .shipping select {
  height: 36px; }

.cart-collaterals .shipping-results {
  margin: 30px 0 0; }
  .cart-collaterals .shipping-results li {
    margin: 20px 0; }
    .cart-collaterals .shipping-results li strong {
      display: block;
      margin: 0 0 5px;
      color: #444; }

.shopping-cart-page .no-data {
  margin: 25px 0 0; }

/*** ESTIMATE SHIPPING POPUP COMMON ***/
.estimate-shipping-popup {
  position: relative;
  background: #FFF;
  padding: 25px 10px;
  width: auto;
  max-width: 800px;
  margin: 0 auto; }

.estimate-shipping-popup-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8); }

.estimate-shipping-popup-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out; }

.estimate-shipping-popup-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1); }

.estimate-shipping-popup-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8; }

.estimate-shipping-popup-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0; }

.estimate-shipping-popup-zoom-in.mfp-removing.mfp-bg {
  opacity: 0; }

.shipping-options-loading {
  background: url(../images/ajax-loader-small.gif) no-repeat;
  width: 16px;
  height: 16px;
  position: relative;
  right: 8px;
  margin: 4% 50%; }

.shipping-address .required {
  margin-left: 0px; }

.estimate-shipping-row {
  display: flex;
  display: -webkit-flex;
  align-items: center; }
  .estimate-shipping-row.shipping-option {
    cursor: pointer; }
    .estimate-shipping-row.shipping-option.active {
      font-weight: 700; }

.estimate-shipping-row-item {
  flex: 0 1 100%; }
  .estimate-shipping-row-item.shipping-item {
    padding: 8px 0;
    overflow: hidden;
    overflow-wrap: break-word; }
  .estimate-shipping-row-item.shipping-header-item {
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f2;
    align-self: flex-end; }
  .estimate-shipping-row-item.address-item + .estimate-shipping-row-item.address-item {
    padding-left: 15px; }
  .estimate-shipping-row-item + .estimate-shipping-row-item {
    padding-left: 10px; }

.estimate-shipping-row-item-radio {
  flex: 0 0 35px; }

.ship-to-title {
  margin-bottom: 10px; }

.choose-shipping-title {
  margin-top: 20px; }

.estimate-shipping-address-control {
  width: 100%;
  height: 36px; }

.estimate-shipping-radio {
  display: none; }
  .estimate-shipping-radio + label {
    -webkit-appearance: none;
    background-color: #fafafa;
    border: 1px solid #cacece;
    padding: 9px;
    border-radius: 50px;
    display: inline-block;
    position: relative; }
  .estimate-shipping-radio:checked + label {
    background-color: #4ab2f1;
    color: #99a1a7;
    border: 1px solid #adb8c0;
    border-color: #4ab2f1; }
    .estimate-shipping-radio:checked + label:after {
      content: ' ';
      width: 6px;
      height: 6px;
      border-radius: 50px;
      position: absolute;
      top: 6px;
      left: 6px;
      background: #ffffff; }

.apply-shipping-button {
  border: none;
  padding: 8px 25px;
  background-color: #4ab2f1;
  color: #fff; }

.apply-shipping-button-container {
  margin-top: 15px;
  text-align: center; }

.shipping-options-header {
  top: 0;
  z-index: 1;
  position: sticky;
  background-color: #fff; }

.shipping-options {
  position: relative;
  z-index: 1;
  overflow: hidden;
  overflow-y: auto;
  max-height: 200px;
  background: #FFF no-repeat;
  background-image: -webkit-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), transparent), -webkit-radial-gradient(50% 100%, farthest-side, #f2f2f2, transparent);
  background-image: -moz-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), transparent), -moz-radial-gradient(50% 100%, farthest-side, #f2f2f2, transparent);
  background-image: radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.1), transparent), radial-gradient(farthest-side at 50% 100%, #f2f2f2, transparent);
  background-position: 0 0, 0 100%;
  background-size: 100% 7px; }
  .shipping-options:before {
    content: "";
    position: relative;
    z-index: -1;
    display: block;
    height: 30px;
    margin: 0 0 -30px;
    background: -webkit-linear-gradient(top, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
    background: -moz-linear-gradient(top, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
    background: linear-gradient(to bottom, #FFF, #FFF 30%, rgba(255, 255, 255, 0)); }
  .shipping-options:after {
    content: "";
    position: relative;
    z-index: -1;
    display: block;
    height: 30px;
    margin: 0 0 -30px;
    background: -webkit-linear-gradient(top, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
    background: -moz-linear-gradient(top, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
    background: linear-gradient(to bottom, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
    margin: -30px 0 0;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #FFF 70%, #FFF); }

.no-shipping-options {
  text-align: center;
  margin: 4% 0; }

.estimate-shipping-popup .message-failure {
  margin: 5px 0 -5px;
  font-size: 12px;
  color: #e4434b; }

/*** SHOPPING CART ESTIMATE SHIPPING ***/
.shopping-cart-page .common-buttons .estimate-shipping-button {
  display: inline-block;
  min-width: 180px;
  margin: 5px;
  border: none;
  background-color: #aaa;
  padding: 10px 20px;
  font-size: 15px;
  text-align: center;
  color: #fff; }
  .shopping-cart-page .common-buttons .estimate-shipping-button:hover {
    background-color: #999; }

/*** PRODUCT ESTIMATE SHIPPING ***/
.product-estimate-shipping {
  margin-bottom: 20px; }
  .product-estimate-shipping .shipping-date {
    margin-top: 3px; }
  .product-estimate-shipping .shipping-title {
    font-size: 16px;
    font-weight: bold;
    color: #444;
    margin-bottom: 5px;
    justify-content: center; }
    .product-estimate-shipping .shipping-title .shipping-price {
      margin-left: 5px;
      vertical-align: middle; }
    .product-estimate-shipping .shipping-title .shipping-loading {
      margin-left: 5px;
      vertical-align: middle;
      background: url(../images/ajax-loader-small.gif) no-repeat;
      width: 16px;
      height: 16px;
      display: inline-block; }
  .product-estimate-shipping .open-estimate-shipping-popup .arrow-down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin: 0 0 3px 6px;
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px; }

/********** CHECKOUT **********/
.checkout-page .section {
  margin: 0 0 30px; }
  .checkout-page .section.order-summary {
    margin: 100px 0 30px; }

.checkout-page .cart-options {
  min-height: 60px;
  overflow: hidden; }

.checkout-page .cart-footer {
  border-top: none; }

.checkout-page .total-info {
  margin: 0;
  border-bottom: none;
  padding: 5px 20px 10px; }

.checkout-page .button-1 {
  display: inline-block;
  min-width: 140px;
  border: none;
  background-color: #4ab2f1;
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase; }
  .checkout-page .button-1:hover {
    background-color: #248ece; }

.checkout-page .address-item {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 40px; }
  .checkout-page .address-item ul {
    margin: 0 0 15px;
    background-color: #f9f9f9;
    padding: 20px;
    color: #444; }
  .checkout-page .address-item li {
    padding: 5px 0; }
    .checkout-page .address-item li.name {
      font-size: 16px;
      font-weight: bold; }

.enter-address .message-error {
  margin: 20px 0; }

.enter-address .edit-address {
  background-color: #f9f9f9;
  border-top: 1px solid #e6e6e6;
  margin: 0 0 30px;
  padding: 30px 15px; }

.checkout-page .ship-to-same-address {
  padding: 30px 0;
  text-align: center; }
  .checkout-page .ship-to-same-address .selector {
    margin: 0 0 5px;
    font-weight: bold;
    color: #444; }

.checkout-page .pickup-in-store {
  text-align: center; }
  .checkout-page .pickup-in-store .selector {
    margin: 0 0 5px;
    font-weight: bold;
    color: #444; }

.select-pickup-point {
  text-align: center; }

.checkout-page .pickup-points-map {
  min-width: 400px;
  min-height: 350px;
  vertical-align: middle;
  margin-top: 5px;
  margin-bottom: 5px; }

.shipping-method .method-list, .payment-method .method-list {
  margin: 0 auto 30px;
  overflow: hidden;
  text-align: center;
  font-size: 0; }

.shipping-method .method-list li, .payment-method .method-list li {
  margin: 20px 0;
  font-size: 14px;
  /*reset zeroing*/ }

.shipping-method .method-list li label, .payment-method .method-list li label {
  font-size: 13px;
  font-weight: bold;
  color: #444; }

.shipping-method .method-description {
  margin: 5px 0 0; }

.payment-method .use-reward-points {
  margin: 0 0 30px;
  text-align: center;
  color: #444; }

.payment-method .payment-logo {
  display: inline-block;
  vertical-align: middle; }
  .payment-method .payment-logo label {
    display: block;
    font-size: 0 !important; }

.payment-method .payment-details {
  min-width: 180px;
  display: inline-block;
  margin: 0 0 0 10px;
  text-align: left;
  vertical-align: middle; }

.payment-info .info {
  padding: 30px 15px;
  color: #444; }
  .payment-info .info tr {
    display: block;
    margin: 0 0 15px;
    font-size: 0; }
  .payment-info .info td {
    display: inline-block;
    width: 100% !important;
    max-width: 400px !important;
    font-size: 14px;
    /*reset zeroing*/ }
    .payment-info .info td:only-child {
      width: 100% !important;
      max-width: 100% !important; }
    .payment-info .info td input[type="text"] {
      width: 100% !important; }
    .payment-info .info td input[name="CardCode"] {
      width: 65px !important; }
    .payment-info .info td select {
      min-width: 70px; }
    .payment-info .info td:first-child {
      margin: 0 0 10px; }
  .payment-info .info p {
    text-align: center; }

.confirm-order .buttons {
  padding: 10px 0; }

.confirm-order .button-1 {
  font-size: 16px; }

.order-review-data > div, .order-details-area > div, .shipment-details-area > div {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 40px;
  background-color: #f9f9f9;
  padding: 20px;
  color: #444; }

.order-review-data li, .order-details-area li, .shipment-details-area li {
  padding: 3px 0; }

.order-review-data .title, .order-details-area .title, .shipment-details-area .title {
  margin: 0 0 5px;
  padding: 0;
  font-size: 16px;
  font-weight: bold; }

.order-review-data .title strong, .order-details-area .title strong, .shipment-details-area .title strong {
  font-weight: 700; }

.order-review-data .payment-method-info, .order-review-data .shipping-method-info {
  margin-top: 20px; }

.order-details-area .payment-method-info, .order-details-area .shipping-method-info {
  margin-top: 20px; }

.order-completed .details {
  margin: 0 0 30px;
  padding: 30px 15px;
  text-align: center;
  color: #444; }
  .order-completed .details div {
    margin: 5px 0; }
  .order-completed .details strong {
    font-weight: normal;
    text-transform: uppercase; }
  .order-completed .details a {
    color: #4ab2f1; }
    .order-completed .details a:hover {
      text-decoration: underline; }

.opc .step-title {
  margin: 0 0 1px;
  overflow: hidden;
  background-color: #f6f6f6; }

.opc .allow .step-title {
  background-color: #4ab2f1;
  cursor: pointer; }

.opc .step-title .number, .opc .step-title .title {
  float: left;
  min-height: 40px;
  padding: 10px 15px;
  line-height: 20px;
  font-size: 16px;
  font-weight: normal; }

.opc .allow .step-title .number, .opc .allow .step-title .title {
  color: #fff;
  cursor: pointer; }

.opc .step-title .number {
  width: 42px;
  border-right: 1px solid #fff;
  text-align: center; }

.opc .allow .step-title .number {
  background-color: #248ece; }

.opc .step {
  margin: 10px 0;
  padding: 30px 15px;
  text-align: center; }

.opc .section {
  margin: 0 0 30px; }
  .opc .section > label {
    display: block;
    margin: 0 0 10px; }

.opc input[type="text"], .opc select {
  max-width: 100%; }

.opc .buttons {
  margin-bottom: 0; }

.opc .back-link {
  margin: 0 0 10px; }
  .opc .back-link small {
    display: none; }
  .opc .back-link a {
    display: inline-block;
    margin: 0 0 0 -15px;
    background: url("../images/back-button.png") left center no-repeat;
    padding: 0 0 0 18px;
    color: #444; }
    .opc .back-link a:hover {
      color: #4ab2f1; }

.opc .buttons .please-wait {
  display: block;
  margin: 10px 0 0;
  background: none; }

.opc .section.ship-to-same-address, .opc .section.pickup-in-store {
  margin: 0 0 30px;
  padding: 0; }

.opc .payment-info .info tr {
  text-align: left; }

.opc .section.order-summary {
  margin: 0; }

/****** ORDER DETAILS & SHIPPING DETAILS ******/
.order-details-page .page-title {
  border-bottom: none; }
  .order-details-page .page-title h1 {
    margin: 0 0 30px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 10px; }
  .order-details-page .page-title a {
    display: inline-block;
    min-width: 180px;
    margin: 5px 0;
    border: none;
    background-color: #aaa;
    background-image: none;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff; }
    .order-details-page .page-title a:hover {
      background-color: #999; }
    .order-details-page .page-title a.print-order-button {
      background-color: #4ab2f1; }
      .order-details-page .page-title a.print-order-button:hover {
        background-color: #248ece; }

.order-details-page .order-overview {
  margin: 0 0 50px;
  line-height: 26px;
  text-align: center;
  font-size: 16px;
  color: #444; }
  .order-details-page .order-overview .order-number {
    margin: 0 0 10px;
    text-transform: uppercase; }
  .order-details-page .order-overview .order-total strong {
    font-weight: normal;
    color: #4ab2f1; }

.order-details-page .repost .button-2 {
  display: inline-block;
  margin: 10px 0;
  border: none;
  background-color: #4ab2f1;
  padding: 10px 15px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase; }
  .order-details-page .repost .button-2:hover {
    background-color: #248ece; }

.order-details-page .download a {
  font-weight: normal;
  color: #4ab2f1; }
  .order-details-page .download a:hover {
    text-decoration: underline; }

.user-agreement-page .terms-of-agreement {
  margin: 0 0 20px;
  padding: 20px;
  text-align: center; }

.user-agreement-page .button-1 {
  min-width: 140px;
  border: none;
  background-color: #4ab2f1;
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase; }
  .user-agreement-page .button-1:hover {
    background-color: #248ece; }

.order-details-page .tax-shipping-info {
  margin: 30px 0; }
  .order-details-page .tax-shipping-info a {
    color: #4ab2f1; }
    .order-details-page .tax-shipping-info a:hover {
      text-decoration: underline; }

.order-details-page .actions {
  margin: 30px 0 0;
  font-size: 0; }
  .order-details-page .actions input {
    display: inline-block;
    min-width: 165px;
    margin: 5px;
    border: none;
    background-color: #aaa;
    background-image: none;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff; }
    .order-details-page .actions input:hover {
      background-color: #999; }
    .order-details-page .actions input:first-child {
      background-color: #4ab2f1; }
      .order-details-page .actions input:first-child:hover {
        background-color: #248ece; }

.order-details-page .totals.section {
  width: 370px;
  padding: 0 10px;
  max-width: 100%;
  margin: 0 auto 50px; }

.order-details-page .total-info {
  background-color: #f9f9f9;
  padding: 15px 20px;
  color: #444; }

/****** SEARCH & SITEMAP ******/
.search-page .page-title {
  margin: 0 0 -1px; }

.search-input .fieldset {
  margin: 0 0 30px; }

.search-input .form-fields {
  padding: 30px 15px 10px; }

.search-input input + label {
  display: inline;
  margin: 0 0 0 5px; }

.advanced-search {
  margin: 30px 0 0; }
  .advanced-search .price-range {
    display: inline-block; }
    .advanced-search .price-range input {
      width: 80px;
      margin: 3px; }

.search-input .buttons {
  text-align: center; }

.search-input .button-1 {
  min-width: 140px;
  border: none;
  background-color: #4ab2f1;
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase; }
  .search-input .button-1:hover {
    background-color: #248ece; }

.search-results {
  margin: 30px 0 0; }
  .search-results .warning, .search-results .no-result {
    margin: 10px 0;
    color: #e4434b; }

.sitemap-page .description {
  margin: 0 0 30px;
  text-align: center; }

.sitemap-page .entity {
  margin: 0 0 30px; }

.sitemap-page .entity-title {
  margin: 0 0 15px;
  padding: 0 10px;
  text-align: center; }
  .sitemap-page .entity-title h2 {
    font-size: 20px;
    font-weight: normal;
    color: #444; }

.sitemap-page .entity-body {
  border-top: 1px solid #e6e6e6;
  background-color: #f9f9f9;
  padding: 30px 15px;
  text-align: center; }

.sitemap-page .entity ul {
  font-size: 0; }

.sitemap-page .entity li {
  display: inline-block;
  position: relative;
  margin: 0 8px;
  padding: 0 12px;
  line-height: 50px;
  font-size: 14px;
  /*reset zeroing*/ }
  .sitemap-page .entity li:before {
    content: "";
    position: absolute;
    top: 23px;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #ddd; }

.sitemap-page .entity a {
  color: #444; }
  .sitemap-page .entity a:hover {
    color: #4ab2f1; }
  .sitemap-page .entity a:empty {
    display: none; }

/****** BLOG & NEWS ******/
.block-blog-archive .number {
  display: block;
  color: #444;
  cursor: auto; }

.block-blog-archive .sublist {
  margin: 5px 0 5px 15px; }

.block-blog-archive li.month {
  padding: 3px 0 3px 15px; }

.blog-page .page-title, .news-list-page .page-title {
  margin: 0; }

.blog-page .post, .news-items .news-item {
  margin: 0 0 30px; }

.blog-page .post:after {
  content: "";
  display: block;
  clear: both; }

.post-title, .news-title {
  display: inline-block;
  padding: 20px 10px;
  line-height: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #444; }

.post-title:hover, .news-title:hover {
  color: #4ab2f1; }

.post-date, .news-date {
  display: block;
  margin: 0 0 15px;
  background-color: #f6f6f6;
  padding: 10px;
  font-style: italic;
  color: #444; }

.post-body, .news-body {
  margin: 0 0 20px;
  padding: 0 10px;
  line-height: 22px; }

.blog-page .tags, .blogpost-page .tags {
  margin: 0 0 15px;
  overflow: hidden;
  padding: 0 10px; }

.blog-page .tags label, .blogpost-page .tags label {
  display: inline-block;
  margin: 0 3px 3px 0;
  font-weight: bold;
  color: #444; }

.blog-page .tags ul, .blogpost-page .tags ul {
  display: inline-block;
  margin: 0 0 3px 3px;
  font-size: 0; }

.blog-page .tags li, .blogpost-page .tags li {
  display: inline-block;
  font-size: 14px;
  /*reset zeroing*/ }

.blog-page .tags li.separator, .blogpost-page .tags li.separator {
  margin: 0 8px 0 0; }

.blog-page .tags a, .blogpost-page .tags a {
  display: block;
  color: #4ab2f1; }

.blog-page .tags a:hover, .blogpost-page .tags a:hover {
  text-decoration: underline; }

.blog-posts .buttons, .news-items .buttons {
  margin: 0;
  padding: 0 10px; }

.blog-posts .buttons .read-comments {
  display: block;
  margin: 0 0 15px;
  font-weight: bold;
  color: #444; }
  .blog-posts .buttons .read-comments:hover {
    color: #4ab2f1; }

.blog-posts .buttons .read-more {
  display: inline-block;
  border: none;
  background-color: #4ab2f1;
  padding: 10px 20px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase; }

.news-items .buttons .read-more {
  display: inline-block;
  border: none;
  background-color: #4ab2f1;
  padding: 10px 20px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase; }

.blog-posts .buttons .read-more:hover, .news-items .buttons .read-more:hover {
  background-color: #248ece; }

.new-comment {
  margin: 50px 0 60px; }
  .new-comment .notifications {
    margin: 0 0 10px; }
  .new-comment .result {
    color: #690; }
  .new-comment .form-fields {
    margin: 0 0 20px; }
  .new-comment .button-1 {
    border: none;
    background-color: #4ab2f1;
    padding: 10px 30px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase; }
    .new-comment .button-1:hover {
      background-color: #248ece; }

.comment-list {
  margin: 0 0 100px; }
  .comment-list .title {
    margin: 0 0 15px;
    padding: 0 10px;
    font-size: 20px;
    color: #444; }
    .comment-list .title strong {
      font-weight: normal; }
  .comment-list .comment {
    margin: 0 0 40px;
    border-top: 1px solid #ddd; }
    .comment-list .comment:after {
      content: "";
      display: block;
      clear: both; }

.comment-info {
  width: 150px;
  margin: 20px auto; }
  .comment-info .username {
    display: block;
    margin: 0 0 -1px;
    border: 1px solid #ddd;
    background-color: #f6f6f6;
    padding: 11px 0;
    font-weight: bold;
    color: #444; }
  .comment-info a.username:hover {
    color: #4ab2f1; }
  .comment-info .avatar {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid #ddd;
    overflow: hidden; }
    .comment-info .avatar img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      max-width: 100%;
      max-height: 100%;
      margin: auto;
      border: solid 2px #CEDBE1 !important; }

.comment-time {
  margin: 0 0 15px;
  font-size: 13px;
  font-weight: bold; }
  .comment-time span {
    color: #444; }

.comment-title {
  margin: 0 0 15px;
  font-size: 16px;
  color: #444; }

.comment-body {
  line-height: 22px; }

.news-list-homepage {
  margin: 0 0 75px; }
  .news-list-homepage .title {
    margin: 0 0 -1px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 15px;
    font-size: 30px;
    font-weight: normal;
    color: #444; }
    .news-list-homepage .title strong {
      font-weight: normal; }
  .news-list-homepage .view-all {
    text-align: center; }
    .news-list-homepage .view-all a {
      color: #444;
      text-decoration: underline; }
      .news-list-homepage .view-all a:hover {
        color: #4ab2f1; }

/*** FORUM & PROFILE ***/
.forums-main-page .topic-block {
  margin: 0 0 35px;
  text-align: center; }
  .forums-main-page .topic-block p {
    text-align: center; }

.forums-main-page .pager {
  display: none; }

.forum-breadcrumb {
  margin: 0 0 40px; }

.forums-header {
  margin: 0 0 50px;
  overflow: hidden; }
  .forums-header:after {
    content: "";
    display: block;
    clear: both; }
  .forums-header .current-time {
    margin: 0 0 15px;
    color: #444; }

.forum-search-box .basic {
  overflow: hidden;
  margin: 0 0 10px; }

.forum-search-box .advanced a {
  line-height: 22px;
  color: #444;
  text-decoration: underline; }
  .forum-search-box .advanced a:hover {
    color: #4ab2f1; }

.forum-search-page .page-title {
  margin: 0 0 -1px; }

.forum-search-page .search-error, .forum-search-page .no-result {
  margin: 0 0 15px;
  text-align: center;
  color: #e4434b; }

/* forum group */
.forums-table-section {
  margin: 0 0 60px; }
  .forums-table-section + .pager {
    margin: -30px 0 30px; }

.forums-table-section-title {
  margin: 0 0 15px;
  padding: 0 10px; }
  .forums-table-section-title a, .forums-table-section-title strong {
    font-size: 22px;
    font-weight: normal;
    color: #444; }
  .forums-table-section-title a:hover {
    color: #4ab2f1; }

.forums-table-section .image div {
  width: 38px;
  height: 32px;
  margin: auto;
  background: url("../images/topic-type1.png") center no-repeat; }
  .forums-table-section .image div.sticky {
    background: url("../images/topic-type2.png") center no-repeat; }
  .forums-table-section .image div.announcement {
    background: url("../images/topic-type3.png") center no-repeat; }

.forums-table-section .forum-title, .forums-table-section .topic-title {
  margin: 5px 0; }

.forums-table-section .forum-title a, .forums-table-section .topic-title a {
  font-size: 16px;
  font-weight: bold;
  color: #444; }

.forums-table-section .forum-title a:hover {
  color: #4ab2f1;
  text-decoration: none; }

.forums-table-section .topic-title a:hover {
  color: #4ab2f1;
  text-decoration: none; }

.forums-table-section .topic-title span {
  display: block;
  color: #777; }

.forums-table-section .forum-description, .forums-table-section .topic-starter {
  margin: 5px 0; }

.forums-table-section .latest-post {
  white-space: nowrap; }
  .forums-table-section .latest-post div {
    margin: 5px 0; }
  .forums-table-section .latest-post label {
    color: #777; }

.forums-table-section .view-all {
  margin: 30px 0 0;
  padding: 0 10px; }
  .forums-table-section .view-all a {
    background-color: #4ab2f1;
    padding: 10px 15px;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase; }
    .forums-table-section .view-all a:hover {
      background-color: #248ece; }

/* forum-page, topic page */
.forum-page .forum-info {
  margin: 0 0 30px; }

.forum-page .forum-name {
  margin: 0 0 25px;
  border-bottom: 1px solid #ddd;
  padding: 0 10px 10px; }

.forum-topic-page .topic-name {
  margin: 0 0 25px;
  border-bottom: 1px solid #ddd;
  padding: 0 10px 10px; }

.forum-page .forum-name h1, .forum-topic-page .topic-name h1 {
  font-size: 30px;
  font-weight: normal; }

.forum-actions, .topic-actions {
  margin: 0 0 30px;
  font-size: 0; }

.forum-actions .actions a, .topic-actions .actions a {
  display: inline-block;
  margin: 1px;
  padding: 10px 10px 10px 33px;
  font-size: 14px; }

.forum-actions .actions .new-topic {
  background: #eee url("../images/new.png") left center no-repeat; }

.forum-actions .actions .watch-forum {
  background: #eee url("../images/watch.png") left center no-repeat; }

.topic-actions .actions .watch-forum {
  background: #eee url("../images/watch.png") left center no-repeat; }

.forum-actions .actions a:hover, .topic-actions .actions a:hover {
  background-color: #e6e6e6; }

.forum-actions .pager.upper {
  display: none;
  margin: 0; }

.topic-actions .pager.upper {
  display: none;
  margin: 0; }

.topic-actions .reply-topic-button {
  background: #eee url("../images/reply.png") left center no-repeat; }

.topic-actions .watch-topic-button {
  background: #eee url("../images/watch.png") left center no-repeat; }

.topic-actions .move-topic-button {
  background: #eee url("../images/move.png") left center no-repeat; }

.topic-actions .edit-topic-button {
  background: #eee url("../images/edit_.png") left center no-repeat; }

.topic-actions .delete-topic-button {
  background: #eee url("../images/remove_.png") left center no-repeat; }

.topic-actions.lower .actions {
  display: none; }

.active-discussions-page .forums-table-section-title {
  margin: 0 0 25px;
  border-bottom: 1px solid #ddd;
  padding: 0 10px 10px; }
  .active-discussions-page .forums-table-section-title strong {
    font-size: 30px;
    font-weight: normal; }

.active-discussions-page .forums-table-section-body {
  margin: 0 0 20px; }

/* topic post */
.topic-post {
  margin: 0 0 30px;
  border-top: 1px solid #ddd; }
  .topic-post:last-child {
    border-bottom: 1px solid #ddd; }
  .topic-post:after {
    content: "";
    display: block;
    clear: both; }
  .topic-post .post-info {
    margin: 30px 0; }
  .topic-post .user-info {
    width: 150px;
    margin: 0 auto 15px; }
  .topic-post .username {
    display: block;
    margin: 0 0 -1px;
    border: 1px solid #ddd;
    background-color: #f6f6f6;
    padding: 11px 0;
    font-weight: bold;
    color: #444; }
  .topic-post a.username:hover {
    color: #4ab2f1; }
  .topic-post .avatar {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid #ddd;
    overflow: hidden; }

.profile-info-box .avatar {
  position: relative;
  width: 150px;
  height: 150px;
  border: 1px solid #ddd;
  overflow: hidden; }

.topic-post .avatar img, .profile-info-box .avatar img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto; }

.topic-post .avatar img {
  border: solid 2px #CEDBE1 !important; }

.topic-post .user-stats {
  margin: 0 0 15px; }
  .topic-post .user-stats li {
    display: inline-block;
    margin: 0 10px; }
  .topic-post .user-stats span {
    margin: 0 0 0 3px;
    font-weight: bold;
    color: #444; }

.profile-info-box .profile-stats span {
  margin: 0 0 0 3px;
  font-weight: bold;
  color: #444; }

.topic-post .pm-button, .profile-info-box .pm-button {
  display: inline-block;
  border: none;
  background-color: #888;
  padding: 10px 20px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase; }

.topic-post .pm-button:hover, .profile-info-box .pm-button:hover {
  background-color: #999; }

.topic-post .post-time {
  margin: 0 0 15px;
  background-color: #f6f6f6;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: bold; }
  .topic-post .post-time span {
    color: #444; }

.topic-post .post-actions {
  margin: 0 0 15px;
  font-size: 0; }
  .topic-post .post-actions > div {
    display: inline-block; }
  .topic-post .post-actions a {
    display: inline-block;
    margin: 1px 5px;
    font-size: 14px; }
  .topic-post .post-actions .edit-post-button, .topic-post .post-actions .delete-post-button {
    padding: 10px 10px 10px 33px; }
  .topic-post .post-actions .edit-post-button {
    background: url("../images/edit_.png") left center no-repeat; }
  .topic-post .post-actions .delete-post-button {
    background: url("../images/remove_.png") left center no-repeat; }
  .topic-post .post-actions .edit-post-button:hover, .topic-post .post-actions .delete-post-button:hover {
    color: #4ab2f1; }
  .topic-post .post-actions .post-link-button {
    padding: 10px;
    font-weight: bold;
    color: #4ab2f1; }
    .topic-post .post-actions .post-link-button:hover {
      text-decoration: underline; }
  .topic-post .post-actions .quote-post-button {
    background-color: #888;
    padding: 10px 20px;
    color: #fff; }
    .topic-post .post-actions .quote-post-button:hover {
      background-color: #999;
      color: #fff; }

.topic-post .post-text {
  /*topic post-text also gets style from blog post-body*/
  padding: 0 10px 20px;
  line-height: 22px;
  color: #444;
  margin-bottom: 0; }

.topic-post .post-vote {
  text-align: center;
  display: table;
  margin: 0 auto 20px; }

.topic-post .user-posted-image {
  max-width: 100%;
  height: auto; }

.latest-posts .user-posted-image {
  max-width: 100%;
  height: auto; }

.topic-post .quote, .latest-posts .quote {
  margin: 10px 0;
  border: 1px dashed #ccc;
  background-color: #f9f9f9;
  padding: 10px;
  color: #777; }

.topic-post .signature {
  border-top: 1px solid #ddd;
  padding: 20px;
  font-size: 13px;
  font-style: italic;
  clear: both; }

.topic-post .post-vote span.vote {
  cursor: pointer;
  display: block;
  width: 40px;
  height: 24px; }

.topic-post .post-vote span.up {
  background: url("../images/vote-up.png") no-repeat 50% 50%; }

.topic-post .post-vote span.vote.up.selected {
  background: url("../images/vote-up-selected.png") no-repeat 50% 50%; }

.topic-post .post-vote span.down {
  background: url("../images/vote-down.png") no-repeat 50% 50%; }

.topic-post .post-vote span.vote.down.selected {
  background: url("../images/vote-down-selected.png") no-repeat 50% 50%; }

.topic-post .vote-count-post {
  display: block;
  font-size: 160%; }

/* forum edit & send message */
.forum-edit-page .page-title, .move-topic-page .page-title, .private-message-send-page .page-title {
  margin: 0 0 -1px; }

.move-topic-page label {
  white-space: normal; }

.forum-edit-page .message-error, .private-message-send-page .message-error {
  margin: 20px 0; }

.forum-edit-page .inputs strong {
  display: inline-block;
  max-width: 400px;
  font-size: 22px;
  /*reset zeroing*/
  font-weight: normal;
  color: #444;
  white-space: normal; }

.forum-edit-page .inputs .topic-subject {
  font-size: 17px; }

.forum-edit-page .inputs.reversed {
  margin: 0; }
  .forum-edit-page .inputs.reversed label {
    width: auto;
    margin: 5px;
    font-size: 14px;
    /*reset zeroing*/
    white-space: normal; }

.forum-edit-page .bb-code-editor-wrapper {
  max-width: 400px;
  margin: 20px auto;
  background-color: #ddd;
  padding: 10px; }

.private-message-send-page .bb-code-editor-wrapper {
  max-width: 400px;
  margin: 20px auto;
  background-color: #ddd;
  padding: 10px; }

.forum-edit-page .toolbar .button, .private-message-send-page .toolbar .button {
  margin: 0 2px 0 0;
  border: #cec6b5 1px solid;
  padding: 2px; }

.forum-edit-page .toolbar .button:hover, .private-message-send-page .toolbar .button:hover {
  border: #333 1px solid; }

.forum-edit-page textarea, .private-message-send-page textarea {
  display: block;
  margin: auto; }

.forum-edit-page .buttons input, .move-topic-page .buttons input, .private-messages .buttons input {
  min-width: 140px;
  border: none;
  background-color: #999;
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase; }

.forum-edit-page .buttons input:hover, .move-topic-page .buttons input:hover, .private-messages .buttons input:hover {
  background-color: #888; }

.forum-edit-page .buttons .button-1, .move-topic-page .buttons .button-1, .private-messages .buttons .button-1 {
  background-color: #4ab2f1; }

.forum-edit-page .buttons .button-1:hover, .move-topic-page .buttons .button-1:hover, .private-messages .buttons .button-1:hover {
  background-color: #248ece; }

.private-message-send-page a {
  font-size: 14px;
  color: #4ab2f1; }

.private-message-send-page span {
  font-size: 14px; }

/* jQuery tabs */
.ui-tabs {
  /*override jQuery UI styles, do not delete doubled properties*/
  border: none;
  border-radius: 0;
  background: none;
  padding: 0;
  font: normal 14px Arial, Helvetica, sans-serif;
  color: #777; }

.ui-widget.ui-widget-content.ui-tabs {
  border: none; }

.ui-tabs-nav {
  margin: 0 0 30px;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  font-size: 0;
  /*override jQuery UI styles, do not delete doubled properties*/
  margin: 0 0 30px !important;
  border-width: 0 0 1px;
  border-radius: 0;
  background: none;
  padding: 0 !important;
  line-height: normal;
  font-weight: normal;
  color: #444; }
  .ui-tabs-nav li {
    margin: 0 0 -1px;
    /*override jQuery UI styles, do not delete doubled properties*/
    float: none !important;
    margin: 0 0 -1px !important;
    border: none !important;
    border-radius: 0;
    background: none !important;
    padding: 0 !important; }
    .ui-tabs-nav li a {
      display: block;
      border: 1px solid #ddd;
      padding: 12px 24px;
      text-align: center;
      font-size: 18px;
      color: #444;
      /*override jQuery UI styles, do not delete doubled properties*/
      float: none !important;
      padding: 12px 24px !important; }
    .ui-tabs-nav li.ui-state-active a {
      background-color: #eee;
      color: #4ab2f1; }

.ui-tabs-panel {
  /*override jQuery UI styles, do not delete doubled properties*/
  padding: 0 !important; }

/* inbox & view message */
.private-messages-page .table-wrapper, .private-message-view-page .view-message {
  margin: 0 0 30px; }

.private-messages-page th.select {
  text-align: center; }

.private-messages-page td.from, .private-messages-page td.to, .private-messages-page td.subject {
  min-width: 150px; }

.private-messages-page td.date {
  white-space: nowrap; }

.private-messages-page td.subject a {
  color: #444; }
  .private-messages-page td.subject a.pm-unread {
    color: #4ab2f1; }

.private-messages-page .pager {
  margin: 0 0 30px; }

.private-messages-page .buttons {
  font-size: 0; }

.private-message-view-page .buttons {
  font-size: 0; }

.private-messages-page .buttons .button-1, .private-messages-page .buttons .button-2 {
  display: block;
  width: 250px;
  margin: 0 auto 3px;
  font-size: 15px;
  /*reset zeroing*/ }

.private-message-view-page .buttons .button-1, .private-message-view-page .buttons .button-2 {
  display: block;
  width: 250px;
  margin: 0 auto 3px;
  font-size: 15px;
  /*reset zeroing*/ }

.private-messages-page .no-items {
  padding: 20px;
  text-align: center; }

.private-message-view-page .view-message {
  margin: 0 0 30px; }

.private-message-view-page .message-head {
  margin: 0 0 20px;
  line-height: 22px; }
  .private-message-view-page .message-head span {
    font-weight: bold;
    color: #444; }

.private-message-view-page .message-body {
  border-top: 1px solid #ddd;
  background-color: #f9f9f9;
  padding: 30px 20px;
  line-height: 22px;
  text-align: justify; }

.private-message-view-page .back-pm-button {
  text-transform: capitalize !important; }

/* profile page  */
.profile-info-box {
  overflow: hidden;
  /*override jQuery UI styles, do not delete doubled properties*/
  line-height: normal;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: #777; }
  .profile-info-box .user-details {
    margin: 0 0 30px; }
  .profile-info-box .avatar {
    margin: 0 auto 15px; }
  .profile-info-box .title {
    margin: 0 0 10px;
    font-size: 18px;
    color: #444; }
  .profile-info-box .stats {
    margin: 0 0 15px; }

.latest-posts {
  /*override jQuery UI styles, do not delete doubled properties*/
  line-height: normal;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: #777; }
  .latest-posts .topic {
    margin: 0 0 35px; }
  .latest-posts .topic-title {
    margin: 0 0 20px;
    border-top: 1px solid #ddd;
    background: #f6f6f6;
    padding: 10px;
    font-size: 16px; }
    .latest-posts .topic-title a {
      font-weight: bold;
      color: #444; }
      .latest-posts .topic-title a:hover {
        color: #4ab2f1; }
  .latest-posts .topic-body {
    margin: 0 0 15px;
    line-height: 22px; }
  .latest-posts .topic-data {
    color: #444; }

/* BB codes */
pre {
  white-space: pre-wrap;
  white-space: normal;
  word-wrap: break-word; }

.csharpcode {
  margin: 10px 0;
  border: 1px dashed #ccc;
  background-color: #fff;
  padding: 10px;
  font-family: "Courier New", Courier, monospace;
  color: #000; }
  .csharpcode .rem {
    color: green; }
  .csharpcode .kwrd {
    color: #00f; }
  .csharpcode .str {
    color: #006080; }
  .csharpcode .op {
    color: #00c; }
  .csharpcode .preproc {
    color: #c63; }
  .csharpcode .asp {
    background-color: #ff0; }
  .csharpcode .html {
    color: maroon; }
  .csharpcode .attr {
    color: red; }
  .csharpcode .alt {
    width: 100%;
    margin: 0;
    background-color: #f6f6f6; }
  .csharpcode .lnum {
    color: #666; }

@media all and (max-width: 769px) {
  .review-rating .name-description {
    text-align: center;
    width: 100%;
    display: block; }
  .write-review .review-rating div {
    text-align: center;
    padding-bottom: 10px;
    display: inline-block; }
  /*** ESTIMATE SHIPPING POPUP ***/
  .shipping-address {
    flex-flow: column; }
  .address-item {
    width: 100%; }
  .estimate-shipping-row-item.address-item + .estimate-shipping-row-item.address-item {
    padding-left: 0px;
    padding-top: 8px; } }

@media all and (max-width: 1000px) {
  /*** GLOBAL TABLES ***/
  .cart {
    display: block; }
    .cart colgroup, .cart thead {
      display: none; }
    .cart tbody {
      display: block;
      overflow: hidden; }
    .cart tr {
      display: block;
      float: left;
      width: 100%;
      margin: 40px 0 0;
      border: 1px solid #ddd; }
    .cart td {
      display: block;
      border: none;
      padding: 10px; }
      .cart td.remove-from-cart {
        margin: 0 0 15px;
        border-bottom: 1px solid #ddd;
        background-color: #eee;
        padding: 10px; }
      .cart td.product-picture {
        border-top: 1px solid #ddd;
        padding: 15px 10px 5px; }
      .cart td.product {
        min-width: 0;
        border-bottom: 1px solid #ddd;
        padding: 5px 10px 15px;
        text-align: center; }
      .cart td.quantity {
        display: inline-block;
        padding: 0 10px;
        vertical-align: middle; }
      .cart td.unit-price, .cart td.subtotal {
        display: inline-block;
        padding: 20px 10px;
        vertical-align: middle; }
  .order-details-page .data-table {
    display: block; }
    .order-details-page .data-table colgroup, .order-details-page .data-table thead {
      display: none; }
    .order-details-page .data-table tbody {
      display: block;
      overflow: hidden; }
    .order-details-page .data-table tr {
      display: block;
      float: left;
      width: 100%;
      margin: 40px 0 0;
      border: 1px solid #ddd; }
    .order-details-page .data-table td {
      display: block;
      border: none;
      padding: 10px; }
      .order-details-page .data-table td.product, .order-details-page .data-table td.tracking-number {
        min-width: 0;
        border-bottom: 1px solid #ddd;
        padding: 5px 10px 15px;
        text-align: center; }
  /*** MOBILE NAVIGATION ***/
  .header-menu {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 600px;
    margin: 0 auto 40px; }
  /*.menu-toggle {
		background: #4ab2f1 url('../images/menu-icon.png') right center no-repeat;
		padding: 15px;
		font-size: 15px;
		font-weight: bold;
		color: #fff;
		text-transform: uppercase;
		cursor: pointer;
	}*/
  .top-menu {
    display: none; }
    .top-menu > li {
      position: relative;
      margin: 1px 0;
      background-color: #f6f6f6; }
      .top-menu > li > a {
        display: block;
        min-height: 55px;
        padding: 18px;
        font-size: 15px;
        color: #555; }
    .top-menu .sublist {
      display: none;
      background-color: #fff;
      padding: 5px 0; }
      .top-menu .sublist li {
        position: relative;
        margin: 1px 0 1px 20px; }
        .top-menu .sublist li a {
          display: block;
          padding: 15px 18px;
          font-size: 15px; }
  .sublist-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    border-left: 1px solid #fff;
    background: url("../images/toggle-black.png") center no-repeat;
    padding: 15px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer; }
  .sublist .sublist-toggle {
    height: 49px; }
  .sublist .sublist li {
    background-color: #f6f6f6; }
  .sublist .sublist .sublist li {
    background-color: #fff; }
  .block-category-navigation {
    display: none; }
  .block-account-navigation {
    float: none;
    margin: auto !important; }
  .write-review .review-rating {
    text-align: center; }
    .write-review .review-rating div.name-description {
      width: 100%;
      margin: 0 5px 0 0;
      text-align: center; } }

@media all and (min-width: 481px) {
  /*** GLOBAL ***/
  .master-wrapper-content, .header-menu {
    width: 92.5%; }
  /*** GLOBAL TABLES ***/
  .cart tr, .order-details-page .data-table tr {
    width: 46%;
    margin: 40px 2% 0; }
    .cart tr:nth-child(2n+1), .order-details-page .data-table tr:nth-child(2n+1) {
      clear: both; }
  /*** HEADER ***/
  .header-selectors-wrapper > div {
    display: inline-block;
    width: 30%;
    margin: 10px auto; }
  .search-box input.search-box-text {
    width: 280px; }
  .ui-autocomplete {
    width: 280px !important; }
    .ui-autocomplete img {
      display: inline; }
  /*** FOOTER ***/
  .footer-block {
    width: 85%; }
  .newsletter-email input[type="text"] {
    width: 240px; }
  /*** CATEGORY ***/
  .product-filter {
    display: table-cell;
    vertical-align: top;
    text-align: left; }
    .product-filter.price-range-filter {
      width: 200px; }
    .product-filter .product-spec-group {
      float: left;
      margin: 0 25px 10px 0; }
      .product-filter .product-spec-group.product-spec-color {
        max-width: 190px; }
    .product-filter .group li.item {
      display: block;
      margin: 0; }
    .product-filter .group li.color-item {
      display: inline-block; }
  /*	.item-box {
		width: 49%;
		margin: 0 0.5% 50px;

		&:nth-child(2n+1) {
			clear: both;
		}

		.product-rating-box {
			margin: 0 0 15px;
		}

		.prices {
			min-height: 40px;
		}

		.product-title {
			min-height: 42px;
			margin: 0 0 5px;
		}
	}*/
  /*** PRODUCT PAGE ***/
  .overview-buttons div {
    display: inline-block;
    width: auto;
    margin: 0 1px 2px; }
  /*** WISHLIST ***/
  .wishlist-content .button-2 {
    display: inline-block;
    width: auto;
    min-width: 140px;
    margin: 0 1px 5px; }
  /*** TOPICS ***/
  .enter-password-form input[type="password"] {
    width: 260px; }
  /*** FORUM & PROFILE ***/
  .forums-header {
    background-color: #f9f9f9;
    padding: 30px 20px 20px; }
  .ui-tabs-nav li {
    display: inline-block;
    min-width: 150px;
    margin: 0 5px -1px;
    /*override jQuery UI styles, do not delete doubled properties*/
    margin: 0 5px -1px !important; }
  .private-messages-page .buttons .button-1, .private-messages-page .buttons .button-2 {
    display: inline-block;
    width: auto;
    margin: 1px; }
  .private-message-view-page .buttons .button-1, .private-message-view-page .buttons .button-2 {
    display: inline-block;
    width: auto;
    margin: 1px; }
  .topic-post .post-text {
    float: left;
    width: 90.5%;
    text-align: left; }
  .forum-group .forum-table th.latest-post, .forum-group .forum-table th.topics, .forum-group .forum-table th.posts {
    display: table-cell; }
  .forum-group .forum-table td.latest-post, .forum-group .forum-table td.topics, .forum-group .forum-table td.posts {
    display: table-cell; }
  .topic-group .forum-table th.latest-post, .topic-group .forum-table td.latest-post {
    display: table-cell; }
  .forum-table td.image {
    max-width: 40px; }
    .forum-table td.image div {
      max-width: 100%;
      background-size: contain; }
  /*** ESTIMATE SHIPPING POPUP ***/
  .estimate-shipping-popup {
    padding: 25px; } }

@media all and (min-width: 769px) {
  /**** GLOBAL ***/
  .master-wrapper-content {
    width: 94%; }
  .home-page-polls li {
    min-width: 100px; }
  /**** GLOBAL TABLES ***/
  .cart tr, .order-details-page .data-table tr {
    width: 31.33333%;
    margin: 40px 1% 0; }
    .cart tr:nth-child(2n+1), .order-details-page .data-table tr:nth-child(2n+1) {
      clear: none; }
    .cart tr:nth-child(3n+1), .order-details-page .data-table tr:nth-child(3n+1) {
      clear: both; }
  /*** HEADER ***/
  .header-selectors-wrapper > div {
    width: 20%; }
  /*** FOOTER ***/
  .footer-block {
    display: inline-block;
    width: 25.33333%;
    margin: 0 4%;
    vertical-align: top; }
    .footer-block .title {
      margin: 0 0 15px;
      background: none;
      padding: 0;
      color: #444;
      cursor: auto; }
    .footer-block .list {
      display: block !important;
      /* prevents toggle display:none on resize */
      background: none;
      padding: 0; }
      .footer-block .list li {
        padding: 5px 0; }
      .footer-block .list a {
        display: inline;
        padding: 0; }
  .follow-us {
    width: 98%;
    margin: 25px auto 0; }
  /*** CATEGORY ***/
  .product-selectors {
    text-align: left; }
    .product-selectors .product-viewmode {
      display: inline-block;
      float: right; }
      .product-selectors .product-viewmode span {
        display: none; }
      .product-selectors .product-viewmode a {
        display: inline-block;
        width: 24px;
        height: 32px;
        margin: 0 0 0 12px;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.5; }
        .product-selectors .product-viewmode a.grid {
          background-image: url("../images/view-grid.png"); }
        .product-selectors .product-viewmode a.list {
          background-image: url("../images/view-list.png"); }
        .product-selectors .product-viewmode a.selected {
          opacity: 1; }
  /*.item-box {
		width: 32.33333%;
		margin: 0 0.5% 50px;

		&:nth-child(2n+1) {
			clear: none;
		}

		&:nth-child(3n+1) {
			clear: both;
		}
	}*/
  .product-list .item-box {
    float: none;
    width: auto;
    margin: 0 5px 20px; }
    .product-list .item-box .product-item:after {
      content: "";
      display: block;
      clear: both; }
    .product-list .item-box .picture {
      float: left;
      width: 220px; }
    .product-list .item-box:hover .picture a img {
      opacity: 1; }
    .product-list .item-box .picture:hover a img {
      opacity: 0.85; }
    .product-list .item-box .picture + .details {
      margin: 0 0 0 240px; }
    .product-list .item-box .product-title {
      height: auto;
      padding: 10px 0;
      font-size: 18px; }
    .product-list .item-box .description {
      display: block;
      margin: 0 0 10px;
      line-height: 22px; }
    .product-list .item-box .prices {
      height: auto;
      margin: 0 0 30px; }
    .product-list .item-box .product-box-add-to-cart-button {
      width: auto;
      min-width: 150px;
      padding: 0 20px; }
    .product-list .item-box .add-to-compare-list-button, .product-list .item-box .add-to-wishlist-button {
      width: 42px; }
  /*** PRODUCT PAGE ***/
  .gallery {
    width: 550px; }
  .variant-picture {
    float: left; }
    .variant-picture + .variant-overview {
      width: auto;
      margin: 0 0 0 240px; }
  .variant-overview {
    text-align: left; }
  /*** PRODUCT REVIEWS ***/
  .product-review-item .review-title {
    float: left;
    max-width: 600px; }
  .product-review-item .product-review-box {
    float: right; }
  .write-review .review-rating div {
    display: inline-block;
    margin: 0 0 0 5px;
    cursor: default;
    vertical-align: middle;
    font-size: 14px;
    height: 17px; }
  /*** REGISTRATION, LOGIN, ACCOUNT ***/
  .address-list-page .section, .order-list-page .section, .return-request-list-page .section {
    display: inline-block;
    width: 45%;
    margin: 20px 1%;
    vertical-align: top; }
  .recurring-payments {
    width: 100% !important;
    margin: 20px 0 !important; }
  /*** SHOPPING CART ***/
  .order-progress {
    padding: 20px; }
    .order-progress li {
      margin: 0 10px; }
    .order-progress a {
      min-width: 80px; }
  .cart-options .common-buttons {
    text-align: right; }
  .cart-options .checkout-attributes, .cart-options .selected-checkout-attributes {
    padding: 0 10px; }
  .cart-footer .totals {
    float: right;
    width: 45%;
    margin: 0 2.5%; }
  .cart-footer .terms-of-service {
    text-align: left; }
  .cart-footer .checkout-buttons, .cart-footer .addon-buttons {
    text-align: right; }
  .cart-footer .cart-collaterals {
    float: left;
    width: 45%;
    margin: 0 2.5%; }
    .cart-footer .cart-collaterals div, .cart-footer .cart-collaterals label {
      text-align: left; }
  .cart-footer .estimate-shipping label {
    display: block;
    margin: 0 0 10px; }
  .cart-footer .estimate-shipping .buttons {
    text-align: right; }
  /*** CHECKOUT ***/
  .checkout-page .selected-checkout-attributes {
    float: right;
    text-align: right; }
  .checkout-page .cart-footer .totals {
    max-width: 350px;
    margin: 0; }
  .checkout-page .address-grid {
    overflow: hidden; }
  .checkout-page .address-item {
    display: inline-block;
    *display: inline;
    vertical-align: top;
    zoom: 1;
    width: 48%;
    margin: 0 1% 40px; }
  .shipping-method .method-list li, .payment-method .method-list li {
    display: inline-block;
    width: 25%;
    margin: 20px 2%;
    vertical-align: top; }
  .shipping-method .method-name {
    background-color: #f6f6f6;
    padding: 10px; }
  .payment-method .payment-logo {
    display: block;
    background-color: #f6f6f6;
    padding: 10px; }
  .payment-method .payment-details {
    display: block;
    width: auto;
    min-width: 0;
    margin: 10px 0 0;
    text-align: center; }
  .payment-info .info {
    padding: 30px 75px; }
  .order-review-data, .order-details-area, .shipment-details-area {
    overflow: hidden; }
  .order-review-data > div, .order-details-area > div, .shipment-details-area > div {
    float: left;
    width: 48%;
    margin: 0 1% 40px; }
  /*** ORDER DETAILS & SHIPPING DETAILS ***/
  .order-details-page .section.options {
    text-align: right; }
  .order-details-page .selected-checkout-attributes {
    padding: 0 10px; }
  .order-details-page .tax-shipping-info {
    text-align: right; }
  .order-details-page .totals {
    float: right;
    clear: both; }
  .shipment-details-page .tracking-number .tracking-url {
    color: #4ab2f1; }
  /*** BLOG & NEWS ***/
  .blog-posts .tags {
    float: right;
    width: 80%;
    text-align: right; }
  .blog-posts .buttons {
    float: left;
    width: 20%;
    text-align: left; }
  .new-comment {
    text-align: center; }
    .new-comment .buttons {
      text-align: center; }
  .comment-list .comment {
    display: table;
    width: 100%;
    margin: 0; }
    .comment-list .comment:last-child {
      border-bottom: 1px solid #ddd; }
  .comment-info {
    display: table-cell;
    width: 15%;
    margin: 0;
    vertical-align: top; }
    .comment-info .username {
      min-height: 40px;
      margin: 0;
      border: none;
      text-align: center; }
    .comment-info .avatar {
      border: none; }
      .comment-info .avatar img {
        max-width: 80%;
        max-height: 80%; }
  .comment-content {
    display: table-cell;
    width: 85%;
    border-left: 1px solid #ddd;
    vertical-align: top;
    text-align: left; }
  .comment-time {
    min-height: 40px;
    margin: 0;
    background-color: #f6f6f6;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: normal; }
  .comment-title {
    margin: 0 0 -20px;
    padding: 20px; }
  .comment-body {
    padding: 20px; }
  /*** FORUM & PROFILE ***/
  .forum-actions, .topic-actions {
    overflow: hidden; }
  .forum-actions .actions, .topic-actions .actions {
    float: left; }
  .forum-actions .pager, .topic-actions .pager {
    float: right;
    max-width: 450px; }
  .forum-actions .pager li, .topic-actions .pager li {
    margin: 2px 4px; }
  .forum-actions .pager.upper, .topic-actions.lower .actions {
    display: block; }
  .topic-posts {
    margin: 0 0 30px; }
  .topic-post {
    display: table;
    width: 100%;
    margin: 0; }
    .topic-post .post-info {
      display: table-cell;
      width: 15%;
      margin: 0;
      vertical-align: top;
      text-align: left; }
    .topic-post .user-info {
      width: auto; }
    .topic-post .username {
      min-height: 40px;
      margin: 0;
      border: none;
      text-align: center; }
    .topic-post .avatar {
      margin: auto;
      border: none; }
      .topic-post .avatar img {
        max-width: 80%;
        max-height: 80%; }
    .topic-post .user-stats li {
      margin: 0; }
    .topic-post .send-pm {
      margin: 0 0 20px; }
    .topic-post .pm-button {
      padding: 8px 16px;
      font-size: 13px; }
  .profile-info-box .pm-button {
    padding: 8px 16px;
    font-size: 13px; }
  .topic-post .post-content {
    display: table-cell;
    width: 85%;
    border-left: 1px solid #ddd;
    vertical-align: top;
    text-align: left; }
  .topic-post .post-head {
    min-height: 40px;
    overflow: hidden;
    background-color: #f6f6f6; }
  .topic-post .post-time {
    float: left;
    margin: 0;
    font-size: 14px;
    font-weight: normal; }
  .topic-post .post-actions {
    float: right;
    margin: 0; }
    .topic-post .post-actions a {
      margin: 0;
      line-height: 20px; }
    .topic-post .post-actions .quote-post a {
      min-width: 70px; }
    .topic-post .post-actions a.post-link-button {
      margin: 0 0 0 10px;
      border-left: 1px solid #ddd;
      text-align: center; }
  .topic-post .post-text {
    padding: 20px 5px; }
  .topic-post .post-vote {
    padding: 20px 0 20px 15px; }
  .forum-table th.replies, .forum-table th.views, .forum-table th.votes {
    display: table-cell; }
  .forum-table td.replies, .forum-table td.views, .forum-table td.votes {
    display: table-cell; }
  .forum-table td.image {
    max-width: none; }
    .forum-table td.image div {
      max-width: none;
      background-size: initial; }
  .ui-tabs-nav {
    text-align: left; }
    .ui-tabs-nav li {
      margin: 0 10px -1px 0;
      /*override jQuery UI styles, do not delete doubled properties*/
      margin: 0 10px -1px 0 !important; }
  .profile-info-box .avatar {
    float: left;
    margin: 0 15px 15px 0; }
  .profile-info-box .profile-stats {
    float: left;
    text-align: left; }
  .profile-info-box .title {
    text-align: left; }
  .profile-info-box .send-pm {
    clear: both;
    text-align: left; } }

@media all and (min-width: 1001px) {
  /*** GLOBAL STYLES ***/
  .master-wrapper-content {
    width: 980px;
    margin: auto; }
  .center-2 {
    float: right;
    width: 73%; }
  .side-2 {
    float: left;
    width: 25%; }
  .page {
    text-align: left; }
  .inputs {
    text-align: left; }
    .inputs label {
      display: inline-block;
      width: 265px;
      margin: 0 10px 0 0;
      text-align: right; }
    .inputs input[type="text"], .inputs input[type="email"], .inputs input[type="tel"], .inputs input[type="password"] {
      min-height: 40px; }
    .inputs select {
      min-height: 40px; }
    .inputs .option-list li {
      margin: 0 10px 0 0; }
  .center-1 .buttons {
    text-align: center; }
  .center-2 .inputs label {
    width: 136px; }
  .inputs.accept-consent label {
    width: auto; }
  .page-title a + h1 {
    float: left; }
  .link-rss {
    display: block;
    float: right;
    margin: 6px 0 0; }
  /*** GLOBAL TABLES ***/
  .cart tr, .order-details-page .data-table tr {
    width: auto;
    margin: 0; }
  .cart label, .order-details-page .data-table label {
    display: none; }
  /*** HEADER ***/
  .header {
    width: 980px;
    margin: auto; }
  .header-upper:after {
    content: "";
    display: block;
    clear: both; }
  .header-selectors-wrapper {
    float: left;
    border: none;
    padding: 0; }
    .header-selectors-wrapper > div {
      width: auto;
      min-width: 100px;
      margin: 0 12px 0 0;
      line-height: 43px; }
    .header-selectors-wrapper select {
      height: 25px;
      padding: 4px;
      font-size: 12px; }
  .language-list {
    text-align: left; }
  .header-links-wrapper {
    float: right;
    padding: 0; }
  .header-links li {
    margin: 0 16px; }
  .header-links a, .header-links span {
    line-height: 45px;
    text-transform: none; }
  #topcartlink {
    display: inline-block;
    width: auto;
    margin: 0;
    padding: 0 18px; }
  .flyout-cart {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
    width: 300px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
    background-color: #fff; }
    .flyout-cart.active {
      display: block; }
  .mini-shopping-cart {
    padding: 12px;
    text-align: left;
    font-size: 12px; }
    .mini-shopping-cart .count {
      padding: 5px 0 15px;
      color: #444; }
      .mini-shopping-cart .count a {
        margin: 0 2px;
        font-weight: bold;
        color: #444; }
    .mini-shopping-cart .items {
      border-top: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
      margin: 0 0 20px; }
    .mini-shopping-cart .item {
      overflow: hidden;
      padding: 10px 0; }
    .mini-shopping-cart .picture {
      float: left;
      width: 70px;
      text-align: center; }
      .mini-shopping-cart .picture a {
        display: block;
        position: relative;
        overflow: hidden; }
        .mini-shopping-cart .picture a:before {
          content: "";
          display: block;
          padding-top: 100%; }
      .mini-shopping-cart .picture img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        max-width: 100%; }
      .mini-shopping-cart .picture + .product {
        margin: 0 0 0 80px; }
    .mini-shopping-cart .name {
      margin: 0 0 10px;
      font-size: 14px; }
      .mini-shopping-cart .name a {
        color: #4ab2f1; }
        .mini-shopping-cart .name a:hover {
          color: #248ece; }
    .mini-shopping-cart .attributes {
      margin: 5px 0;
      color: #444; }
    .mini-shopping-cart .totals {
      margin: 0 0 12px;
      font-size: 14px; }
      .mini-shopping-cart .totals strong {
        font-size: 16px;
        color: #444; }
    .mini-shopping-cart .buttons {
      margin: 0 0 5px; }
    .mini-shopping-cart input[type="button"] {
      display: inline-block;
      border: none;
      background-color: #4ab2f1;
      padding: 10px 20px;
      font-size: 12px;
      color: #fff;
      text-transform: uppercase; }
      .mini-shopping-cart input[type="button"]:hover {
        background-color: #248ece; }
  .header-lower {
    display: table;
    width: 100%; }
  .header-logo {
    display: table-cell;
    text-align: left;
    vertical-align: middle;
    font-size: 0; }
  .search-box {
    display: table-cell;
    text-align: right;
    vertical-align: middle; }
    .search-box input.search-box-text, .search-box .search-box-button {
      height: 40px; }
  /*** NAVIGATION ***/
  .header-menu {
    position: relative;
    z-index: 5;
    width: 980px;
    margin: 0 auto 30px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 25px 0;
    text-align: center; }
  .menu-toggle, .sublist-toggle {
    display: none; }
  .header-menu > ul {
    display: block !important;
    /* prevents toggle display:none on resize */
    font-size: 0; }
    .header-menu > ul.mobile {
      display: none !important; }
    .header-menu > ul > li {
      display: inline-block;
      border-left: 1px solid #ddd;
      padding: 0 15px;
      vertical-align: middle; }
      .header-menu > ul > li:first-child {
        border-left: none; }
      .header-menu > ul > li > a {
        display: block;
        padding: 5px 10px;
        line-height: 20px;
        font-size: 17px;
        /*reset zeroing*/
        color: #555;
        cursor: pointer; }
        .header-menu > ul > li > a:hover {
          color: #4ab2f1; }
  .header-menu .sublist {
    display: none;
    position: absolute;
    width: 200px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    padding: 10px 0;
    text-align: left; }
    .header-menu .sublist li {
      position: relative; }
      .header-menu .sublist li a {
        display: block;
        position: relative;
        padding: 10px 20px 10px 30px;
        font-size: 14px;
        color: #444; }
        .header-menu .sublist li a:before {
          content: "";
          position: absolute;
          top: 17px;
          left: 15px;
          width: 5px;
          height: 5px;
          background-color: #ddd; }
      .header-menu .sublist li:hover > a {
        background-color: #f6f6f6; }
  .header-menu ul li:hover > .sublist {
    display: block; }
  .header-menu .sublist .sublist {
    top: -10px;
    left: 100% !important; }
  /*** FOOTER ***/
  .footer-upper {
    width: 980px;
    padding: 35px 10px; }
    .footer-upper:after {
      content: "";
      display: block;
      clear: both; }
  .footer-block {
    float: left;
    width: 220px;
    margin: 0; }
    .footer-block .list {
      margin: 0; }
  .follow-us {
    float: right;
    width: 300px !important;
    margin: 0;
    text-align: left; }
    .follow-us .social li {
      margin: 0 10px 0 0; }
  .newsletter-email {
    display: block; }
    .newsletter-email input[type="text"] {
      width: 200px; }
    .newsletter-email .newsletter-subscribe-button {
      width: 100px;
      padding: 0 5px; }
  .newsletter-validation .field-validation-valid {
    text-align: left; }
  .footer-lower {
    position: relative;
    width: 980px;
    padding: 25px 5px; }
    .footer-lower:after {
      content: "";
      display: block;
      clear: both; }
  .footer-info {
    float: right;
    line-height: 32px; }
  .footer-powered-by {
    float: left;
    margin: 0;
    line-height: 32px; }
  .theme-selector {
    float: left;
    margin: 0 0 0 15px; }
  /*** COLUMN ***/
  .block {
    float: none;
    width: auto;
    margin: 0 0 20px; }
    .block .title {
      margin: 0;
      border-bottom: 1px solid #ddd;
      background: none;
      cursor: auto; }
      .block .title strong {
        font-weight: bold; }
    .block .listbox {
      display: block;
      border-bottom: none; }
    .block a.product-picture {
      display: inline-block;
      position: relative;
      width: 30%;
      margin: 0 0 0 -15px;
      vertical-align: middle; }
    .block a.product-name {
      vertical-align: middle; }
    .block a.product-picture + a.product-name {
      width: 70%; }
      .block a.product-picture + a.product-name:before {
        display: none; }
  /*** CATEGORY ***/
  .breadcrumb {
    margin: 0 0 20px; }
  .item-box .buttons {
    text-align: left; }
  /*	.home-page .product-grid .item-box, .product-details-page .product-grid .item-box, .shopping-cart-page .product-grid .item-box {
		width: 24%;
		margin: 0 0.5% 50px;
	}
*/
  /*.home-page .product-grid .item-box:nth-child(3n+1), .product-details-page .product-grid .item-box:nth-child(3n+1), .shopping-cart-page .product-grid .item-box:nth-child(3n+1) {
		clear: none;
	}

	.home-page .product-grid .item-box:nth-child(4n+1), .product-details-page .product-grid .item-box:nth-child(4n+1), .shopping-cart-page .product-grid .item-box:nth-child(4n+1) {
		clear: both;
	}*/
  /*** PRODUCT PAGE ***/
  .gallery {
    float: left;
    width: 46%; }
    .gallery .picture {
      width: auto; }
  .overview {
    float: right;
    width: 52%; }
  .rental-attributes {
    overflow: hidden; }
    .rental-attributes .attribute-item {
      float: left;
      margin: 0 20px 0 0; }
    .rental-attributes .datepicker {
      width: 160px;
      text-align: left; }
  .attribute-squares li {
    margin: 0 10px 10px 0; }
  .product-details-page .title {
    text-align: left; }
  /*** PRODUCT REVIEWS ***/
  .product-review-item .review-title {
    max-width: 850px; }
  .write-review .review-rating div.name-description {
    width: 265px;
    margin: 0 5px 0 0;
    text-align: right; }
  .product-review-item .review-text {
    display: table;
    width: 100%;
    table-layout: fixed; }
  .product-review-item .avatar {
    display: table-cell;
    vertical-align: top;
    width: 120px; }
    .product-review-item .avatar img {
      max-width: 100%; }
  .product-review-item .text-body {
    display: table-cell;
    vertical-align: top; }
  .product-review-item .avatar + .text-body {
    padding: 0 0 0 20px; }
  /*** WISHLIST & COMPARE LIST ***/
  .compare-products-page .page-title {
    margin: 0 0 -1px; }
  .compare-products-page .clear-list {
    position: absolute;
    top: 7px;
    right: 0; }
  .compare-products-table .full-description td {
    display: table-cell; }
    .compare-products-table .full-description td p {
      margin-top: 0; }
  /*** TOPICS ***/
  .center-1 .topic-block-title {
    text-align: center; }
  .topic-page p {
    text-align: justify; }
  /*** REGISTRATION, LOGIN, ACCOUNT ***/
  .gender span {
    margin: 0 10px 0 0; }
    .gender span > * {
      margin: 0 5px 0 0; }
  .date-of-birth select + select {
    margin: 0 0 0 11px; }
  #check-availability-button {
    display: block;
    margin: 10px auto; }
  .login-page .customer-blocks {
    overflow: hidden; }
  .login-page .new-wrapper {
    float: right;
    width: 49%;
    margin: 0; }
    .login-page .new-wrapper .text {
      min-height: 200px; }
  .login-page .returning-wrapper {
    float: left;
    width: 49%; }
    .login-page .returning-wrapper .form-fields {
      min-height: 200px;
      padding: 30px 0 0; }
    .login-page .returning-wrapper .inputs label {
      width: 110px; }
    .login-page .returning-wrapper input[type="text"], .login-page .returning-wrapper input[type="email"], .login-page .returning-wrapper input[type="password"] {
      width: 300px; }
  .address-list-page .section, .order-list-page .section, .return-request-list-page .section {
    display: block;
    width: auto;
    margin: 0 0 40px; }
  .address-list-page .buttons, .order-list-page .buttons {
    position: absolute;
    top: 5px;
    right: 10px; }
  .avatar-page .message-error, .avatar-page .buttons {
    text-align: left; }
  .registration-page .vat-note {
    margin-left: 275px; }
  .customer-info-page .vat-note, .customer-info-page .email-to-revalidate-note {
    margin-left: 150px; }
  .customer-info-page .vat-status {
    display: inline-block; }
  /*** SHOPPING CART ***/
  .shopping-cart-page .cart-options {
    overflow: hidden; }
  .shopping-cart-page .checkout-attributes {
    float: left;
    max-width: 565px;
    margin: -30px 0 15px; }
    .shopping-cart-page .checkout-attributes li {
      margin: 5px 10px 5px 0; }
  .shopping-cart-page .selected-checkout-attributes {
    float: right;
    max-width: 395px;
    margin: 15px 0; }
  /*** CHECKOUT ***/
  .order-progress {
    margin: -30px 0 50px; }
  .checkout-page .address-item {
    width: 31.33333%; }
  .checkout-page .terms-of-service {
    text-align: center; }
  .payment-info .info {
    padding: 30px 15px; }
    .payment-info .info td:first-child {
      width: 265px !important;
      margin: 0 10px 0 0;
      text-align: right; }
    .payment-info .info td:only-child {
      width: 100% !important; }
  .order-review-data .title, .order-details-area .title, .shipment-details-area .title, .opc .order-review-data ul {
    text-align: left; }
  /*** SEARCH & SITEMAP ***/
  .advanced-search .price-range {
    margin-left: 114px; }
  /*** BLOG & NEWS ***/
  .comment-list {
    margin: 0 0 50px; }
  .news-list-homepage .news-items {
    overflow: hidden;
    text-align: left; }
  .news-list-homepage .news-item {
    float: left;
    width: 31.33333%;
    margin: 0 1% 30px; }
    .news-list-homepage .news-item:nth-child(3n+1) {
      clear: both; }
    .news-list-homepage .news-item:only-child {
      float: none;
      width: auto;
      margin: 0 0 30px; }
  .news-list-homepage .news-head {
    text-align: center; }
  .news-list-homepage .news-body {
    text-align: justify; }
  /*** FORUM & PROFILE ***/
  .forum-breadcrumb {
    margin: -30px 0 30px; }
  .current-time {
    float: right; }
  .forum-search-box {
    float: left; }
    .forum-search-box .advanced {
      text-align: left; }
      .forum-search-box .advanced a {
        line-height: normal; }
  .forums-table-section td {
    min-width: 150px; }
    .forums-table-section td:first-child {
      min-width: 90px; }
  .forums-table-section .view-all {
    text-align: right; }
  .topic-actions .pager.upper {
    display: block;
    max-width: 400px; }
  .forum-table .forum-details, .forum-table .topic-details {
    min-width: 225px; }
  .forum-table td {
    padding: 20px; }
  .forum-edit-page textarea {
    width: 600px;
    height: 250px; }
  .private-message-send-page textarea {
    width: 600px;
    height: 250px; }
  .private-message-send-page .bb-code-editor-wrapper {
    display: inline-block;
    width: 400px;
    margin: 10px 0;
    vertical-align: middle; } }

@media all and (min-width: 1367px) {
  /*** GLOBAL STYLES ***/
  .master-wrapper-content {
    width: 1200px; }
  .inputs label {
    width: 375px; }
  .center-2 .inputs label {
    width: 213px; }
  .inputs.accept-consent label {
    width: auto; }
  /*** HEADER ***/
  .header {
    width: 1200px; }
  /*** NAVIGATION ***/
  .header-menu {
    width: 1200px; }
    .header-menu > ul > li {
      padding: 0 20px; }
      .header-menu > ul > li > a, .header-menu > ul > li > span {
        font-size: 18px; }
  /*** FOOTER ***/
  .footer-upper {
    width: 1200px;
    padding: 35px 30px; }
  .footer-block {
    width: 280px; }
  .footer-lower {
    width: 1200px;
    padding: 25px 20px; }
  /*** PRODUCT REVIEWS ***/
  .product-review-item .review-title {
    max-width: 1050px; }
  .write-review .review-rating div.name-description {
    margin: 0 5px 0 0;
    min-width: 375px; }
  /*** REGISTRATION, LOGIN, ACCOUNT ***/
  .login-page .returning-wrapper input[type="text"], .login-page .returning-wrapper input[type="email"], .login-page .returning-wrapper input[type="password"] {
    width: 360px; }
  .registration-page .vat-note {
    margin-left: 385px; }
  .customer-info-page .vat-note, .customer-info-page .email-to-revalidate-note {
    margin-left: 225px; }
  /*** SHOPPING CART ***/
  .cart-footer .totals {
    width: 395px;
    margin: 0; }
  .cart-footer .cart-collaterals {
    width: 760px;
    margin: 0; }
    .cart-footer .cart-collaterals .deals {
      float: left;
      width: 360px; }
    .cart-footer .cart-collaterals .shipping {
      float: right;
      width: 360px; }
  .cart-footer .estimate-shipping .inputs label {
    display: inline-block;
    width: 35%; }
  .cart-footer .estimate-shipping .inputs input, .cart-footer .estimate-shipping .inputs select {
    width: 65%; }
  /*** CHECKOUT ***/
  .shipping-method .method-list li, .payment-method .method-list li {
    margin: 20px 1%; }
  .payment-info .info td:first-child {
    width: 375px !important; }
  .payment-info .info td:only-child {
    width: 100% !important; }
  /*** FORUM & PROFILE ***/
  .forum-actions .pager, .topic-actions .pager {
    max-width: 600px !important; }
  .topic-post .post-text {
    width: 930px;
    max-width: 100%; } }

.header, .header-menu, .master-wrapper-content, .footer-upper, .footer-lower {
  width: 100% !important; }

.container {
  width: 94%;
  margin: 0 auto; }
  @media (min-width: 1500px) {
    .container {
      width: 90%; } }
  @media (min-width: 2000px) {
    .container {
      width: 1900px; } }

* {
  box-sizing: border-box; }

body {
  font-size: 62.5%; }

p {
  font-size: .9rem; }

a:hover {
    color: rgb(0,71,48);
}

/* Ace Responsive Menu
----------------------------------------*/
.ace-responsive-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  display: flex;
  justify-content: center; }
  .ace-responsive-menu li {
    list-style: none; }
    .ace-responsive-menu li ul {
      display: none; }
    .ace-responsive-menu li a {
        color: rgb(0,71,48);
        text-transform: uppercase;
    }
      .ace-responsive-menu li a i {
        padding-right: 5px;
        color: #FF5737; }
    .ace-responsive-menu li ul.sub-menu li a i {
      padding-right: 10px; }
    .ace-responsive-menu li .menu-active {
      position: relative; }
    .ace-responsive-menu li ul.sub-menu {
        background: rgb(0,71,48);
        border-radius: 6px;
    }
      .ace-responsive-menu li ul.sub-menu li > a > .arrow:before {
        content: "\f105" !important; }
      .ace-responsive-menu li ul.sub-menu li a {
        display: block;
        margin: 0px 0px;
        padding: 12px 20px 12px 15px;
        text-decoration: none;
        font-size: 13px;
        font-weight: normal;
        background: none; }
      .ace-responsive-menu li ul.sub-menu > li {
        width: 100%; }
        .ace-responsive-menu li ul.sub-menu > li ul {
            background: rgb(0,71,48);
            border-radius: 6px;
        }
  .ace-responsive-menu > li {
    display: block;
    margin: 0;
    padding: 0;
    border: 0px;
    position: relative;
    min-width: 180px; }
    .ace-responsive-menu > li.onpage {
        border-bottom: 2px solid rgb(0,71,48);
    }
    .ace-responsive-menu > li > a {
        display: block;
        position: relative;
        margin: 0;
        border: 0px;
        padding: 18px 20px 18px 12px;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 300;
        color: rgb(0,71,48);
        text-align: center;
    }
  .ace-responsive-menu > li > a i {
    font-size: 16px;
    text-shadow: none;
    color: #FF5737; }
  .ace-responsive-menu > li > a > .arrow:before {
    margin-left: 15px;
    display: inline;
    font-size: 16px;
    font-family: FontAwesome;
    height: auto;
    content: " \276F";
    font-weight: 300;
    text-shadow: none;
    width: 10px;
    display: inline-block;
    transform: rotate(90deg); }
  .ace-responsive-menu > li > ul.sub-menu {
    display: none;
    list-style: none;
    clear: both;
    margin: 0;
    position: absolute;
    z-index: 999;
    width: 100%; }
    .ace-responsive-menu > li > ul.sub-menu:before {
        content: '';
        display: block;
        position: absolute;
        top: -10px;
        left: 50%;
        margin-left: -10px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid rgb(0,71,48);
    }
  .ace-responsive-menu > li > ul.sub-menu > li {
    position: relative;
    text-align: center; }
    .ace-responsive-menu > li > ul.sub-menu > li a {
      color: #fff; }
    .ace-responsive-menu > li > ul.sub-menu > li ul.sub-menu {
      position: absolute;
      left: 100%;
      top: 0px;
      display: none;
      list-style: none; }
        .ace-responsive-menu > li > ul.sub-menu > li ul.sub-menu:before {
            content: '';
            display: block;
            position: absolute;
            left: -5px;
            top: 20px;
            margin-top: -5px;
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
            border-right: 5px solid rgb(0,71,48);
        }
      .ace-responsive-menu > li > ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
        position: absolute;
        left: 100%;
        top: 0px;
        display: none;
        list-style: none; }
  .ace-responsive-menu > li > ul.sub-menu li > a > .arrow:before {
    float: right;
    margin-top: 1px;
    margin-right: 0px;
    display: inline;
    font-size: 16px;
    font-family: FontAwesome;
    height: auto;
    content: "\f104";
    font-weight: 300;
    text-shadow: none; }

/* Menu Toggle Btn
----------------------------------------*/
.menu-toggle {
  display: none;
  width: 100%;
  background: #fff;
  justify-content: flex-end; }
  .menu-toggle h3 {
    display: none; }
  .menu-toggle .icon-bar {
    display: block !important;
    width: 18px;
    height: 2px;
    background-color: #fff !important;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    margin: 3px; }
    .menu-toggle .icon-bar:hover {
      background-color: #fff !important; }
    .menu-toggle #menu-btn {
        background: rgb(0,71,48);
        border: 1px solid rgb(0,71,48);
        padding: 8px;
        border-radius: 6px;
        cursor: pointer;
        margin: 10px;
    }

.hide-menu {
  display: none; }

/* Accordion Menu Styles
----------------------------------------*/
ul[data-menu-style="accordion"] {
  width: 250px; }
  ul[data-menu-style="accordion"] > li {
    display: block;
    margin: 0;
    padding: 0;
    border: 0px;
    float: none !important; }
  ul[data-menu-style="accordion"] li ul.sub-menu > li {
    width: 100%; }
  ul[data-menu-style="accordion"] li.menu-active > a > .arrow:before {
    content: "\f107" !important; }
    ul[data-menu-style="accordion"] li a:hover {
        background: rgb(0,71,48) !important;
    }
  ul[data-menu-style="accordion"] > li > a > .arrow:before {
    float: right;
    content: "\f105"; }
  ul[data-menu-style="accordion"] > li > ul.sub-menu {
    position: static; }
  ul[data-menu-style="accordion"] > li > a i {
    padding-right: 10px;
    color: #FF5737; }
  ul[data-menu-style="accordion"] > li > ul.sub-menu > li ul.sub-menu {
    position: static; }
    ul[data-menu-style="accordion"] > li > ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
      position: static; }
  ul[data-menu-style="accordion"] ul.sub-menu li.menu-active > a > .arrow:before {
    content: "\f107" !important; }

ul[data-menu-style="vertical"] {
  width: 200px; }
  ul[data-menu-style="vertical"] > li {
    float: none; }
    ul[data-menu-style="vertical"] > li:first-child {
      border-top: 2px solid #FD5025; }
  ul[data-menu-style="vertical"] li ul.sub-menu > li {
    width: 100%; }
  ul[data-menu-style="vertical"] li a:hover {
    background: #272727 !important; }
  ul[data-menu-style="vertical"] > li > a > .arrow:before {
    float: right;
    content: "\f105"; }
  ul[data-menu-style="vertical"] > li.menu-active {
    position: relative; }
  ul[data-menu-style="vertical"] > li > ul.sub-menu {
    position: absolute;
    left: 200px;
    top: 0px;
    width: 200px; }
  ul[data-menu-style="vertical"] > li > a i {
    padding-right: 10px;
    color: #FF5737; }
  ul[data-menu-style="vertical"] > li > ul.sub-menu > li ul.sub-menu {
    position: absolute;
    width: 200px;
    left: 200px; }
    ul[data-menu-style="vertical"] > li > ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
      position: absolute;
      width: 200px;
      left: 200px; }

/* Responsive Menu Styles
----------------------------------------*/
@media screen and (max-width: 768px) {
  ul[data-menu-style="vertical"], ul[data-menu-style="accordion"], ul[data-menu-style="vertical"] li ul.sub-menu {
    width: 100% !important; }
  .ace-responsive-menu {
    float: left;
    width: 100%; }
    .ace-responsive-menu > li {
      float: none; }
    .ace-responsive-menu li a:hover {
        background: rgb(0,71,48) !important;
        color: #fff;
    }
    .ace-responsive-menu > li > a i {
      padding-right: 10px;
      color: #FF5737; }
    .ace-responsive-menu > li > a > .arrow:before {
      float: right;
      content: " \276F";
      font-weight: 300;
      text-shadow: none;
      width: 10px;
      display: inline-block;
      transform: rotate(90deg); }
  li.menu-active > a > .arrow:before {
    content: " \276F";
    font-weight: 300;
    text-shadow: none;
    width: 10px;
    display: inline-block;
    transform: rotate(90deg); }
  .ace-responsive-menu li ul.sub-menu > li {
    width: 100%; }
  .ace-responsive-menu li ul.sub-menu li ul.sub-menu li a {
    padding-left: 30px; }
  .ace-responsive-menu li ul.sub-menu li ul.sub-menu li ul.sub-menu li a {
    padding-left: 50px; }
  .ace-responsive-menu li ul.sub-menu li.menu-active > a > .arrow:before {
    content: " \276F";
    font-weight: 300;
    text-shadow: none;
    width: 10px;
    display: inline-block;
    transform: rotate(90deg); }
  .ace-responsive-menu > li > ul.sub-menu {
    position: static; }
    .ace-responsive-menu > li > ul.sub-menu > li ul.sub-menu {
      position: static; }
      .ace-responsive-menu > li > ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
        position: static; } }

#formCadastro .hideFields input, #formEndereco .hideFields input {
  display: none; }

#formCadastro .hideFields .required, #formEndereco .hideFields .required {
  display: none; }

.validation-summary-errors {
  display: none; }

#camposEndereco {
  display: none; }
  #camposEndereco.active {
    display: block; }

#new-shipping-address {
  display: none; }
  #new-shipping-address.active {
    display: block; }

.qnty-input {
  display: flex;
  justify-content: flex-start; }
  .qnty-input button {
    padding: 0 10px;
    border: none;
    border: 1px solid #ddd; }
  .qnty-input input {
    width: 61px; }

.priceControl {
  opacity: 0; }
  .priceControl.loaded {
    opacity: 1;
    border: none; }
  .priceControl.cliente [data-price] {
    text-decoration: line-through;
    font-size: 14px;
    color: #999; }

.precoCliente span {
    color: rgb(0,71,48);
    font-size: 20px;
    font-weight: bold;
}

.product-item .priceControl.cliente [data-price] {
  text-decoration: line-through;
  font-size: .8rem;
  color: #999;
  font-weight: normal; }

.product-item .precoCliente span {
    color: rgb(0,71,48) !important;
    font-size: .9rem !important;
    font-weight: bold !important;
}
  .product-item .precoCliente span span {
    font-size: .8rem !important;
    font-weight: normal !important;
    display: block; }

header.header {
  background: #fff;
  z-index: 10; }
  header.header .header-upper {
    background-color: #EEEEEE;
    border: none; }
    header.header .header-upper .header-links-wrapper {
      display: flex;
      justify-content: space-between;
      align-content: center;
      align-items: center;
      float: unset;
      padding: 0;
      position: relative; }
      header.header .header-upper .header-links-wrapper .header-links ul {
        display: flex;
        justify-content: flex-start;
        align-content: center;
        align-items: center; }
        header.header .header-upper .header-links-wrapper .header-links ul li {
          margin: 0 15px 0 0; }
          header.header .header-upper .header-links-wrapper .header-links ul li a {
            font-size: .9rem;
            display: flex;
            justify-content: flex-start;
            align-content: center;
            align-items: center; }
            header.header .header-upper .header-links-wrapper .header-links ul li a.ico-account {
              font-weight: bold; }
            header.header .header-upper .header-links-wrapper .header-links ul li a i {
              font-size: 1rem;
              margin: 0 5px 0 0; }
            header.header .header-upper .header-links-wrapper .header-links ul li a:hover {
                color: rgb(0,71,48);
            }
        @media all and (max-width: 600px) {
          header.header .header-upper .header-links-wrapper .header-links ul li {
            display: none; }
            header.header .header-upper .header-links-wrapper .header-links ul li:nth-child(1) {
              display: block; } }
      header.header .header-upper .header-links-wrapper #topcartlink {
        height: 44px;
        display: flex;
        justify-content: flex-start;
        align-content: center;
        align-items: center;
        width: unset;
        max-width: unset;
        margin: unset;
        padding: unset;
        background: unset;
        padding: 10px;
        border-radius: 6px; }
        header.header .header-upper .header-links-wrapper #topcartlink a {
            background: unset;
            padding: 0;
            font-size: .9rem;
            display: flex;
            justify-content: flex-start;
            align-content: center;
            align-items: center;
            color: rgb(0,71,48);
        }
          header.header .header-upper .header-links-wrapper #topcartlink a i {
            font-size: 1rem;
            margin: 0 5px 0 0; }
          header.header .header-upper .header-links-wrapper #topcartlink a .cart-qty {
            margin-left: 5px; }
      header.header .header-upper .header-links-wrapper .boxTopCart {
        position: absolute;
        right: 0;
        top: 71px; }
        @media all and (max-width: 580px) {
          header.header .header-upper .header-links-wrapper .boxTopCart {
            top: 56px; } }
      header.header .header-upper .header-links-wrapper .networks {
        display: flex; }
        header.header .header-upper .header-links-wrapper .networks li a {
          font-size: 1.2rem;
          padding: 10px 10px; }
header.header .header-lower {
    background: rgb(0,71,48);
    padding: 5px 0;
    min-height: 90px;
}
    @media all and (max-width: 580px) {
      header.header .header-lower {
        min-height: 0px; } }
    header.header .header-lower .container {
      display: flex;
      justify-content: space-between;
      align-content: center;
      align-items: center;
      float: unset;
      min-height: 90px; }
      @media (min-width: 581px) and (max-width: 1000px) {
        header.header .header-lower .container .search-box input.search-box-text {
          width: 145px !important; } }
      @media all and (max-width: 580px) {
        header.header .header-lower .container {
          min-height: 0px; }
          header.header .header-lower .container .search-box {
            width: 50%;
            margin-top: 10px;
            position: absolute;
            top: 59px;
            left: 10px; }
            header.header .header-lower .container .search-box form {
              display: flex; } }
    header.header .header-lower .header-logo {
      margin: 0; }
      header.header .header-lower .header-logo a {
        padding: 10px 0; }
        header.header .header-lower .header-logo a img {
          max-height: 60px; }
          @media all and (max-width: 1000px) {
            header.header .header-lower .header-logo a img {
              max-height: unset;
              max-width: 165px; } }
    header.header .header-lower .search-box input {
      background: none;
      color: #fff;
      border: none;
      border-bottom: 1px solid #fff;
      height: 44px !important; }
      header.header .header-lower .search-box input::-webkit-input-placeholder {
        /* Edge */
        color: #fff; }
      header.header .header-lower .search-box input:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #fff; }
      header.header .header-lower .search-box input::placeholder {
        color: #fff; }
      @media all and (max-width: 580px) {
        header.header .header-lower .search-box input {
            color: rgb(0,71,48);
        }
            header.header .header-lower .search-box input::-webkit-input-placeholder {
                /* Edge */
                color: rgb(0,71,48);
            }
            header.header .header-lower .search-box input:-ms-input-placeholder {
                /* Internet Explorer 10-11 */
                color: rgb(0,71,48);
            }
            header.header .header-lower .search-box input::placeholder {
                color: rgb(0,71,48);
            } }
header.header .header-lower .search-box button {
    min-width: 48px;
    font-size: 1.2rem;
    padding: 0;
    background: #fff;
    color: rgb(0,71,48);
    border-radius: 6px;
    margin-left: 5px;
    height: 44px !important;
}
    header.header .header-lower .cartSpace {
      min-width: 80px;
      display: block; }

nav.header-menu {
  background: #fff;
  padding: 0;
  border: unset;
  -webkit-box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.09);
  z-index: inherit;
  margin: 0;
  max-width: unset; }
    nav.header-menu .menu-toggle {
        background: #fff;
        color: rgb(0,71,48);
        justify-content: flex-end;
    }
    @media (max-width: 1000px) {
      nav.header-menu .menu-toggle {
        display: flex; } }
    nav.header-menu .menu-toggle i {
      font-size: 1.5rem; }
  nav.header-menu ul {
    list-style: none; }
  nav.header-menu .top-menu.notmobile li {
    margin: 0;
    padding: 0; }
    nav.header-menu .top-menu.notmobile li a {
      padding: 13px 10px;
      line-height: 20px;
      font-size: 1rem; }
        nav.header-menu .top-menu.notmobile li a:hover {
            color: rgb(0,71,48);
        }
      nav.header-menu .top-menu.notmobile li a:before {
        display: none; }
  nav.header-menu .top-menu.notmobile > li:hover > .sublist {
    display: flex !important; }
  nav.header-menu .top-menu.notmobile > li > .sublist {
    flex-wrap: wrap;
    align-content: stretch;
    width: 100%;
    left: 0;
    background: #500a0a;
    padding: 0 10px; }
    nav.header-menu .top-menu.notmobile > li > .sublist > li {
      width: 33%; }
      nav.header-menu .top-menu.notmobile > li > .sublist > li > a {
        color: #fff; }
  nav.header-menu .top-menu.mobile li {
    margin: 0; }
    nav.header-menu .top-menu.mobile li a {
        min-height: unset;
        padding: 13px 10px;
        font-size: 1rem;
        color: rgb(0,71,48);
    }
    nav.header-menu .top-menu.mobile li .sublist-toggle {
      height: unset;
      background: none;
      border: none; }
        nav.header-menu .top-menu.mobile li .sublist-toggle i {
            font-size: .7rem;
            color: rgb(0,71,48);
        }

.headerCover {
  display: block;
  width: 100%;
  position: absolute;
  z-index: 3; }
  .headerCover.sticky {
    top: 0;
    position: fixed;
    z-index: 1; }
    .headerCover.sticky .header-upper {
      display: none !important; }

footer.footer {
    background-color: rgb(0,71,48);
}
  footer.footer .container {
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    align-items: baseline; }
    @media all and (max-width: 1000px) {
      footer.footer .container {
        flex-wrap: wrap; } }
  footer.footer .footer-upper {
    padding: 35px 0;
    border: unset; }
  footer.footer .footer-block {
    float: unset;
    width: unset; }
    @media all and (max-width: 800px) {
      footer.footer .footer-block {
        width: 50%; } }
    @media all and (max-width: 600px) {
      footer.footer .footer-block {
        width: 100%; } }
    footer.footer .footer-block .title {
      color: #fff;
      margin: 0 0 15px;
      background: none;
      padding: 0; }
    footer.footer .footer-block ul {
      display: block !important;
      background: none; }
      footer.footer .footer-block ul li a {
        color: #fff;
        font-size: .9rem; }
        footer.footer .footer-block ul li a:hover {
          color: #ea5555;
          font-weight: bold; }
      footer.footer .footer-block ul.networks {
        margin: 0;
        border-bottom: unset;
        padding: 0; }
        footer.footer .footer-block ul.networks li a {
          color: #fff;
          font-size: 1.3rem;
          width: unset;
          height: unset;
          background: unset;
          padding: 5px; }
          footer.footer .footer-block ul.networks li a:hover {
            color: #ea5555;
            font-weight: bold; }
footer.footer .footer-lower {
    background: rgb(0,71,48);
    padding: 0;
}
    footer.footer .footer-lower .container {
      padding: 8px 0; }
    footer.footer .footer-lower .agenteMarketing img {
      height: 25px; }
    footer.footer .footer-lower .footer-info {
      color: #fff;
      opacity: .6; }

.order-summary-content .attributes {
  display: none; }
  .order-summary-content .attributes.active {
    display: block; }

.order-summary-content .no-data {
  font-size: 1rem;
  text-align: center; }

table.cart thead tr th {
  font-size: .7rem;
  font-weight: bold;
  text-transform: uppercase; }

table.cart tbody tr td label {
  width: 100%;
  font-size: .7rem;
  color: #777; }

table.cart tbody tr td.remove-from-cart a {
  font-size: 1rem;
  color: #777;
  opacity: .3; }
  table.cart tbody tr td.remove-from-cart a:hover {
    opacity: 1; }

table.cart tbody tr td.sku {
  min-width: 90px; }

table.cart tbody tr td.product a {
    font-size: 1rem;
    color: rgb(0,71,48);
}

table.cart tbody tr td.product .attributes {
  font-size: .7rem;
  color: #777; }

table.cart tbody tr td.product .edit-item a {
    font-size: .7rem;
    color: rgb(0,71,48);
    border: 1px solid rgb(0,71,48);
    padding: 5px;
    opacity: .5;
    text-transform: uppercase;
}
  table.cart tbody tr td.product .edit-item a:hover {
    opacity: 1;
    text-decoration: underline; }

table.cart tbody tr td.unit-price {
  font-size: .9rem;
  color: #777; }

table.cart tbody tr td.quantity {
  font-size: .9rem;
  color: #777; }

table.cart tbody tr td.subtotal .product-subtotal {
    font-size: 1rem;
    color: rgb(0,71,48);
    font-weight: bold;
}

table.cart tbody tr td.subtotal .value-summary {
  font-weight: bold; }

table.cart tbody tr td.subtotal .discount {
  font-size: .7rem;
  color: #777; }

.shopping-cart-page {
  margin: 20px 0 0 0; }
  .shopping-cart-page .min-amount-warning {
    width: 100%;
    display: block;
    background: #d81a1a;
    text-align: center;
    font-size: 1.2rem;
    color: yellow;
    padding: 15px;
    margin: 0; }

.shopping-cart-page .page-title h1, .order-confirm-page .page-title h1, .shipping-method-page .page-title h1, .html-payment-info-page .page-title h1 {
  opacity: 1; }

.shopping-cart-page .cart-options .common-buttons, .order-confirm-page .cart-options .common-buttons, .shipping-method-page .cart-options .common-buttons, .html-payment-info-page .cart-options .common-buttons {
  background-color: unset;
  margin: 0; }
  .shopping-cart-page .cart-options .common-buttons .update-cart-button, .order-confirm-page .cart-options .common-buttons .update-cart-button, .shipping-method-page .cart-options .common-buttons .update-cart-button, .html-payment-info-page .cart-options .common-buttons .update-cart-button {
    background-color: #e83e3e;
    color: #fff;
    text-transform: uppercase; }
    .shopping-cart-page .cart-options .common-buttons .continue-shopping-button, .shopping-cart-page .cart-options .common-buttons .estimate-shipping-button, .order-confirm-page .cart-options .common-buttons .continue-shopping-button, .order-confirm-page .cart-options .common-buttons .estimate-shipping-button, .shipping-method-page .cart-options .common-buttons .continue-shopping-button, .shipping-method-page .cart-options .common-buttons .estimate-shipping-button, .html-payment-info-page .cart-options .common-buttons .continue-shopping-button, .html-payment-info-page .cart-options .common-buttons .estimate-shipping-button {
        background-color: unset;
        border: 1px solid rgb(0,71,48);
        color: rgb(0,71,48);
        text-transform: uppercase;
    }

    .shopping-cart-page .cart-footer, .order-confirm-page .cart-footer, .shipping-method-page .cart-footer, .html-payment-info-page .cart-footer {
        border: none;
        background-color: rgb(0,71,48);
        margin: 0;
    }

.shopping-cart-page .totals, .order-confirm-page .totals, .shipping-method-page .totals, .html-payment-info-page .totals {
  background-color: unset; }
  .shopping-cart-page .totals .total-info, .order-confirm-page .totals .total-info, .shipping-method-page .totals .total-info, .html-payment-info-page .totals .total-info {
    border: none; }
  .shopping-cart-page .totals .cart-total, .order-confirm-page .totals .cart-total, .shipping-method-page .totals .cart-total, .html-payment-info-page .totals .cart-total {
    font-size: 1rem;
    color: #fff;
    border: none; }
    .shopping-cart-page .totals .cart-total .order-total, .order-confirm-page .totals .cart-total .order-total, .shipping-method-page .totals .cart-total .order-total, .html-payment-info-page .totals .cart-total .order-total {
      color: #f7f060 !important; }
  .shopping-cart-page .totals button, .order-confirm-page .totals button, .shipping-method-page .totals button, .html-payment-info-page .totals button {
    background-color: #f7f060 !important;
    color: #670c0c;
    font-weight: bold; }

.html-shipping-address-page .shipping-address-page .shipping-addresses {
  margin-top: 20px; }
    .html-shipping-address-page .shipping-address-page .shipping-addresses .title {
        color: rgb(0,71,48);
        text-transform: uppercase;
        font-size: 1rem;
        font-weight: bold;
    }
  .html-shipping-address-page .shipping-address-page .shipping-addresses .address-grid {
    overflow: unset; }
    .html-shipping-address-page .shipping-address-page .shipping-addresses .address-grid .address-item ul {
      margin: 0;
      background-color: unset; }
    .html-shipping-address-page .shipping-address-page .shipping-addresses .address-grid .address-item .address-box li {
      font-size: .8rem;
      color: #777; }
      .html-shipping-address-page .shipping-address-page .shipping-addresses .address-grid .address-item .address-box li.name {
        color: #444; }
      .html-shipping-address-page .shipping-address-page .shipping-addresses .address-grid .address-item .address-box li.info {
        display: flex; }
        .html-shipping-address-page .shipping-address-page .shipping-addresses .address-grid .address-item .address-box li.info span {
          margin: 0 15px 0 0; }
    .html-shipping-address-page .shipping-address-page .shipping-addresses .address-grid .address-item .select-button input {
        width: 100%;
        background-color: rgb(0,71,48);
    }

.html-shipping-address-page .shipping-address-page .buttons #novoEndereco, .html-shipping-address-page .shipping-address-page .buttons #new-address-next-step-button {
    background-color: rgb(0,71,48);
}
  .html-shipping-address-page .shipping-address-page .buttons #novoEndereco:hover, .html-shipping-address-page .shipping-address-page .buttons #new-address-next-step-button:hover {
    background-color: #500a0a; }

.html-shipping-method-page .shipping-method-page .method-list {
  display: flex;
  justify-content: center; }
  .html-shipping-method-page .shipping-method-page .method-list li {
    margin: 20px; }
    .html-shipping-method-page .shipping-method-page .method-list li .method-name {
      background-color: unset;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center; }
      .html-shipping-method-page .shipping-method-page .method-list li .method-name label {
        text-align: center;
        margin: 10px;
        font-size: 1.1rem; }
    .html-shipping-method-page .shipping-method-page .method-list li .method-description {
      margin: 0 0 10px 0;
      color: #777;
      font-size: .9rem; }

.order-confirm-page .buttons {
  margin: 30px 0; }

.order-confirm-page .order-review-data {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 100%;
  margin: 0 auto 20px 0; }
  @media all and (max-width: 1000px) {
    .order-confirm-page .order-review-data {
      flex-wrap: wrap; } }
  .order-confirm-page .order-review-data .payment-method-info, .order-confirm-page .order-review-data .order-review-data .shipping-method-info {
    margin-top: 0; }
  .order-confirm-page .order-review-data > div {
    float: unset;
    width: 23%;
    margin: unset; }
    .order-confirm-page .order-review-data > div.shipping-info {
      width: 50%; }
    .order-confirm-page .order-review-data > div li, .order-confirm-page .order-review-data > div span {
      font-size: .8rem; }
    @media all and (max-width: 1000px) {
      .order-confirm-page .order-review-data > div {
        width: 100%; } }

.html-order-completed-page .order-completed-page .checkout-data {
  margin: 50px 0 0 0; }
  .html-order-completed-page .order-completed-page .checkout-data .text {
    max-width: 80%;
    margin: 10px auto;
    display: block; }
    .html-order-completed-page .order-completed-page .checkout-data .text p {
      font-size: 1rem;
      text-align: center; }
  .html-order-completed-page .order-completed-page .checkout-data .details .order-number span {
    font-size: 1rem;
    color: #777; }
    .html-order-completed-page .order-completed-page .checkout-data .details .order-number span:nth-child(1) {
      width: 100%;
      display: block;
      margin-bottom: 10px; }
    .html-order-completed-page .order-completed-page .checkout-data .details .order-number span:nth-child(2) {
        margin: 10px;
        padding: 5px 10px;
        border-radius: 6px;
        background: rgb(0,71,48);
        color: #fff;
        font-size: 1.6rem;
    }
  .html-order-completed-page .order-completed-page .checkout-data .buttons {
    display: flex;
    justify-content: center; }
    .html-order-completed-page .order-completed-page .checkout-data .buttons a {
        background: rgb(0,71,48);
        color: #fff;
        padding: 10px 30px;
        margin: 0 10px;
        text-transform: uppercase;
        font-size: 1.1rem;
    }
        .html-order-completed-page .order-completed-page .checkout-data .buttons a:hover {
            background: darke(rgb(0,71,48), 15%);
        }
    .html-order-completed-page .order-completed-page .checkout-data .buttons input {
        background-color: unset;
        border: 1px solid rgb(0,71,48);
        color: rgb(0,71,48);
        font-size: 1.1rem;
    }

.checkout-page {
  margin: 20px 0 0 0;
  padding: 10px; }
    .checkout-page .buttons .button-1 {
        background-color: rgb(0,71,48);
    }
    .checkout-page .buttons .button-1:hover {
      background-color: #500a0a; }
  .checkout-page .section.order-summary {
    margin: 0; }

.order-progress {
  margin: 0 !important; }
  @media all and (max-width: 1000px) {
    .order-progress {
      display: none; } }
  .order-progress ul li {
    width: 100px; }
    .order-progress ul li a {
      min-width: unset;
      font-size: .7rem;
      color: #777;
      position: relative; }
      .order-progress ul li a:before {
        width: 20px;
        height: 20px;
        border: none;
        border-radius: 100px;
        background: unset;
        margin: 0 auto 6px; }
        .order-progress ul li a:after {
            content: '';
            width: 100%;
            height: 2px;
            background: rgb(0,71,48);
            position: absolute;
            right: -60%;
            top: 9px;
        }
    .order-progress ul li.active-step a {
      font-weight: bold; }
        .order-progress ul li.active-step a:before {
            background: rgb(0,71,48);
        }
    .order-progress ul li.inactive-step a {
      opacity: .6; }
        .order-progress ul li.inactive-step a:before {
            border: 2px solid rgb(0,71,48);
        }
    .order-progress ul li:last-child a:after {
      display: none; }

.checkout-attributes {
  width: 100% !important;
  max-width: unset !important;
  margin: 0 !important; }
  .checkout-attributes label {
    font-size: .7rem;
    font-weight: bold;
    text-transform: uppercase; }
  .checkout-attributes textarea {
    width: 100%; }

.html-payment-info-page #tbl-formaPagamento {
  width: 80%;
  margin: 0 auto; }
  .html-payment-info-page #tbl-formaPagamento tr {
    display: flex;
    flex-direction: column; }
    .html-payment-info-page #tbl-formaPagamento tr td {
      text-align: center;
      width: 100% !important;
      max-width: unset !important; }
      .html-payment-info-page #tbl-formaPagamento tr td label {
        font-weight: bold;
        margin: 5px auto;
        padding: 5px 0 3px 0; }
      .html-payment-info-page #tbl-formaPagamento tr td textarea {
        display: block;
        width: 100%;
        resize: none; }

@media (min-width: 1001px) {
  .payment-info .info td:first-child {
    width: 100% !important;
    margin: 0 10px 0 0;
    text-align: right; } }

#estimate-shipping-popup {
  font-size: 1rem; }
  #estimate-shipping-popup input[type="button"] {
    background-color: #e83e3e !important;
    color: #fff !important;
    text-transform: uppercase !important; }
    #estimate-shipping-popup input[type="button"]:hover {
        background-color: rgb(0,71,48) !important;
    }

.html-home-page .master-column-wrapper.container {
  width: 100% !important; }

.html-home-page .slider-wrapper {
  margin: 0 0 20px 0 !important; }

.html-home-page .nivo-controlNav {
  width: 50px;
  display: flex;
  flex-direction: column;
  left: 10px; }
  .html-home-page .nivo-controlNav a {
    background: #fff;
    border-radius: 100px;
    margin: 5px 0 !important; }
    .html-home-page .nivo-controlNav a.active {
        background: rgb(0,71,48) !important;
    }

.html-home-page .product-grid .title {
    border: none;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: rgb(0,71,48);
    font-weight: bold;
    margin: 0;
}

.html-home-page .owl-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative; }
    .html-home-page .owl-nav button {
        font-size: 1.3rem !important;
        background: rgb(0,71,48) !important;
        position: absolute;
        top: -65px;
    }
    .html-home-page .owl-nav button.owl-prev {
      left: 0; }
    .html-home-page .owl-nav button.owl-next {
      right: 0; }
    .html-home-page .owl-nav button span {
      color: #fff;
      padding: 10px 20px !important;
      display: block; }

.html-home-page .owl-dots .owl-dot.active span {
    background-color: rgb(0,71,48);
}

.html-home-page .product-grid .owl-carousel .item-box {
  width: 100% !important;
  margin: 10px 0 0 0 !important; }

.html-home-page .item-grid.owl-loaded {
  flex-wrap: nowrap;
  flex-direction: column; }
  .html-home-page .item-grid.owl-loaded .owl-dots {
    order: 2; }
  .html-home-page .item-grid.owl-loaded .owl-stage-outer {
    order: 3; }
  .html-home-page .item-grid.owl-loaded .owl-nav {
    order: 1; }

ul.image-squares.attribute-squares .attribute-square {
  display: table !important;
  width: 100% !important;
  height: unset !important;
  border: unset !important;
  cursor: pointer;
  background-repeat: no-repeat !important;
  background-position: center center !important; }

.attribute-squares .selected-value .attribute-square-container {
  background-color: unset; }

.attributes dt[data-atributo-nome=Cor] {
  display: none; }

.product-details-page .product-essential {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0;
  border: none;
  padding: 10px; }
  @media all and (max-width: 999px) {
    .product-details-page .product-essential {
      flex-direction: column; } }
  .product-details-page .product-essential .overview {
    width: 57%; }
    @media all and (max-width: 999px) {
      .product-details-page .product-essential .overview {
        width: 100%;
        order: 1; } }
    .product-details-page .product-essential .overview .product-name {
      padding: 10px 0;
      margin: 0 0 10px 0; }
        .product-details-page .product-essential .overview .product-name h1 {
            color: rgb(0,71,48);
            font-size: 1.4rem;
            font-weight: bold;
        }
    .product-details-page .product-essential .overview .short-description {
      font-size: .9rem;
      margin: 0 0 30px; }
    .product-details-page .product-essential .overview .caracteristicas {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid #ddd;
      padding-bottom: 10px;
      flex-wrap: wrap;
      margin-bottom: 10px; }
      .product-details-page .product-essential .overview .caracteristicas .manufacturers, .product-details-page .product-essential .overview .caracteristicas .additional-details {
        margin: 0; }
      .product-details-page .product-essential .overview .caracteristicas > div {
        width: 30%;
        display: flex;
        flex-direction: column;
        margin-bottom: 10px; }
        .product-details-page .product-essential .overview .caracteristicas > div span {
          width: 100%;
          display: block;
          font-size: .9rem;
          font-weight: bold; }
          .product-details-page .product-essential .overview .caracteristicas > div span a {
            color: #444; }
            .product-details-page .product-essential .overview .caracteristicas > div span a:hover {
                color: rgb(0,71,48);
            }
          .product-details-page .product-essential .overview .caracteristicas > div span:nth-child(1) {
            font-weight: normal;
            padding-bottom: 5px;
            font-size: .8rem; }
          .product-details-page .product-essential .overview .caracteristicas > div span:nth-child(2) {
            color: #444; }
.product-details-page .product-essential .overview .product-price {
    color: rgb(0,71,48);
}
    .product-details-page .product-essential .overview .coverPrice {
      display: flex;
      justify-content: space-between;
      align-content: center;
      align-items: center;
      border-bottom: 1px solid #ddd;
      padding-bottom: 10px;
      margin-bottom: 10px; }
      @media all and (max-width: 600px) {
        .product-details-page .product-essential .overview .coverPrice {
          flex-direction: column; } }
      .product-details-page .product-essential .overview .coverPrice .prices .resumo_preco {
        margin-top: 10px; }
        .product-details-page .product-essential .overview .coverPrice .prices .resumo_preco > span {
          width: 100%;
          font-size: .8rem;
          padding: 5px 10px;
          background-color: #d81a1a;
          color: #fff; }
          .product-details-page .product-essential .overview .coverPrice .prices .resumo_preco > span span {
            font-weight: bold;
            color: yellow; }
      .product-details-page .product-essential .overview .coverPrice #caixa_info {
        display: block;
        border: 2px dotted #ddd;
        padding: 10px; }
        .product-details-page .product-essential .overview .coverPrice #caixa_info > div {
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          align-content: center;
          align-items: center;
          margin: 0 0 10px 0; }
          .product-details-page .product-essential .overview .coverPrice #caixa_info > div > div {
            margin-left: 15px; }
            .product-details-page .product-essential .overview .coverPrice #caixa_info > div > div span {
              width: 100%;
              display: block;
              margin: 0 5px;
              font-size: 1rem; }
              .product-details-page .product-essential .overview .coverPrice #caixa_info > div > div span:nth-child(1) {
                font-weight: bold; }
              .product-details-page .product-essential .overview .coverPrice #caixa_info > div > div span:nth-child(2) {
                font-size: .8rem;
                opacity: .9;
                padding: 4px 0; }
              .product-details-page .product-essential .overview .coverPrice #caixa_info > div > div span:nth-child(3) {
                font-size: .7rem;
                opacity: .8; }
                .product-details-page .product-essential .overview .coverPrice #caixa_info > div > div span:nth-child(4) {
                    margin-top: 7px;
                    font-size: .8rem;
                    opacity: .9;
                    font-weight: bold;
                    color: rgb(0,71,48);
                }
    .product-details-page .product-essential .overview .add-to-cart .add-to-cart-panel {
      display: flex;
      position: relative;
      width: 100%;
      justify-content: space-between; }
      @media all and (max-width: 420px) {
        .product-details-page .product-essential .overview .add-to-cart .add-to-cart-panel {
          flex-direction: column;
          align-items: center; } }
      .product-details-page .product-essential .overview .add-to-cart .add-to-cart-panel .qty-input {
        width: 60px; }
.product-details-page .product-essential .overview .add-to-cart .add-to-cart-panel .add-to-cart-button {
    height: 43px;
    border: none;
    background-color: rgb(0,71,48);
    padding: 0 24px;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
}
        @media all and (max-width: 420px) {
          .product-details-page .product-essential .overview .add-to-cart .add-to-cart-panel .add-to-cart-button {
            margin: 15px 0; } }
    .product-details-page .product-essential .overview #subCarrinho {
      display: none; }
      .product-details-page .product-essential .overview #subCarrinho.active {
        display: block; }
        .product-details-page .product-essential .overview #subCarrinho h4 {
            color: rgb(0,71,48);
            font-size: .9rem;
            font-weight: bold;
            padding-bottom: 10px;
        }
      .product-details-page .product-essential .overview #subCarrinho .varGrid {
        justify-content: flex-start;
        display: flex;
        flex-direction: column;
        border: 1px solid #ddd;
        padding: 10px; }
        .product-details-page .product-essential .overview #subCarrinho .varGrid > div {
          justify-content: space-between;
          display: flex;
          align-content: center;
          align-items: center;
          padding: 5px; }
          .product-details-page .product-essential .overview #subCarrinho .varGrid > div:hover {
            background-color: #fff; }
          .product-details-page .product-essential .overview #subCarrinho .varGrid > div div {
            font-weight: bold;
            color: #444;
            font-size: .9rem;
            display: block; }
            .product-details-page .product-essential .overview #subCarrinho .varGrid > div div a {
              font-weight: normal;
              padding: 5px;
              opacity: .5; }
              .product-details-page .product-essential .overview #subCarrinho .varGrid > div div a:hover {
                opacity: 1; }
            .product-details-page .product-essential .overview #subCarrinho .varGrid > div div:nth-child(1) {
              min-width: 50%;
              justify-content: flex-start;
              display: flex;
              align-content: center;
              align-items: center; }
              .product-details-page .product-essential .overview #subCarrinho .varGrid > div div:nth-child(1) small {
                font-weight: normal;
                font-size: .6rem;
                color: #777;
                padding-left: 5px; }
            .product-details-page .product-essential .overview #subCarrinho .varGrid > div div:nth-child(2) {
              min-width: 10%;
              text-align: center;
              opacity: .5;
              font-size: 1rem; }
              .product-details-page .product-essential .overview #subCarrinho .varGrid > div div:nth-child(2) .fa-square {
                opacity: .5; }
            .product-details-page .product-essential .overview #subCarrinho .varGrid > div div:nth-child(3) {
              min-width: 20%;
              text-align: right; }
            .product-details-page .product-essential .overview #subCarrinho .varGrid > div div:nth-child(4) {
              min-width: 20%;
              text-align: right; }
          .product-details-page .product-essential .overview #subCarrinho .varGrid > div:nth-child(1) {
            border-bottom: 1px solid #ddd;
            margin-bottom: 5px; }
            .product-details-page .product-essential .overview #subCarrinho .varGrid > div:nth-child(1) > div {
              font-weight: normal;
              font-size: .8rem;
              color: #777; }
              .product-details-page .product-essential .overview #subCarrinho .varGrid > div:nth-child(1) > div div:nth-child(2) {
                opacity: 1; }
  .product-details-page .product-essential .left-col {
    width: 40%;
    display: flex;
    justify-content: space-between;
    flex-direction: row; }
    @media all and (max-width: 999px) {
      .product-details-page .product-essential .left-col {
        width: 100%;
        order: 2; } }
    .product-details-page .product-essential .left-col .gallery {
      float: none !important;
      margin: 0 !important;
      width: 77%; }
      .product-details-page .product-essential .left-col .gallery .picture {
        overflow: unset; }
        .product-details-page .product-essential .left-col .gallery .picture img {
          position: relative !important;
          width: 100%;
          cursor: pointer; }
        .product-details-page .product-essential .left-col .gallery .picture:before {
          display: none; }
    .product-details-page .product-essential .left-col .attributes {
      width: 20%;
      margin: 0;
      position: relative; }
      .product-details-page .product-essential .left-col .attributes dl {
        padding: 0; }
      .product-details-page .product-essential .left-col .attributes .option-list.attribute-squares.image-squares {
        display: block;
        width: 100%; }
        .product-details-page .product-essential .left-col .attributes .option-list.attribute-squares.image-squares li {
          width: 100%;
          margin: 0;
          display: block;
          border: none !important; }
          .product-details-page .product-essential .left-col .attributes .option-list.attribute-squares.image-squares li label {
            display: block;
            width: 100%; }
            .product-details-page .product-essential .left-col .attributes .option-list.attribute-squares.image-squares li label span {
              display: block;
              width: 100%; }
            .product-details-page .product-essential .left-col .attributes .option-list.attribute-squares.image-squares li label img {
              max-width: 100%;
              cursor: pointer; }
          .product-details-page .product-essential .left-col .attributes .option-list.attribute-squares.image-squares li.selected-value {
            opacity: .3; }
        .product-details-page .product-essential .left-col .attributes .option-list.attribute-squares.image-squares .attribute-square {
          background-size: 100% auto !important;
          height: 169px !important; }
        .product-details-page .product-essential .left-col .attributes .top-arrow, .product-details-page .product-essential .left-col .attributes .bottom-arrow {
            display: flex;
            justify-content: center;
            padding: 4px 0;
            width: 100%;
            background: rgb(0,71,48);
            cursor: pointer;
        }
        .product-details-page .product-essential .left-col .attributes .top-arrow i, .product-details-page .product-essential .left-col .attributes .bottom-arrow i {
          font-size: .8rem;
          color: #fff; }
  .product-details-page .product-essential .overview {
    float: none !important; }
  .product-details-page .product-essential .full-description {
    width: 100%;
    order: 3;
    margin: 20px 0; }

[data-spec=CaixaPequena], [data-spec=CaixaFechada], [data-atributo-nome=Unidade] {
  display: none !important; }

.product-specs-box, .product-collateral {
  display: none; }

.related-products-grid, .also-purchased-products-grid {
  padding: 10px;
  margin-top: 25px; }
  .related-products-grid .item-box, .also-purchased-products-grid .item-box {
    width: 100% !important; }
    .related-products-grid .title, .also-purchased-products-grid .title {
        color: rgb(0,71,48);
        text-align: center;
        font-size: 1.3rem;
        font-weight: bold;
        text-transform: uppercase;
        padding: 10px;
    }

.breadcrumb {
  margin: 0;
  padding: 5px 0;
  background: #C1BEB9; }
  @media all and (max-width: 800px) {
    .breadcrumb {
      display: none; } }
  .breadcrumb ul {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center; }
    .breadcrumb ul li {
      display: flex;
      justify-content: space-between;
      align-content: center;
      align-items: center; }
      .breadcrumb ul li * {
        display: flex;
        justify-content: space-between;
        align-content: center;
        align-items: center;
        margin: 0;
        font-size: unset;
        line-height: unset; }
      .breadcrumb ul li > span {
        margin: 0;
        font-size: unset; }
      .breadcrumb ul li meta {
        display: none; }
      .breadcrumb ul li strong {
        margin: 0;
        font-size: .8rem;
        font-weight: bold; }
      .breadcrumb ul li .delimiter {
        opacity: .7;
        padding: 10px; }
        .breadcrumb ul li .delimiter i {
          font-size: .6rem; }
      .breadcrumb ul li a {
        opacity: 1;
        font-size: .8rem;
        margin: 0; }
        .breadcrumb ul li a span {
          margin: 0; }
        .breadcrumb ul li a:hover {
            opacity: 1;
            color: rgb(0,71,48);
        }
      .breadcrumb ul li:nth-child(1) > span:not(.delimiter), .breadcrumb ul li:nth-child(1) a {
        margin-left: 0;
        padding-left: 0; }

.buttonBack {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin: 10px 0; }
    .buttonBack a {
        height: 30px;
        border: none;
        border: rgb(0,71,48) 2px solid;
        color: rgb(0,71,48);
        padding: 0 18px;
        font-size: .8rem;
        text-transform: uppercase;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
    }

body {
  background-color: #EEEEEE; }
  body .page .page-title {
    border: unset; }
    body .page .page-title h1 {
        color: rgb(0,71,48);
        opacity: .5;
        text-transform: uppercase;
        font-size: 1.4rem;
    }

.html-login-page .login-page {
  padding: 20px 0 0 0; }

.html-login-page .customer-blocks > div {
  background: #fff;
  border-radius: 6px; }
    .html-login-page .customer-blocks > div .title {
        color: rgb(0,71,48);
        text-transform: uppercase;
        font-size: 1.2rem;
        padding: 15px 15px 0 15px;
    }
    .html-login-page .customer-blocks > div .text {
        margin: 0 0 30px;
        border-top: 1px solid rgb(0,71,48);
        background-color: unset;
        padding: 30px;
        line-height: 22px;
        font-size: .9rem;
    }
    .html-login-page .customer-blocks > div .form-fields {
        border-top: 1px solid rgb(0,71,48);
        background-color: unset;
    }
    .html-login-page .customer-blocks > div input[type=button], .html-login-page .customer-blocks > div input[type=submit] {
        background-color: rgb(0,71,48) !important;
    }
    .html-login-page .customer-blocks > div input[type=button]:hover, .html-login-page .customer-blocks > div input[type=submit]:hover {
      background-color: #500a0a !important; }

.html-login-page .customer-blocks .returning-wrapper .buttons {
  padding: 19px; }

.html-registration-page .registration-page {
  padding: 20px 0 0 0; }
    .html-registration-page .registration-page .fieldset .title {
        color: rgb(0,71,48);
        text-transform: uppercase;
        font-size: 1.2rem;
        padding: 15px 15px 0 15px;
    }
    .html-registration-page .registration-page input[type=button], .html-registration-page .registration-page input[type=submit] {
        background-color: rgb(0,71,48) !important;
    }
    .html-registration-page .registration-page input[type=button]:hover, .html-registration-page .registration-page input[type=submit]:hover {
      background-color: #500a0a !important; }

.html-customer-info-page .customer-info-page {
  padding: 20px 0 0 0; }
    .html-customer-info-page .customer-info-page .fieldset .title {
        color: rgb(0,71,48);
        text-transform: uppercase;
        font-size: 1.2rem;
        padding: 15px 15px 0 15px;
    }
    .html-customer-info-page .customer-info-page input[type=button], .html-customer-info-page .customer-info-page input[type=submit] {
        background-color: rgb(0,71,48) !important;
    }
    .html-customer-info-page .customer-info-page input[type=button]:hover, .html-customer-info-page .customer-info-page input[type=submit]:hover {
      background-color: #500a0a !important; }

.gallery {
  position: relative; }
  .gallery .ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 2;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right; }
    .gallery .ribbon span {
        font-size: 10px;
        font-weight: bold;
        color: #FFF;
        text-transform: uppercase;
        text-align: center;
        line-height: 20px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        width: 100px;
        display: block;
        background: rgb(0,71,48);
        box-shadow: 0 3px 10px -5px black;
        position: absolute;
        top: 19px;
        right: -21px;
    }
        .gallery .ribbon span::before {
            content: "";
            position: absolute;
            left: 0px;
            top: 100%;
            z-index: -1;
            border-left: 3px solid rgb(0,71,48);
            border-right: 3px solid transparent;
            border-bottom: 3px solid transparent;
            border-top: 3px solid rgb(0,71,48);
        }
        .gallery .ribbon span::after {
            content: "";
            position: absolute;
            right: 0px;
            top: 100%;
            z-index: -1;
            border-left: 3px solid transparent;
            border-right: 3px solid rgb(0,71,48);
            border-bottom: 3px solid transparent;
            border-top: 3px solid rgb(0,71,48);
        }

.block-account-navigation {
    background: rgb(0,71,48) !important;
    margin: 20px 0 0 0 !important;
}
  @media all and (max-width: 1000px) {
    .block-account-navigation {
      max-width: unset; }
      .block-account-navigation .title {
        background: unset;
        border: none; }
      .block-account-navigation .listbox {
        display: block; } }
  .block-account-navigation .title {
    color: #fff; }
  .block-account-navigation ul li a {
    color: #fff !important; }
    .block-account-navigation ul li a:before {
      display: none; }
  .block-account-navigation ul li.active a {
    color: #f7f060 !important; }
  .block-account-navigation .downloadable-products, .block-account-navigation .back-in-stock-subscriptions, .block-account-navigation .customer-gdpr, .block-account-navigation .customer-addresses {
    display: none; }

@media all and (max-width: 1000px) {
  .html-account-page .master-column-wrapper {
    display: flex;
    flex-direction: column; }
    .html-account-page .master-column-wrapper .side-2 {
      float: none;
      order: 2; }
    .html-account-page .master-column-wrapper .center-2 {
      float: none;
      order: 1; } }

.html-account-page .account-page {
  padding: 20px 0 0 0; }

.html-account-page .address-list-page .address-list .address-item .title {
    color: rgb(0,71,48);
    text-transform: uppercase;
    font-size: 1.2rem;
    padding: 15px 15px 0 15px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
  .html-account-page .address-list-page .address-list .address-item .title .buttons {
    position: unset;
    top: unset;
    right: unset;
    margin: 0; }
    .html-account-page .address-list-page .address-list .address-item .title .buttons button {
      padding: 0;
      font-size: .8rem; }
        .html-account-page .address-list-page .address-list .address-item .title .buttons button:hover {
            color: rgb(0,71,48);
            font-weight: bold;
        }
    .html-account-page .address-list-page .address-list .address-item .title .buttons .edit-address-button {
      background: unset; }
    .html-account-page .address-list-page .address-list .address-item .title .buttons .delete-address-button, .html-account-page .address-list-page .address-list .address-item .title .buttons .cancel-recurring-order-button {
      background: unset;
      color: red; }
      .html-account-page .address-list-page .address-list .address-item .title .buttons .delete-address-button:hover, .html-account-page .address-list-page .address-list .address-item .title .buttons .cancel-recurring-order-button:hover {
        color: red;
        font-weight: bold; }

.html-account-page .address-list-page .address-list .address-item .info li {
  font-size: .9rem; }
  .html-account-page .address-list-page .address-list .address-item .info li:nth-child(1) {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center; }
    .html-account-page .address-list-page .address-list .address-item .info li:nth-child(1) div {
      margin: 0 10px 0 0;
      color: #777;
      font-weight: normal; }

.html-account-page .add-button input[type=button], .html-account-page .add-button input[type=submit] {
    background-color: rgb(0,71,48) !important;
}
  .html-account-page .add-button input[type=button]:hover, .html-account-page .add-button input[type=submit]:hover {
    background-color: #500a0a !important; }

.html-account-page .address-edit-page .address-item .title {
    color: rgb(0,71,48);
    text-transform: uppercase;
    font-size: 1.2rem;
    padding: 15px;
}

.html-account-page .address-edit-page input[type=button], .html-account-page .address-edit-page input[type=submit] {
    background-color: rgb(0,71,48) !important;
}
  .html-account-page .address-edit-page input[type=button]:hover, .html-account-page .address-edit-page input[type=submit]:hover {
    background-color: #500a0a !important; }

.html-account-page .change-password-page .box .title {
    color: rgb(0,71,48);
    text-transform: uppercase;
    font-size: 1.2rem;
    padding: 15px;
}

.html-account-page .change-password-page input[type=button], .html-account-page .change-password-page input[type=submit] {
    background-color: rgb(0,71,48) !important;
}
  .html-account-page .change-password-page input[type=button]:hover, .html-account-page .change-password-page input[type=submit]:hover {
    background-color: #500a0a !important; }

.html-account-page .order-list-page .order-list .order-item .title {
    color: rgb(0,71,48);
    text-transform: uppercase;
    font-size: 1.2rem;
    padding: 15px 15px 0 15px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
  .html-account-page .order-list-page .order-list .order-item .title .buttons {
    position: unset;
    top: unset;
    right: unset;
    margin: 0; }
    .html-account-page .order-list-page .order-list .order-item .title .buttons button {
      padding: 0;
      font-size: .8rem; }
        .html-account-page .order-list-page .order-list .order-item .title .buttons button:hover {
            color: rgb(0,71,48);
            font-weight: bold;
        }
    .html-account-page .order-list-page .order-list .order-item .title .buttons .order-details-button {
      background: unset; }

.html-account-page .order-list-page .order-list .order-item .info {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .html-account-page .order-list-page .order-list .order-item .info li span {
    width: 100%;
    display: block; }
    .html-account-page .order-list-page .order-list .order-item .info li span:nth-child(1) {
      font-size: .8rem;
      color: #777; }
    .html-account-page .order-list-page .order-list .order-item .info li span:nth-child(2) {
      font-size: .9rem;
      font-weight: bold; }
    .html-account-page .order-list-page .order-list .order-item .info li span.order-status {
      background: #777;
      text-align: center;
      color: #fff;
      border-radius: 6px;
      padding: 3px 6px; }
      .html-account-page .order-list-page .order-list .order-item .info li span.order-status.pending {
        background: #4184e8; }
      .html-account-page .order-list-page .order-list .order-item .info li span.order-status.processing {
        background: #e8be41; }
      .html-account-page .order-list-page .order-list .order-item .info li span.order-status.complete {
        background: #1cb01f; }
      .html-account-page .order-list-page .order-list .order-item .info li span.order-status.cancelled {
        background: #000; }

.html-order-details-page .order-details-page {
  margin: 20px 0 0 0; }
  .html-order-details-page .order-details-page .page-title {
    margin: 0;
    min-height: unset; }
    .html-order-details-page .order-details-page .page-title h1 {
      opacity: 1;
      padding: 10px; }
  .html-order-details-page .order-details-page .buttons {
    display: flex;
    justify-content: center; }
    .html-order-details-page .order-details-page .buttons a {
      margin: 0 10px;
      background: #000;
      color: #fff;
      padding: 10px;
      font-size: 1rem; }
  .html-order-details-page .order-details-page .order-overview-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%;
    margin: 0 auto; }
    .html-order-details-page .order-details-page .order-overview-content li {
      text-align: left; }
      .html-order-details-page .order-details-page .order-overview-content li span {
        width: 100%;
        display: block;
        line-height: 140%; }
        .html-order-details-page .order-details-page .order-overview-content li span:nth-child(1) {
          font-size: .8rem;
          color: #777; }
        .html-order-details-page .order-details-page .order-overview-content li span:nth-child(2) {
          font-size: .9rem;
          font-weight: bold; }
  .html-order-details-page .order-details-page .order-details-area {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    max-width: 90%;
    margin: 0 auto; }
    @media all and (max-width: 1000px) {
      .html-order-details-page .order-details-page .order-details-area {
        flex-wrap: wrap; } }
    .html-order-details-page .order-details-page .order-details-area > div {
      float: unset;
      width: 30%;
      margin: unset; }
      .html-order-details-page .order-details-page .order-details-area > div li, .html-order-details-page .order-details-page .order-details-area > div span {
        font-size: .8rem; }
      @media all and (max-width: 1000px) {
        .html-order-details-page .order-details-page .order-details-area > div {
          width: 100%; } }
  .html-order-details-page .order-details-page .section {
    max-width: 90%;
    margin: 0 auto;
    width: 90%;
    float: unset;
    font-size: .9rem;
    padding: 0; }
    .html-order-details-page .order-details-page .section .title {
      font-size: 1rem;
      margin-top: 20px; }
      .html-order-details-page .order-details-page .section .title strong {
        font-weight: bold; }
    .html-order-details-page .order-details-page .section.totals {
      display: flex;
      justify-content: flex-end;
      align-items: baseline;
      flex-wrap: wrap; }
    .html-order-details-page .order-details-page .section .total-info {
      width: 320px; }
    .html-order-details-page .order-details-page .section .actions {
      width: 100%;
      margin-bottom: 50px;
      display: flex;
      justify-content: center;
      align-items: center; }
.html-order-details-page .order-details-page input[type=button], .html-order-details-page .order-details-page input[type=submit] {
    background-color: rgb(0,71,48) !important;
}
    .html-order-details-page .order-details-page input[type=button]:hover, .html-order-details-page .order-details-page input[type=submit]:hover {
      background-color: #500a0a !important; }

.html-category-page .page-title {
  border-bottom: 1px solid #D5D5D5 !important;
  padding: 19px 0;
  margin: 0 0 10px !important; }
    .html-category-page .page-title h1 {
        opacity: 1 !important;
        font-size: 2rem;
        color: rgb(0,71,48);
        text-transform: uppercase;
    }

.html-category-page .side-2 {
  margin: 20px 0; }
  @media all and (max-width: 1000px) {
    .html-category-page .side-2 {
      display: none; } }
.html-category-page .side-2 .block .title {
    font-size: 1rem;
    color: rgb(0,71,48);
    border-bottom: 1px solid #D5D5D5;
    text-transform: uppercase;
}
.html-category-page .side-2 .block ul li a {
    padding: 2px 0;
    font-size: .9rem;
    text-transform: uppercase;
    color: rgb(0,71,48);
}
    .html-category-page .side-2 .block ul li a:before {
      display: none; }
  .html-category-page .side-2 .block ul.list li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5px 5px 5px 10px; }
    .html-category-page .side-2 .block ul.list li a:hover {
        color: rgb(0,71,48);
    }
    .html-category-page .side-2 .block ul.list li .sublist {
      width: 100%;
      display: none; }
      .html-category-page .side-2 .block ul.list li .sublist li {
        padding-left: 10px; }
    .html-category-page .side-2 .block ul.list li span {
      width: 20px;
      text-align: center;
      cursor: pointer;
      transform: rotate(0deg); }
      .html-category-page .side-2 .block ul.list li span i {
        font-size: .8rem; }
    .html-category-page .side-2 .block ul.list li.active > a {
        color: rgb(0,71,48);
        font-weight: bold;
    }
    .html-category-page .side-2 .block ul.list li.active > .sublist {
      display: block; }
    .html-category-page .side-2 .block ul.list li.active > span {
      transform: rotate(180deg); }
  .html-category-page .side-2 .block.block-recently-viewed-products li {
    padding: 0;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    margin-bottom: 10px; }
    .html-category-page .side-2 .block.block-recently-viewed-products li a {
      width: unset;
      margin: 0; }
      .html-category-page .side-2 .block.block-recently-viewed-products li a img {
        margin-right: 15px; }

.html-category-page .product-selectors {
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid #D5D5D5 !important; }

.html-category-page .product-selectors {
  margin: 10px 0 10px;
  border: unset;
  padding: 0 0 10px 0; }
  .html-category-page .product-selectors .product-viewmode a {
    background: unset;
    width: unset;
    height: unset;
    margin: 0;
    padding: 10px; }
    .html-category-page .product-selectors .product-viewmode a i {
      font-size: 1.2rem;
      color: #777; }
  .html-category-page .product-selectors select {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #D5D5D5 !important; }

.html-category-page .product-sorting span, .html-category-page .product-page-size span {
    color: rgb(0,71,48);
    opacity: .5;
}

.html-category-page .product-filters {
  border: none; }

.html-registration-result-page .registration-result-page {
  margin: 20px 0 0 0;
  padding: 10px; }
  .html-registration-result-page .registration-result-page .result {
    color: #777; }
    .html-registration-result-page .registration-result-page .buttons input {
        background-color: rgb(0,71,48);
    }

.product-item {
  padding: 10px;
  width: 100%;
  background: unset !important;
  box-shadow: unset !important;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  border-radius: 6px; }
  .product-item .ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 2;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right; }
    .product-item .ribbon span {
        font-size: 10px;
        font-weight: bold;
        color: #FFF;
        text-transform: uppercase;
        text-align: center;
        line-height: 20px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        width: 100px;
        display: block;
        background: rgb(0,71,48);
        box-shadow: 0 3px 10px -5px black;
        position: absolute;
        top: 19px;
        right: -21px;
    }
        .product-item .ribbon span::before {
            content: "";
            position: absolute;
            left: 0px;
            top: 100%;
            z-index: -1;
            border-left: 3px solid rgb(0,71,48);
            border-right: 3px solid transparent;
            border-bottom: 3px solid transparent;
            border-top: 3px solid rgb(0,71,48);
        }
        .product-item .ribbon span::after {
            content: "";
            position: absolute;
            right: 0px;
            top: 100%;
            z-index: -1;
            border-left: 3px solid transparent;
            border-right: 3px solid rgb(0,71,48);
            border-bottom: 3px solid transparent;
            border-top: 3px solid rgb(0,71,48);
        }
  .product-item .picture {
    position: relative; }
    .product-item .picture a:before {
      display: none; }
    .product-item .picture a img {
      position: unset;
      top: unset;
      right: unset;
      bottom: unset;
      left: unset;
      width: 100%; }
    .product-item .picture .sku {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 3px 4px;
      font-size: .8rem;
      box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.09);
      webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.09);
      -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.09);
      background: #fff;
      opacity: .8; }
      .product-item .picture .sku:hover {
        opacity: 1;
        font-weight: bold; }
  .product-item .details {
    padding: 0;
    margin-bottom: 15px; }
    .product-item .details h2 {
        color: rgb(0,71,48);
        font-size: .9rem;
        font-weight: bold;
        margin: 0 0 5px;
    }
  .product-item .add-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; }
    @media all and (max-width: 600px) {
      .product-item .add-info {
        flex-direction: column; } }
  .product-item .prices {
    display: flex;
    justify-content: flex-start;
    flex-direction: column; }
    .product-item .prices .old-price {
      text-decoration: line-through;
      font-size: .8rem;
      color: #999;
      font-weight: normal; }
    .product-item .prices .actual-price {
        color: rgb(0,71,48);
        font-size: .9rem;
        font-weight: bold;
    }
  @media all and (max-width: 600px) {
    .product-item .buttons {
      width: 100%; } }
.product-item .buttons button {
    background: rgb(0,71,48);
    width: 100%;
    color: #fff;
    font-size: 1rem;
    text-align: center;
    border: none;
    padding: 8px 13px;
    border-radius: 6px;
}
    .product-item .buttons button:hover {
        background: rgb(0,71,48);
    }

.product-grid {
  width: 100%; }
  .product-grid .item-grid {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    flex-direction: row; }
  .product-grid .item-box {
    width: 24%;
    margin: 0 .5% 20px .5%;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.09);
    webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.09);
    background: #fff;
    border-radius: 6px; }
    @media all and (max-width: 800px) {
      .product-grid .item-box {
        width: 30%;
        margin: 0 1.5% 20px 1.5%; } }
    @media all and (max-width: 600px) {
      .product-grid .item-box {
        width: 47%;
        margin: 0 1.5% 20px 1.5%; } }

.pager ul {
  text-align: unset;
  display: flex;
  justify-content: center;
  align-items: center; }
  .pager ul li a {
    background: #fff; }
  .pager ul li.current-page {
    color: #fff; }
    .pager ul li.current-page span {
        background: rgb(0,71,48);
    }

#flyout-cart .items .product .name a {
    color: rgb(0,71,48);
}
    #flyout-cart .items .product .name a:hover {
        color: rgb(0,71,48);
    }

#flyout-cart .buttons {
  width: 100%;
  display: flex;
  justify-content: space-between; }
    #flyout-cart .buttons .cart-button {
        width: 48%;
        background: unset;
        color: rgb(0,71,48);
        border: 2px solid rgb(0,71,48);
        font-weight: bold;
    }
    #flyout-cart .buttons .checkout-button {
        width: 48%;
        background: rgb(0,71,48);
        color: #fff;
    }
    #flyout-cart .buttons .checkout-button:hover {
      background: #500a0a; }

.no-data {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 30px 0; }

.home-page-category-grid .item-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  flex-direction: row; }
  .home-page-category-grid .item-grid .item-box {
    width: 32%;
    margin: 0; }
    .home-page-category-grid .item-grid .item-box .category-item {
      position: relative; }
      .home-page-category-grid .item-grid .item-box .category-item .title {
        position: absolute;
        width: 100%;
        height: 100%;
        display: none;
        background: rgba(148, 18, 18, 0.6);
        align-content: center;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-transform: uppercase;
        z-index: 2; }
        .home-page-category-grid .item-grid .item-box .category-item .title a {
          position: absolute;
          width: 100%;
          height: 100%;
          display: flex;
          justify-content: center;
          align-items: center; }
          .home-page-category-grid .item-grid .item-box .category-item .title a:hover {
            color: #fff; }
      .home-page-category-grid .item-grid .item-box .category-item .picture {
        background-color: unset; }
        .home-page-category-grid .item-grid .item-box .category-item .picture a:before {
          display: none; }
        .home-page-category-grid .item-grid .item-box .category-item .picture a img {
          position: relative;
          width: 100%; }
        .home-page-category-grid .item-grid .item-box .category-item .picture a:hover {
          color: #fff;
          font-weight: bold; }
    .home-page-category-grid .item-grid .item-box:hover .title {
      display: flex; }

@media (max-width: 1000px) {
  .theme-custom {
    max-width: unset !important;
    margin: 0 0 20px 0 !important; } }

.ajax-loading-block-window {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  margin: 0;
  background: url(../images/loading.gif) center no-repeat;
  background-color: rgba(148, 18, 18, 0.5); }

.box-padrao, header.header .header-upper .header-links-wrapper #topcartlink, .shopping-cart-page, .html-shipping-address-page .shipping-address-page .shipping-addresses .address-grid .address-item, .html-shipping-method-page .shipping-method-page .method-list li, .checkout-page, .html-login-page .customer-blocks > div, .html-registration-page .registration-page .fieldset, .html-customer-info-page .customer-info-page .fieldset, .block-account-navigation, .html-account-page .address-list-page .address-list .address-item, .html-account-page .address-edit-page .address-item, .html-account-page .change-password-page .box, .html-account-page .order-list-page .order-list .order-item, .html-order-details-page .order-details-page, .html-category-page .side-2 .block.block-recently-viewed-products li, .html-registration-result-page .registration-result-page, .product-item, .pager ul li {
  webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.09);
  background: #fff; }

.shake-horizontal {
  -webkit-animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) both; }

/* ----------------------------------------------
 * Generated by Animista on 2020-6-14 8:41:56
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation shake-horizontal
 * ----------------------------------------
 */
@-webkit-keyframes shake-horizontal {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%, 40%, 60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); }
  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px); }
  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px); } }

@keyframes shake-horizontal {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%, 40%, 60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); }
  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px); }
  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px); } }

span.ipi-subtotal {
    display: block;
    font-size: .7rem;
}
.precoCliente span[data-price-ipi] {
    font-size: 14px !important;
    color: #999 !important;
    display: block;
}
.product-item .precoCliente span[data-price-ipi] {
    font-size: 12px !important;
    color: #999 !important;
    display: block;
}
.cart-total .order-ipi {
    margin-top: 20px;
}