.centered-form {
  margin: 0 auto;
  width: 600px;
}

.full-form .field, .full-form .submit {
  max-width: 100%;
}

form {
  padding: 0;
  margin: 0;
  display: inline;
}

form .input {
  margin-bottom: 10px;
}

form .image {
  display: block;
}

.submit {
  width: 100%;
  max-width: 600px;
  text-align: right;
}

.submit.full {
  max-width: 100%;
  position: relative;
}

.submit.full .wait {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  padding-top: 11px;
  padding-right: 44px;
  background-color: #FBFBFB;
}

.field {
  position: relative;
  margin-bottom: 10px;
  width: 100%;
  max-width: 600px;
  background: #fff;
  border: 1px solid #CCC;
  -webkit-transition: border 0.25s ease-in-out;
  transition: border 0.25s ease-in-out;
}

.field.focus {
  border-color: #5cbe2b;
}

.field.captcha input {
  margin-bottom: 5px;
}

.field label {
  display: block;
  width: 100%;
  padding: 10px 10px 0;
  color: #333333;
  font-family: "Francois One", "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.field .radios {
  padding: 10px;
}

.field.inline {
  display: inline-block;
  width: auto;
}

.form-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.form-col .field {
  width: calc(50% - 5px);
}

@media only screen and (max-width: 768px) {
  .form-col {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .form-col .field {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

input[type='text'],
input[type='email'],
input[type='number'],
input[type='search'],
input[type='password'],
textarea,
select {
  width: 100%;
  padding: 5px 10px;
  background-color: transparent;
  outline: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

label {
  display: block;
  cursor: pointer;
  font-weight: bold;
}

input[type='checkbox'] + label {
  display: inline;
}

select {
  padding-right: 20px;
  background: url("../image/ico-down-arrow-black.svg") no-repeat center right 6px;
}

table.form {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table.form td:first-child {
  width: 150px;
}

table.form > * > * > td {
  color: #000;
}

table.form td {
  padding: 4px;
}

@media only screen and (max-width: 768px) {
  table.form table,
  table.form tbody,
  table.form tr,
  table.form td {
    display: block;
  }
  table.form tr {
    margin-bottom: 5px;
  }
  table.form td {
    padding: 2px 4px;
  }
  table.form td:first-child {
    width: 100%;
  }
}

table.radio {
  width: 100%;
  border-collapse: collapse;
}

table.radio td {
  padding: 5px;
  vertical-align: top;
}

table.radio td label {
  display: block;
}

table.radio tr td:first-child {
  width: 1px;
}

table.radio tr td:first-child input {
  margin-top: 1px;
}

table.radio tr.highlight:hover td {
  background: #F1FFDD;
  cursor: pointer;
}

body {
  background-color: #FBFBFB;
  color: #000;
}

body, td, th, input, textarea, select, a {
  font-size: 13px;
  font-family: "Open Sans", Arial, sans-serif, sans-serif;
}

textarea:focus, input:focus {
  outline: none;
}

h1 {
  font-size: 2em;
  line-height: 1.2em;
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
}

.h1,
.welcome {
  margin-top: 10px;
  margin-bottom: 20px;
  border-bottom: solid 2px #333333;
  color: #333333;
  font: 400 32px/1.2em "Francois One", "Open Sans", Arial, sans-serif;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .h1,
  .welcome {
    font-size: 22px;
  }
}

ul {
  margin-left: 30px;
  margin-bottom: 20px;
}

ul:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  ul {
    margin-left: 20px;
    margin-bottom: 10px;
  }
}

h2,
.h2 {
  margin-top: 0px;
  margin-bottom: 5px;
  font: 400 22px/1.2em "Francois One", "Open Sans", Arial, sans-serif;
  color: #333333;
}

p {
  margin-top: 0px;
  margin-bottom: 1em;
}

@media only screen and (max-width: 768px) {
  p {
    margin-bottom: 12px;
  }
}

a,
a:visited,
a b {
  color: #5cbe2b;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

a img {
  border: none;
}

img {
  max-width: 100%;
}

.breadcrumb {
  color: #333333;
  padding: 20px 0;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .breadcrumb {
    padding: 10px;
    background-color: #FFF;
    text-transform: none;
  }
}

.required {
  color: #fb3640;
  font-weight: bold;
}

.error {
  display: block;
  color: #fb3640;
}

.clearboth {
  clear: both;
}

.cookies {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 5px;
  background-color: #EEE;
  color: #333333;
  text-align: center;
  z-index: 50;
}

.cookies p {
  font-size: 11px;
  margin-bottom: 0;
}

.cookies a {
  text-decoration: underline;
}

#powered {
  margin-top: 5px;
  text-align: right;
  clear: both;
}

/* banner */
.banner div {
  display: none;
  width: 100%;
  text-align: center;
}

.banner div img {
  margin-bottom: 20px;
}

.only-mobile {
  display: none;
}

@media only screen and (max-width: 768px) {
  .only-mobile {
    display: inline-block;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow: -moz-scrollbars-vertical;
  margin: 0;
  padding: 0;
}

body {
  padding-bottom: 28px;
}

@media only screen and (max-width: 768px) {
  body {
    padding-bottom: 46px;
  }
}

.wrapper {
  max-width: 1192px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media only screen and (max-width: 768px) {
  .wrapper {
    padding: 0;
  }
}

#container {
  text-align: left;
}

#column-left {
  float: left;
  width: 20%;
}

#column-left .banner img {
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  #column-left {
    display: none;
  }
}

#column-right {
  float: right;
  width: 20%;
}

@media only screen and (max-width: 768px) {
  #column-right {
    width: 100%;
    float: none;
    display: none;
  }
}

#content {
  width: 100%;
}

#content.with-column {
  width: calc(80% - 20px);
}

#content .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

#content .row .col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

#content.cart .buttons a {
  display: inline-block;
}

#content.cart .buttons .link {
  margin-right: 20px;
}

@media only screen and (max-width: 768px) {
  #content.cart .buttons .right {
    margin-right: auto;
  }
  #content.cart .buttons a {
    margin-left: 0;
  }
}

#column-left + #column-right + #content {
  float: right;
  padding: 0 10px 0 10px;
  width: 60%;
}

#column-left + #content {
  float: right;
  padding: 0 0 0 20px;
  width: 80%;
}

#column-right + #content {
  float: right;
  padding: 0 10px 0 0;
  width: 80%;
}

@media only screen and (max-width: 768px) {
  #content {
    width: 100%;
  }
  #content.with-column {
    width: 100%;
  }
  #column-left + #column-right + #content,
  #column-right + #content,
  #column-left + #content {
    width: 100%;
    padding: 10px 5px;
  }
  #content.portada {
    padding: 0 5px;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.store-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.store-details .store-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 33%;
  border-right: 1px #CCC solid;
  padding: 20px;
}

.store-details .store-detail:last-child {
  border-right: 0;
}

.store-details .store-detail p {
  margin-bottom: 0;
}

.store-details .store-detail .icon {
  text-align: center;
  font-size: 50px;
  color: #5cbe2b;
  margin-right: 20px;
}

@media only screen and (max-width: 768px) {
  .store-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .store-details .store-detail {
    width: 80%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 10px 0;
    border: 0;
    margin: 0 auto;
  }
  .store-details .store-detail .icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.success,
.warning,
.attention,
.information {
  padding: 10px 10px 10px 40px;
  margin-bottom: 15px;
  color: #555555;
}

.success .close,
.warning .close,
.attention .close,
.information .close {
  float: right;
  padding-top: 4px;
  padding-right: 4px;
  cursor: pointer;
}

.success a,
.warning a,
.attention a,
.information a {
  color: #000;
  font-weight: bold;
}

.success a:hover,
.warning a:hover,
.attention a:hover,
.information a:hover {
  text-decoration: underline;
}

.success {
  background: rgba(92, 190, 43, 0.2) url("../image/ico-success.svg") 10px center no-repeat;
  background-size: 20px;
  border: 1px solid #5cbe2b;
}

.warning {
  background: rgba(251, 54, 64, 0.2) url("../image/ico-warning.svg") 10px center no-repeat;
  background-size: 20px;
  border: 1px solid #fb3640;
}

.attention {
  background: rgba(227, 210, 111, 0.2) url("../image/ico-attention.svg") 10px center no-repeat;
  background-size: 20px;
  border: 1px solid #e3d26f;
}

.jcarousel-skin-opencart .jcarousel-container {
  background: #FFF;
}

.jcarousel-skin-opencart .jcarousel-direction-rtl {
  direction: rtl;
}

.jcarousel-skin-opencart .jcarousel-container-horizontal {
  padding: 20px 40px;
}

@media only screen and (max-width: 768px) {
  .jcarousel-skin-opencart .jcarousel-container-horizontal {
    padding: 20px;
  }
}

.jcarousel-skin-opencart .jcarousel-clip {
  overflow: hidden;
  width: 100%;
}

.jcarousel-skin-opencart .jcarousel-item {
  text-align: center;
}

.jcarousel-skin-opencart .jcarousel-item-horizontal {
  margin-left: 0;
  margin-right: 10px;
}

.jcarousel-skin-opencart .jcarousel-direction-rtl .jcarousel-item-horizontal {
  margin-left: 10px;
  margin-right: 0;
}

.jcarousel-skin-opencart .jcarousel-item-placeholder {
  background: #fff;
  color: #000;
}

/**
 *  Horizontal Buttons
 */
.jcarousel-skin-opencart .jcarousel-next-horizontal {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  cursor: pointer;
  background: url("../image/ico-down-arrow-green.svg") center no-repeat;
  background-size: 65%;
  border-radius: 50%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: background-color 300ms ease-in-out;
  transition: background-color 300ms ease-in-out;
}

.jcarousel-skin-opencart .jcarousel-next-horizontal:hover {
  background-color: #EEE;
}

.jcarousel-skin-opencart .jcarousel-direction-rtl .jcarousel-next-horizontal {
  left: 5px;
  right: auto;
  background: url("../image/ico-down-arrow-green.svg") center no-repeat/contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.jcarousel-skin-opencart .jcarousel-next-disabled-horizontal, .jcarousel-skin-opencart .jcarousel-next-disabled-horizontal:hover, .jcarousel-skin-opencart .jcarousel-next-disabled-horizontal:focus, .jcarousel-skin-opencart .jcarousel-next-disabled-horizontal:active {
  cursor: default;
  background: none;
}

.jcarousel-skin-opencart .jcarousel-prev-horizontal {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  cursor: pointer;
  background: url("../image/ico-down-arrow-green.svg") center no-repeat;
  background-size: 65%;
  border-radius: 50%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: background-color 300ms ease-in-out;
  transition: background-color 300ms ease-in-out;
}

.jcarousel-skin-opencart .jcarousel-prev-horizontal:hover {
  background-color: #EEE;
}

.jcarousel-skin-opencart .jcarousel-direction-rtl .jcarousel-prev-horizontal {
  left: auto;
  right: 0px;
  background: url("../image/ico-down-arrow-green.svg") center no-repeat/contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.jcarousel-skin-opencart .jcarousel-prev-disabled-horizontal, .jcarousel-skin-opencart .jcarousel-prev-disabled-horizontal:hover, .jcarousel-skin-opencart .jcarousel-prev-disabled-horizontal:focus, .jcarousel-skin-opencart .jcarousel-prev-disabled-horizontal:active {
  cursor: default;
  background: none;
}

/**
 * Swiper 3.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/swiper/
 *
 * Copyright 2017, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under MIT
 *
 * Released on: March 10, 2017
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  z-index: 10;
  cursor: pointer;
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E");
  left: 5px;
  right: auto;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E");
  right: 5px;
  left: auto;
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}

/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-right {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-top {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

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

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

#hi-eu-opt-in .opt-in-splash {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 58px;
  height: 58px;
}

#hi-eu-opt-in .opt-in-splash.unconfirmed {
  background: url(../image/cookieimg.png) no-repeat scroll 0 -10px transparent;
  cursor: pointer;
}

#hi-eu-opt-in .opt-in-splash.confirmed {
  background: url(../image/cookieimg.png) no-repeat scroll 0 -68px transparent;
}

#hi-cookie-box {
  background: url(../image/cookieimg.png) no-repeat -64px 0;
  width: 190px;
  height: 190px;
  font-size: 11px;
  text-align: center !important;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  position: fixed;
  bottom: 24px;
  left: 24px;
}

#hi-cookie-box p {
  text-align: center !important;
}

#hi-cookie-close {
  display: block;
  float: right;
  background: #222;
  padding: 3px 7px;
  border-radius: 3px;
  cursor: pointer;
}

#hi-cookie-close:hover {
  background: #666;
  color: #fff !important;
}

#hi-cookie-box p {
  padding: 0;
  margin: 0;
}

#hi-cookie-box .hi-cookie-head {
  font-size: 15px;
  padding: 20px 0 3px 0;
}

#hi-cookie-box .hi-cookie-intro {
  color: #CCC;
  font-size: 10px;
  padding-bottom: 10px;
  line-height: 1em;
  white-space: pre;
}

#hi-cookie-box a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

#hi-cookie-box a:hover {
  color: #CCC;
}

#hi-cookie-box .hi-cookie-power {
  font-size: 9px;
}

#hi-cookie-box div.hi-cookie-btn {
  cursor: pointer;
  margin: 5px 10px 8px 55px;
  float: left;
  display: block;
  background: url(../image/cookieimg.png) no-repeat 0 -126px;
  width: 32px;
  height: 32px;
  text-indent: -100000px;
}

#hi-cookie-box div.hi-cookie-btn.agree {
  margin-left: 55px;
  background-position: 0 -126px;
}

#hi-cookie-box div.hi-cookie-btn.disagree {
  margin-left: 0;
  background-position: -32px -126px;
}

#hi-cookie-box div.hi-cookie-btn.agree:hover {
  background-position: 0 -158px;
}

#hi-cookie-box div.hi-cookie-btn.disagree:hover {
  background-position: -32px -158px;
}

a.button,
input.button,
button {
  display: inline-block;
  padding: 10px 10px 8px;
  background-color: #5cbe2b;
  color: #FFF;
  border: solid 2px #5cbe2b;
  border-radius: 2px;
  font: 400 15px/18px "Francois One", "Open Sans", Arial, sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media only screen and (max-width: 768px) {
  a.button,
  input.button,
  button {
    display: inline-block;
    width: 100%;
    padding: 8px 10px;
    border-radius: 3px;
    text-align: center;
  }
  a.button.btn-primary,
  input.button.btn-primary,
  button.btn-primary {
    background-color: #5cbe2b;
    border-color: #5cbe2b;
  }
  a.button.btn-primary:hover,
  input.button.btn-primary:hover,
  button.btn-primary:hover {
    color: #FFF;
  }
}

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}

.button:hover, .button:focus, .button:active {
  cursor: pointer;
  background-color: #FFF;
  color: #5cbe2b;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.button:active {
  border: 1px #333333 solid;
  background: #DDD;
  -webkit-filter: none;
          filter: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* overrides extra padding on button elements in Firefox */
.button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.buttons .left {
  margin-right: auto;
}

.buttons .right {
  margin-left: auto;
}

.buttons .center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .buttons {
    padding: 0;
  }
  .buttons .right,
  .buttons .left {
    float: none;
    text-align: center;
  }
  .buttons .right .button,
  .buttons .left .button {
    margin: 8px 0;
  }
}

.link {
  font: 400 15px/18px "Francois One", "Open Sans", Arial, sans-serif;
  color: #5cbe2b;
  text-transform: uppercase;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

.link:hover {
  opacity: .8;
}

.link.back {
  padding-right: 16px;
}

.link.back:before {
  content: '<';
  display: inline;
  padding-right: 5px;
}

.link-plus {
  display: block;
  position: relative;
  padding-right: 18px;
  color: #333333;
  font: 400 13px/1.2em "Francois One", "Open Sans", Arial, sans-serif;
  text-decoration: none;
}

.link-plus:after {
  content: '+';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  font: 400 22px/10px "Francois One", "Open Sans", Arial, sans-serif;
}

.price {
  display: block;
  font-weight: bold;
  color: #333333;
  margin-bottom: 4px;
  text-align: center;
}

.price-old {
  color: #CCC;
  text-decoration: line-through;
}

.price-new {
  font-size: 22px;
  line-height: 30px;
  font-weight: bold;
}

.store-slogans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

.store-slogans .store-slogan {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-left: 1px #CCC solid;
  padding: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.store-slogans .store-slogan p {
  margin-bottom: 0;
}

.store-slogans .store-slogan p.icon {
  margin-right: 20px;
}

.store-slogans .store-slogan p.icon i {
  font-size: 50px;
  color: #5cbe2b;
}

.store-slogans .store-slogan:first-child {
  border-left: 0;
}

@media only screen and (max-width: 768px) {
  .store-slogans {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
  .store-slogans .store-slogan {
    width: 100%;
  }
}

.pre-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0 0;
}

.pre-header p {
  margin-bottom: 0;
}

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

.pre-header #welcome {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-left: auto;
  text-align: right;
}

.pre-header .social {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

#header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-bottom: 4px;
  z-index: 99;
}

#header #logo {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-right: 50px;
}

#header #logo img {
  height: 90px;
}

#header #cart {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5 1 auto;
          flex: 1.5 1 auto;
  position: relative;
  margin-left: auto;
  text-align: right;
}

#header #cart .heading {
  display: inline-block;
}

#header #cart .heading .cart-title {
  color: #333333;
  font-size: 15px;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 3px;
}

#header #cart .heading a {
  color: #5cbe2b;
  text-decoration: none;
}

#header #cart .heading a span {
  background: url("../image/arrow-down.png") 100% 50% no-repeat;
  padding-right: 15px;
}

#header #cart .content {
  display: none;
  position: absolute;
  clear: both;
  top: 42px;
  right: 0;
  padding: 12px;
  min-height: 150px;
  min-width: 400px;
  border: 1px solid #DDD;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.175);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.175);
  background: #FFF;
}

#header #cart .checkout {
  text-align: right;
  clear: both;
}

#header #cart .empty {
  padding-top: 50px;
  text-align: center;
}

#header #cart.active .content {
  display: block;
}

#header #cart #cart-total-products {
  display: none;
}

#header #cart .button {
  display: inline-block;
}

#header #search {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
  position: relative;
  width: 350px;
}

#header #search input {
  background: #FFF;
  width: 100%;
  height: 40px;
  padding: 1px 33px 1px 10px;
  border: 1px solid #CCC;
  border-radius: 2px;
}

#header .button-search {
  position: absolute;
  right: 0px;
  top: 0;
  background: #ccc url("../image/icon-search.svg") center center no-repeat;
  background-size: 45%;
  width: 40px;
  height: 40px;
  border-left: 1px solid #CCC;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
}

#header .links {
  position: absolute;
  right: 0px;
  bottom: 3px;
  padding-right: 10px;
  font-size: 10px;
}

#header .links a {
  float: left;
  display: block;
  padding: 0px 0px 0px 7px;
  color: #5cbe2b;
  font-size: 13px;
  font-weight: bold;
}

#header .links a + a {
  margin-left: 8px;
  border-left: 1px solid #CCC;
}

#header .menu-mobile-button,
#header .search-mobile-button,
#header .user-mobile-button {
  display: none;
}

@media only screen and (max-width: 768px) {
  #header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 4px;
    -webkit-transition: padding .2s ease-in-out;
    transition: padding .2s ease-in-out;
  }
  #header #logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 160px;
    margin-right: 0;
  }
  #header #logo img {
    max-width: 100%;
    height: auto;
  }
  #header .links {
    display: none;
  }
  #header #cart {
    display: inline-block;
    height: 28px;
    margin-bottom: 0;
  }
  #header #cart .heading,
  #header #cart .content {
    display: none;
  }
  #header #cart #cart-total-products {
    display: block;
    position: absolute;
    right: 0;
    top: -6px;
    width: 12px;
    height: 12px;
    background-color: #5cbe2b;
    color: #FFF;
    border-radius: 100%;
    font-size: 8px;
    line-height: 12px;
    text-align: center;
  }
  #header #search {
    position: absolute;
    width: calc(100% - 20px);
    height: 0;
    top: 53px;
    margin: 0 10px;
    text-align: center;
    overflow: hidden;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }
  #header #search .button-search {
    height: 40px;
    margin-top: 5px;
    padding: 0 20px;
    background-image: url("../image/icon-search.svg");
    background-size: 20px;
  }
  #header #search input {
    margin-top: 5px;
    height: 40px;
    line-height: 40px;
  }
  #header.open {
    padding-bottom: 60px;
  }
  #header.open #search {
    height: 50px;
  }
  #header .menu-mobile-button {
    display: inline-block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 26px;
    background: url("../image/icon-menu.svg") no-repeat center/contain;
  }
  #header .search-mobile-button {
    display: inline-block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 20px;
    background: url("../image/icon-search.svg") no-repeat center/contain;
  }
  #header .user-mobile-button {
    display: inline-block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 28px;
    background: url("../image/icon-user.svg") no-repeat center/contain;
  }
  #header .cart-mobile-button {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../image/icon-cart.svg") no-repeat center/contain;
  }
}

.social {
  display: inline-block;
  padding: 0 5px;
}

.social p {
  display: inline;
  padding-right: 5px;
  color: #5cbe2b;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
}

.social .social-button {
  display: inline-block;
  vertical-align: middle;
}

.social .social-button img {
  width: 24px;
  height: 24px;
  margin: 0 2px;
}

@media only screen and (max-width: 768px) {
  .social {
    width: 70%;
    margin: 0 auto;
    display: none;
  }
}

#language {
  position: absolute;
  top: 15px;
  left: 320px;
  width: 80px;
  color: #999;
  line-height: 17px;
}

#language img {
  cursor: pointer;
  margin-right: 5px;
}

#currency {
  width: 75px;
  position: absolute;
  top: 15px;
  left: 425px;
  color: #999;
  line-height: 17px;
}

#currency a {
  display: inline-block;
  padding: 2px 4px;
  border: 1px solid #CCC;
  color: #999;
  text-decoration: none;
  margin-right: 2px;
  margin-bottom: 2px;
}

#currency a b {
  color: #000;
  text-decoration: none;
}

.mini-cart-info .mini-cart-products {
  width: 100%;
  margin-bottom: 10px;
}

.mini-cart-info .item {
  padding: 5px;
  border-bottom: 1px solid #DDD;
  color: #000;
}

.mini-cart-info .item .item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.mini-cart-info .name small {
  color: #666;
}

.mini-cart-info .remove {
  padding-left: 10px;
}

.mini-cart-info .remove img {
  cursor: pointer;
}

.mini-cart-info .total {
  font-weight: bold;
}

.mini-cart-total {
  text-align: right;
  text-transform: uppercase;
}

.mini-cart-total table {
  border-collapse: collapse;
  display: inline-block;
  margin-bottom: 5px;
}

.mini-cart-total td {
  color: #000;
  padding: 4px;
  font-size: 1.2em;
  font-weight: bold;
}

#footer {
  clear: both;
  overflow: auto;
  min-height: 100px;
  background: #212121;
  color: #EEE;
}

#footer .content-footer {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#footer .h3 {
  color: #FFF;
  font: 500 16px/22px "Francois One", "Open Sans", Arial, sans-serif;
  margin-top: 0px;
  margin-bottom: 8px;
}

#footer .column {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 278px;
          flex: 1 0 278px;
}

#footer .column ul {
  margin-top: 0px;
  margin-left: 8px;
  padding-left: 12px;
}

#footer .column ul.icons {
  margin-left: 0;
}

#footer .column li {
  margin-bottom: 3px;
}

#footer .column li.ico-phone, #footer .column li.ico-mail, #footer .column li.ico-pin {
  list-style: none;
  margin-bottom: 15px;
}

#footer .column li.ico-phone:before, #footer .column li.ico-mail:before, #footer .column li.ico-pin:before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  vertical-align: middle;
  background: url("../image/ico-phone.svg") no-repeat center;
}

#footer .column li.ico-mail:before {
  background-image: url("../image/ico-mail.svg");
}

#footer .column li.ico-pin:before {
  background-image: url("../image/ico-pin.svg");
}

#footer .column a {
  text-decoration: none;
  color: #FFF;
}

#footer .column a:hover {
  text-decoration: underline;
}

#footer .footer-payment {
  border-top: 1px solid #333;
  text-align: center;
  padding: 10px;
}

#footer .footer-payment p {
  margin-bottom: 0;
}

#footer .footer-payment .icons {
  font-size: 40px;
  color: #CCC;
}

#footer .footer-payment .others {
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  #footer .column {
    width: 100%;
    min-height: unset;
    margin-bottom: 14px;
  }
  #footer .h3 {
    margin-bottom: 5px;
  }
}

/* PREVIO FOOTER */
.previo-footer {
  margin-top: 30px;
  padding: 30px;
  background-color: rgba(33, 33, 33, 0.9);
  color: #FFF;
}

.previo-footer h2 {
  margin: 0 auto 20px;
  padding: 0 20% 20px;
  padding-bottom: 20px;
  font: 300 20px/28px "Francois One", "Open Sans", Arial, sans-serif;
  color: #FFF;
  text-align: center;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

.previo-footer h3 {
  margin-bottom: 20px;
  font: 300 18px/26px "Francois One", "Open Sans", Arial, sans-serif;
}

.previo-footer .content-previo-footer {
  margin: auto;
}

.previo-footer .razones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 16px;
}

.previo-footer .razones .razon {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 384px;
          flex: 1 0 384px;
  max-width: 100%;
  padding-top: 4px;
  padding-right: 20px;
}

.previo-footer .razones .razon .numero {
  position: absolute;
  left: 0;
  top: 0;
  font: 800 26px/26px "Francois One", "Open Sans", Arial, sans-serif;
  color: #5cbe2b;
}

.previo-footer .razones .razon .texto-razon {
  padding-left: 30px;
}

@media only screen and (max-width: 768px) {
  .previo-footer {
    padding: 10px 15px;
  }
  .previo-footer h2 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .previo-footer h2,
  .previo-footer h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .previo-footer .razones {
    font-size: 14px;
  }
}

.legal-links {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 10px 0;
}

.legal-links li {
  list-style: none;
  display: inline-block;
  padding: 0 15px 0 0;
}

.legal-links li:after {
  content: '|';
  margin-left: 15px;
}

.legal-links li a {
  color: #333333;
  font-size: 11px;
  line-height: 1.4em;
}

.legal-links li:last-child {
  padding-right: 0;
}

.legal-links li:last-child:after {
  display: none;
  content: '';
}

#menu {
  background: #333333;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 16px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 16px rgba(51, 51, 51, 0.1);
}

#menu ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
}

#menu > ul > li {
  z-index: 20;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
  text-align: center;
}

#menu > ul > li > a {
  display: inline-block;
  padding: 15px 10px 13px;
  color: #FFF;
  font: 400 14px/1em "Francois One", "Open Sans", Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: solid 2px transparent;
  z-index: 6;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

#menu > ul > li.has-children:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 10px;
  background: url("../image/ico-down-arrow.svg") no-repeat center/contain;
  text-align: center;
}

#menu > ul > li > div {
  display: none;
  position: absolute;
  z-index: 7;
  padding: 20px 0;
  border: solid 2px #333333;
  border-top: none;
  background-color: rgba(51, 51, 51, 0.9);
  -webkit-box-shadow: 0 0 16px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 16px rgba(51, 51, 51, 0.1);
}

#menu > ul > li > div > ul {
  display: block;
  text-align: left;
}

#menu > ul > li > div > ul > li > a {
  padding: 5px 60px 5px 20px;
  color: #FFF;
  border-bottom: solid 1px #444;
}

#menu > ul > li > div > ul > li > a:hover {
  background-color: #EEE;
  color: #333333;
}

#menu > ul > li > div > ul > li:last-child > a {
  border-bottom: none;
}

#menu > ul > li:hover > a {
  color: #5cbe2b;
  border-color: #5cbe2b;
}

#menu > ul > li:hover.has-children:after {
  opacity: 0;
}

#menu > ul > li:hover > div {
  display: table;
}

#menu > ul > li ul + ul {
  padding-left: 20px;
}

#menu > ul > li ul > li > a {
  text-decoration: none;
  padding: 4px;
  color: #FFF;
  display: block;
  white-space: nowrap;
  min-width: 120px;
}

@media only screen and (max-width: 768px) {
  #menu {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 1001;
    overflow: auto;
    margin-bottom: 0;
    background: none;
    -webkit-transition: -webkit-transform ease 0.4s;
    transition: -webkit-transform ease 0.4s;
    transition: transform ease 0.4s;
    transition: transform ease 0.4s, -webkit-transform ease 0.4s;
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  #menu > ul {
    display: block;
    background: #333333;
    height: 100%;
    width: 300px;
    max-width: 80%;
    padding-top: 20px;
    position: relative;
    overflow: auto;
  }
  #menu > ul > li {
    position: relative;
    display: block;
    width: auto;
    text-align: left;
    border-bottom: solid 1px rgba(238, 238, 238, 0.1);
  }
  #menu > ul > li > a {
    display: inline-block;
    padding: 15px 20px;
    margin-bottom: 0;
  }
  #menu > ul > li:hover > a {
    background: inherit;
    color: #FFF;
    border-color: transparent;
  }
  #menu > ul > li:hover > div {
    display: block;
  }
  #menu > ul > li:hover.has-children:after {
    opacity: 1;
  }
  #menu > ul > li div {
    display: block;
    position: relative;
    max-height: 0;
    width: 100%;
    overflow: hidden;
    padding: 0;
    border: none;
    -webkit-transition: max-height .5s ease-in-out;
    transition: max-height .5s ease-in-out;
  }
  #menu > ul > li div ul {
    padding: 5px 0;
  }
  #menu > ul > li div ul li a {
    border-color: rgba(68, 68, 68, 0.5);
    padding-left: 30px;
  }
  #menu > ul > li.has-children:after {
    content: '+';
    position: absolute;
    left: auto;
    right: 20px;
    top: 16px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    background: rgba(238, 238, 238, 0.5);
    color: #333333;
    border-radius: 100%;
    text-align: center;
  }
  #menu > ul > li.open div {
    max-height: 500px;
  }
  #menu > ul > li.open.has-children:after {
    content: '-';
    line-height: 13px;
    opacity: 1;
  }
  #menu.open {
    -webkit-transition: background ease 0.2s 0.3s, -webkit-transform ease 0.4s;
    transition: background ease 0.2s 0.3s, -webkit-transform ease 0.4s;
    transition: transform ease 0.4s, background ease 0.2s 0.3s;
    transition: transform ease 0.4s, background ease 0.2s 0.3s, -webkit-transform ease 0.4s;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    background: rgba(51, 51, 51, 0.4);
  }
}

.header-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
}

.header-box p, .header-box h1 {
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
  padding: 15px 20px;
  font: 400 16px/20px "Francois One", "Open Sans", Arial, sans-serif;
  text-align: center;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 0;
  background: #FFF;
}

.box, #column-left .banner {
  margin-bottom: 16px;
  padding: 15px 30px 15px 30px;
  background: #FFF;
  border: 1px #DDD solid;
}

.box .two-columns, #column-left .banner .two-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.box .two-columns.extra-padding, #column-left .banner .two-columns.extra-padding {
  padding: 15px 0;
}

.box .two-columns .left, #column-left .banner .two-columns .left {
  margin-right: 20px;
  width: 50%;
}

.box .two-columns .right, #column-left .banner .two-columns .right {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .box .two-columns, #column-left .banner .two-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .box .two-columns .right, #column-left .banner .two-columns .right, .box .two-columns .left, #column-left .banner .two-columns .left {
    width: 100%;
  }
  .box .two-columns .left, #column-left .banner .two-columns .left {
    margin-bottom: 20px;
  }
}

.box .operations, #column-left .banner .operations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-top: 1px #DDD solid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.box .operations .conditions, #column-left .banner .operations .conditions {
  width: 60%;
  padding: 10px 0;
}

.box .operations p, #column-left .banner .operations p {
  margin-bottom: 5px;
}

.box .operations .submit, #column-left .banner .operations .submit {
  width: 40%;
  text-align: right;
  padding: 10px 0;
}

.box-product {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  overflow: auto;
  margin: 0 auto;
}

.box-product .box-product-card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 18%;
  padding-top: 20px;
  text-align: center;
  border: 1px #DDD solid;
  margin: 15px 0;
}

.box-product .box-product-card .name {
  padding: 0 10px;
}

#column-left + #column-right + #content .box-product .box-product-card {
  width: 119px;
}

.box-product input[type="button"] {
  width: 100%;
}

.box-product .image {
  display: block;
}

.box-product .name {
  margin: 6px 0;
}

.box-product .name a {
  color: #555;
  line-height: 1em;
  text-decoration: none;
  text-align: center;
}

.box-product .rating {
  display: none;
  margin-bottom: 4px;
}

.box-product .cart {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-top: 6px;
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .box-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .box-product .box-product-card {
    max-width: 100%;
  }
}

/* box category */
.box-category {
  margin-top: -5px;
}

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

.box-category > ul > li {
  padding: 8px 8px 8px 0px;
}

.box-category > ul > li > a {
  text-decoration: none;
  color: #333333;
}

.box-category > ul > li a.active {
  font-weight: bold;
}

.box-category > ul > li a.active + ul {
  display: block;
}

.box-category > ul > li ul {
  display: none;
}

.box-category > ul > li ul > li {
  padding: 5px 5px 0px 10px;
}

.box-category > ul > li ul > li > a {
  text-decoration: none;
  display: block;
}

.box-category > ul > li ul > li > a.active {
  font-weight: bold;
}

.box-category > ul > li + li {
  border-top: 1px solid #EEE;
}

.manufacturer-list {
  border: 1px solid #DBDEE1;
  padding: 5px;
  overflow: auto;
  margin-bottom: 20px;
}

.manufacturer-list ul {
  float: left;
  width: 25%;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}

.manufacturer-heading {
  background: #F8F8F8;
  font-size: 15px;
  font-weight: bold;
  padding: 5px 8px;
  margin-bottom: 6px;
}

.manufacturer-content {
  padding: 8px;
}

.product-filter {
  border-bottom: 1px solid #EEE;
  padding-bottom: 5px;
  overflow: auto;
}

.product-filter .display {
  margin-right: 15px;
  float: left;
  padding-top: 4px;
  color: #333333;
}

.product-filter .display a {
  font-weight: bold;
}

.product-filter .sort {
  float: right;
  color: #333333;
}

.product-filter .limit {
  margin-left: 15px;
  float: right;
  color: #333333;
}

@media only screen and (max-width: 768px) {
  .product-filter {
    margin-bottom: 10px;
    padding: 0;
  }
  .product-filter .display {
    width: 100%;
    float: none;
    margin-bottom: 5px;
  }
  .product-filter .limit {
    float: left;
    margin-left: 0;
    width: 26%;
  }
  .product-filter .sort {
    width: 73%;
    float: left;
    margin-left: 1%;
  }
}

.product-compare {
  padding-top: 6px;
  margin-bottom: 25px;
  font-weight: bold;
}

.product-compare a {
  text-decoration: none;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .product-compare {
    padding: 6px 10px 0;
  }
}

.product-list > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  margin-bottom: 15px;
}

.product-list > div + div {
  border-top: 1px solid #EEE;
  padding-top: 16px;
}

.product-list .right {
  text-align: right;
  margin-left: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
}

.product-list .left {
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-list .image {
  float: left;
  margin-right: 10px;
}

.product-list .name {
  margin-top: 4px;
  margin-bottom: 8px;
}

.product-list .name a {
  color: #5cbe2b;
  font: 700 16px/1.1em "Open Sans", Arial, sans-serif;
  text-decoration: none;
}

.product-list .description {
  line-height: 15px;
  margin-bottom: 5px;
  color: #4D4D4D;
  max-width: 500px;
}

.product-list .rating {
  color: #7B7B7B;
}

.product-list .price {
  float: right;
  height: 50px;
  margin-left: 8px;
  text-align: right;
}

.product-list .price-tax {
  font-size: 12px;
  font-weight: normal;
  color: #BBB;
}

.product-list .cart {
  margin-bottom: 10px;
}

.product-list .wishlist,
.product-list .compare {
  margin-bottom: 3px;
}

@media only screen and (max-width: 768px) {
  .product-list > div {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .product-list .right,
  .product-list .left {
    max-width: 100%;
    padding: 0 10px;
  }
  .product-list .right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .product-list .price {
    float: none;
  }
}

.product-grid {
  width: 100%;
  overflow: auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product-grid > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  max-width: 212.5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  vertical-align: top;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 30px;
}

#column-left + #column-right + #content .product-grid > div {
  width: 125px;
}

.product-grid .image {
  display: block;
  margin-bottom: 0px;
}

.product-grid .name {
  margin-top: 8px;
  margin-bottom: 8px;
  text-align: center;
}

.product-grid .name a {
  text-decoration: none;
  font: 700 14px/1.1em "Open Sans", Arial, sans-serif;
}

.product-grid .description {
  display: none;
}

.product-grid .rating {
  display: block;
  margin-bottom: 4px;
}

.product-grid .price {
  display: block;
  font-weight: bold;
  color: #333333;
  margin-bottom: 4px;
}

.product-grid .price .price-tax {
  display: none;
}

.product-grid .cart {
  margin-bottom: 8px;
}

.product-grid .wishlist,
.product-grid .compare {
  margin-bottom: 3px;
}

.product-grid .wishlist .link-plus,
.product-grid .compare .link-plus {
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  .product-grid > div {
    width: calc(50vw - 20px);
  }
}

.product-info {
  overflow: auto;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #FFF;
}

.product-info .box-heading {
  margin-bottom: 10px;
}

.product-info .left, .product-info .right {
  padding: 20px;
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .product-info .left, .product-info .right {
    width: 100%;
  }
}

.product-info .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.product-info .image {
  width: 100%;
  height: 100%;
}

.product-info .image a {
  display: block;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .product-info .image {
    margin: 0;
    padding: 0;
    text-align: center;
  }
}

.product-info .image-additional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 445px;
  margin-top: 20px;
}

.product-info .image-additional a {
  display: block;
}

@media only screen and (max-width: 768px) {
  .product-info .image-additional {
    width: 100%;
    margin: 0;
  }
}

.product-info .summary h2 {
  padding: 20px;
  background-color: #EEE;
  color: #333333;
  font-size: 16px;
  margin-top: 20px;
}

.product-info .description {
  border-top: 1px #CCC solid;
  border-bottom: 1px #CCC solid;
  padding: 20px 0;
  margin: 20px 0;
}

.product-info .description span {
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 5px;
}

.product-info .description p {
  margin-bottom: 5px;
  line-height: 1.2em;
}

.product-info .description a {
  color: #5cbe2b;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.product-info .description a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .product-info .description {
    padding-bottom: 5px;
  }
  .product-info .description .text {
    display: block;
  }
}

.product-info .price-content .prices-area {
  padding-bottom: 20px;
  border-bottom: 1px #CCC solid;
  margin-bottom: 20px;
}

.product-info .price-content .prices-area .main-prices {
  margin-bottom: 10px;
}

.product-info .price-content .prices-area .main-prices p {
  margin-bottom: 0;
}

.product-info .price-content .prices-area .main-prices .old-prices {
  margin-bottom: 5px;
}

.product-info .price-content .prices-area .main-prices .old-prices .price-old {
  font-size: 20px;
}

.product-info .price-content .prices-area .main-prices .new-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.product-info .price-content .prices-area .main-prices .new-prices .discount-percentage {
  background-color: #5cbe2b;
  padding: 5px 10px;
  color: white;
  font-weight: bold;
  margin-left: 10px;
  font-size: 15px;
  letter-spacing: 1px;
  margin-right: 10px;
}

.product-info .price-content .prices-area .main-prices .new-prices .discount-qty {
  color: #5cbe2b;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
}

.product-info .price-content .prices-area .extra-prices p {
  color: #333333;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
}

.product-info .price-content .reward {
  font-size: 12px;
  font-weight: normal;
  color: #999;
}

.product-info .price-content .discount {
  font-weight: normal;
  font-size: 12px;
  color: #4D4D4D;
}

@media only screen and (max-width: 768px) {
  .product-info .price-content {
    padding-top: 10px;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.product-info .price-new {
  font-size: 40px;
}

.product-info .price-tax {
  margin-top: 3px;
  font-size: 12px;
  font-weight: normal;
  color: #999;
}

.product-info .options {
  border-bottom: 1px solid #E7E7E7;
  padding: 0px 5px 10px;
  margin-bottom: 10px;
  color: #000;
}

.product-info .option-image {
  margin-top: 3px;
  margin-bottom: 10px;
}

.product-info .option-image label {
  display: block;
  width: 100%;
  height: 100%;
}

.product-info .option-image img {
  margin-right: 5px;
  border: 1px solid #EEE;
  cursor: pointer;
}

.product-info .cart .add-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.product-info .cart .add-actions .add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-weight: bold;
  font-size: 15px;
  width: 30%;
  margin-right: 10px;
}

.product-info .cart .add-actions .add p {
  margin-bottom: 0;
}

.product-info .cart .add-actions .add p.cantidad {
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 10px;
  font-size: 14px;
}

.product-info .cart .add-actions .add p input[type="text"] {
  text-align: center;
  font-size: 13px;
  padding: 10px;
  border: 1px #CCC solid;
}

.product-info .cart .add-actions .buttons-add {
  width: 70%;
}

.product-info .cart .add-actions .buttons-add .button {
  width: 100%;
}

.product-info .cart .add-actions .buttons-add p {
  text-align: right;
  width: 100%;
  font-size: 14px;
  color: #333333;
  margin-top: 5px;
  margin-bottom: 0;
}

.product-info .cart .add-actions .buttons-add p i {
  color: #5cbe2b;
}

@media only screen and (max-width: 768px) {
  .product-info .cart .add-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-info .cart .add-actions .buttons-add {
    width: 100%;
    margin-top: 20px;
  }
}

.product-info .cart .minimum {
  padding-top: 5px;
  font-size: 11px;
  color: #999;
  clear: both;
}

@media only screen and (max-width: 768px) {
  .product-info .cart {
    margin-bottom: 10px;
    border-bottom: none;
  }
  .product-info .cart .add input[type="text"] {
    width: auto;
  }
}

.product-info .content-links {
  margin-top: 20px;
  border-top: 1px #CCC solid;
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-info .content-links p {
  margin: 0;
}

.product-info .content-links p a {
  font-size: 14px;
  color: #333333;
}

.product-info .content-links p a i {
  color: #5cbe2b;
}

.product-info .content-links p a:hover {
  color: #5cbe2b;
}

.product-info .review {
  color: #333333;
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
  margin-bottom: 10px;
}

.product-info .review .content {
  padding: 20px;
  text-align: center;
}

.product-info .review > div {
  padding: 10px;
  border-bottom: 1px solid #DDD;
  line-height: 20px;
}

.product-info .review > div > span {
  color: #5cbe2b;
}

.product-info .review .share {
  overflow: auto;
  line-height: normal;
}

.product-info .review .share a {
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .product-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 0;
    padding: 0;
  }
}

.wishlist-info table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
  margin-bottom: 20px;
}

.wishlist-info td {
  padding: 7px;
}

.wishlist-info thead td {
  color: #4D4D4D;
  font-weight: bold;
  background-color: #F7F7F7;
  border-bottom: 1px solid #DDD;
}

.wishlist-info thead .image {
  text-align: center;
}

.wishlist-info thead .name,
.wishlist-info thead .model,
.wishlist-info thead .stock {
  text-align: left;
}

.wishlist-info thead .quantity,
.wishlist-info thead .price,
.wishlist-info thead .total,
.wishlist-info thead .action {
  text-align: right;
  display: table-cell;
}

.wishlist-info tbody td {
  vertical-align: top;
  border-bottom: 1px solid #DDD;
}

.wishlist-info tbody .image {
  text-align: center;
}

.wishlist-info tbody .image img {
  border: 1px solid #DDD;
}

.wishlist-info tbody .name,
.wishlist-info tbody .model,
.wishlist-info tbody .stock {
  text-align: left;
}

.wishlist-info tbody .quantity,
.wishlist-info tbody .price,
.wishlist-info tbody .total,
.wishlist-info tbody .action {
  display: table-cell;
  text-align: right;
}

.wishlist-info tbody .price s {
  color: #F00;
}

.wishlist-info tbody .action img {
  cursor: pointer;
}

.pagination {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 10px;
  padding-top: 14px;
  border-top: 1px solid #DDD;
}

.pagination .links a {
  display: inline-block;
  border: 1px solid #DDD;
  padding: 4px 10px;
  text-decoration: none;
  color: #A3A3A3;
}

.pagination .links b {
  display: inline-block;
  border: 1px solid #5cbe2b;
  padding: 4px 10px;
  font-weight: normal;
  text-decoration: none;
  color: #5cbe2b;
  background: #FFFFFF;
}

.pagination .results {
  margin-left: auto;
}

table.list {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
  margin-bottom: 20px;
}

table.list td {
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}

table.list thead td {
  background-color: #EFEFEF;
  padding: 0px 5px;
}

table.list thead td a,
table.list thead td {
  text-decoration: none;
  color: #222222;
  font-weight: bold;
}

table.list tbody td {
  vertical-align: top;
  padding: 0px 5px;
}

table.list .left {
  text-align: left;
  padding: 7px;
}

table.list .right {
  text-align: right;
  padding: 7px;
}

table.list .center {
  text-align: center;
  padding: 7px;
}

.download-list {
  margin-bottom: 10px;
}

.download-list .download-id {
  width: 49%;
  float: left;
  margin-bottom: 2px;
}

.download-list .download-status {
  width: 49%;
  float: right;
  text-align: right;
  margin-bottom: 2px;
}

.download-list .download-content {
  padding: 10px 0px;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
}

.download-list .download-content div {
  float: left;
  width: 33.3%;
}

.download-list .download-info {
  text-align: right;
}

.sitemap-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: auto;
  margin-bottom: 40px;
}

.sitemap-info .col {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
}

.review {
  color: #333333;
  margin-bottom: 10px;
}

.review .content {
  padding: 20px;
  border: 1px #DDD solid;
  text-align: center;
  margin-bottom: 20px;
}

.review-list {
  padding: 10px;
  overflow: auto;
  margin-bottom: 20px;
  border: 1px solid #DDD;
}

.review-list .author {
  float: left;
  margin-bottom: 20px;
}

.review-list .rating {
  float: right;
  margin-bottom: 20px;
}

.review-list .text {
  clear: both;
}

.home-content-top {
  margin-top: 16px;
}

.home-content-top .swiper-container {
  max-width: 830px;
  width: 100%;
  float: left;
  margin-bottom: 16px;
}

.home-content-top .banner {
  float: right;
  margin-left: 8px;
  margin-bottom: 8px;
}

.home-content-top .banner img {
  margin-bottom: -0.285em;
  max-width: 100%;
}

@media only screen and (max-width: 1024px) {
  .home-content-top #banner1 {
    height: 108px;
    overflow: hidden;
  }
  .home-content-top #banner1 img {
    margin-top: -30px;
  }
  .home-content-top .swiper-container {
    max-width: 660px;
    height: 207px;
  }
}

@media only screen and (max-width: 768px) {
  .home-content-top .swiper-container {
    height: 110px;
  }
  .home-content-top .banner {
    display: none;
  }
}

.home-block {
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 20px;
  margin: 20px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.home-block .image {
  width: 40%;
}

.home-block .content {
  width: 45%;
}

.home-block .content h1 {
  font-size: 35px;
  margin-bottom: 40px;
  font-weight: lighter;
}

.home-block .content p {
  font-size: 15px;
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .home-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home-block .image, .home-block .content {
    width: 100%;
  }
  .home-block .content h1 {
    margin-bottom: 20px;
    font-size: 25px;
  }
}

.home-explanation {
  margin: 30px 0 10px 0;
}

.home-explanation .left-block {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 460px;
          flex: 1 1 460px;
  max-width: 460px;
  width: 100%;
  margin-right: 20px;
  padding-right: 20px;
}

.home-explanation .left-block p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
  .home-explanation .left-block {
    width: 50%;
  }
}

@media only screen and (max-width: 768px) {
  .home-explanation .left-block {
    width: 100%;
    margin-right: 0;
    padding: 0 20px 20px 20px;
  }
}

.home-explanation .sidebar {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 672px;
  padding: 10px 0;
}

.home-explanation .sidebar .destacado-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 10px 10px 0;
  padding: 10px 15px;
  width: 45%;
  border: solid 1px #DDD;
  text-align: center;
  font: 200 14px/22px "Francois One", "Open Sans", Arial, sans-serif;
}

.home-explanation .sidebar .destacado-menu p {
  margin-bottom: 0;
}

.home-explanation .sidebar .destacado-menu strong {
  font: 500 17px/22px "Francois One", "Open Sans", Arial, sans-serif;
  color: #df9a57;
}

@media only screen and (max-width: 768px) {
  .home-explanation .sidebar {
    width: 100%;
  }
}

.header-category .category-description {
  margin-top: 15px;
  margin-bottom: 15px;
}

.header-category .category-description p:last-child {
  margin-bottom: 0;
}

.subcategories .title-mobile {
  display: none;
}

.subcategories .category-list {
  overflow: auto;
  margin-bottom: 5px;
  margin-top: 5px;
}

.subcategories .category-list ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.subcategories .category-list li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px 12px;
  background-color: #FFF;
  border: 1px #DDD solid;
}

.subcategories .category-list li a {
  font: 16px/1.2em "Francois One", "Open Sans", Arial, sans-serif;
}

@media only screen and (max-width: 768px) {
  .subcategories {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-bottom: 10px;
  }
  .subcategories .title-mobile {
    position: relative;
    display: block;
    margin: 10px 10px 0;
    padding: 10px;
    background-color: #EEE;
    font: 400 14px/1.2em "Francois One", "Open Sans", Arial, sans-serif;
  }
  .subcategories .title-mobile:after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    line-height: 17px;
    background-color: #cccccc;
    color: #333;
    border-radius: 100%;
    text-align: center;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  }
  .subcategories .category-list {
    display: none;
    margin: 0 10px;
    padding: 5px 0;
    background-color: #e3e3e3;
  }
  .subcategories .category-list ul {
    margin-bottom: 0;
  }
  .subcategories .category-list li {
    display: block;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent;
    padding: 0;
  }
  .subcategories .category-list li a {
    display: inline-block;
    padding: 5px;
    color: #000;
    font-size: 14px;
  }
}

.htabs {
  border-bottom: 1px solid #DDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
}

.htabs a,
.htabs p {
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
  padding: 15px 20px;
  font: 400 16px/20px "Francois One", "Open Sans", Arial, sans-serif;
  text-align: center;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 0;
}

.htabs p {
  background: #FFF;
}

.htabs a {
  background: #CCC;
}

.htabs a.selected {
  background: #FFF;
}

@media only screen and (max-width: 768px) {
  .htabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .htabs a,
  .htabs p {
    display: block !important;
    width: 100%;
    padding: 10px;
    font-size: 15px;
  }
}

.tab-content {
  background-color: #FFF;
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  padding: 30px;
  margin-bottom: 20px;
  z-index: 2;
  overflow: auto;
  font-size: 1.2em;
}

.tab-content h2 {
  margin-bottom: 10px;
}

.tab-content h3 {
  font-size: 25px;
  line-height: 1.2em;
  margin-bottom: 20px;
}

.tab-content p {
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .tab-content h3 {
    font-size: 18px;
    line-height: 1.2em;
  }
}

.checkout #checkout .checkout-heading {
  margin-top: 0;
}

.checkout #confirm {
  margin-bottom: 20px;
}

.checkout .checkout-heading {
  border-bottom: 1px solid #DDD;
  background: #FFF;
  padding: 15px 20px;
  font: 400 16px/20px "Francois One", "Open Sans", Arial, sans-serif;
  text-align: left;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  margin-top: 20px;
}

.checkout .checkout-heading a {
  float: right;
  font: 400 16px/20px "Francois One", "Open Sans", Arial, sans-serif;
}

.checkout .checkout-content {
  display: none;
  overflow: auto;
  padding: 30px;
  background-color: #fff;
}

.checkout .checkout-content .two-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.checkout .checkout-content .two-columns .left {
  margin-right: 20px;
  width: 50%;
}

.checkout .checkout-content .two-columns .right {
  width: 50%;
}

.checkout .checkout-content .radio-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.checkout .checkout-content .radio-options .radio-option {
  margin-right: 10px;
  border: 1px #DDD solid;
  margin-bottom: 20px;
  width: 50%;
}

.checkout .checkout-content .radio-options .radio-option label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}

.checkout .checkout-content .radio-options .radio-option label input[type=radio] {
  margin-right: 10px;
}

.checkout .checkout-content .radio-options .radio-option label p {
  margin-bottom: 0;
}

.checkout .checkout-content .radio-options .radio-option:hover {
  background-color: #CCC;
}

.checkout .checkout-content .operations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-top: 1px #DDD solid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.checkout .checkout-content .operations .conditions {
  width: 60%;
  padding: 10px 0;
}

.checkout .checkout-content .operations p {
  margin-bottom: 5px;
}

.checkout .checkout-content .operations .submit {
  width: 40%;
  text-align: right;
  padding: 10px 0;
}

@media only screen and (max-width: 768px) {
  .checkout .checkout-content .two-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .checkout .checkout-content .two-columns .right,
  .checkout .checkout-content .two-columns .left {
    width: 100%;
  }
  .checkout .checkout-content .two-columns .left {
    margin-bottom: 20px;
  }
  .checkout .checkout-content .operations {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .checkout .checkout-content .operations .conditions,
  .checkout .checkout-content .operations .submit {
    width: 100%;
  }
  .checkout .checkout-content .operations .conditions {
    padding-bottom: 0;
  }
  .checkout .checkout-content .operations .submit {
    padding-top: 0;
    text-align: left;
  }
}

.checkout .checkout-product table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #DDD;
  margin-bottom: 20px;
}

.checkout .checkout-product td {
  padding: 7px;
}

.checkout .checkout-product thead {
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}

.checkout .checkout-product thead td {
  color: #4D4D4D;
  font-weight: bold;
  background-color: #F7F7F7;
}

.checkout .checkout-product thead .name,
.checkout .checkout-product thead .model {
  text-align: left;
}

.checkout .checkout-product thead .quantity,
.checkout .checkout-product thead .price,
.checkout .checkout-product thead .total {
  text-align: right;
}

.checkout .checkout-product tbody {
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
}

.checkout .checkout-product tbody td {
  vertical-align: top;
}

.checkout .checkout-product tbody .name,
.checkout .checkout-product tbody .model {
  text-align: left;
}

.checkout .checkout-product tbody .quantity,
.checkout .checkout-product tbody .price,
.checkout .checkout-product tbody .total {
  text-align: right;
}

.checkout .checkout-product tbody tr {
  border-bottom: 1px solid #DDD;
}

.checkout .checkout-product tfoot td {
  text-align: right;
}

@media only screen and (max-width: 768px) {
  .checkout .checkout-product thead {
    display: none;
  }
  .checkout .checkout-product table,
  .checkout .checkout-product tbody,
  .checkout .checkout-product tfoot,
  .checkout .checkout-product tr {
    display: block;
  }
  .checkout .checkout-product tbody tr {
    padding: 7px;
    border-bottom: solid 1px #DDD;
    text-align: right;
  }
  .checkout .checkout-product tfoot {
    padding: 7px;
    border-top: solid 2px #DDD;
    border-bottom: solid 1px #DDD;
  }
  .checkout .checkout-product tfoot tr {
    margin-bottom: 5px;
  }
  .checkout .checkout-product td {
    display: inline-block;
    margin-botton: 5px;
    padding: 0;
    border-bottom: none;
  }
  .checkout .checkout-product td.model {
    display: block;
  }
  .checkout .checkout-product .total {
    font-weight: bold;
  }
}

.order-list {
  margin-bottom: 10px;
}

.order-list .order-id {
  width: 49%;
  float: left;
  margin-bottom: 2px;
}

.order-list .order-status {
  width: 49%;
  float: right;
  text-align: right;
  margin-bottom: 2px;
}

.order-list .order-content {
  padding: 10px 0px;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
}

.order-list .order-content div {
  float: left;
  width: 33.3%;
}

.order-list .order-info {
  text-align: right;
}

.order-detail {
  background: #EFEFEF;
  font-weight: bold;
}

.return-list {
  margin-bottom: 10px;
}

.return-list .return-id {
  width: 49%;
  float: left;
  margin-bottom: 2px;
}

.return-list .return-status {
  width: 49%;
  float: right;
  text-align: right;
  margin-bottom: 2px;
}

.return-list .return-content {
  padding: 10px 0px;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
}

.return-list .return-content div {
  float: left;
  width: 33.3%;
}

.return-list .return-info {
  text-align: right;
}

.return-product {
  overflow: auto;
  margin-bottom: 20px;
}

.return-name {
  float: left;
  width: 31%;
  margin-right: 15px;
}

.return-model {
  float: left;
  width: 31%;
  margin-right: 15px;
}

.return-quantity {
  float: left;
  width: 31%;
}

.return-detail {
  overflow: auto;
  margin-bottom: 20px;
}

.return-reason {
  float: left;
  width: 31%;
  margin-right: 15px;
}

.return-opened {
  float: left;
  width: 31%;
  margin-right: 15px;
}

.return-opened textarea {
  width: 98%;
  vertical-align: top;
}

.return-captcha {
  float: left;
}

.cart-info table {
  margin-top: 15px;
  width: 100%;
  margin-bottom: 15px;
  border-collapse: collapse;
}

.cart-info td {
  padding: 7px;
}

.cart-info td.image {
  display: table-cell;
}

.cart-info thead tr {
  background-color: #EEE;
  text-transform: uppercase;
  border-bottom: 1px solid #DDD;
}

.cart-info thead td {
  color: #4D4D4D;
  font-weight: bold;
}

.cart-info thead .image {
  text-align: center;
}

.cart-info thead .name,
.cart-info thead .model,
.cart-info thead .quantity {
  text-align: left;
}

.cart-info thead .price-unit,
.cart-info thead .total {
  text-align: right;
}

.cart-info thead .quantity {
  min-width: 100px;
}

.cart-info tbody tr {
  border-bottom: 1px solid #DDD;
}

.cart-info tbody td {
  vertical-align: middle;
}

.cart-info tbody .image {
  text-align: center;
}

.cart-info tbody .name,
.cart-info tbody .model,
.cart-info tbody .quantity {
  text-align: left;
}

.cart-info tbody .quantity input[type='image'],
.cart-info tbody .quantity img {
  position: relative;
  top: 4px;
  cursor: pointer;
}

.cart-info tbody .quantity input[type='text'] {
  width: auto;
  text-align: center;
}

.cart-info tbody .price-unit,
.cart-info tbody .total {
  text-align: right;
}

.cart-info tbody span.stock {
  color: #fb3640;
  font-weight: bold;
}

.cart-info .price {
  margin-bottom: 0;
  display: table-cell;
}

@media only screen and (max-width: 768px) {
  .cart-info thead {
    display: none;
  }
  .cart-info table,
  .cart-info tbody,
  .cart-info tr {
    display: block;
  }
  .cart-info table {
    border: none;
    margin-bottom: 0;
  }
  .cart-info tbody tr {
    border-bottom: solid 1px #DDD;
  }
  .cart-info tbody td {
    display: inline-block;
    border-bottom: none;
  }
  .cart-info tbody .image {
    display: inline-block;
  }
  .cart-info tbody .image img {
    border: none;
  }
  .cart-info tbody .name {
    width: 80%;
    text-align: right;
  }
  .cart-info tbody .quantity {
    width: 80%;
    text-align: right;
  }
  .cart-info tbody .quantity span {
    margin-right: 5px;
  }
  .cart-info tbody .model,
  .cart-info tbody .price {
    display: none;
  }
  .cart-info tbody .total {
    width: 19%;
    line-height: 26px;
  }
  .cart-info input {
    width: auto;
  }
}

.cart-module > div {
  display: none;
}

.cart-total {
  overflow: auto;
  margin-bottom: 15px;
}

.cart-total table {
  float: right;
}

.cart-total td {
  padding: 3px;
  text-align: right;
}

.cart-total tr:last-child td {
  font-size: 1.3em;
  font-weight: bold;
  text-transform: uppercase;
}

.login-content {
  margin-bottom: 20px;
  overflow: auto;
}

.login-content .left {
  width: 48%;
}

.login-content .right {
  width: 48%;
}

.login-content .left .content,
.login-content .right .content {
  min-height: 190px;
}

@media only screen and (max-width: 768px) {
  .login-content .left,
  .login-content .right {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .table-wrapper {
    width: 100%;
    overflow-x: auto;
  }
}

.compare-info {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

.compare-info tr td:first-child {
  color: #000;
  text-align: right;
  vertical-align: middle;
  font: 400 16px/1.2em "Francois One", "Open Sans", Arial, sans-serif;
  padding-right: 16px;
}

.compare-info td {
  padding: 7px;
  width: 20%;
  color: #4D4D4D;
  text-align: center;
  vertical-align: top;
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}

.compare-info td:last-child {
  border-right: none;
}

.compare-info .name a {
  font: 400 16px/1.2em "Francois One", "Open Sans", Arial, sans-serif;
}

.compare-info .button {
  display: inline-block;
}

.compare-info .bottom-buttons td {
  border: none;
}

.attribute {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
  margin-bottom: 20px;
}

.attribute thead td,
.attribute thead tr td:first-child {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  background: #F7F7F7;
  text-align: left;
}

.attribute tr td:first-child {
  color: #000;
  font-weight: bold;
  text-align: right;
  width: 20%;
}

.attribute td {
  padding: 7px;
  color: #4D4D4D;
  text-align: center;
  vertical-align: top;
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}
/*# sourceMappingURL=stylesheet.css.map */