@charset "utf-8";
/* CSS Document */

@charset "UTF-8";
/** Vers **/
@-webkit-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0; }

  1% {
    display: block;
    opacity: 0; }

  100% {
    display: block;
    opacity: 1; } }

/** General **/
/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.1.0
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  zoom: 1;
  *display: inline;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border-top: 0;
  background: #f4f4f4;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); }

.chosen-container.chosen-with-drop .chosen-drop {
  left: 0; }

.chosen-container a {
  cursor: pointer; }

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 15px 25px;
  height: 54px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  /*background-color: #fff;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
  background: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background-clip: padding-box;*/
  background-color: #f4f4f4;
  color: #181009;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px; }

.chosen-container-single .chosen-default {
  color: #999; }

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px; }

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('chosen-sprite.html') -42px 1px no-repeat;
  font-size: 1px; }

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 60px;
  height: 100%; }

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  border-left: 1px solid #fff; }

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap; }

.chosen-container-single .chosen-search input[type="text"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: white url('chosen-sprite.html') no-repeat 100% -20px;
  background: url('chosen-sprite.html') no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  -webkit-border-radius: 0;
  border-radius: 0; }

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  -webkit-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; }

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px; }

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch; }

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  -webkit-touch-callout: none; }

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer; }

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default; }

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  /*background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);*/
  color: #fff; }

.chosen-container .chosen-results li.no-results {
  display: list-item;
  background: #f4f4f4; }

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default; }

.chosen-container .chosen-results li.group-option {
  padding-left: 15px; }

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline; }

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  /*background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);*/
  cursor: text; }

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none; }

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap; }

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 5px;
  height: 15px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #666;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  -webkit-border-radius: 0;
  border-radius: 0; }

.chosen-container-multi .chosen-choices li.search-field .default {
  color: #999; }

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 0 3px 5px;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #e4e4e4;
  /*background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-clip: padding-box;*/
  -webkit-box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  /*background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-clip: padding-box;*/
  box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('chosen-sprite.html') -42px 1px no-repeat;
  font-size: 1px; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  /*background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);*/
  color: #666; }

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4; }

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0; }

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default; }

/* @end */
/* @group Active  */
.chosen-container-active.chosen-with-drop .chosen-single {
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  /*background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);*/ }

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent; }

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px; }

.chosen-container-active .chosen-choices {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #111 !important; }

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default; }

.chosen-disabled .chosen-single {
  cursor: default; }

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default; }

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right; }

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0; }

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl; }

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px; }


.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px; }

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px; }

.chosen-rtl .chosen-choices li {
  float: right; }

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl; }

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px; }

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px; }

.chosen-rtl.chosen-container-single-nosearch .chosen-search, .chosen-rtl .chosen-drop {
  left: 9999px; }

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0; }

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0; }

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none; }

.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: white url('chosen-sprite.html') no-repeat -30px -20px;
  background: url('chosen-sprite.html') no-repeat -30px -20px;
  direction: rtl; }

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px; }

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px; }

/* @end */
/* @group Retina compatibility */
/* @end */
@-ms-viewport {
  width: device-width; }

.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important; }

.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs, td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm, td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md, td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg, td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs, .product-carousel .product-info {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print, td.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left; }
    .carousel-inner > .item > img, .carousel-inner > .item > a > img {
      display: block;
      width: 100% \9;
      max-width: 100%;
      height: auto;
      line-height: 1; }
  .carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next, .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left, .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
  .carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev, .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    font-family: serif; }
  .carousel-control .icon-prev:before {
    content: '\2039'; }
  .carousel-control .icon-next:before {
    content: '\203a'; }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: transparent; }
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
    margin-left: -15px; }
  .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
    margin-right: -15px; }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal; }
  .popover.top {
    margin-top: -10px; }
  .popover.right {
    margin-left: 10px; }
  .popover.bottom {
    margin-top: 10px; }
  .popover.left {
    margin-left: -10px; }

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0; }

.popover-content {
  padding: 9px 14px; }

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover > .arrow {
  border-width: 11px; }

.popover > .arrow:after {
  border-width: 10px;
  content: ""; }

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px; }
  .popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff; }
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25); }
  .popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff; }
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px; }
  .popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff; }
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25); }
  .popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px; }

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .btn:focus, .btn:active:focus, .btn.active:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:hover, .btn:focus {
    color: #333;
    text-decoration: none; }
  .btn:active, .btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none; }

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }
  .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
    background-image: none; }
  .btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
    background-color: #fff;
    border-color: #ccc; }
  .btn-default .badge {
    color: #fff;
    background-color: #333; }

.btn-primary {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd; }
  .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #3071a9;
    border-color: #285e8e; }
  .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
    background-image: none; }
  .btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
    background-color: #428bca;
    border-color: #357ebd; }
  .btn-primary .badge {
    color: #428bca;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }
  .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
  .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
    background-image: none; }
  .btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
    background-color: #5cb85c;
    border-color: #4cae4c; }
  .btn-success .badge {
    color: #5cb85c;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }
  .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc; }
  .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
    background-image: none; }
  .btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
    background-color: #5bc0de;
    border-color: #46b8da; }
  .btn-info .badge {
    color: #5bc0de;
    background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }
  .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
  .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
    background-image: none; }
  .btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
    background-color: #f0ad4e;
    border-color: #eea236; }
  .btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }
  .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
  .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
    background-image: none; }
  .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
    background-color: #d9534f;
    border-color: #d43f3a; }
  .btn-danger .badge {
    color: #d9534f;
    background-color: #fff; }

.btn-link {
  color: #002e62;
  font-weight: normal;
  cursor: pointer;
  -webkit-border-radius: 0;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover, .btn-link:focus {
    color: #2a6496;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
    color: #777777;
    text-decoration: none; }

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  -webkit-border-radius: 6px;
  border-radius: 6px; }

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  -webkit-border-radius: 3px;
  border-radius: 3px; }

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  -webkit-border-radius: 3px;
  border-radius: 3px; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
  width: 100%; }

.btn-group, .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .btn-group > .btn, .btn-group-vertical > .btn {
    position: relative;
    float: left; }
    .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn:hover, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active {
      z-index: 2; }
    .btn-group > .btn:focus, .btn-group-vertical > .btn:focus {
      outline: 0; }

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar {
  margin-left: -5px; }
  .btn-toolbar:before, .btn-toolbar:after {
    content: " ";
    display: table; }
  .btn-toolbar:after {
    clear: both; }
  .btn-toolbar .btn-group, .btn-toolbar .input-group {
    float: left; }
  .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
    margin-left: 5px; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  -webkit-border-radius: 0;
  border-radius: 0; }

.btn-group > .btn:first-child {
  margin-left: 0; }
  .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  -webkit-border-radius: 0;
  border-radius: 0; }

.btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle {
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn-group:last-child > .btn:first-child {
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px; }

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px; }

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none; }

.btn .caret {
  margin-left: 0; }

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px; }

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table; }
.btn-group-vertical > .btn-group:after {
  clear: both; }
.btn-group-vertical > .btn-group > .btn {
  float: none; }
.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  -webkit-border-radius: 0;
  border-radius: 0; }
.btn-group-vertical > .btn:first-child:not(:last-child) {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0; }
.btn-group-vertical > .btn:last-child:not(:first-child) {
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  -webkit-border-radius: 0;
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
  .btn-group-justified > .btn, .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%; }
  .btn-group-justified > .btn-group .btn {
    width: 100%; }
  .btn-group-justified > .btn-group .dropdown-menu {
    left: auto; }

[data-toggle="buttons"] > .btn > input[type="radio"], [data-toggle="buttons"] > .btn > input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  filter: alpha(opacity=0); }

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold; }

input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

input[type="radio"], input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

input[type="file"] {
  display: block; }

input[type="range"] {
  display: block;
  width: 100%; }

select[multiple], select[size] {
  height: auto; }

input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555; }

.form-control, form.checkout .input-text {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; }
  .form-control:focus, form.checkout .input-text:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
  .form-control::-moz-placeholder, form.checkout .input-text::-moz-placeholder {
    color: #181009;
    opacity: 1; }
  .form-control:-ms-input-placeholder, form.checkout .input-text:-ms-input-placeholder {
    color: #181009; }
  .form-control::-webkit-input-placeholder, form.checkout .input-text::-webkit-input-placeholder {
    color: #181009; }
  .form-control[disabled], form.checkout [disabled].input-text, .form-control[readonly], form.checkout [readonly].input-text, fieldset[disabled] .form-control, fieldset[disabled] form.checkout .input-text, form.checkout fieldset[disabled] .input-text {
    cursor: not-allowed;
    background-color: #eeeeee;
    opacity: 1; }

textarea.form-control, form.checkout textarea.input-text {
  height: auto; }

input[type="search"] {
  -webkit-appearance: none; }

input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
  line-height: 34px;
  line-height: 1.42857 \0; }
  input[type="date"].input-sm, .form-horizontal .form-group-sm input[type="date"].form-control, .form-horizontal .form-group-sm form.checkout input[type="date"].input-text, form.checkout .form-horizontal .form-group-sm input[type="date"].input-text, input[type="time"].input-sm, .form-horizontal .form-group-sm input[type="time"].form-control, .form-horizontal .form-group-sm form.checkout input[type="time"].input-text, form.checkout .form-horizontal .form-group-sm input[type="time"].input-text, input[type="datetime-local"].input-sm, .form-horizontal .form-group-sm input[type="datetime-local"].form-control, .form-horizontal .form-group-sm form.checkout input[type="datetime-local"].input-text, form.checkout .form-horizontal .form-group-sm input[type="datetime-local"].input-text, input[type="month"].input-sm, .form-horizontal .form-group-sm input[type="month"].form-control, .form-horizontal .form-group-sm form.checkout input[type="month"].input-text, form.checkout .form-horizontal .form-group-sm input[type="month"].input-text {
    line-height: 30px; }
  input[type="date"].input-lg, .form-horizontal .form-group-lg input[type="date"].form-control, .form-horizontal .form-group-lg form.checkout input[type="date"].input-text, form.checkout .form-horizontal .form-group-lg input[type="date"].input-text, input[type="time"].input-lg, .form-horizontal .form-group-lg input[type="time"].form-control, .form-horizontal .form-group-lg form.checkout input[type="time"].input-text, form.checkout .form-horizontal .form-group-lg input[type="time"].input-text, input[type="datetime-local"].input-lg, .form-horizontal .form-group-lg input[type="datetime-local"].form-control, .form-horizontal .form-group-lg form.checkout input[type="datetime-local"].input-text, form.checkout .form-horizontal .form-group-lg input[type="datetime-local"].input-text, input[type="month"].input-lg, .form-horizontal .form-group-lg input[type="month"].form-control, .form-horizontal .form-group-lg form.checkout input[type="month"].input-text, form.checkout .form-horizontal .form-group-lg input[type="month"].input-text {
    line-height: 46px; }

.form-group {
  margin-bottom: 15px; }

.radio, .checkbox {
  position: relative;
  display: block;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 10px; }
  .radio label, .checkbox label {
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }

.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9; }

.radio + .radio, .checkbox + .checkbox {
  margin-top: -5px; }

.radio-inline, .checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer; }

.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"], input[type="checkbox"][disabled], input[type="checkbox"].disabled, fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled, fieldset[disabled] .radio-inline, .checkbox-inline.disabled, fieldset[disabled] .checkbox-inline {
  cursor: not-allowed; }

.radio.disabled label, fieldset[disabled] .radio label, .checkbox.disabled label, fieldset[disabled] .checkbox label {
  cursor: not-allowed; }

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0; }
  .form-control-static.input-lg, .form-horizontal .form-group-lg .form-control-static.form-control, .form-horizontal .form-group-lg form.checkout .form-control-static.input-text, form.checkout .form-horizontal .form-group-lg .form-control-static.input-text, .form-control-static.input-sm, .form-horizontal .form-group-sm .form-control-static.form-control, .form-horizontal .form-group-sm form.checkout .form-control-static.input-text, form.checkout .form-horizontal .form-group-sm .form-control-static.input-text {
    padding-left: 0;
    padding-right: 0; }

.input-sm, .form-horizontal .form-group-sm .form-control, .form-horizontal .form-group-sm form.checkout .input-text, form.checkout .form-horizontal .form-group-sm .input-text {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  -webkit-border-radius: 3px;
  border-radius: 3px; }

select.input-sm, .form-horizontal .form-group-sm select.form-control, .form-horizontal .form-group-sm form.checkout select.input-text, form.checkout .form-horizontal .form-group-sm select.input-text {
  height: 30px;
  line-height: 30px; }

textarea.input-sm, .form-horizontal .form-group-sm textarea.form-control, .form-horizontal .form-group-sm form.checkout textarea.input-text, form.checkout .form-horizontal .form-group-sm textarea.input-text, select[multiple].input-sm, .form-horizontal .form-group-sm select[multiple].form-control, .form-horizontal .form-group-sm form.checkout select[multiple].input-text, form.checkout .form-horizontal .form-group-sm select[multiple].input-text {
  height: auto; }

.input-lg, .form-horizontal .form-group-lg .form-control, .form-horizontal .form-group-lg form.checkout .input-text, form.checkout .form-horizontal .form-group-lg .input-text {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  -webkit-border-radius: 6px;
  border-radius: 6px; }

select.input-lg, .form-horizontal .form-group-lg select.form-control, .form-horizontal .form-group-lg form.checkout select.input-text, form.checkout .form-horizontal .form-group-lg select.input-text {
  height: 46px;
  line-height: 46px; }

textarea.input-lg, .form-horizontal .form-group-lg textarea.form-control, .form-horizontal .form-group-lg form.checkout textarea.input-text, form.checkout .form-horizontal .form-group-lg textarea.input-text, select[multiple].input-lg, .form-horizontal .form-group-lg select[multiple].form-control, .form-horizontal .form-group-lg form.checkout select[multiple].input-text, form.checkout .form-horizontal .form-group-lg select[multiple].input-text {
  height: auto; }

.has-feedback {
  position: relative; }
  .has-feedback .form-control, .has-feedback form.checkout .input-text, form.checkout .has-feedback .input-text {
    padding-right: 42.5px; }

.form-control-feedback {
  position: absolute;
  top: 25px;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center; }

.input-lg + .form-control-feedback, .form-horizontal .form-group-lg .form-control + .form-control-feedback, .form-horizontal .form-group-lg form.checkout .input-text + .form-control-feedback, form.checkout .form-horizontal .form-group-lg .input-text + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px; }

.input-sm + .form-control-feedback, .form-horizontal .form-group-sm .form-control + .form-control-feedback, .form-horizontal .form-group-sm form.checkout .input-text + .form-control-feedback, form.checkout .form-horizontal .form-group-sm .input-text + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline {
  color: #3c763d; }
.has-success .form-control, .has-success form.checkout .input-text, form.checkout .has-success .input-text {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-success .form-control:focus, .has-success form.checkout .input-text:focus, form.checkout .has-success .input-text:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8; }
.has-success .form-control-feedback {
  color: #3c763d; }

.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline {
  color: #8a6d3b; }
.has-warning .form-control, .has-warning form.checkout .input-text, form.checkout .has-warning .input-text {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-warning .form-control:focus, .has-warning form.checkout .input-text:focus, form.checkout .has-warning .input-text:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3; }
.has-warning .form-control-feedback {
  color: #8a6d3b; }

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline {
  color: #a94442; }
.has-error .form-control, .has-error form.checkout .input-text, form.checkout .has-error .input-text {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-error .form-control:focus, .has-error form.checkout .input-text:focus, form.checkout .has-error .input-text:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede; }
.has-error .form-control-feedback {
  color: #a94442; }

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #754e2c; }

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control, .form-inline form.checkout .input-text, form.checkout .form-inline .input-text {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
    .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control, .form-inline .input-group form.checkout .input-text, form.checkout .form-inline .input-group .input-text {
      width: auto; }
  .form-inline .input-group > .form-control, .form-inline form.checkout .input-group > .input-text, form.checkout .form-inline .input-group > .input-text {
    width: 100%; }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio, .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
    .form-inline .radio label, .form-inline .checkbox label {
      padding-left: 0; }
  .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px; }
.form-horizontal .radio, .form-horizontal .checkbox {
  min-height: 27px; }
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px; }
  .form-horizontal .form-group:before, .form-horizontal .form-group:after {
    content: " ";
    display: table; }
  .form-horizontal .form-group:after {
    clear: both; }
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px; } }
.form-horizontal .has-feedback .form-control-feedback {
  top: 0;
  right: 15px; }
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.3px; } }
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px; } }

a {
  color: #002e62;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }

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

@-webkit-keyframes chapter-fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }

  70% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes chapter-fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px); }

  70% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px); }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes chapter-show {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(100%);
    transform: translateY(100%); }

  50% {
    opacity: 0;
    filter: alpha(opacity=0); }

  100% {
    top: 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    filter: alpha(opacity=100); } }

@keyframes chapter-show {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%); }

  50% {
    opacity: 0;
    filter: alpha(opacity=0); }

  100% {
    top: 0;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    filter: alpha(opacity=100); } }

@-webkit-keyframes chapter-hide {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    top: 0;
    -webkit-transform: translateY(2px);
    transform: translateY(2px); }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); } }

@keyframes chapter-hide {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    top: 0;
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px); }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    top: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); } }

@-webkit-keyframes chapter-show-rev {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }

  50% {
    opacity: 0;
    filter: alpha(opacity=0); }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    top: 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }

@keyframes chapter-show-rev {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    top: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); }

  50% {
    opacity: 0;
    filter: alpha(opacity=0); }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    top: 0;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%); } }

@-webkit-keyframes chapter-hide-rev {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    top: 0;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px); }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    top: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%); } }

@keyframes chapter-hide-rev {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    top: 0;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px); }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    top: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%); } }

@-webkit-keyframes scroll-indicator-fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    margin-top: 7px; }

  70% {
    opacity: 0;
    filter: alpha(opacity=0);
    margin-top: 7px; }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    margin-top: 0px; } }

@keyframes scroll-indicator-fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    margin-top: 7px; }

  70% {
    opacity: 0;
    filter: alpha(opacity=0);
    margin-top: 7px; }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    margin-top: 0px; } }

blockquote {
  position: relative;
  padding-left: 40px;
  margin: 25px 0 35px 0; }
  blockquote p {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px; }
  @media screen and (min-width: 480px) {
    blockquote {
      padding-left: 70px;
      margin: 45px 0 55px 0; }
      blockquote p {
        font-size: 30px;
        margin-bottom: 30px; } }
  /*blockquote footer {
    font-size: 20px;
    color: #002e62; }*/
  blockquote:before {
    content: """;
    position: absolute;
    top: 0;
    left: 0;
    color: #ff8f1c;
    font-size: 60px;
    line-height: 1; }
    @media screen and (min-width: 480px) {
      blockquote:before {
        font-size: 120px; } }

/** BUTTONS */
button {
  border: none;
  outline: none; }
  button:active, button:hover, button:focus {
    outline: none; }

.btn {
  text-align: center;
  font-weight: 400;
  /*background-color: #aa8c70;*/
  color: #fff;
  border-color: transparent;
  padding: 6px 15px;
  font-size: 16px; }
  .btn:active, .btn:hover, .btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn:hover {
    outline: none;
    background:#999 ;
    color: #fff; }

a.btn {
  text-decoration: none; }

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  opacity: 1;
  filter: alpha(opacity=100); }

.btn-sm, .btn-group-sm > .btn {
  font-size: 14px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 6px 12px;
  color: #fff; }

.btn-md {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 12px 30px;
  font-size: 20px;
  min-width: 160px; }

.btn-lg, .btn-group-lg > .btn {
  padding: 13px 25px;
  font-size: 20px; }

.btn-xl {
  height: 90px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  font-size: 20px; }
  @media screen and (min-width: 480px) {
    .btn-xl {
      font-size: 30px; } }

.btn-group .btn {
  background: #aa8c70;
  color: #fff;
  border: none;
  border-left: 1px solid #b3987f;
  border-right: 1px solid #b3987f;
  text-decoration: none;
  padding: 14px 15px 14px 15px;
  font-weight: 300;
  font-size: 15px;
  line-height: 15px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  line-height: 18px;
  vertical-align: middle; }
  .btn-group .btn:first-child {
    border-left: none;
    padding-left: 20px; }
  .btn-group .btn:last-child {
    border-right: none;
    padding-right: 20px; }

.btn-group .btn-group-label {
  font-size: 18px;
  padding-top: 13px;
  padding-bottom: 13px; }

.btn-group .icon-bag {
  font-size: 18px; }

.btn-group .disabled {
  cursor: default; }

.btn-group .btn-default:hover {
  background-color: #bda690; }

.btn-light {
  background-color: #f4f4f4; }

.btn-submit {
  background-color: #002e62;
  color: #fff; }
  @media (max-width: 480px) {
    .btn-submit {
      width: 100%; } }

@font-face {
  font-family: 'tiempos';
  font-weight: normal;
  src: url('../fonts/TiemposHeadline-LightItalic/tiemposheadline-lightitalic.eot');
  src: url('../fonts/TiemposHeadline-LightItalic/tiemposheadline-lightitalic.eot') format('embedded-opentype'), url('../fonts/TiemposHeadline-LightItalic/tiemposheadline-lightitalic.woff') format('woff'), url('../fonts/TiemposHeadline-LightItalic/tiemposheadline-lightitalic.ttf') format('truetype'), url('../fonts/TiemposHeadline-LightItalic/tiemposheadline-lightitalic.svg#TiemposHeadlineLightItalic') format('svg');
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: 'akzidenz';
  src: url('../fonts/AkzidenzGrotesk-Regular/akzidenzgrotesk-regular.eot');
  src: url('../fonts/AkzidenzGrotesk-Regular/akzidenzgrotesk-regular.eot') format('embedded-opentype'), url('../fonts/AkzidenzGrotesk-Regular/akzidenzgrotesk-regular.woff') format('woff'), url('../fonts/AkzidenzGrotesk-Regular/akzidenzgrotesk-regular.ttf') format('truetype'), url('../fonts/AkzidenzGrotesk-Regular/akzidenzgrotesk-regular.svg#AkzidenzGroteskBQRegular') format('svg');
  font-style: normal;
  font-weight: 400; }

@font-face {
  font-family: 'akzidenz';
  src: url('../fonts/AkzidenzGrotesk-Medium/akzidenzgrotesk-medium.eot');
  src: url('../fonts/AkzidenzGrotesk-Medium/akzidenzgrotesk-medium.eot') format('embedded-opentype'), url('../fonts/AkzidenzGrotesk-Medium/akzidenzgrotesk-medium.woff') format('woff'), url('../fonts/AkzidenzGrotesk-Medium/akzidenzgrotesk-medium.ttf') format('truetype'), url('../fonts/AkzidenzGrotesk-Medium/akzidenzgrotesk-medium.svg#AkzidenzGroteskBQMedium') format('svg');
  font-style: normal;
  font-weight: 500; }

.form-styled .label-hidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

.form-border-top {
  border-top: 1px solid #e0cfc1; }

.form-control, form.checkout .input-text {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border: none;
  color: #181009;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #f4f4f4;
  font-size: 18px;
  padding: 15px 25px;
  height: 54px; }
  .form-control:focus, form.checkout .input-text:focus, .form-control:active, form.checkout .input-text:active {
    outline: none; }

abbr[title].required {
  border-bottom: none;
  color: red; }

.form-actions {
  margin-top: 10px; }

.form-group {
  margin-bottom: 30px; }
  .form-group label {
    font-size: 20px;
    font-weight: normal;
    color: #140f0a; }

.form-alt .form-control, .form-alt form.checkout .input-text, form.checkout .form-alt .input-text {
  background-color: #fff; }

input[type="text"] {
  font-weight: 400; }

.custom-select, .wpcf7-form-control-wrap.product, .wpcf7-form-control-wrap.country {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  border: none;
  color: #181009;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #f4f4f4;
  font-size: 18px;
  height: 54px;
  text-align: left; }
  .custom-select.form-control, .form-control.wpcf7-form-control-wrap.product, form.checkout .wpcf7-form-control-wrap.product.input-text, .form-control.wpcf7-form-control-wrap.country, form.checkout .wpcf7-form-control-wrap.country.input-text, form.checkout .custom-select.input-text {
    padding: 0; }
  .custom-select.placeholder div, .placeholder.wpcf7-form-control-wrap.product div, .placeholder.wpcf7-form-control-wrap.country div {
    color: #181009; }
  .custom-select:before, .wpcf7-form-control-wrap.product:before, .wpcf7-form-control-wrap.country:before {
    content: " ";
    display: block;
    height: 54px;
    width: 54px;
    position: absolute;
    right: 0;
    top: 0;
    border-left: 1px solid #fff;
    background: url(../images/icons.png) 0 -247px no-repeat; }
  .custom-select div, .wpcf7-form-control-wrap.product div, .wpcf7-form-control-wrap.country div {
    padding: 15px 25px; }
  .custom-select select, .wpcf7-form-control-wrap.product select, .wpcf7-form-control-wrap.country select {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    margin-left: 10px;
    -webkit-appearance: none;
    -moz-appearance: none; }

.wpcf7-form-control-wrap.product, .wpcf7-form-control-wrap.country {
  display: block; }

@media (min-width: 768px) {
  .form-login {
    margin-top: 60px; } }

@font-face {
  font-family: 'icomoon';
  src: url('../fonts/icomoon/icomoon1331.eot?mzv8s0');
  src: url('../fonts/icomoon/icomoond41d.eot?#iefixmzv8s0') format('embedded-opentype'), url('../fonts/icomoon/icomoon1331.woff?mzv8s0') format('woff'), url('../fonts/icomoon/icomoon1331.ttf?mzv8s0') format('truetype'), url('../fonts/icomoon/icomoon1331.svg?mzv8s0#icomoon') format('svg');
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"] {
  font-family: 'akzidenz', "helvetica neue", helvetica, arial, sans-serif;';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-hamburger:before {
  content: "\e604"; }

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

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

.icon-bag:before {
  content: "\e600"; }

.icon-cross:before {
  content: "\e603"; }

.usp-icon {
 /* background-image: url(../images/icons.png);*/
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  top: 1px;
  position: relative;
  width: 137px;
  height: 120px; }

.usp-icon-connect {
  background-position: 0 -17px; }

.usp-icon-cordless {
  background-position: 0 -167px; }

.usp-icon-pair {
  background-position: 0 -92px; }

.boxed-image, .boxed-figure {
  padding: 20px;
  background-color: #f4f4f4;
  -webkit-border-radius: 15px;
  border-radius: 15px; }
  @media screen and (max-width: 480px) {
    .boxed-image, .boxed-figure {
      display: block;
      float: none !important;
      margin: 0 auto 30px auto !important; } }

.boxed-figure {
  display: block;
  margin: 0;
  text-align: center;
  padding: 50px 0 80px; }
  .boxed-figure figcaption {
    font-family: 'akzidenz', "helvetica neue", helvetica, arial, sans-serif;
    color: #002e62;
    margin-bottom: 40px; }

.pull-right {
  float: right; }

.pull-left {
  float: left; }

img.pull-right {
  margin-left: 30px;
  margin-bottom: 30px; }

img.pull-left {
  margin-right: 30px;
  margin-bottom: 30px; }

/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
/*article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }
*/
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio, canvas, progress, video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

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

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden], template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

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

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

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

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

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

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

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

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

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

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

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 1em 40px; }

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

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button, input, optgroup, select, textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10.
 */
button {
  overflow: visible; }

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

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

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

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"], input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

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

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

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

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

/**
 * Remove default vertical scrollbar in IE 8/9.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

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

td, th {
  padding: 0; }

.svg-inline {
  display: inline-block; }

.svg-hamburger {
  //fill: #002e62;
  fill:#ff8f1c;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -moz-transform: scale(1) translate(0.01em, 0.01em);
  opacity: 1;
  -webkit-transition: -webkit-transform 0.4s ease-in-out, opacity 0.2s;
  transition: transform 0.4s ease-in-out, opacity 0.2s;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center; }

.svg-cross {
  //fill: #002e62;
  fill:#ff8f1c;
  -webkit-transition: -webkit-transform 0.4s ease-in-out, opacity 0.2s;
  transition: transform 0.3s ease-in-out, opacity 0.5s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -moz-transform: scale(0) translate(1em, 1em);
  opacity: 0;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center; }

.navigationActive .svg-cross {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -moz-transform: scale(1) translate(0.01em, 0.01em); }
.navigationActive .svg-hamburger {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -moz-transform: scale(0) translate(1em, 1em); }

.table {
  width: 100%;
  font-size: 20px;
  margin-bottom: 90px; }
  .table thead th {
    text-align: left;
    font-weight: 300;
    border-bottom: 1px solid #d4c5b7;
    padding-bottom: 25px; }
  .table tbody td {
    font-weight: 500;
    letter-spacing: -1px;
    padding: 25px 0;
    border-bottom: 1px solid #eee8e2;
    font-family: 'akzidenz', "helvetica neue", helvetica, arial, sans-serif;
    font-weight: 500; }
  .table tfoot th, .table tfoot td {
    padding: 20px 0; }
  .table tfoot td {
    font-weight: 500; }
  .table tfoot th {
    font-weight: 300;
    text-align: right; }
  .table .subtotal th {
    text-align: right;
    font-weight: normal; }
  .table .subtotal th, .table .subtotal td {
    border-bottom: 1px solid #d4c5b7; }
  .table .tax {
    border-bottom: 1px solid #eee8e2;
    border-top: 1px solid #eee8e2; }
  .table .order-total td, .table .order-total th {
    color: #002e62;
    font-weight: 500; }

.table-compact tfoot th, .table-compact tfoot td {
  padding: 15px 0; }
.table-compact thead th {
  padding-bottom: 10px; }

.well .table {
  margin-bottom: 10px; }

.well .table tbody td {
  border-color: #e4d9ce; }

.well .table .shipping, .well .table .tax {
  border-color: #e4d9ce; }

@media (min-width: 768px) {
  .table-huge tbody {
    font-size: 30px; } }

.html {
  font-size: 62.5%;
  /* Sets up the Base 10 stuff */ }

body {
  -moz-osx-font-smoothing: grayscale;
  font-family: 'akzidenz', "helvetica neue", helvetica, arial, sans-serif;
  color: #181009;
  font-size: 15px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'akzidenz', "helvetica neue", helvetica, arial, sans-serif;
  font-weight: 500; }

h1 {
  font-size: 30px;
  margin: 0 0 20px 0;
  line-height: 1em;
  letter-spacing: -1px; }
  @media (min-width: 768px) {
    h1 {
      font-size: 60px;
      margin-bottom: 50px; } }

h2 {
  margin: 0 0 20px 0;
  line-height: 1.1;
  letter-spacing: -1px;
  font-size: 40px; }
  @media (min-width: 992px) {
    h2 {
      font-size: 60px; } }
  @media screen and (min-width: 1500px) {
    h2.jumbotron {
      font-size: 80px; } }

h3 {
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: -2px;
  margin-top: 0; }
  @media (min-width: 480px) {
    h3 {
      font-size: 30px; } }
  @media screen and (min-width: 768px) {
    h3 {
      margin-bottom: 55px; } }

h5 {
  margin: 0 0 0px 0;
  font-size: 16px;
  font-weight: lighter; }
  @media (max-width: 768px) {
    h5 {
      font-size: 24px; } }

h6 {
  font-size: 20px;
  margin: 0px 0 20px 0; }
  @media screen and (min-width: 768px) {
    h6 {
      font-size: 15px; } }

h1.alt, h2.alt, h3.alt, h4.alt, h5.alt, h6.alt {
  color: #000; }

p {
  line-height: 1.4;
  margin-bottom: 30px; }

.lead {
  font-family: 'tiempos';
  font-style: italic;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  margin: 0 0 40px 0;
  font-size: 16px; }
  @media (min-width: 768px) {
    .lead {
      font-size: 20px; } }

@media (min-width: 768px) {
  .lead-larger {
    font-size: 25px; } }

.bold {
  font-weight: 500; }

.technical-usp-text {
  line-height: 1.5;
  margin-bottom: 70px; }

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

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

.green-link {
  color: #8dc63f;
  text-decoration: none;
  font-weight: 500; }
  .green-link:hover {
    text-decoration: underline; }

strong {
  font-weight: 500; }

.alt {
  color: #002e62; }

@media screen and (min-width: 1500px) {
  .start-section .jumbotron h2 {
    font-size: 80px;
    margin-bottom: 30px; }
  .start-section .jumbotron .lead {
    font-size: 24px; } }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1200px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container-fluid:before, .container-fluid:after {
    content: " ";
    display: table; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-left: -15px;
  margin-right: -15px; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-1 {
  width: 8.33333%; }

.col-xs-2 {
  width: 16.66667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.33333%; }

.col-xs-5 {
  width: 41.66667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.33333%; }

.col-xs-8 {
  width: 66.66667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.33333%; }

.col-xs-11 {
  width: 91.66667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.33333%; }

.col-xs-pull-2 {
  right: 16.66667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.33333%; }

.col-xs-pull-5 {
  right: 41.66667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.33333%; }

.col-xs-pull-8 {
  right: 66.66667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.33333%; }

.col-xs-pull-11 {
  right: 91.66667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.33333%; }

.col-xs-push-2 {
  left: 16.66667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.33333%; }

.col-xs-push-5 {
  left: 41.66667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.33333%; }

.col-xs-push-8 {
  left: 66.66667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.33333%; }

.col-xs-push-11 {
  left: 91.66667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.33333%; }

.col-xs-offset-2 {
  margin-left: 16.66667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.33333%; }

.col-xs-offset-5 {
  margin-left: 41.66667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.33333%; }

.col-xs-offset-8 {
  margin-left: 66.66667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.33333%; }

.col-xs-offset-11 {
  margin-left: 91.66667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-1 {
    width: 8.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 22.1%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 90.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.33333%; }
  .col-sm-pull-2 {
    right: 16.66667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.33333%; }
  .col-sm-pull-5 {
    right: 41.66667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.33333%; }
  .col-sm-pull-8 {
    right: 66.66667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.33333%; }
  .col-sm-pull-11 {
    right: 91.66667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.33333%; }
  .col-sm-push-2 {
    left: 16.66667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.33333%; }
  .col-sm-push-5 {
    left: 41.66667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.33333%; }
  .col-sm-push-8 {
    left: 66.66667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.33333%; }
  .col-sm-push-11 {
    left: 91.66667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-1 {
    width: 8.33333%; }
  .col-md-2 {
    width: 16.66667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.33333%; }
  .col-md-5 {
    width: 41.66667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.33333%; }
  .col-md-8 {
    width: 66.66667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.33333%; }
  .col-md-11 {
    width: 91.66667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.33333%; }
  .col-md-pull-2 {
    right: 16.66667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.33333%; }
  .col-md-pull-5 {
    right: 41.66667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.33333%; }
  .col-md-pull-8 {
    right: 66.66667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.33333%; }
  .col-md-pull-11 {
    right: 91.66667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.33333%; }
  .col-md-push-2 {
    left: 16.66667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.33333%; }
  .col-md-push-5 {
    left: 41.66667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.33333%; }
  .col-md-push-8 {
    left: 66.66667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.33333%; }
  .col-md-push-11 {
    left: 91.66667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    margin-left: 91.66667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-1 {
    width: 8.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.33333%; }
  .col-lg-pull-2 {
    right: 16.66667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.33333%; }
  .col-lg-pull-5 {
    right: 41.66667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.33333%; }
  .col-lg-pull-8 {
    right: 66.66667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.33333%; }
  .col-lg-pull-11 {
    right: 91.66667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.33333%; }
  .col-lg-push-2 {
    left: 16.66667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.33333%; }
  .col-lg-push-5 {
    left: 41.66667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.33333%; }
  .col-lg-push-8 {
    left: 66.66667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.33333%; }
  .col-lg-push-11 {
    left: 91.66667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-sizing: border-box; }

body {
  font-family: 'akzidenz', "helvetica neue", helvetica, arial, sans-serif; }


body, html {
  height: 100%;
  margin: 0;
  padding: 0; }

html, body {
  min-height: 100%; }

.main-content {
  position: relative;
  min-height: 100%; }
  @media screen and (max-width: 767px) {
    .main-content {
      padding-top: 74px; } }

.page-start .main-content {
  height: 100%; }

.product-section {
  padding: 50px 0;
 /* background-color: #fff;*/
 /* border-bottom: 1px solid #002e62;*/ }
  .product-section h2 {
    margin-bottom: 15px; }
  @media screen and (min-width: 480px) {
    .product-section {
      padding: 40px 0 0px 0; } }
  @media screen and (max-width: 768px) {
    .product-section p, .product-section h2, .product-section h3, .product-section h4, .product-section h5, .product-section h6, .product-section .specification-list-container {
      padding-left: 10px;
      padding-right: 10px; } }

.block-center {
  margin: 0 auto;
  display: block; }
  @media screen and (max-width: 768px) {
    .block-center {
      padding: 40px 0; } }

ul.clean {
  list-style: none;
  margin: 0;
  padding: 0; }
  ul.clean a {
    color: #181009;
    text-decoration: none; }
    ul.clean a:hover {
      text-decoration: underline; }

.page-beige, .page-sign-in {
  background-color: #f4f4f4; }

.page-signin .page-header, .page-sign-in .page-header {
  text-align: center;
  margin-bottom: 0; }
  @media (min-width: 768px) {
    .page-signin .page-header, .page-sign-in .page-header {
      max-width: 630px;
      margin-left: auto;
      margin-right: auto; } }
  @media (min-width: 992px) {
    .page-signin .page-header, .page-sign-in .page-header {
      margin-top: 260px; } }

.section-padding {
  padding-bottom: 30px; }

.spacing-bottom-sm {
  margin-bottom: 10px; }

.well {
  background-color: #f4f4f4;
  padding: 20px 40px;
  -webkit-border-radius: 15px;
  border-radius: 15px; }

.well-alt {
  background-color: inherit;
  border: 1px solid #e1dcd8;
  padding-left: 20px;
  padding-right: 20px; }

@media (min-width: 992px) {
  .offset-top {
    margin-top: 90px; } }

.container.offset-top {
  margin-top: 210px; }

.spacing-bottom {
  margin-bottom: 80px; }

.hidden {
  display: none; }

@media (min-width: 480px) {
  .two-columns {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px; } }

@media (min-width: 480px) {
  ul.two-columns {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0; } }

@media (min-width: 992px) {
  .container.extra-spacing {
    margin-top: 120px;
    margin-bottom: 120px; } }

.preload, .preload-image {
  background-repeat: no-repeat;
  background-position: -99999px -99999px; }

.call-to-action {
  text-align: center;
  border: 1px solid #ebeae8;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .call-to-action {
      padding: 50px 30px; } }
  .call-to-action h3 {
    margin: 0 0 20px 0;
    letter-spacing: inherit; }
  .call-to-action p {
    font-size: 20px;
    margin: 0; }

.page-header {
  margin: 30px 0 20px; }
  @media screen and (min-width: 768px) {
    .page-header {
      margin: 140px 0 20px; } }

.section-header {
 // background-color: #f7f3f0;
 background-color: white;
  padding: 20px 0;
  margin-bottom: 40px;
  background-position: bottom center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain; }
  .section-header .subtitle {
    font-size: 20px;
    margin: 0; }
  .section-header.white {
    background-color: #fff; }
  @media screen and (min-width: 480px) {
    .section-header {
      padding: 30px 0 30px 0;
      margin-bottom: 50px; } }
  @media screen and (min-width: 768px) {
    .section-header {
      padding: 120px 0 120px 0; } }

@media screen and (min-width: 768px) {
  .top-section-header {
    padding-top: 194px; } }

.section-header-content {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px; }

.plate {
  background: #f4f4f4; }
  @media screen and (min-width: 768px) {
    .plate {
      padding: 150px 0;
      margin-bottom: 70px; } }

.columns-2 {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px; }

.page-about .page-header {
  padding-bottom: 40px; }
  @media screen and (min-width: 768px) {
    .page-about .page-header {
      padding-bottom: 120px; } }

.about-figure {
  margin: 0;
  padding-bottom: 20px; }
  @media screen and (min-width: 768px) {
    .about-figure {
      padding-bottom: 100px; } }

.carousel-indicators li {
  border-width: 0;
  margin: 0 10px;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 16px;
  height: 16px;
  background: transparent url('../images/carousel-indicators.png') no-repeat;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0; }
  .carousel-indicators li.active {
    margin: 0 10px;
    width: 16px;
    height: 16px;
    background-color: transparent;
    background-image: url('../images/carousel-indicators-active.png'); }

.product-carousel {
  height: 300px; }
  .product-carousel .carousel-inner {
    height: 100%; }
    .product-carousel .carousel-inner > .item {
      height: 100%;
      background-repeat: no-repeat;
      -webkit-background-size: cover;
      background-size: cover; }
      @media (min-width: 768px) {
        .product-carousel .carousel-inner > .item {
          -webkit-background-size: cover;
          background-size: cover;
          background-position: center center; } }
  @media (min-width: 768px) {
    .product-carousel {
      height: 600px; } }
  @media (min-width: 992px) {
    .product-carousel {
      height: 610px; } }

.product-info {
  padding: 20px 0 30px 0; }
  .product-info .product-price .currency {
    margin-right: 4px; }

.product-carousel .product-info {
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  color: #aa8c70; }
  .product-carousel .product-info .lead {
    margin-bottom: 70px; }
  @media (min-width: 992px) {
    .product-carousel .product-info {
      top: 60px; }
      .product-carousel .product-info .jumbotron {
        margin-bottom: 20px;
        font-size: 160px; } }
  @media (min-width: 1200px) {
    .product-carousel .product-info .jumbotron {
      margin-top: 50px; } }

form.checkout fieldset {
  border: 0; }
form.checkout .vers_payment_box {
  max-width: 800px; }
@media (max-width: 768px) {
  form.checkout .form-row {
    width: 100%; } }

/*
.checkout-order-table {
	width: 100%;
	font-size: 20px;
	margin-bottom: 90px;

	thead th {
		text-align: left;
		font-weight: 300;
		border-bottom: 1px solid $table-border-dark;
		padding-bottom: 25px;
	}

	tbody td {
		font-weight: 600;
		padding: 25px 0;
		border-bottom: 1px solid $table-border-light;
		font-family: $header-font-family;
		font-weight: 500;
	}

	tfoot th,
	tfoot td {
		padding: 20px 0;
	}

	tfoot td {
		font-weight: 500;
	}

	tfoot th {
		font-weight: 300;
		text-align: right;
	}

	.subtotal {
		border-bottom: 1px solid $table-border-dark;
	}

	.shipping, .tax {
		border-bottom: 1px solid $table-border-light;
	}

	.order-total td,
	.order-total th {
		color: $link-color;
		font-weight: 500;
	}
}*/
.checkout-payment-type {
  margin: 40px 0 60px 0;
  overflow: hidden; }

.checkout-payment-type-options {
  overflow: hidden; }
  .checkout-payment-type-options .radio {
    float: left;
    margin-right: 50px; }
    .checkout-payment-type-options .radio + .radio {
      margin-top: 10px; }
  .checkout-payment-type-options .payment_box {
    display: none; }

.checkout-payment-info {
  background-color: #e7e7e6;
  padding: 10px 20px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  font-size: 15px;
  position: relative; }
  .checkout-payment-info p {
    margin: 0; }
  .checkout-payment-info .arrow {
    border-style: solid;
    border-color: transparent transparent #e7e7e6  transparent;
    border-width: 10px;
    position: absolute;
    top: -20px;
    -webkit-transition: left .3s;
    transition: left .3s; }

.table .shipping td {
  border: none;
  padding: 5px 0;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0; }

.table .shipping tr:last-child td {
  padding-bottom: 25px; }

.table .shipping th {
  text-align: left;
  font-weight: normal;
  padding: 30px 0 20px 0; }

.checkbox, .radio, .radio-small {
  position: relative; }
  .checkbox input, .radio input, .radio-small input {
    opacity: 0;
    position: absolute; }
  .checkbox span, .radio span, .radio-small span {
    display: inline-block;
    vertical-align: middle;
    margin-top: -1px;
    width: 36px;
    height: 36px; }

.checkbox label, .radio label {
  padding-left: 0;
  line-height: 36px;
  font-size: 18px; }

.checkbox span, .radio span {
  margin-right: 10px; }

.radio span {
  background: url(../images/checkboxes.png) -36px 0 no-repeat; }
.radio input:checked + span {
  background-position: -36px -36px; }
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .radio span {
    background: url(../images/checkboxes%402x.png) -36px 0 no-repeat;
    -webkit-background-size: 200px 200px;
    background-size: 200px 200px; } }

.checkbox span {
  background: url(../images/checkboxes.png) 0 0 no-repeat; }
.checkbox input:checked + span {
  background-position: 0 -36px; }
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .checkbox span {
    background: url(../images/checkboxes%402x.png) 0 0 no-repeat;
    -webkit-background-size: 200px 200px;
    background-size: 200px 200px; } }

.radio-small label {
  line-height: 18px;
  cursor: pointer; }

.radio-small input {
  margin-left: 20px; }

.radio-small span {
  width: 18px;
  height: 18px;
  margin-top: -1px; }

.radio-small span {
  background: url(../images/checkboxes.png) -18px 0 no-repeat;
  -webkit-background-size: 100px 100px;
  background-size: 100px 100px; }
.radio-small input:checked + span {
  background-position: -18px -18px; }

.customer-details {
  font-size: 20px; }

.customer-details-column {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px; }
  .customer-details-column h6 {
    font-weight: 400;
    font-size: 20px;
    border-bottom: 1px solid #d4c5b7;
    padding-bottom: 25px; }
  .customer-details-column ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  .customer-details-column li {
    padding: 7px 0; }

@media screen and (min-width: 768px) {
  .customer-details-container {
    display: table;
    width: 100%; }
  .customer-details {
    display: table-row; }
  .customer-details-column {
    display: table-cell; } }

.customer-details-edit {
  color: #8dc63f;
  text-decoration: none;
  position: absolute;
  bottom: 0; }
  .customer-details-edit:hover {
    text-decoration: underline; }

/*.main-footer {
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px; }
  .main-footer:before, .main-footer:after {
    content: " ";
    display: table; }
  .main-footer:after {
    clear: both; }
  @media (min-width: 768px) {
    .main-footer {
      width: 750px; } }
  @media (min-width: 992px) {
    .main-footer {
      width: 970px; } }
  @media (min-width: 1200px) {
    .main-footer {
      width: 1200px; } }

.main-footer-content {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  border-top: 1px solid #e0cfc1;
  padding: 30px 0; }
  @media screen and (max-width: 991px) {
    .main-footer-content {
      text-align: center; } }
  .main-footer-content a {
    color: #000;
    text-decoration: none; }
    .main-footer-content a:hover {
      text-decoration: underline; }

.main-footer-phone {
  margin-right: 15px; }

address {
  font-style: normal;
  margin-bottom: 10px; }

@media screen and (min-width: 768px) {
  .main-footer-content-right {
    float: right; }
  address {
    float: left; } }*/

.navbar-main {
  //background: #181009;
/*background:#002e62;*/
  position: absolute;
  top: 129px !important;
  width: 100%;
  min-height: 44px;
  z-index: 1100; }
  @media screen and (min-width: 768px) {
    .navbar-main {
      width: auto; } }

.navbar-main-site-title {
  height: 74px;
  text-align: center;
  margin: 0;
  font-weight: 400;
  float: left; }
  .navbar-main-site-title a {
  /*  background: url(../images/wpe-logo.png) no-repeat 50% 50%;*/
    width: 75px;
    height: 50px;
    display: block; }
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
      .navbar-main-site-title a {
        background-image: url(../images/vers-logo%402x.png);
        -webkit-background-size: 38px 15px;
        background-size: 38px 15px; } }

.navbar-main-menu {
  //background: #181009;
  background:#002e62;
  overflow: hidden;
  width: 100%;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: left .4s ease;
  transition: left .4s ease;
  color: #002e62;
  font-size: 20px; }
  .navbar-main-menu a {
    -webkit-transition: color .3s;
    transition: color .3s; }
  @media screen and (max-width: 767px) {
    .navbar-main-menu.collapse {
      display: none; } }
  .navbar-main-menu.collapse.in {
    display: block; }
	
	
  @media screen and (min-width: 768px) {
    .navbar-main-menu {
      width: 151px;
      top:50px;
      left: -200px;
      position:absolute;	  
      height: 635px; }
      .navbar-main-menu > * {
        -webkit-transition: opacity .4s;
        transition: opacity .4s;
        opacity: 0; } }
  .navbar-main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  .navbar-main-menu .active a {
    /*color: #3a2d22;*/ }
  .navbar-main-menu .darken a {
    //color: #3a2d22; 
	color:#666;}
  .navbar-main-menu .darken .cart-badge {
    background-color: #3a2d22; }

.navigationActive .navbar-main-menu {
  left: 0;
  display: block; }
  .navigationActive .navbar-main-menu > * {
    opacity: 1; }

.navbar-main-toggle-navigation {
  float: right;
  //color: #002e62;
  color: #ff8f1c;
  font-size: 20px;
/*  border-left: 1px solid #3a2d22;*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .navbar-main-toggle-navigation .toggle {
    background-color: transparent;
    display: inline-block;
    vertical-align: middle;
    padding: 0px 10px 23px 2px;
    height: 74px;
    position: relative; }

.navbar-main-page-title {
  margin-right: 10px;
  font-weight: 400;
  display: inline-block;
  line-height: 29px;
  top: -6px;
  position: relative; }

/*.navbar-main-menu {
	overflow: hidden;
	font-size: 15px;

	.product {
		font-size: 20px;
	}

	li {
		border-top: 1px solid $header-border-color;
		float: left;
		width: 50%;
		height: 85px;

		&:last-child {
			border-bottom: 1px solid $header-border-color;
		}
	}

	.product {
		float: none;
		width: auto;
	}
}*/
.nav-header-btn {
  float: right;
 //background-color: #aa8c70;
 background-color:#c1c6c8;
  color: #fff;
  height: 74px;
  line-height: 26px;
  padding: 22px 10px;
  font-size: 14px;
  text-decoration: none;
  //border-right: 1px solid #bda38a; 
  border-right: 1px solid white;}
  .nav-header-btn:last-child {
    border-right: 0; }
  .nav-header-btn.disabled {
    cursor: default;
    background-color: #a07f60; }
  .nav-header-btn.buy-label {
    position: relative;
    padding-right: 40px; }
    .nav-header-btn.buy-label:after {
      content: " >";
      position: absolute;
      top: 35%;
      right: 19px;
      -webkit-transition: all 200ms ease-in-out;
      transition: all 200ms ease-in-out; }
    .nav-header-btn.buy-label:hover:after {
      right: 14px; }

  .nav-header-btn:not(.disabled):hover {
    //background-color: #bda690; 
	background-color: #002e62;}
  @media screen and (max-width: 767px) {
    .nav-header-btn {
      display: none; } }
  @media screen and (min-width: 768px) {
    .nav-header-btn {
      padding: 25px 30px;
      font-size: 20px;
      height: 74px; } }

.navbar-main a:hover {
  text-decoration: none; }

.navbar-header-cart .icon {
  margin-right: 7px;
  font-size: 26px;
  vertical-align: text-bottom; }

@media screen and (max-width: 480px) {
  .navbar-main-menu a {
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    top: 5px;
    position: relative; }
  .navbar-main-menu.in a {
    opacity: 1;
    top: 0; } }

/*
.navbar-main-menu-bottom {


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

	@media screen and (max-width: $screen-xs) {
	li {
		float: left;
		width: 50%;
		list-style: none;
		border-left: 1px solid $header-border-color;
		border-bottom: 1px solid $header-border-color;

		&:nth-child(odd) {
			border-left: none;
		}

		a {
			padding: 20px;
		}
	}
}



	width: 100%;
	font-size: 15px;

	a {
		padding: 10px 0;

	}
}
*/
.cart-badge {
  background: #002e62;
  color: #000;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  display: inline-block;
  margin-left: 10px;
  -webkit-transition: background-color .3s;
  transition: background-color .3s; }
  @media screen and (min-width: 768px) {
    .cart-badge {
      display: block;
      margin: 10px auto; } }

.collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height .35s ease;
  transition: height .35s ease; }

.navbar-main-menu {
  font-size: 12px; }
  .navbar-main-menu .navbar-main-menu-products {
    font-size: 14px; }

.navbar-main-menu-top, .navbar-main-menu-bottom, .navbar-main-menu-products {
  overflow: hidden; }
  .navbar-main-menu-top li, .navbar-main-menu-bottom li, .navbar-main-menu-products li {
    //border-top: 1px solid #3a2d22;
	border-top: 1px solid white;  }
  .navbar-main-menu-top a, .navbar-main-menu-bottom a, .navbar-main-menu-products a {
    padding: 25px;
    //color: #002e62;
	color:white;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 20px 0; }

.navbar-main-menu-top li, .navbar-main-menu-bottom li {
  display: block;
  width: 50%;
  float: left;
  line-height: 25px; }
  .navbar-main-menu-top li:nth-child(odd), .navbar-main-menu-bottom li:nth-child(odd) {
   /* border-right: 1px solid #3a2d22*/; }
@media (min-width: 768px) {
  .navbar-main-menu-top li, .navbar-main-menu-bottom li {
    width: 100%;
    float: none; } }

@media (min-width: 768px) {
  .navbar-main-menu-top li:last-child {
    border-bottom: 1px solid #3a2d22; }
  .navbar-main-menu-top a {
    padding: 12px 0; } }

@media (min-width: 768px) {
  .navbar-main-menu-bottom {
    position: absolute;
    width: 100%;
    bottom: 74px;
    margin-bottom: 50px !important; }
    .navbar-main-menu-bottom li {
      border: none; }
    .navbar-main-menu-bottom a {
      padding: 5px 0; } }

.press-product-row {
  border-bottom: 1px solid #002d60;
  padding-bottom: 20px;
  margin-bottom: 45px; }
  .press-product-row:last-child, .press-product-row .last-child {
    border-bottom: none;
    margin-bottom: 0; }
  .press-product-row h3 {
    margin-bottom: 20px; }
  .press-product-row h6 {
    margin-bottom: 20px; }

.inline-images {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 0px;
  overflow: hidden;
  margin-left: -15px;
  margin-right: -15px; }
  @media screen and (min-width: 480px) {
    .inline-images {
      margin-top: 25px; } }
  .inline-images li {
    display: inline-block;
    float: left;
    padding: 0 15px; }
    .inline-images li:first-child {
      margin-left: 0; }
  .inline-images a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70); }

.plant-a-tree {
  padding: 50px 0; }
  @media screen and (min-width: 480px) {
    .plant-a-tree {
      padding: 80px 0; } }
  .plant-a-tree h3 {
    font-size: 35px;
    margin-bottom: 20px; }
    @media screen and (min-width: 768px) {
      .plant-a-tree h3 {
        font-size: 40px; } }

/*.plant-a-tree-heading {
	letter-spacing: -1px;
	line-height: 1;
	margin-bottom: 20px;

	@media screen and (min-width: $screen-xs-min) {
		font-size: 40px;
		font-weight: 500;
	}
}*/
/*.plant-a-tree-widget {
	border-radius: 15px;
	//padding: 5px;
	background: $light-background;

	input {
		width: 50px;
	}

	input, .total {
		font-size: 30px;
	}

	table {
		width: 100%;
	}

	td {
		text-align: center;
		border: 1px solid #fff;
		padding: 10px;
	}

	.arrow {
		padding: 0;
	}
}*/
.plant-a-tree-widget {
  width: 100%;
  background: #f9f5f2;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  display: table;
  font-size: 18px;
  font-family: 'akzidenz', "helvetica neue", helvetica, arial, sans-serif;
  color: #aa8c70; }
  @media (min-width: 992px) {
    .plant-a-tree-widget {
      height: 90px;
      font-size: 30px; } }
  .plant-a-tree-widget > div {
    display: table-row; }
  .plant-a-tree-widget .amount, .plant-a-tree-widget .buttons, .plant-a-tree-widget .total, .plant-a-tree-widget .add-to-cart {
    display: table-cell;
    vertical-align: middle;
    padding: 0;
    margin: 0; }
  .plant-a-tree-widget .amount {
    width: 20%; }
    .plant-a-tree-widget .amount input {
      height: 100%;
      width: 100%;
      text-align: center;
      background: none;
      border: none; }
  .plant-a-tree-widget .total {
    padding: 0 10px;
    text-align: center;
    width: 20%; }
  .plant-a-tree-widget .buttons {
    font-size: 0;
    width: 10%; }
    @media (min-width: 992px) {
      .plant-a-tree-widget .buttons {
        width: 60px; } }
  .plant-a-tree-widget .buttons .btn {
    height: 25px;
    width: 100%;
    font-size: 10px;
    padding: 0 5px;
    background: #f9f5f2;
    -webkit-border-radius: 0;
    border-radius: 0;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    color: #aa8c70; }
    .plant-a-tree-widget .buttons .btn:first-child {
      border-top: none; }
    .plant-a-tree-widget .buttons .btn:hover {
      background: #f4f4f4; }
    @media (min-width: 992px) {
      .plant-a-tree-widget .buttons .btn {
        height: 45px; } }
  .plant-a-tree-widget .add-to-cart {
    width: 50%; }
    .plant-a-tree-widget .add-to-cart button {
      color: #fff;
      background: #002e62;
      -webkit-border-bottom-right-radius: 15px;
      border-bottom-right-radius: 15px;
      -webkit-border-top-right-radius: 15px;
      border-top-right-radius: 15px;
      display: block;
      width: 100%;
      height: 50px; }
      @media (min-width: 992px) {
        .plant-a-tree-widget .add-to-cart button {
          height: 90px;
          font-size: 25px; } }
      .plant-a-tree-widget .add-to-cart button:hover {
        background: #aa8c70; }
  .plant-a-tree-widget .add-to-cart {
    width: 50%; }

.product-type-image {
  text-align: center; }

.choose-your-q {
  background: #f9f5f2;
  padding: 100px 0;
  border: none;
  margin-top: -1px; }
  .choose-your-q .featured-image {
    text-align: center; }
  .choose-your-q h2 {
    color: #000; }

.product-variations {
  padding: 0;
  font-size: 0; }
  .product-variations li {
    vertical-align: middle;
    position: relative;
    margin: 15px; }

/*	> div {
		display: inline-block;
	}*/
@media (min-width: 768px) {
  .product-variations {
    margin-left: -15px;
    margin-right: -15px; }
    .product-variations li {
      display: inline-block;
      margin: 0 15px; }
      .product-variations li:last-child {
        margin-right: 0; } }

.product-variations li img {
  width: 46px;
  height: 46px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  float: left;
  position: absolute;
  left: 0;
  top: 0; }

.product-variations li label {
  margin-bottom: 0;
  position: relative;
  height: 46px; }
  .product-variations li label span {
    z-index: 1000;
    width: 46px;
    height: 46px;
    margin-top: 0;
    background-position: -2000px -2000px; }

.product-variations li .radio {
  margin: 0;
  color: #aa8c70; }
  .product-variations li .radio input:checked + span {
    background-position: -72px 0; }

.product-material-image-small {
  width: 46px !important;
  height: 46px !important;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  vertical-align: middle; }

.product-price-wrapper .currency.small {
  font-size: 0.7em; }

@media screen and (min-width: 768px) {
  .unibody-section img {
    max-width: 334px; } }

@media screen and (min-width: 768px) {
  .powergeneration-section img.powergeneration {
    max-width: 385px; }
  .powergeneration-section img.waves {
    max-width: 420px; }
  .powergeneration-section .block {
    padding-left: 60px;
    padding-right: 60px; } }

.product-type-image img {
  max-height: 280px; }

.product-type-selection {
  padding-top: 30px;
  padding-left: 48px; }

.specification-list-container {
  margin-bottom: 30px; }

.specification-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #9f9995; }
  .specification-list li {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #9f9995; }

.block .specification-list {
  font-weight: 500; }
  .block .specification-list li {
    padding: 15px 0; }

.icon-block {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  margin: 0 0 25px 0; }
  @media screen and (max-width: 768px) {
    .icon-block {
      padding-top: 50px;
      padding-bottom: 50px; } }

.product-price {
  color: #aa8c70;
  font-size: 24px;
  line-height: 46px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px; }

.retailers-map {
  height: 100%;
  margin-right: 365px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }
  @media screen and (max-width: 768px) {
    .retailers-map {
      display: none; } }

.retailers-list {
  background: #000;
  height: 100%; }
  .retailers-list ul {
    list-style: none;
    padding: 0;
    margin: 0; }

.retailers-list .retailer-link {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 30px 30px 0 80px; }

.retailer-index {
  position: absolute;
  top: 40px;
  left: 30px;
  color: #002e62;
  border: 2px solid #002e62;
  padding: 3px 7px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-family: 'akzidenz', "helvetica neue", helvetica, arial, sans-serif; }

.active .retailer-index, .retailer-link:hover .retailer-index {
  background: #002e62;
  color: #000; }

/*.retailer-footer {
  margin: 25px 30px 25px 80px; }
  .retailer-footer a {
    text-decoration: none;
    font-family: 'akzidenz', "helvetica neue", helvetica, arial, sans-serif;
    color: #8dc63f;
    text-decoration: none; }
    .retailer-footer a:hover {
      text-decoration: underline; }*/

.storelocator-panel {
  overflow: auto; }
  @media screen and (min-width: 768px) {
    .storelocator-panel {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 365px; } }

.storelocator-panel .store-list {
  margin: 0;
  padding: 0; }

.storelocator-panel .store-list li, .storelocator-panel .directions-panel {
  padding: 5px; }

.storelocator-panel .store-list li {
  /*border-bottom: 1px solid #3a2d22*/;
  background: #181009;
  position: relative;
  color: #fff;
  padding: 30px; }

.storelocator-panel .directions-panel {
  font-size: 0.8em; }

.storelocator-panel .store-list li.store:hover {
  cursor: pointer; }

.storelocator-panel .store-list li.highlighted, .storelocator-panel .store-list li.highlighted:hover {
  background: #ccf; }

.storelocator-panel .directions {
  display: none; }

.storelocator-panel .location-search {
  padding: 5px; }

.storelocator-panel .location-search input {
  width: 100%;
  font-size: 32px/rem*rem;
  font-size: 2rem;
  padding: 20px 30px; }

.storelocator-panel .location-search h4 {
  font-size: 0.8em;
  margin: 0;
  padding: 0; }

.storelocator-panel .store-list .no-stores {
  color: grey; }

.storelocator-panel .store .features {
  display: none; }

.storelocator-panel .feature-filter {
  overflow: hidden; }

.storelocator-panel .feature-filter label {
  display: block;
  font-size: 0.8em;
  margin: 0 0.4em;
  float: left; }

.store .title {
  font-family: 'akzidenz', "helvetica neue", helvetica, arial, sans-serif;
  color: #002e62; }

.store .address, .store .phone, .store .web, .store .misc {
  font-size: 80%;
  margin-top: 0.2em;
  margin-bottom: 0.5em;
  display: block; }

.store .features {
  overflow: hidden;
  color: grey;
  margin: 0;
  padding: 0;
  font-size: 70%;
  max-width: 250px; }

.store .features li {
  display: inline;
  float: left;
  padding-right: 0.8em; }

.store .web a {
  color: green; }

.store .action {
  font-size: 0.8em;
  color: green;
  margin-right: 0.5em; }

/*.cart-footer-shipping-calculator .btn-update {
  -webkit-border-radius: 10px;
  border-radius: 10px; }
.cart-footer-shipping-calculator .form-control, .cart-footer-shipping-calculator form.checkout .input-text, form.checkout .cart-footer-shipping-calculator .input-text {
  background-color: #d5c0ad;
  -webkit-border-radius: 10px;
  border-radius: 10px; }
.cart-footer-shipping-calculator .custom-select:before, .cart-footer-shipping-calculator .wpcf7-form-control-wrap.product:before, .cart-footer-shipping-calculator .wpcf7-form-control-wrap.country:before {
  border-color: #c8aa92; }
*/
.shopping-cart {
  padding: 100px 0;
  background: #f9f5f2; }
  .shopping-cart h2 {
    color: #aa8c70;
    margin-bottom: 50px; }
  .shopping-cart .update-cart-btn {
    margin-top: 10px; }
  .shopping-cart .shopping-cart {
    padding: 0; }

.cart {
  display: table;
  width: 100%; }

.woocommerce-cart .shopping-cart {
  padding-top: 0; }

@media screen and (min-width: 480px) {
  .cart-item, .cart-material, .cart-quantity, .cart-item-price, .cart-item-total {
    display: table-cell;
    vertical-align: middle; }
    .cart-item .padding-top, .cart-material .padding-top, .cart-quantity .padding-top, .cart-item-price .padding-top, .cart-item-total .padding-top {
      padding-top: 4px; }
    .cart-item img.pull-left, .cart-material img.pull-left, .cart-quantity img.pull-left, .cart-item-price img.pull-left, .cart-item-total img.pull-left {
      margin: 0 10px 0 0; }
  .cart-row {
    display: table-row; } }

@media screen and (max-width: 480px) {
  .cart-row-item {
    position: relative;
    margin-bottom: 5px;
    padding-bottom: 10px;
    padding-top: 5px; }
    .cart-row-item:before, .cart-row-item:after {
      content: " ";
      display: table; }
    .cart-row-item:after {
      clear: both; }
  .cart-material {
    float: left;
    margin-left: 60px; }
  .cart-item {
    float: left; }
  .cart-quantity {
    display: none; }
  .cart-item-price {
    display: none; }
  .cart-item-total {
    position: absolute;
    line-height: 40px;
    top: 0;
    right: 0; } }

.cart-item-total {
  text-align: right; }

.cart-header {
  font-size: 20px;
  color: #aa8c70; }
  @media screen and (max-width: 480px) {
    .cart-header {
      display: none; } }
  .cart-header > div {
    padding-bottom: 20px;
    vertical-align: bottom;
    border-bottom: 1px solid #e2dad7; }

.cart-row-item {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -1px;
  border-bottom: 1px solid #cdb39d; }
  @media screen and (min-width: 768px) {
    .cart-row-item {
      font-size: 30px; } }
  @media screen and (min-width: 480px) {
    .cart-row-item > div {
      padding: 10px 0;
      border-bottom: 1px solid #e2dad7; } }

.cart-checkout {
  /*@include make-xs-column(12);
	@include make-sm-column(4);
	@include make-sm-column-offset(8);*/
  padding: 0; }

/*.cart-footer-row {
  padding: 10px 0; }
  .cart-footer-row:before, .cart-footer-row:after {
    content: " ";
    display: table; }
  .cart-footer-row:after {
    clear: both; }

.cart-footer {
  margin-top: 40px;
  font-size: 20px; }
  @media screen and (min-width: 768px) {
    .cart-footer {
      float: right;
      width: 50%; } }
  @media screen and (min-width: 1200px) {
    .cart-footer {
      float: right;
      width: 33.33333%; } }
  .cart-footer > div {
    padding: 15px 0; }*/

.cart-total-label {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding-left: 0;
  color: #aa8c70; }
  @media (min-width: 768px) {
    .cart-total-label {
      float: left;
      width: 50%; } }
  @media screen and (min-width: 768px) {
    .cart-total-label {
      text-align: right; } }

.cart-subtotal {
  /*@include make-xs-column(6);
	@include make-sm-column(6);*/
  text-align: right;
  font-family: 'akzidenz', "helvetica neue", helvetica, arial, sans-serif; }

.cart-remove {
  display: inline-block;
  height: 46px;
  width: 46px;
  text-align: center;
  background-color: #e8dfd8;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  line-height: 46px;
  margin-right: 10px;
  font-size: 12px;
  color: #aa8c70;
  text-decoration: none;
  vertical-align: middle; }
  .cart-remove:hover {
    text-decoration: none; }

.cart-estimate-shipping {
  text-align: right;
  border-bottom: none; }

/*.cart-footer-subtotal {
  border-bottom: 1px solid #e0d0c2; }
*/
.cart-footer-tax {
  border-bottom: 1px solid #cdb39d; }

.cart .actions {
  margin-top: 20px; }

.spinner-widget {
  width: 100px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  display: table;
  height: 48px;
  color: #aa8c70; }
  .spinner-widget > div {
    display: table-row; }
  .spinner-widget .amount, .spinner-widget .buttons {
    display: table-cell;
    vertical-align: middle;
    padding: 0;
    margin: 0;
    height: 100%; }
  .spinner-widget input[type="text"] {
    width: 60px;
    height: 100%;
    text-align: center;
    background: #e8dfd8;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    border-bottom-left-radius: 10px; }
    .spinner-widget input[type="text"]:focus, .spinner-widget input[type="text"]:active {
      outline: none;
      background: #f1ece8; }
  .spinner-widget .buttons {
    font-size: 0;
    -webkit-border-top-right-radius: 10px;
    border-top-right-radius: 10px; }
  .spinner-widget .btn {
    height: 24px;
    font-size: 8px;
    padding: 0 10px;
    background: #e8dfd8;
    border-left: 1px solid #fff;
    color: #aa8c70;
    -webkit-border-radius: 0;
    border-radius: 0; }
    .spinner-widget .btn:hover {
      background: #f1ece8; }
    .spinner-widget .btn:focus, .spinner-widget .btn:active {
      outline: none; }
    .spinner-widget .btn[data-spinner="inc"] {
      -webkit-border-top-right-radius: 10px;
      border-top-right-radius: 10px; }
    .spinner-widget .btn[data-spinner="dec"] {
      border-top: 1px solid #fff;
      -webkit-border-bottom-right-radius: 10px;
      border-bottom-right-radius: 10px; }

[data-from="intro"][data-section="watertreatment"] #intro {
  -webkit-animation: chapter-hide 1.2s ease-in-out;
  animation: chapter-hide 1.2s ease-in-out; }
[data-from="intro"][data-section="watertreatment"] #watertreatment {
  -webkit-animation: chapter-show 1.2s ease-in-out;
  animation: chapter-show 1.2s ease-in-out; }

[data-from="watertreatment"][data-section="intro"] #watertreatment {
  -webkit-animation: chapter-hide-rev 1.2s ease-in-out;
  animation: chapter-hide-rev 1.2s ease-in-out; }
[data-from="watertreatment"][data-section="intro"] #intro {
  -webkit-animation: chapter-show-rev 1.2s ease-in-out;
  animation: chapter-show-rev 1.2s ease-in-out; }

[data-from="watertreatment"][data-section="generalconstruction"] #generalconstruction {
  -webkit-animation: chapter-show 1.2s ease-in-out;
  animation: chapter-show 1.2s ease-in-out; }
[data-from="watertreatment"][data-section="generalconstruction"] #watertreatment {
  -webkit-animation: chapter-hide 1.2s ease-in-out;
  animation: chapter-hide 1.2s ease-in-out; }

[data-from="generalconstruction"][data-section="watertreatment"] #watertreatment {
  -webkit-animation: chapter-show-rev 1.2s ease-in-out;
  animation: chapter-show-rev 1.2s ease-in-out; }
[data-from="generalconstruction"][data-section="watertreatment"] #generalconstruction {
  -webkit-animation: chapter-hide-rev 1.2s ease-in-out;
  animation: chapter-hide-rev 1.2s ease-in-out; }

[data-from="generalconstruction"][data-section="powergeneration"] #powergeneration {
  -webkit-animation: chapter-show 1.2s ease-in-out;
  animation: chapter-show 1.2s ease-in-out; }
[data-from="generalconstruction"][data-section="powergeneration"] #generalconstruction {
  -webkit-animation: chapter-hide 1.2s ease-in-out;
  animation: chapter-hide 1.2s ease-in-out; }

[data-from="powergeneration"][data-section="generalconstruction"] #powergeneration {
  -webkit-animation: chapter-hide-rev 1.2s ease-in-out;
  animation: chapter-hide-rev 1.2s ease-in-out; }
[data-from="powergeneration"][data-section="generalconstruction"] #generalconstruction {
  -webkit-animation: chapter-show-rev 1.2s ease-in-out;
  animation: chapter-show-rev 1.2s ease-in-out; }

[data-from="powergeneration"][data-section="cleanwater"] #powergeneration {
  -webkit-animation: chapter-hide 1.2s ease-in-out;
  animation: chapter-hide 1.2s ease-in-out; }
[data-from="powergeneration"][data-section="cleanwater"] #cleanwater {
  -webkit-animation: chapter-show 1.2s ease-in-out;
  animation: chapter-show 1.2s ease-in-out; }

[data-from="cleanwater"][data-section="powergeneration"] #cleanwater {
  -webkit-animation: chapter-hide-rev 1.2s ease-in-out;
  animation: chapter-hide-rev 1.2s ease-in-out; }
[data-from="cleanwater"][data-section="powergeneration"] #powergeneration {
  -webkit-animation: chapter-show-rev 1.2s ease-in-out;
  animation: chapter-show-rev 1.2s ease-in-out; }

[data-section="intro"] #intro {
  top: 0; }

[data-section="watertreatment"] #watertreatment {
  top: 0; }

[data-section="generalconstruction"] #generalconstruction {
  top: 0; }

[data-section="powergeneration"] #powergeneration {
  top: 0; }

[data-section="cleanwater"] #cleanwater {
  top: 0; }

[data-section] h2, [data-section] .lead {
  position: relative; }

[data-section="intro"] #intro h2, [data-section="intro"] #intro .lead, [data-section="intro"] #intro .btn-group, [data-section="intro"] #intro .section-next-link {
  opacity: 0;
  filter: alpha(opacity=0); }
[data-section="intro"] #intro h2 {
  -webkit-animation: chapter-fade-in 1.5s ease-in-out 0s forwards;
  animation: chapter-fade-in 1.5s ease-in-out 0s forwards; }
[data-section="intro"] #intro .lead {
  -webkit-animation: chapter-fade-in 1.5s .2s ease-in-out forwards;
  animation: chapter-fade-in 1.5s .2s ease-in-out forwards; }
[data-section="intro"] #intro .btn-group {
  -webkit-animation: chapter-fade-in 1.5s .4s ease-in-out forwards;
  animation: chapter-fade-in 1.5s .4s ease-in-out forwards; }
[data-section="intro"] #intro .section-next-link {
  -webkit-animation: chapter-fade-in 1.5s 1s ease-in-out forwards;
  animation: chapter-fade-in 1.5s 1s ease-in-out forwards; }

[data-section="watertreatment"] #watertreatment h2, [data-section="watertreatment"] #watertreatment .lead, [data-section="watertreatment"] #watertreatment .btn-group, [data-section="watertreatment"] #watertreatment .section-next-link {
  opacity: 0;
  filter: alpha(opacity=0); }
[data-section="watertreatment"] #watertreatment h2 {
  -webkit-animation: chapter-fade-in 1.5s ease-in-out 0s forwards;
  animation: chapter-fade-in 1.5s ease-in-out 0s forwards; }
[data-section="watertreatment"] #watertreatment .lead {
  -webkit-animation: chapter-fade-in 1.5s .2s ease-in-out forwards;
  animation: chapter-fade-in 1.5s .2s ease-in-out forwards; }
[data-section="watertreatment"] #watertreatment .btn-group {
  -webkit-animation: chapter-fade-in 1.5s .4s ease-in-out forwards;
  animation: chapter-fade-in 1.5s .4s ease-in-out forwards; }
[data-section="watertreatment"] #watertreatment .section-next-link {
  -webkit-animation: chapter-fade-in 1.5s 1s ease-in-out forwards;
  animation: chapter-fade-in 1.5s 1s ease-in-out forwards; }

[data-section="generalconstruction"] #generalconstruction h2, [data-section="generalconstruction"] #generalconstruction .lead, [data-section="generalconstruction"] #generalconstruction .btn-group, [data-section="generalconstruction"] #generalconstruction .section-next-link {
  opacity: 0;
  filter: alpha(opacity=0); }
[data-section="generalconstruction"] #generalconstruction h2 {
  -webkit-animation: chapter-fade-in 1.5s ease-in-out 0s forwards;
  animation: chapter-fade-in 1.5s ease-in-out 0s forwards; }
[data-section="generalconstruction"] #generalconstruction .lead {
  -webkit-animation: chapter-fade-in 1.5s .2s ease-in-out forwards;
  animation: chapter-fade-in 1.5s .2s ease-in-out forwards; }
[data-section="generalconstruction"] #generalconstruction .btn-group {
  -webkit-animation: chapter-fade-in 1.5s .4s ease-in-out forwards;
  animation: chapter-fade-in 1.5s .4s ease-in-out forwards; }
[data-section="generalconstruction"] #generalconstruction .section-next-link {
  -webkit-animation: chapter-fade-in 1.5s 1s ease-in-out forwards;
  animation: chapter-fade-in 1.5s 1s ease-in-out forwards; }

[data-section="powergeneration"] #powergeneration h2, [data-section="powergeneration"] #powergeneration .lead, [data-section="powergeneration"] #powergeneration .btn-group, [data-section="powergeneration"] #powergeneration .section-next-link {
  opacity: 0;
  filter: alpha(opacity=0); }
[data-section="powergeneration"] #powergeneration h2 {
  -webkit-animation: chapter-fade-in 1.5s ease-in-out 0s forwards;
  animation: chapter-fade-in 1.5s ease-in-out 0s forwards; }
[data-section="powergeneration"] #powergeneration .lead {
  -webkit-animation: chapter-fade-in 1.5s .2s ease-in-out forwards;
  animation: chapter-fade-in 1.5s .2s ease-in-out forwards; }
[data-section="powergeneration"] #powergeneration .btn-group {
  -webkit-animation: chapter-fade-in 1.5s .4s ease-in-out forwards;
  animation: chapter-fade-in 1.5s .4s ease-in-out forwards; }
[data-section="powergeneration"] #powergeneration .section-next-link {
  -webkit-animation: chapter-fade-in 1.5s 1s ease-in-out forwards;
  animation: chapter-fade-in 1.5s 1s ease-in-out forwards; }

[data-section="cleanwater"] #cleanwater h2, [data-section="cleanwater"] #cleanwater .lead, [data-section="cleanwater"] #cleanwater .btn-group, [data-section="cleanwater"] #cleanwater .section-next-link {
  opacity: 0;
  filter: alpha(opacity=0); }
[data-section="cleanwater"] #cleanwater h2 {
  -webkit-animation: chapter-fade-in 1.5s ease-in-out 0s forwards;
  animation: chapter-fade-in 1.5s ease-in-out 0s forwards; }
[data-section="cleanwater"] #cleanwater .lead {
  -webkit-animation: chapter-fade-in 1.5s .2s ease-in-out forwards;
  animation: chapter-fade-in 1.5s .2s ease-in-out forwards; }
[data-section="cleanwater"] #cleanwater .btn-group {
  -webkit-animation: chapter-fade-in 1.5s .4s ease-in-out forwards;
  animation: chapter-fade-in 1.5s .4s ease-in-out forwards; }
[data-section="cleanwater"] #cleanwater .section-next-link {
  -webkit-animation: chapter-fade-in 1.5s 1s ease-in-out forwards;
  animation: chapter-fade-in 1.5s 1s ease-in-out forwards; }
[data-section="cleanwater"] #cleanwater .the-cleanwater-q1, [data-section="cleanwater"] #cleanwater .the-cleanwater-q2 {
  opacity: 0;
  filter: alpha(opacity=0); }
[data-section="cleanwater"] #cleanwater .the-cleanwater-q1 {
  -webkit-animation: chapter-fade-in 1.5s .6s ease-in-out forwards;
  animation: chapter-fade-in 1.5s .6s ease-in-out forwards; }
[data-section="cleanwater"] #cleanwater .the-cleanwater-q2 {
  -webkit-animation: chapter-fade-in 1.5s .8s ease-in-out forwards;
  animation: chapter-fade-in 1.5s .8s ease-in-out forwards; }

.start-section {
  margin: 0 auto;
  position: relative;
  text-align: center;
  min-height: 480px; }
  .start-section a:hover {
    text-decoration: none; }
  @media screen and (min-width: 480px) and (max-width: 768px) {
    .start-section {
      padding-top: 74px; } }

.start-section .jumbotron {
  margin-top: 50px; }
  @media (max-width: 1500px) {
    .start-section .jumbotron {
      margin-top: 0; } }

.pageScroll .start-section {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0; }
  @media screen and (min-width: 480px) and (max-width: 768px) {
    .pageScroll .start-section {
      top: 74px; } }

.start-section .lead {
  font-size: 14px; }
  @media screen and (min-width: 768px) {
    .start-section .lead {
      margin-bottom: 50px;
      font-size: 20px; } }

.start-section-content .btn-group {
  margin-bottom: 40px; }
  @media (min-width: 768px) {
    .start-section-content .btn-group {
      margin-bottom: 80px; } }

.start-section-content {
  padding: 40px 30px 0px 30px; }
  @media screen and (min-width: 768px) {
    .start-section-content {
      max-width: 600px;
      padding: 120px 20px 0px 20px;
      margin: 0 auto; } }

#intro .background {
  z-index: -1;
  position: absolute;
  background: url(../images/start-background-480.jpg) 0 0 no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  @media screen and (min-width: 480px) {
    #intro .background {
      background: url(../images/background1.jpg) 50% 50% no-repeat;
      -webkit-background-size: cover;
      background-size: cover; } }
#intro h1 {
  margin: 0; }

.the-cleanwater:before, .the-cleanwater:after {
  content: " ";
  display: table; }
.the-cleanwater:after {
  clear: both; }

.the-cleanwater-q1, .the-cleanwater-q2 {
  width: 50%;
  float: left;
  padding-top: 0px;
  background-repeat: no-repeat;
  display: block;
  position: relative;
  text-decoration: none; }
  .the-cleanwater-q1 .q-image, .the-cleanwater-q2 .q-image {
    -webkit-transition: margin .3s;
    transition: margin .3s; }
  .the-cleanwater-q1:hover .q-image, .the-cleanwater-q2:hover .q-image {
    margin-top: -10px; }

.q-name {
  color: #8dc63f;
  font-family: 'akzidenz', "helvetica neue", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 30px;
  padding-bottom: 20px; }
  @media screen and (min-width: 768px) {
    .q-name {
      font-size: 40px; } }

.q-image {
  overflow: hidden;
  position: relative;
  height: 200px; }
  .q-image img {
    min-width: 400px;
    position: absolute; }
  @media (min-width: 768px) {
    .q-image {
      height: 340px; }
      .q-image img {
        position: absolute; } }

.the-cleanwater-q1 .q-image img {
  right: 15px; }
.the-cleanwater-q1 .q-name {
  text-align: right;
  padding-right: 30px; }
  @media (min-width: 768px) {
    .the-cleanwater-q1 .q-name {
      padding-right: 80px; } }

.the-cleanwater-q2 .q-image img {
  left: 15px; }
.the-cleanwater-q2 .q-name {
  text-align: left;
  padding-left: 65px; }
  @media (min-width: 768px) {
    .the-cleanwater-q2 .q-name {
      padding-left: 170px; } }

.pageScroll .page-start, .pageScroll .main-content {
  overflow: hidden; }
.pageScroll .start-section {
  overflow: hidden;
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  top: -100%; }

.start-section-image {
  overflow: hidden;
  margin: 0 auto;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%; }

#watertreatment .start-section-image {
  background-image: url(../images/start-watertreatment.jpg); }

#generalconstruction .start-section-image {
  background-image: url(../images/start-generalconstruction.jpg); }

#powergeneration .start-section-image {
  background-image: url(../images/start-powergeneration.jpg); }

.section-next-link {
  display: none;
  padding: 10px;
  width: 200px;
  font-size: 20px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: -90px;
  //color: #aa8c70;
  color:white;
  text-decoration: none;
  text-align: center; }
  .section-next-link span {
    margin-top: 20px;
    display: block; }
  @media screen and (min-width: 768px) {
    .section-next-link {
      bottom: 60px; } }
  @media screen and (min-width: 1500px) {
    .section-next-link {
      bottom: 100px; } }
  .section-next-link.white {
    color: #fff; }

.pageScroll .section-next-link {
  display: block; }

.pageScroll {
  overflow: hidden; }

.plate {
  padding-top: 195px; }

.faqq {
  margin-top: 0;
  padding-bottom: 0;
  margin-bottom: 0; }
  .faqq a {
    text-decoration: none;
    color: #000; }
    .faq a:hover {
      text-decoration: underline; }
  .faqq dd, .faqq dt {
    margin: 0;
    padding: 15px 0; }
  .faqq dt {
    font-size: 20px;
    border-bottom: 1px solid #002d60; }
	.faqq .dt {
    font-size: 20px;
    border-bottom: 1px solid #002d60;
	margin: 0;
    padding: 15px 0; }
  .faqq dd {
    padding-left: 30px;
	padding-right:30px;
	text-align:justify;
  /*  background: #f4f4f4;*/
	
    border-bottom: 1px solid #002d60;
    display: none;
	
	 }

.mobile-collapse {
  padding: 0 0 40px 0; }

.block-list {
  list-style: none; }
  .block-list li {
    background: #f4f4f4;
    -webkit-border-radius: 15px;
    border-radius: 15px; }

.block-manual {
  margin: 0 0 20px 0;
  background: #f4f4f4;
  text-align: center;
  padding: 30px 0; }
  .block-manual img {
    max-height: 86px;
    margin-bottom: 25px; }

#support-panel .row {
  margin-bottom: 30px; }

.technical-icon-container {
  background: #f9f5f2;
  text-align: center;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 70px 0; }

td.plant-a-tree-widget-cart {
  padding: 0;
  position: relative;
  width: 50%; }
  td.plant-a-tree-widget-cart button {
    position: absolute;
    top: 0;
    display: block;
    height: 100%;
    width: 100%; }

.product-section {
  position: relative;
  z-index: 1; }

.block {
  background-color: #f4f4f4;
  -webkit-border-radius: 8px  ; 
  border-radius: 8px;
  padding: 15px 20px;
  margin-top: 20px;
    border: 1px solid #ebeae8 }
  @media screen and (min-width: 768px) {
    .block {
      padding: 15px 30px;
      margin-top: 0px; } }

.block-inline-list {
  list-style: none;
  padding: 0;
  margin: 0; }
  .block-inline-list li {
    margin-bottom: 10px; }
  @media screen and (min-width: 992px) {
    .block-inline-list li {
      display: inline;
      margin-bottom: 0; }
      .block-inline-list li:after {
        content: " / ";
        color: #002e62; }
      .block-inline-list li:last-child:after {
        display: none;
        content: ""; } }
  .block-inline-list a {
    font-weight: 500;
    color: #181009;
    text-decoration: none; }
    .block-inline-list a:hover {
      text-decoration: underline; }

@media screen and (max-width: 480px) {
  .mobile-collapse {
    display: none; }
    .mobile-collapse.in {
      display: block; } }

.collapsable-block {
  margin-bottom: 20px; }
  .collapsable-block h3 {
    margin-bottom: 0;
    border-bottom: 1px solid #002e62;
    padding-bottom: 20px;
    letter-spacing: 0px; }
    .collapsable-block h3.small {
      border-bottom: none;
      font-size: 22px;
      letter-spacing: -1px; }
  @media (max-width: 768px) {
    .collapsable-block h3, .collapsable-block h5 {
      font-size: 30px; }
      .collapsable-block h3.small, .collapsable-block h5.small {
        font-size: 30px; } }

.collapse-toggle {
  color: #181009;
  text-decoration: none; }
  .collapse-toggle:hover {
    text-decoration: none; }

#support-panel form {
  padding-top: 40px; }
@media (max-width: 768px) {
  #support-panel form {
    padding-top: 20px; } }

.campaign-wrapper {
  display: none;
  position: fixed;
  z-index: 1090;
  top: 74px;
  right: 0;
  color: #fff;
  background-color: rgba(193, 160, 132, 0.6);
  text-align: right;
  font-size: 12px;
  padding: 15px 10px; }
  .campaign-wrapper .close {
    float: right;
    margin-left: 1em;
    cursor: pointer; }
  .campaign-wrapper .campaign-wrapper-message {
    display: block;
    padding-right: 2em;
    text-align: center; }
  @media (min-width: 768px) {
    .campaign-wrapper {
      padding: 16px 10px;
      font-size: 18px;
      height: 74px;
      top: 0; }
      .campaign-wrapper .close {
        margin-top: 9px;
        margin-right: 4px; }
      .campaign-wrapper .small {
        font-size: 0.8em; }
      .campaign-wrapper .campaign-wrapper-message {
        text-align: right; } }

*, *:before, *:after {
  /*-moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;*/ }

html #wpadminbar {
  z-index: 1500 !important; }

body.admin-bar .navbar-main-menu, body.admin-bar .navbar-main {
  margin-top: 32px; }
  body.admin-bar .navbar-main-menu .navbar-main-menu-bottom, body.admin-bar .navbar-main .navbar-main-menu-bottom {
    bottom: 106px; }
body.admin-bar .campaign-wrapper {
  margin-top: 32px; }
body #wpadminbar li#wp-admin-bar-wp-logo {
  display: none; }
body.woocommerce-cart {
  background-color: #f9f5f2; }
  body.woocommerce-cart .site-main {
    margin-top: 100px; }

@media only screen and (min-width: 768px) {
  .checkout-container #order_review .tax {
    border-bottom: 0; }
  .checkout-container #order_review .order-total {
    border-top: 1px solid #eee8e2; } }

/*.product-carousel {
    max-height: 830px;
}*/
.visible-phone {
  display: none; }

.cart-alert {
  -webkit-transition: none;
  transition: none; }

.product-section .block {
  display: table;
  width: 100%; }
  .product-section .block .specification-list {
    display: table-cell;
    vertical-align: middle;
    border-top: 0; }
    .product-section .block .specification-list > li:first-child {
      border-top: 1px solid #9f9995; }

.showCart .cart-alert {
  display: block;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: fadeInFromNone; }

.product-variation .product-variation-inner {
  background: #fff;
  /** overwrite red bg */ }

.custom-select:before, .wpcf7-form-control-wrap.product:before, .wpcf7-form-control-wrap.country:before {
  background-position: -59px -264px; }

.vers-message, .woocommerce-page .woocommerce-message, .woocommerce-page .woocommerce-error, .woocommerce-page .woocommerce-info, .woocommerce .woocommerce-message, .woocommerce .woocommerce-error, .woocommerce .woocommerce-info {
  width: 100%;
  border: 0;
  padding-left: 3em !important;
  background: #e8dfd8;
  font-size: 20px;
  text-align: left;
  color: #002e62;
  -webkit-text-shadow: none;
  -moz-text-shadow: none;
  -ms-text-shadow: none;
  -o-text-shadow: none;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: all .5s ease-in;
  transition: all .5s ease-in;
  -webkit-transition: opacity 0 ease-in;
  transition: opacity 0 ease-in; }
  .vers-message:before, .woocommerce-page .woocommerce-message:before, .woocommerce-page .woocommerce-error:before, .woocommerce-page .woocommerce-info:before, .woocommerce .woocommerce-message:before, .woocommerce .woocommerce-error:before, .woocommerce .woocommerce-info:before {
    content: "";
    width: 22px;
    height: 22px;
    top: 21px;
    background: transparent url('../images/icon-info.png') no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .vers-message.woocommerce-error:before, .woocommerce-page .woocommerce-error:before, .woocommerce .woocommerce-error:before {
    width: 25px;
    height: 25px;
    background-image: url('../images/icon-warning.png'); }
  .vers-message.fixed-message, .woocommerce-page .fixed-message.woocommerce-message, .woocommerce-page .fixed-message.woocommerce-error, .woocommerce-page .fixed-message.woocommerce-info, .woocommerce .fixed-message.woocommerce-message, .woocommerce .fixed-message.woocommerce-error, .woocommerce .fixed-message.woocommerce-info {
    display: none;
    position: fixed;
    padding: 20px !important;
    margin: 0 10px !important;
    z-index: 999;
    bottom: 45px;
    text-align: center;
    left: 10px;
    right: 10px;
    max-width: 100%; }
    @media only screen and (min-width: 782px) {
      .vers-message.fixed-message, .woocommerce-page .fixed-message.woocommerce-message, .woocommerce-page .fixed-message.woocommerce-error, .woocommerce-page .fixed-message.woocommerce-info, .woocommerce .fixed-message.woocommerce-message, .woocommerce .fixed-message.woocommerce-error, .woocommerce .fixed-message.woocommerce-info {
        width: 570px;
        left: 50%;
        right: auto;
        margin-left: -285px !important; } }

.cart-form-wrapper .cart-form .hidden {
  display: none; }
.cart-form-wrapper .shipping-calculator-button:after {
  display: none;
  content: ""; }

.carousel-indicators li:after {
  width: 16px;
  height: 16px; }

.shipping-calculator-form {
  margin-top: 20px; }

.woocommerce .cart-collaterals .shipping_calculator, .woocommerce-page .cart-collaterals .shipping_calculator {
  width: 100%; }

dl.faq dd p {
  margin: 0 0 16px 0; }
  dl.faq dd p:last-child {
    margin-bottom: 0; }

.plant-a-tree .added_to_cart {
  display: none !important; }
.plant-a-tree .plant-a-tree-widget {
  margin-top: 1em; }

.checkout-container .includes_tax, .cart-checkout .includes_tax {
  display: none; }

.specification-list.includes-list {
  width: 100%; }

#support-panel label {
  display: none !important; }

.woocommerce-account #main > .container {
  padding: 0; }
.woocommerce-account address {
  line-height: 1.8em; }
.woocommerce-account .order-actions a {
  margin-right: 15px; }
  .woocommerce-account .order-actions a:last-child {
    margin-right: 0; }

.hide-labels label {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px); }

.chosen-container-single .chosen-single div b:before {
  content: " ";
  display: block;
  height: 54px;
  width: 54px;
  position: absolute;
  right: -webkit-calc(50% - 27px);
  right: calc(50% - 27px);
  top: -webkit-calc(50% - 27px);
  top: calc(50% - 27px);
  background: url(../images/icons.png) 0 -247px no-repeat; }

.totals-table .shipping small {
  display: none; }
.totals-table tr {
  border-bottom: 1px solid #e4d9ce; }
  .totals-table tr:first-child {
    border-bottom: 1px solid #d4c5b7; }
  .totals-table tr:last-child {
    border-bottom: 0; }

/*.page-start footer, .single-product footer {
  display: none; }*/

#intro .background {
  background-image: url(../images/scen-01.jpg); }

#watertreatment .start-section-image {
  background-image: url(../images/scen-04.jpg); }

#generalconstruction .start-section-image {
  background-image: url(../images/scen-02.jpg); }

#powergeneration .start-section-image {
  background-image: url(../images/scen-03.jpg); }
  
 #cleanwater .start-section-image {
  background-image: url(../images/scen-05.jpg); }

.usp-icon-charge {
  background-position: -143px -58px; }

@media only screen and (max-width: 782px) {
  body {
    /*.navbar-main-menu.collapse {
            display: none;
        }*/ }
    body.admin-bar .navbar-main-menu, body.admin-bar .navbar-main {
      margin-top: 46px; }
      body.admin-bar .navbar-main-menu .navbar-main-menu-bottom, body.admin-bar .navbar-main .navbar-main-menu-bottom {
        bottom: 120px; }
    body.admin-bar .campaign-wrapper {
      margin-top: 46px; }
    body .visible-phone {
      display: inline; }
  /*campaign-wrapper {
        top: 74px;
        text-align: left;

        .message {
            margin-left: 0;
        }
    }*/ }

@media only screen and (max-width: 600px) {
  body.admin-bar .navbar-main {
    position: absolute;
    top: 46px;
    margin-top: 0; }
    body.admin-bar .navbar-main .navbar-main-menu {
      margin-top: 0; }
    body.admin-bar .navbar-main .navbar-main-menu-bottom {
      bottom: 74px; }
    body.admin-bar .navbar-main.sticky {
      position: fixed;
      top: 0; } }

.cart-alert {
  background: #181009;
  position: fixed;
  padding: 20px;
  text-align: center;
  color: #002e62;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  font-size: 20px;
  -webkit-transition: all .5s;
  transition: all .5s;
  max-width: 100%;
  z-index: 1000;
  opacity: 1;
  bottom: -100px;
  cursor: pointer; }
  @media screen and (min-width: 768px) {
    .cart-alert {
      width: 570px;
      left: 50%;
      margin-left: -285px; } }
  .cart-alert .icon-bag {
    margin-right: 15px; }
  .cart-alert:after {
    content: " ";
    display: block;
    width: 47px;
    height: 25px;
    background: url(../images/cart-alert-arrow.png) 0 0 no-repeat;
    position: absolute;
    left: 50%;
    top: 100%;
    margin-left: -23.5px; }

.showCart .cart-alert {
  opacity: 1;
  bottom: 50px; }
 .fadeDiv{
	 -webkit-transition: all 3s ease;
  -moz-transition: all 3s ease;
  -ms-transition: all 3s ease;
  -o-transition: all 3s ease;
  transition: all 3s ease;
  font-size:20px;
	 }
.headerMain{
	font-size:26px;
	font-weight:bold;
	
	}

/*


@import 'fonts';

@import 'bootstrap/variables';
@import 'variables';

@import 'mixins';
@import 'bootstrap/mixins';

@import 'normalize';
@import 'grid';
@import 'layout';

@import 'lists';

@import 'bootstrap/responsive-utilities';
@import 'bootstrap/carousel';
@import 'bootstrap/popovers';
@import 'bootstrap/button-groups';
@import 'bootstrap/forms';
@import 'bootstrap/buttons';
@import 'carousel';

@import 'chosen';

@import 'text';
@import 'blockquote';
@import 'buttons';
@import 'custom-inputs';
@import 'spinner';

@import 'animations';

@import 'icons';
@import 'media';
@import 'svg';

@import 'forms';

@import 'widgets';

@import 'start';
@import 'start-animations';

@import 'about';
@import 'checkout';
@import 'retailers';
@import 'support';
@import 'press';

@import 'tables';

@import 'product';
@import 'product-variations';
@import 'product-plant-a-tree';

@import 'customer-details';

@import 'shopping-cart';
@import '_shipping-calculator';

@import 'header';
@import 'footer';


*/