@font-face {
  font-family: 'Jost400';
  font-weight: 400;
  src: url("../fonts/jost/Jost-Regular.ttf") format("opentype");
}
@font-face {
  font-family: 'Jost500M';
  font-weight: 500;
  src: url("../fonts/jost/Jost-Medium.ttf") format("opentype");
}
@font-face {
  font-family: 'Jost600S';
  font-weight: 600;
  src: url("../fonts/jost/Jost-SemiBold.ttf") format("opentype");
}
@font-face {
  font-family: 'Jost800';
  font-weight: 800;
  src: url("../fonts/jost/Jost-Bold.ttf") format("opentype");
}
@font-face {
  font-family: 'Jost200';
  font-weight: 200;
  src: url("../fonts/jost/Jost-Light.ttf") format("opentype");
}
@font-face {
  font-family: 'Ubuntu500';
  font-weight: 500;
  src: url("../fonts/ubuntu/Ubuntu-Medium.ttf") format("opentype");
}

@font-face {
  font-family: 'Ubuntu400';
  font-weight: 400;
  src: url("../fonts/ubuntu/Ubuntu-Regular.ttf") format("opentype");
}
@font-face {
  font-family: 'Ubuntu600S';
  font-weight: 600;
  src: url("../fonts/ubuntu/Ubuntu-Bold.ttf") format("opentype");
}

.checkout-onepage-index #co-billing-form .addres_square_options .address-option.add-address label.add-direction span:before {
  content: '+';
  color: #00035B;
  font-size: 37px;
  font-weight: 300;
}

div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box input[type="date"]:after {
  content: '';
  background-color: #00035B;
  height: 20px;
  width: 20px;
  float: right;
  -webkit-mask-size: 18px;
  -webkit-mask-image: url(../images/iconos/calendar.svg);
  mask-image: url(../images/iconos/calendar.svg);
  background-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.checkout-onepage-index .edit-btn:before, .checkout-onepage-index .block-progress .block-content dl div dt .changelink a:before {
  content: '';
  background-color: #00a6e2;
  height: 20px;
  width: 20px;
  margin: 10px 0px;
  -webkit-mask-size: 18px;
  float: left;
  -webkit-mask-image: url(../images/iconos/pencil.png);
  mask-image: url(../images/iconos/pencil.png);
  background-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.checkout-onepage-index #checkoutSteps .section.allow .step-title h2:after {
  content: '';
  background-color: #00035B;
  height: 18px;
  width: 19px;
  margin: 13px 13px;
  float: right;
  -webkit-mask-image: url(../images/iconos/check.svg);
  mask-image: url(../images/iconos/check.svg);
  background-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.informaciones-wrapper .link.medios_pago i {
  height: 34px;
  width: 34px;
  line-height: 30px;
  float: left;
  position: relative;
  background: url(../images/iconos/icon-pagos.png);
  background-repeat: no-repeat;
  background-size: 34px;
  display: inline-block;
}

.informaciones-wrapper .link.envios i {
  line-height: 30px;
  float: left;
  position: relative;
  background: url(../images/iconos/icon-envios.png);
  background-repeat: no-repeat;
  background-size: 34px;
  display: inline-block;
  font-size: 14px;
  color: #555;
}

.informaciones-wrapper .link.cambios i {
  height: 34px;
  width: 34px;
  line-height: 30px;
  float: left;
  position: relative;
  background: url(../images/iconos/icon-cambios.png);
  background-repeat: no-repeat;
  background-size: 34px;
  display: inline-block;
}

.button, .responsive-slide .rslides .slide-image .slide-caption .call-to-action {
  color: #fff;
  cursor: pointer;
  background-color: #F06000;
  float: left;
  font-size: 14px;
  padding: 0 20px;
  transition: opacity 300ms;
  border: none;
  width: 80%;
}
.button:hover, .responsive-slide .rslides .slide-image .slide-caption .call-to-action:hover {
  text-decoration: none;
  opacity: 0.8;
}
@media only screen and (max-width: 991px) {
  .button, .responsive-slide .rslides .slide-image .slide-caption .call-to-action {
    font-size: 12px;
  }
}

.more-information {
  cursor: pointer;
  display: inline-block;
  margin-top: 20px;
  background-repeat: no-repeat;
  line-height: 20px;
  font-size: 14px;
  color: #00035B;
}
.more-information:before {
  content: '';
  background-color: #00035B;
  height: 20px;
  width: 22px;
  display: inline-block;
  float: left;
  line-height: 35px;
  -webkit-mask-image: url(../images/iconos/plus.svg);
  mask-image: url(../images/iconos/plus.svg);
  background-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.more-information:hover {
  color: #2dc0e8;
}
.more-information:hover:before {
  background-color: #2dc0e8;
}
@media only screen and (max-width: 991px) {
  .more-information {
    margin-top: 10px;
    width: auto;
  }
}

.loading:before {
  content: '\f110' !important;
  font-family: FontAwesome;
  background: none;
  color: #fff;
  position: absolute;
  outline: none;
  width: 100%;
  font-size: 24px;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  right: 0;
  top: 0;
}

.cms-home .loading:before {
  left: -27px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

address {
  font-style: normal;
}

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

img {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

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

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

/* ============================================ *
 * Base Styles
 * ============================================ */
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
a, button {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

body,
button,
input,
select,
table,
textarea {
  color: #606060;
  font-size: 12px;
  line-height: 1.5;
}

a {
  color: #646464;
  text-decoration: none;
}

a:hover {
  color: #575757;
  text-decoration: underline;
}

a:focus {
  outline-color: #5e5e5e;
  color: #F06000;
  opacity: 0.8;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

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

/* ============================================ *
 * Typography
 * ============================================ */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #00035B;
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}

h2, .h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #00035B;
  font-size: 21px;
  font-weight: 400;
  text-transform: uppercase;
  font-style: normal;
  line-height: 36px;
  text-rendering: optimizeLegibility;
}

h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #00035B;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
}

h4, .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #606060;
  letter-spacing: 2px;
  font-size: 18px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

h5, .h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #606060;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  color: #00035B;
  font-size: 13px;
  font-weight: 600;
}

h6, .h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #606060;
  font-size: 10px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

/* ============================================ *
 * Shared Classes
 * ============================================ */
.address-list address {
  margin-bottom: 1em;
}

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

.availability .label {
  display: none;
}

.extra-info {
  margin-top: 20px;
  display: flex;
  align-items: center;
  float: right;
  width: 38%;
}
@media only screen and (max-width: 991px) {
  .extra-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
.extra-info .category {
  margin-bottom: 0;
  text-transform: uppercase;
  color: #2f2f3e;
  font-family: "Lato Light";
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2.56px;
  padding-right: 15px;
}

.availability.in-stock {
  color: white;
  float: left;
  margin: 0px;
  font-size: 11px !important;
  display: flex;
  padding: 5px;
  background-color: #a2a0a0;
  text-transform: capitalize;
}
.availability.in-stock:before {
  content: url("/skin/frontend/ecloud/girodidactico/images/in-stock.png");
  display: none;
}
@media only screen and (max-width: 991px) {
  .availability.in-stock {
    justify-content: center;
  }
}

.availability.available-soon,
.availability.out-of-stock {
  color: white;
}

.cms-index-index .availability.out-of-stock {
  width: 80%;
}

.availability-only {
  color: #DF280A;
  margin-bottom: 10px;
}

/* -------------------------------------------- *
 * Page Titles
 */
.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  font-size: 24px;
  font-weight: 600;
  color: #00035B;
  padding-bottom: 3px;
  margin-bottom: 15px;
}

/* -------------------------------------------- *
 * Block Module
 */
.block,
.col-left-first {
  margin-bottom: 20px;
}

.col-left-first .block:last-of-type {
  margin-bottom: 0;
}

.block-title {
  position: relative;
  padding: 10px 0 0;
  margin-bottom: 5px;
  border-top: 1px solid #949494;
}
.block-title h2,
.block-title h3,
.block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #606060;
  letter-spacing: 2px;
  font-size: 18px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  color: #000;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}
.block-title small {
  font-size: 100%;
  font-weight: normal;
  color: #646464;
}

body:not(.customer-account) .block:first-child .block-title {
  border-top: none;
  padding-top: 0;
  display: none;
}

.block-subtitle {
  font-weight: bold;
  margin-bottom: 7px;
}

.currently li {
  display: flex;
  align-items: center;
  margin: 12px 0;
  flex-wrap: wrap;
}
.currently li span.label {
  color: #000;
  line-height: 0;
  font-weight: bold;
  font-size: 12px;
  margin-right: 6px;
}

.block-content.unpad {
  padding: 0;
}

.block-content li.item {
  margin: 0 0 10px 9px;
}

.block-content li.item:last-child {
  margin-bottom: 0;
  margin: 0;
  padding: 10px;
}

.price-box .regular-price {
  display: flex;
  align-items: center;
}

.price-box p {
  margin-bottom: 0;
  color: #00035B;
  font-size: 13px;
  font-weight: 400;
}

.block .actions {
  margin: 10px 0 0;
  width: 100%;
}
.block .actions a {
  float: left;
}
.block .actions .button {
  float: right;
}
.block .actions .button:after {
  background: url(/skin/frontend/ecloud/famago/images/cart-pdp.png);
  content: '';
  height: 34px;
  width: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-position-x: 8px;
  background-position-y: 6px;
}

.col-left .block .actions .button ~ a,
.col-right .block .actions .button ~ a {
  line-height: 33px;
  margin-right: 5px;
}

/* -------------------------------------------- *
 * Secondary Navigation
 */
.block-account .block-title,
.block-cms-menu .block-title {
  padding-top: 0;
  border-top: none;
}
.block-account li,
.block-cms-menu li {
  text-transform: uppercase;
  margin: 7px 0;
}
.block-account li strong,
.block-cms-menu li strong {
  font-weight: 400;
  color: #646464;
}
.block-account li a,
.block-cms-menu li a {
  color: #606060;
}
.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #646464;
}

.amshopby-filters-top #narrow-by-list, .amshopby-filters-left #narrow-by-list {
  display: block;
}

.amshopby-filters-top, .amshopby-filters-left, .block-layered-nav, .back-btn {
  border-bottom: 1px solid #eeeeee;
  z-index: 1;
  float: left;
  background: white;
  width: 100%;
  margin-bottom: 0;
}
.amshopby-filters-top .block-title, .amshopby-filters-left .block-title, .block-layered-nav .block-title, .back-btn .block-title {
  display: none;
}
.amshopby-filters-top .block-subtitle, .amshopby-filters-left .block-subtitle, .block-layered-nav .block-subtitle, .back-btn .block-subtitle {
  display: none;
}
.amshopby-filters-top .filters .filter-buttons, .amshopby-filters-left .filters .filter-buttons, .block-layered-nav .filters .filter-buttons, .back-btn .filters .filter-buttons {
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .amshopby-filters-top .filters .filter-buttons #narrow-by-list .filtermobile, .amshopby-filters-left .filters .filter-buttons #narrow-by-list .filtermobile, .block-layered-nav .filters .filter-buttons #narrow-by-list .filtermobile, .back-btn .filters .filter-buttons #narrow-by-list .filtermobile {
    display: none;
  }
  .amshopby-filters-top .filters .filter-buttons p, .amshopby-filters-left .filters .filter-buttons p, .block-layered-nav .filters .filter-buttons p, .back-btn .filters .filter-buttons p {
    margin-top: 32px;
    font-size: 13px;
    color: #2f2f3e;
  }
}
@media only screen and (max-width: 991px) {
  .amshopby-filters-top .filters .filter-buttons #narrow-by-list .filtermobile.sticky, .amshopby-filters-left .filters .filter-buttons #narrow-by-list .filtermobile.sticky, .block-layered-nav .filters .filter-buttons #narrow-by-list .filtermobile.sticky, .back-btn .filters .filter-buttons #narrow-by-list .filtermobile.sticky {
    position: fixed;
    left: 10px;
    bottom: 10px;
    width: 70px;
    background: #ea5051;
    border-radius: 100%;
    color: #fff;
    height: 70px;
    line-height: 70px;
    padding: 0;
    box-shadow: 4px -2px 5px 0px #ebebeb;
  }
  .amshopby-filters-top .filters .filter-buttons #narrow-by-list .back a, .amshopby-filters-left .filters .filter-buttons #narrow-by-list .back a, .block-layered-nav .filters .filter-buttons #narrow-by-list .back a, .back-btn .filters .filter-buttons #narrow-by-list .back a {
    display: flex;
    align-items: center;
    color: #00035B;
  }
  .amshopby-filters-top .filters .filter-buttons #narrow-by-list .back a img, .amshopby-filters-left .filters .filter-buttons #narrow-by-list .back a img, .block-layered-nav .filters .filter-buttons #narrow-by-list .back a img, .back-btn .filters .filter-buttons #narrow-by-list .back a img {
    margin-right: 3px;
    height: 18px;
    width: 18px;
  }
}
.amshopby-filters-top #narrow-by-list, .amshopby-filters-left #narrow-by-list, .block-layered-nav #narrow-by-list, .back-btn #narrow-by-list {
  float: left;
  width: 80%;
  margin: 0;
  display: none;
}
@media only screen and (max-width: 991px) {
  .amshopby-filters-top #narrow-by-list, .amshopby-filters-left #narrow-by-list, .block-layered-nav #narrow-by-list, .back-btn #narrow-by-list {
    display: block;
  }
}
.amshopby-filters-top #narrow-by-list tbody tr td, .amshopby-filters-left #narrow-by-list tbody tr td, .block-layered-nav #narrow-by-list tbody tr td, .back-btn #narrow-by-list tbody tr td {
  float: left;
  width: auto;
  margin-right: 30px;
  width: 100%;
}
.amshopby-filters-top #narrow-by-list tbody tr td.active dd, .amshopby-filters-left #narrow-by-list tbody tr td.active dd, .block-layered-nav #narrow-by-list tbody tr td.active dd, .back-btn #narrow-by-list tbody tr td.active dd {
  display: block !important;
}
.amshopby-filters-top #narrow-by-list tbody tr td dt, .amshopby-filters-left #narrow-by-list tbody tr td dt, .block-layered-nav #narrow-by-list tbody tr td dt, .back-btn #narrow-by-list tbody tr td dt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  line-height: 25px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.91px;
  text-transform: uppercase;
  color: #2f2f3e;
  background: none;
}
.amshopby-filters-top #narrow-by-list tbody tr td dt:after, .amshopby-filters-left #narrow-by-list tbody tr td dt:after, .block-layered-nav #narrow-by-list tbody tr td dt:after, .back-btn #narrow-by-list tbody tr td dt:after {
  content: '\f106';
  font-family: FontAwesome;
  color: #a2a1a0;
  padding-left: 8px;
  font-size: 14px;
}
.amshopby-filters-top #narrow-by-list tbody tr td dt.amshopby-collapsed:after, .amshopby-filters-left #narrow-by-list tbody tr td dt.amshopby-collapsed:after, .block-layered-nav #narrow-by-list tbody tr td dt.amshopby-collapsed:after, .back-btn #narrow-by-list tbody tr td dt.amshopby-collapsed:after {
  content: '\f107';
  font-family: FontAwesome;
  color: #a2a1a0;
  padding-left: 8px;
  font-size: 14px;
}
.amshopby-filters-top #narrow-by-list tbody tr td dd, .amshopby-filters-left #narrow-by-list tbody tr td dd, .block-layered-nav #narrow-by-list tbody tr td dd, .back-btn #narrow-by-list tbody tr td dd {
  background: #fff !important;
  z-index: 8;
  width: 92%;
  float: left;
  margin-top: 9px;
  border-bottom: 1px solid #eee;
}
.amshopby-filters-top #narrow-by-list tbody tr td dd ol li, .amshopby-filters-left #narrow-by-list tbody tr td dd ol li, .block-layered-nav #narrow-by-list tbody tr td dd ol li, .back-btn #narrow-by-list tbody tr td dd ol li {
  padding: 5px 12px 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 300;
  float: left;
  width: 100%;
  line-height: 25px;
  text-align: left;
  font-size: 12px;
}
.amshopby-filters-top #narrow-by-list tbody tr td dd ol li a, .amshopby-filters-left #narrow-by-list tbody tr td dd ol li a, .block-layered-nav #narrow-by-list tbody tr td dd ol li a, .back-btn #narrow-by-list tbody tr td dd ol li a {
  padding: 0px 8px;
  margin: 0;
  line-height: 25px;
}
.amshopby-filters-top #narrow-by-list tbody tr td dd ol li a.amshopby-attr, .amshopby-filters-left #narrow-by-list tbody tr td dd ol li a.amshopby-attr, .block-layered-nav #narrow-by-list tbody tr td dd ol li a.amshopby-attr, .back-btn #narrow-by-list tbody tr td dd ol li a.amshopby-attr {
  background-image: url("../images/checkbox.png");
  background-position: 5px;
  background-repeat: no-repeat;
  background-size: 15px;
  padding-left: 25px;
  padding-right: 5px;
}
@media only screen and (max-width: 991px) {
  .amshopby-filters-top #narrow-by-list tbody tr td dd ol li a.amshopby-attr, .amshopby-filters-left #narrow-by-list tbody tr td dd ol li a.amshopby-attr, .block-layered-nav #narrow-by-list tbody tr td dd ol li a.amshopby-attr, .back-btn #narrow-by-list tbody tr td dd ol li a.amshopby-attr {
    font-size: 14px;
  }
}
.amshopby-filters-top #narrow-by-list tbody tr td dd ol li a.amshopby-attr-selected, .amshopby-filters-left #narrow-by-list tbody tr td dd ol li a.amshopby-attr-selected, .block-layered-nav #narrow-by-list tbody tr td dd ol li a.amshopby-attr-selected, .back-btn #narrow-by-list tbody tr td dd ol li a.amshopby-attr-selected {
  background-image: url("../images/checkbox-selected.png");
  background-position: 5px;
  background-repeat: no-repeat;
  background-size: 15px;
  padding-left: 25px;
  padding-right: 5px;
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .amshopby-filters-top #narrow-by-list tbody tr td dd ol li a.amshopby-attr-selected, .amshopby-filters-left #narrow-by-list tbody tr td dd ol li a.amshopby-attr-selected, .block-layered-nav #narrow-by-list tbody tr td dd ol li a.amshopby-attr-selected, .back-btn #narrow-by-list tbody tr td dd ol li a.amshopby-attr-selected {
    font-size: 14px;
  }
}
.amshopby-filters-top #narrow-by-list tbody tr td dd ol .espacio, .amshopby-filters-left #narrow-by-list tbody tr td dd ol .espacio, .block-layered-nav #narrow-by-list tbody tr td dd ol .espacio, .back-btn #narrow-by-list tbody tr td dd ol .espacio {
  display: none;
}
.amshopby-filters-top #narrow-by-list tbody tr td dd ol .final-li input, .amshopby-filters-left #narrow-by-list tbody tr td dd ol .final-li input, .block-layered-nav #narrow-by-list tbody tr td dd ol .final-li input, .back-btn #narrow-by-list tbody tr td dd ol .final-li input {
  margin: 5px 1px;
}
.amshopby-filters-top #narrow-by-list tbody tr td dd ol .final-li .separador, .amshopby-filters-left #narrow-by-list tbody tr td dd ol .final-li .separador, .block-layered-nav #narrow-by-list tbody tr td dd ol .final-li .separador, .back-btn #narrow-by-list tbody tr td dd ol .final-li .separador {
  display: none !important;
}
.amshopby-filters-top #narrow-by-list tbody tr td.edad dt, .amshopby-filters-left #narrow-by-list tbody tr td.edad dt, .block-layered-nav #narrow-by-list tbody tr td.edad dt, .back-btn #narrow-by-list tbody tr td.edad dt {
  background-image: url("../images/edad-icon.png");
  background-position: 6px;
  background-repeat: no-repeat;
  background-size: 16px;
}
.amshopby-filters-top #narrow-by-list tbody tr td.genero dt, .amshopby-filters-left #narrow-by-list tbody tr td.genero dt, .block-layered-nav #narrow-by-list tbody tr td.genero dt, .back-btn #narrow-by-list tbody tr td.genero dt {
  background-image: url("../images/genero-icon.png");
  background-position: left;
  background-repeat: no-repeat;
  background-size: 25px;
}
.amshopby-filters-top #narrow-by-list tbody tr td.color dt, .amshopby-filters-left #narrow-by-list tbody tr td.color dt, .block-layered-nav #narrow-by-list tbody tr td.color dt, .back-btn #narrow-by-list tbody tr td.color dt {
  background-image: url("../images/color-icon.png");
  background-position: left;
  background-repeat: no-repeat;
  background-size: 20px;
}
.amshopby-filters-top #narrow-by-list tbody tr td.precio ol, .amshopby-filters-left #narrow-by-list tbody tr td.precio ol, .block-layered-nav #narrow-by-list tbody tr td.precio ol, .back-btn #narrow-by-list tbody tr td.precio ol {
  display: block !important;
}
.amshopby-filters-top #narrow-by-list tbody tr td.precio ol button, .amshopby-filters-left #narrow-by-list tbody tr td.precio ol button, .block-layered-nav #narrow-by-list tbody tr td.precio ol button, .back-btn #narrow-by-list tbody tr td.precio ol button {
  margin: 10px 0px 4px;
}
.amshopby-filters-top #narrow-by-list tbody tr td.precio dt, .amshopby-filters-left #narrow-by-list tbody tr td.precio dt, .block-layered-nav #narrow-by-list tbody tr td.precio dt, .back-btn #narrow-by-list tbody tr td.precio dt {
  background-image: url("../images/precio-icon.png");
  background-position: left;
  background-repeat: no-repeat;
  background-size: 20px;
}
.amshopby-filters-top #narrow-by-list tbody tr td.precio dt.amshopby-collapsed:after, .amshopby-filters-left #narrow-by-list tbody tr td.precio dt.amshopby-collapsed:after, .block-layered-nav #narrow-by-list tbody tr td.precio dt.amshopby-collapsed:after, .back-btn #narrow-by-list tbody tr td.precio dt.amshopby-collapsed:after {
  content: '\f107';
}
.amshopby-filters-top #narrow-by-list tbody tr td.precio.active dt:after, .amshopby-filters-left #narrow-by-list tbody tr td.precio.active dt:after, .block-layered-nav #narrow-by-list tbody tr td.precio.active dt:after, .back-btn #narrow-by-list tbody tr td.precio.active dt:after {
  content: '\f106';
}
.amshopby-filters-top #narrow-by-list .cerrar, .amshopby-filters-left #narrow-by-list .cerrar, .block-layered-nav #narrow-by-list .cerrar, .back-btn #narrow-by-list .cerrar {
  display: none;
}
.amshopby-filters-top #narrow-by-list table, .amshopby-filters-left #narrow-by-list table, .block-layered-nav #narrow-by-list table, .back-btn #narrow-by-list table {
  float: left;
}
.amshopby-filters-top #narrow-by-list table tbody, .amshopby-filters-left #narrow-by-list table tbody, .block-layered-nav #narrow-by-list table tbody, .back-btn #narrow-by-list table tbody {
  padding: 10px;
  float: left;
  width: 100%;
}
.amshopby-filters-top #narrow-by-list table tbody tr, .amshopby-filters-left #narrow-by-list table tbody tr, .block-layered-nav #narrow-by-list table tbody tr, .back-btn #narrow-by-list table tbody tr {
  width: 100%;
  float: left;
}
@media only screen and (max-width: 991px) {
  .amshopby-filters-top, .amshopby-filters-left, .block-layered-nav, .back-btn {
    border: none;
    z-index: 90;
  }
  .amshopby-filters-top .block-content, .amshopby-filters-left .block-content, .block-layered-nav .block-content, .back-btn .block-content {
    margin: 0;
  }
  .amshopby-filters-top .block-content #narrow-by-list, .amshopby-filters-left .block-content #narrow-by-list, .block-layered-nav .block-content #narrow-by-list, .back-btn .block-content #narrow-by-list {
    padding: 0;
    border: none;
  }
  .amshopby-filters-top .block-content #narrow-by-list .filtermobile, .amshopby-filters-left .block-content #narrow-by-list .filtermobile, .block-layered-nav .block-content #narrow-by-list .filtermobile, .back-btn .block-content #narrow-by-list .filtermobile {
    float: left;
    width: 100%;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .amshopby-filters-top .block-content #narrow-by-list .filtermobile img, .amshopby-filters-left .block-content #narrow-by-list .filtermobile img, .block-layered-nav .block-content #narrow-by-list .filtermobile img, .back-btn .block-content #narrow-by-list .filtermobile img {
    width: 20px;
    margin-right: 10px;
  }
  .amshopby-filters-top .block-content #narrow-by-list .change-my-color, .amshopby-filters-left .block-content #narrow-by-list .change-my-color, .block-layered-nav .block-content #narrow-by-list .change-my-color, .back-btn .block-content #narrow-by-list .change-my-color {
    fill: green;
  }
  .amshopby-filters-top .block-content #narrow-by-list table, .amshopby-filters-left .block-content #narrow-by-list table, .block-layered-nav .block-content #narrow-by-list table, .back-btn .block-content #narrow-by-list table {
    width: 100% !important;
    float: left;
    text-align: left;
    right: 100%;
    position: fixed;
    top: 0px;
    padding-top: 0;
    background: #fff;
    z-index: 1000;
    height: 100%;
    transition: right 0.4s;
    box-shadow: 0 -20px 0 0 #fff;
  }
  .amshopby-filters-top .block-content #narrow-by-list table .cerrar, .amshopby-filters-left .block-content #narrow-by-list table .cerrar, .block-layered-nav .block-content #narrow-by-list table .cerrar, .back-btn .block-content #narrow-by-list table .cerrar {
    display: block;
    position: relative;
    top: 0;
    z-index: 9;
    padding: 10px 15px;
    float: right;
    text-align: right;
  }
  .amshopby-filters-top .block-content #narrow-by-list table .cerrar .close-button, .amshopby-filters-left .block-content #narrow-by-list table .cerrar .close-button, .block-layered-nav .block-content #narrow-by-list table .cerrar .close-button, .back-btn .block-content #narrow-by-list table .cerrar .close-button {
    content: '\f057';
    font-family: FontAwesome;
    position: relative;
    right: 0px;
  }
  .amshopby-filters-top .block-content #narrow-by-list table .cerrar .close-button .fa-times-circle, .amshopby-filters-left .block-content #narrow-by-list table .cerrar .close-button .fa-times-circle, .block-layered-nav .block-content #narrow-by-list table .cerrar .close-button .fa-times-circle, .back-btn .block-content #narrow-by-list table .cerrar .close-button .fa-times-circle {
    color: #00035B;
    font-size: 30px;
  }
  .amshopby-filters-top .block-content #narrow-by-list table tbody, .amshopby-filters-left .block-content #narrow-by-list table tbody, .block-layered-nav .block-content #narrow-by-list table tbody, .back-btn .block-content #narrow-by-list table tbody {
    /* padding: 12px 16px 0px 16px !important; */
    float: left;
    width: 100%;
    overflow: scroll;
  }
  .amshopby-filters-top .block-content #narrow-by-list table tbody tr, .amshopby-filters-left .block-content #narrow-by-list table tbody tr, .block-layered-nav .block-content #narrow-by-list table tbody tr, .back-btn .block-content #narrow-by-list table tbody tr {
    float: left;
    width: 100%;
    overflow: scroll;
  }
  .amshopby-filters-top .block-content #narrow-by-list table td, .amshopby-filters-left .block-content #narrow-by-list table td, .block-layered-nav .block-content #narrow-by-list table td, .back-btn .block-content #narrow-by-list table td {
    float: left;
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    margin: 0;
    max-height: calc(100vh - 95px);
    overflow: scroll;
  }
  .amshopby-filters-top .block-content #narrow-by-list table td dt, .amshopby-filters-left .block-content #narrow-by-list table td dt, .block-layered-nav .block-content #narrow-by-list table td dt, .back-btn .block-content #narrow-by-list table td dt {
    float: left;
    width: 100%;
    font-size: 16px;
    color: black;
  }
  .amshopby-filters-top .block-content #narrow-by-list table td dt:after, .amshopby-filters-left .block-content #narrow-by-list table td dt:after, .block-layered-nav .block-content #narrow-by-list table td dt:after, .back-btn .block-content #narrow-by-list table td dt:after {
    float: right;
    font-size: 18px !important;
    padding-right: 3px;
  }
  .amshopby-filters-top .block-content #narrow-by-list table td dd, .amshopby-filters-left .block-content #narrow-by-list table td dd, .block-layered-nav .block-content #narrow-by-list table td dd, .back-btn .block-content #narrow-by-list table td dd {
    float: left;
    width: 100%;
    left: 0;
    position: relative;
    max-height: calc(100vh - 5px);
    overflow: auto;
    margin-bottom: 100px;
  }
  .amshopby-filters-top .block-content .category-products, .amshopby-filters-left .block-content .category-products, .block-layered-nav .block-content .category-products, .back-btn .block-content .category-products {
    position: relative;
  }
  .amshopby-filters-top .block-content .category-products .sorter div#sort-xs, .amshopby-filters-left .block-content .category-products .sorter div#sort-xs, .block-layered-nav .block-content .category-products .sorter div#sort-xs, .back-btn .block-content .category-products .sorter div#sort-xs {
    z-index: 9;
  }
  .amshopby-filters-top .block-content .category-products .toolbar, .amshopby-filters-left .block-content .category-products .toolbar, .block-layered-nav .block-content .category-products .toolbar, .back-btn .block-content .category-products .toolbar {
    width: 50%;
    border: solid 1px;
    height: 35px;
    margin: 0 auto;
    background-color: #00035B;
    color: white;
    border-radius: 2px;
    padding: 0 10px;
    font-size: 14px;
  }
  .amshopby-filters-top .block-content .category-products .toolbar.active table, .amshopby-filters-left .block-content .category-products .toolbar.active table, .block-layered-nav .block-content .category-products .toolbar.active table, .back-btn .block-content .category-products .toolbar.active table {
    right: 0;
  }
  .amshopby-filters-top .block-content .notfilter, .amshopby-filters-left .block-content .notfilter, .block-layered-nav .block-content .notfilter, .back-btn .block-content .notfilter {
    display: none;
  }
  .amshopby-filters-top .block-content .filters .filter-buttons, .amshopby-filters-left .block-content .filters .filter-buttons, .block-layered-nav .block-content .filters .filter-buttons, .back-btn .block-content .filters .filter-buttons {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
  }
}
@media only screen and (max-width: 991px) and (max-width: 991px) {
  .amshopby-filters-top .block-content .filters .filter-buttons, .amshopby-filters-left .block-content .filters .filter-buttons, .block-layered-nav .block-content .filters .filter-buttons, .back-btn .block-content .filters .filter-buttons {
    padding: 10px 0;
    background: white;
    box-shadow: 0px 1px 6px 1px #ccc;
  }
}
@media only screen and (max-width: 991px) {
  .amshopby-filters-top .block-content .filters .filter-buttons #narrow-by-list, .amshopby-filters-top .block-content .filters .filter-buttons .toolbar, .amshopby-filters-left .block-content .filters .filter-buttons #narrow-by-list, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar, .block-layered-nav .block-content .filters .filter-buttons #narrow-by-list, .block-layered-nav .block-content .filters .filter-buttons .toolbar, .back-btn .block-content .filters .filter-buttons #narrow-by-list, .back-btn .block-content .filters .filter-buttons .toolbar {
    width: 50%;
    height: 35px;
    margin: 0 auto;
    background-color: white;
    color: #151FD3;
    padding: 0 10px;
    font-size: 14px;
  }
  .amshopby-filters-top .block-content .filters .filter-buttons #narrow-by-list.active table, .amshopby-filters-top .block-content .filters .filter-buttons .toolbar.active table, .amshopby-filters-left .block-content .filters .filter-buttons #narrow-by-list.active table, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar.active table, .block-layered-nav .block-content .filters .filter-buttons #narrow-by-list.active table, .block-layered-nav .block-content .filters .filter-buttons .toolbar.active table, .back-btn .block-content .filters .filter-buttons #narrow-by-list.active table, .back-btn .block-content .filters .filter-buttons .toolbar.active table {
    right: 0;
  }
}
@media only screen and (max-width: 991px) and (max-width: 991px) {
  .amshopby-filters-top .block-content .filters .filter-buttons #narrow-by-list.list, .amshopby-filters-top .block-content .filters .filter-buttons .toolbar.list, .amshopby-filters-left .block-content .filters .filter-buttons #narrow-by-list.list, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar.list, .block-layered-nav .block-content .filters .filter-buttons #narrow-by-list.list, .block-layered-nav .block-content .filters .filter-buttons .toolbar.list, .back-btn .block-content .filters .filter-buttons #narrow-by-list.list, .back-btn .block-content .filters .filter-buttons .toolbar.list {
    width: 100%;
    background-color: #fff;
    color: #000;
    border: none;
  }
  .amshopby-filters-top .block-content .filters .filter-buttons #narrow-by-list.list dt.amshopby-collapsed, .amshopby-filters-top .block-content .filters .filter-buttons .toolbar.list dt.amshopby-collapsed, .amshopby-filters-left .block-content .filters .filter-buttons #narrow-by-list.list dt.amshopby-collapsed, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar.list dt.amshopby-collapsed, .block-layered-nav .block-content .filters .filter-buttons #narrow-by-list.list dt.amshopby-collapsed, .block-layered-nav .block-content .filters .filter-buttons .toolbar.list dt.amshopby-collapsed, .back-btn .block-content .filters .filter-buttons #narrow-by-list.list dt.amshopby-collapsed, .back-btn .block-content .filters .filter-buttons .toolbar.list dt.amshopby-collapsed {
    background: none;
  }
  .amshopby-filters-top .block-content .filters .filter-buttons #narrow-by-list.list dt.amshopby-collapsed.current:before, .amshopby-filters-top .block-content .filters .filter-buttons .toolbar.list dt.amshopby-collapsed.current:before, .amshopby-filters-left .block-content .filters .filter-buttons #narrow-by-list.list dt.amshopby-collapsed.current:before, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar.list dt.amshopby-collapsed.current:before, .block-layered-nav .block-content .filters .filter-buttons #narrow-by-list.list dt.amshopby-collapsed.current:before, .block-layered-nav .block-content .filters .filter-buttons .toolbar.list dt.amshopby-collapsed.current:before, .back-btn .block-content .filters .filter-buttons #narrow-by-list.list dt.amshopby-collapsed.current:before, .back-btn .block-content .filters .filter-buttons .toolbar.list dt.amshopby-collapsed.current:before {
    content: '\f106';
    font-family: FontAwesome;
    color: #a29f9f !important;
    font-size: 13px;
    position: absolute;
    right: 6px;
    background: none;
  }
  .amshopby-filters-top .block-content .filters .filter-buttons #narrow-by-list.list dt, .amshopby-filters-top .block-content .filters .filter-buttons .toolbar.list dt, .amshopby-filters-left .block-content .filters .filter-buttons #narrow-by-list.list dt, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar.list dt, .block-layered-nav .block-content .filters .filter-buttons #narrow-by-list.list dt, .block-layered-nav .block-content .filters .filter-buttons .toolbar.list dt, .back-btn .block-content .filters .filter-buttons #narrow-by-list.list dt, .back-btn .block-content .filters .filter-buttons .toolbar.list dt {
    background: none;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .amshopby-filters-top .block-content .filters .filter-buttons #narrow-by-list.list dt:before, .amshopby-filters-top .block-content .filters .filter-buttons .toolbar.list dt:before, .amshopby-filters-left .block-content .filters .filter-buttons #narrow-by-list.list dt:before, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar.list dt:before, .block-layered-nav .block-content .filters .filter-buttons #narrow-by-list.list dt:before, .block-layered-nav .block-content .filters .filter-buttons .toolbar.list dt:before, .back-btn .block-content .filters .filter-buttons #narrow-by-list.list dt:before, .back-btn .block-content .filters .filter-buttons .toolbar.list dt:before {
    content: '\f107';
    font-family: FontAwesome;
    color: #a29f9f !important;
    font-size: 13px;
    position: absolute;
    right: 6px;
  }
  .amshopby-filters-top .block-content .filters .filter-buttons #narrow-by-list.list dd, .amshopby-filters-top .block-content .filters .filter-buttons .toolbar.list dd, .amshopby-filters-left .block-content .filters .filter-buttons #narrow-by-list.list dd, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar.list dd, .block-layered-nav .block-content .filters .filter-buttons #narrow-by-list.list dd, .block-layered-nav .block-content .filters .filter-buttons .toolbar.list dd, .back-btn .block-content .filters .filter-buttons #narrow-by-list.list dd, .back-btn .block-content .filters .filter-buttons .toolbar.list dd {
    display: none;
  }
}
@media only screen and (max-width: 991px) and (max-width: 991px) and (max-width: 991px) {
  .amshopby-filters-top .block-content .filters .filter-buttons #narrow-by-list.list dd.current ol, .amshopby-filters-top .block-content .filters .filter-buttons .toolbar.list dd.current ol, .amshopby-filters-left .block-content .filters .filter-buttons #narrow-by-list.list dd.current ol, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar.list dd.current ol, .block-layered-nav .block-content .filters .filter-buttons #narrow-by-list.list dd.current ol, .block-layered-nav .block-content .filters .filter-buttons .toolbar.list dd.current ol, .back-btn .block-content .filters .filter-buttons #narrow-by-list.list dd.current ol, .back-btn .block-content .filters .filter-buttons .toolbar.list dd.current ol {
    display: block !important;
  }
}
@media only screen and (max-width: 991px) and (max-width: 991px) {
  .amshopby-filters-top .block-content .filters .filter-buttons #narrow-by-list.list li, .amshopby-filters-top .block-content .filters .filter-buttons .toolbar.list li, .amshopby-filters-left .block-content .filters .filter-buttons #narrow-by-list.list li, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar.list li, .block-layered-nav .block-content .filters .filter-buttons #narrow-by-list.list li, .block-layered-nav .block-content .filters .filter-buttons .toolbar.list li, .back-btn .block-content .filters .filter-buttons #narrow-by-list.list li, .back-btn .block-content .filters .filter-buttons .toolbar.list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .amshopby-filters-top .block-content .filters .filter-buttons #narrow-by-list.list li a, .amshopby-filters-top .block-content .filters .filter-buttons .toolbar.list li a, .amshopby-filters-left .block-content .filters .filter-buttons #narrow-by-list.list li a, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar.list li a, .block-layered-nav .block-content .filters .filter-buttons #narrow-by-list.list li a, .block-layered-nav .block-content .filters .filter-buttons .toolbar.list li a, .back-btn .block-content .filters .filter-buttons #narrow-by-list.list li a, .back-btn .block-content .filters .filter-buttons .toolbar.list li a {
    padding: 0px 8px;
    margin: 0;
    line-height: 25px;
    background: none;
  }
}
@media only screen and (max-width: 991px) {
  .amshopby-filters-top .block-content .filters .filter-buttons .toolbar, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar, .block-layered-nav .block-content .filters .filter-buttons .toolbar, .back-btn .block-content .filters .filter-buttons .toolbar {
    width: 50%;
    padding: 0;
  }
  .amshopby-filters-top .block-content .filters .filter-buttons .toolbar #sort-xs ul, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar #sort-xs ul, .block-layered-nav .block-content .filters .filter-buttons .toolbar #sort-xs ul, .back-btn .block-content .filters .filter-buttons .toolbar #sort-xs ul {
    display: none;
  }
  .amshopby-filters-top .block-content .filters .filter-buttons .toolbar.active .sort-by, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar.active .sort-by, .block-layered-nav .block-content .filters .filter-buttons .toolbar.active .sort-by, .back-btn .block-content .filters .filter-buttons .toolbar.active .sort-by {
    /* bottom: 55px;
    transition: bottom 0.4s; OTRO */
  }
  .amshopby-filters-top .block-content .filters .filter-buttons .toolbar.active #sort-xs ul, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar.active #sort-xs ul, .block-layered-nav .block-content .filters .filter-buttons .toolbar.active #sort-xs ul, .back-btn .block-content .filters .filter-buttons .toolbar.active #sort-xs ul {
    display: block;
    background: red;
    text-align: left;
    float: left;
    width: 100%;
    box-shadow: 0px -2px 8px 0px #f0f0f0;
    padding: 4px 0;
    margin-top: 1px;
    border-radius: 2px;
    border-bottom: 1px solid #eee;
    padding-bottom: 23px;

  }
  .amshopby-filters-top .block-content .filters .filter-buttons .toolbar.active #sort-xs ul li, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar.active #sort-xs ul li, .block-layered-nav .block-content .filters .filter-buttons .toolbar.active #sort-xs ul li, .back-btn .block-content .filters .filter-buttons .toolbar.active #sort-xs ul li {
    margin: 3px 0;
    font-size: 14px;
    padding: 7px 10px;
  }
  /* .amshopby-filters-top .block-content .filters .filter-buttons .toolbar.active #sort-xs ul li a, .amshopby-filters-left .block-content .filters .filter-buttons .toolbar.active #sort-xs ul li a, .block-layered-nav .block-content .filters .filter-buttons .toolbar.active #sort-xs ul li a, .back-btn .block-content .filters .filter-buttons .toolbar.active #sort-xs ul li a {
    padding-left: 6px;
  } */
}

.amshopby-wrapper.amshopby-filters-wrapper {
  display: none;
}

.block.block-layered-nav.amshopby-filters-left.block-layered-nav.amshopby-filters-left--no-filters #narrow-by-list {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 991px) {
  .block.block-layered-nav.amshopby-filters-left.block-layered-nav.amshopby-filters-left--no-filters #narrow-by-list {
    width: 50%;
  }
}
.block.block-layered-nav.amshopby-filters-left.block-layered-nav.amshopby-filters-left--no-filters #narrow-by-list.list {
  display: none;
}
@media only screen and (max-width: 991px) {
  .block.block-layered-nav.amshopby-filters-left.block-layered-nav.amshopby-filters-left--no-filters #narrow-by-list.list {
    display: block;
  }
}

.filter-buttons.categories
.toolbar .pages {
  display: none;
}

.toolbar {
  display: flex;
  width: 100%;
}

.catalog-category-view .amshopby-filters-top.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: top 1s;
}
.catalog-category-view.scrollUp .amshopby-filters-top.sticky {
  position: fixed;
  top: 50px;
}

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
.cart .buttons-set .button,
.cart-table .button,
.button.button-secondary {
  background: #043980;
  color: white;
  padding: 7px 15px;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.cart .buttons-set .button:hover,
.cart-table .button:hover,
.button.button-secondary:hover {
  background: #d0d0d0;
  cursor: pointer;
}
.cart .buttons-set .button:active,
.cart-table .button:active,
.button.button-secondary:active {
  background: #c4c4c4;
  color: #606060;
}
.cart .buttons-set .button:focus,
.cart-table .button:focus,
.button.button-secondary:focus {
  color: #606060;
  background: #c4c4c4;
  outline: none;
}

.sidebar .actions button.button {
  white-space: normal;
}

/* Primary Buttons */
a.button {
  text-decoration: none;
}

.btn-cart {
  padding: 0;
  height: 35px;
  width: 100% !important;
  border-radius: 0;
}
.btn-cart span {
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Jost500M", sans-serif;
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  .btn-cart {
    padding: 0 15px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 479px) {
  .btn-cart {
    padding: 0 13px;
    border-radius: 5px;
  }
}
@media only screen and (max-width: 359px) {
  .btn-cart {
    padding: 0 8px;
  }
}
@media (min-width: 480px) and (max-width: 700px) {
  .btn-cart {
    padding: 0 5px;
  }
}
.btn-cart .icon-carrito {
  font-size: 13px;
}
.btn-cart .icon-carrito:before {
  font-size: 18px;
}
@media (min-width: 480px) and (max-width: 710px) {
  .btn-cart .icon-carrito:before {
    font-size: 14px;
  }
}
@media only screen and (max-width: 359px) {
  .btn-cart .icon-carrito:before {
    font-size: 17px;
  }
}
@media (min-width: 480px) and (max-width: 700px) {
  .btn-cart .icon-carrito {
    font-size: 10px;
  }
}
@media only screen and (max-width: 479px) {
  .btn-cart .icon-carrito {
    letter-spacing: 0.05em;
    font-size: 12px;
  }
}
@media only screen and (max-width: 359px) {
  .btn-cart .icon-carrito {
    letter-spacing: normal;
  }
}
.btn-cart:focus {
  outline: 0px;
}

a.button:hover {
  color: #FFFFFF;
}

/* Disabled - class for anchor, state for form elements */
.button.disabled,
.button:disabled {
  background: #999;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Adjacent buttons */
.button2 {
  border: 0;
  padding: 0 5px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
}

.button2:focus {
  outline: none;
}

.button2 span,
.button2 span span {
  line-height: 30px;
  height: 30px;
  text-decoration: underline;
  text-transform: uppercase;
  display: inline-block;
  color: #646464;
}
.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: black;
}

/* -------------------------------------------- *
 * Paypal Button
 */
.paypal-logo.paypal-after {
  float: left;
}

.paypal-after .paypal-or {
  float: left;
}

.paypal-or {
  line-height: 34px;
  margin: 0px 10px 5px;
}

.paypal-after .paypal-button {
  float: left;
}

.paypal-button {
  line-height: 0px;
}

.paypal-button img {
  display: inline;
}

/* -------------------------------------------- *
 * Button Sets
 */
.buttons-set {
  clear: both;
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid #EDEDED;
  text-align: right;
}
.buttons-set p.required {
  margin: 0;
  margin-left: 10px;
  line-height: 33px;
  float: right;
}
.buttons-set .back-link {
  float: left;
  margin: 0;
  line-height: 33px;
  text-align: left;
}
.buttons-set a:not(.button) {
  line-height: 20px;
  display: inline-block;
  padding: 5px;
}
.buttons-set button.button {
  float: right;
  margin-right: 15px;
  width: auto;
  margin-bottom: 7px;
  display: block;
  padding: 12px 40px;
}
.buttons-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Icons
 */
.icon-sprite, .btn-remove2, .ratings .rating-box, .ratings .rating-box .rating, .sorter > .sort-by .sort-by-switcher, .limiter .sort-by-switcher, .skip-nav .icon, .skip-account .icon, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
  background-repeat: no-repeat;
  text-indent: -9999px;
}

/* -------------------------------------------- *
 * Breadcrumbs
 */
@media only screen and (max-width: 991px) {
  .toolbar-bottom .btn-order {
    display: none !important;
  }
}

.breadcrumbs {
  font-size: 13px;
  font-weight: 500;
  overflow: visible;
  padding: 0;
  padding: 22px 0;
  width: 97%;
  float: left;
  background: #f1f1f1;
}
@media only screen and (max-width: 991px) {
  .breadcrumbs {
    padding-bottom: 0px;
  }
}

.breadcrumbs li {
  float: left;
  font-size: 15px;
  font-weight: 300;
  line-height: 18px;
  color: #00035B;
}
@media only screen and (max-width: 991px) {
  .breadcrumbs li.product {
    display: none;
  }
}

.breadcrumbs a {
  float: left;
  color: #666;
  font-weight: 400;
}

.breadcrumbs a:hover {
  color: #646464;
}

.breadcrumbs strong {
  color: #666666;
  font-weight: 500;
}

.breadcrumbs span {
  color: #F06000;
  float: right;
  font-weight: 700;
  font-size: 14px;
  padding: 0 6px;
}

/* -------------------------------------------- *
 * Button - Remove / Previous
 */
.btn-remove,
.btn-previous {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #EDEDED;
  text-align: center;
  /* Hide text */
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  position: relative;
}
.btn-remove:hover,
.btn-previous:hover {
  background-color: #646464;
  border-color: #646464;
}

.btn-remove:after {
  content: 'X';
  color: #646464;
  height: 20px;
  line-height: 20px;
  width: 100%;
  font-size: 10px;
  font-weight: bold;
}
.btn-remove:hover:after {
  color: #FFFFFF;
  text-decoration: none;
}

.btn-remove2 {
  background-position: 4px -648px;
  border: none;
  vertical-align: top;
}
.btn-remove2:after {
  display: none;
}
.btn-remove2:hover {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.btn-previous:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #646464;
  border-left: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -2px;
  margin-top: -4px;
}
.btn-previous:hover:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #FFFFFF;
  border-left: none;
}

.block-layered-nav .currently .btn-remove,
.block-layered-nav .currently .btn-previous,
.mini-products-list .btn-remove,
.mini-products-list .btn-previous,
#compare-items .btn-remove,
#compare-items .btn-previous {
  float: right;
  margin-left: 6px;
}

/* -------------------------------------------- *
 * Checkout Agreements
 */
.checkout-agreements li {
  margin-bottom: 20px;
}

.checkout-agreements .agreement-content {
  overflow-y: auto;
  max-height: 125px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #949494;
  background: #f5f4f2;
}

/* -------------------------------------------- *
 * CVV Security Code
 */
.cvv-what-is-this {
  margin-left: 10px;
  font-size: 14px;
  line-height: 24px;
}

/* -------------------------------------------- *
 * Container
 */
.footer-container {
  max-width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.footer-container:after {
  content: '';
  display: table;
  clear: both;
}
@media only screen and (max-width: 991px) {
  .footer-container {
    padding: 0;
    max-width: 100%;
  }
}

.main-container {
  padding-top: 105px;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.customer-account-forgotpassword .main-container {
  margin-top: 15px;
}

.footer-container {
  padding-top: 0px;
}

.bottom-footer {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #ddd;
}

/* -------------------------------------------- *
 * Column Layouts
 */
.col-left,
.col-right {
  padding: 0 10px;
}

.col-left {
  float: left;
  width: 25%;
  padding-left: 0;
  /* Remove the 15px padding */
  clear: left;
}
@media only screen and (max-width: 991px) {
  .col-left {
    width: 50%;
  }
}
.col-left img {
  max-width: 100%;
}

.col-right {
  float: right;
  width: 25%;
  padding-right: 0;
  /* Remove the 15px padding */
}
.col-right img {
  max-width: 100%;
}

.col-main {
  float: left;
}

.col1-layout {
  padding-top: 100px;
}
.col1-layout .col-main {
  float: left;
  width: 100%;
  padding: 0;
  /* Remove the 15px padding */
}

.col2-left-layout .col-main {
  float: right;
  padding-right: 0;
  /* Remove the 15px padding */
}

.col2-right-layout .col-main {
  padding-left: 0;
  /* Remove the 15px padding */
}

.col3-layout .col-right {
  width: 20.83333%;
}
.col3-layout .col-wrapper {
  float: left;
  width: 79.16667%;
}
.col3-layout .col-wrapper .col-main {
  float: right;
  width: 73.68421%;
}
.col3-layout .col-wrapper .col-left {
  width: 26.31579%;
}

/* Content Columns */
.col2-set {
  width: 100%;
}
.col2-set .col-1,
.col2-set .col-2 {
  width: 50%;
  padding: 20px;
}
.col2-set .col-1 {
  float: left;
  padding-left: 0;
}
.col2-set .col-2 {
  float: right;
  padding-right: 0;
}
.col2-set .narrow {
  width: 33%;
}
.col2-set .wide {
  width: 65%;
}
.col2-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Top Container
 */
.top-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 0px;
}

/* -------------------------------------------- *
 * Global Site Notice
 */
.global-site-notice {
  background: #676157;
  color: #fff;
  font-size: 11px;
  display: none;
}
.global-site-notice .notice-inner {
  padding-left: 120px;
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  line-height: 11px;
  min-height: 40px;
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  background-image: url("../images/demo-logo.png");
  background-position: left;
  background-repeat: no-repeat;
}
.global-site-notice p {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Promotional Message Banner
 */
.promo-msg {
  color: #000;
  text-align: center;
  margin: 10px;
  text-transform: uppercase;
}

/* -------------------------------------------- *
 * Grid
 */
.grid:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Messages
 */
.success {
  color: #006400;
}

.error {
  color: #DF280A;
  font-weight: bold;
}

.notice {
  color: #F06000;
  font-weight: bold;
}

/* -------------------------------------------- *
 * Messages
 */
.messages {
  float: left;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  top: 0;
  left: 0;
}

.messages li li {
  position: relative;
  margin-bottom: 0px;
  padding: 7px 10px 7px 20px;
  background: #f5f4f2;
  font-size: 12px;
  letter-spacing: 1px;
  float: left;
  width: 100%;
}

.messages li li:before {
  top: 50%;
  left: 0;
  margin-top: -6px;
}

.messages .error-msg li {
  color: #000000;
  border-left: 5px solid #DF280A;
  background-color: #FAEBE7;
}

.messages .error-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #DF280A;
  border-right: none;
}

.messages .notice-msg li {
  color: #000000;
  border-left: 5px solid #F06000;
  background-color: #F9EBE6;
}

.messages .notice-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #F06000;
  border-right: none;
}

.messages .success-msg li {
  color: #006400;
  border-left: 5px solid #006400;
  background-color: #EFF5EA;
}

.messages .success-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #006400;
  border-right: none;
}

.order-list-grid .col-1 {
  width: 30%;
}

.order-list-grid .col-2 {
  width: 50%;
  padding-right: 20px;
}

.order-list-grid .col-3 {
  clear: none;
  width: 20%;
  padding-top: 0;
}

/* -------------------------------------------- *
 * Page Popup
 */
.page-popup {
  padding: 20px;
  background: #FFFFFF;
  height: auto;
}

.page-popup h1 {
  margin: 0 0 0.5em;
  font-size: 36px;
}

/* -------------------------------------------- *
 * Payment Methods
 */
.payment-methods {
  margin-bottom: 20px;
}

.payment-methods dt {
  padding: 5px 0;
}

.payment-methods dd {
  padding-top: 10px;
}

.payment-methods .form-list {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 5px 15px 15px;
  padding: 15px;
  border: 1px solid #949494;
  background: #f5f4f2;
}

.payment-methods .form-list:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #949494;
  border-top: none;
  top: -11px;
  left: 30px;
}

.payment-methods .form-list:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #f5f4f2;
  border-top: none;
  top: -10px;
  left: 30px;
}

.payment-methods .form-list li:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Please Wait (Loading Indicator)
 */
.please-wait {
  display: inline-block;
  margin-left: 10px;
  margin-top: 15px;
  line-height: 24px;
  height: 24px;
  white-space: nowrap;
  /* Prevent the linebreak in the HTML from causing layout issues */
}
.please-wait img {
  float: left;
  margin-right: 5px;
  width: 24px;
}

/* -------------------------------------------- *
 * Price Box - Standard
 */
.price-box {
  margin: 7px 0;
}
.price-box .regular-price {
  float: left;
}

.price-box .regular-price {
  text-align: left;
  float: left;
}

.category-products .price-box .regular-price .price {
  font-weight: 800;
}

.price-box p {
  margin-bottom: 0;
}

.price-notice {
  color: #646464;
}

.price-box .price {
  color: #4a4a4a;
  font-size: 20px;
  font-family: "Jost500M", sans-serif;
}

.price-box .price-label {
  color: #646464;
  white-space: nowrap;
  margin-right: 4px;
  text-transform: uppercase;
  font-size: 12px;
}

.price-box .minimal-price-link {
  padding-left: 1em;
  color: #000;
  display: block;
  /* We want this to show on its own line, otherwise the layout looks funky */
}
.price-box .minimal-price-link .label {
  color: #000;
}

/* -------------------------------------------- *
 * Price Box - Special
 */
.price-box .old-price,
.price-box .special-price {
  display: inline-block;
  margin: 0;
  float: left;
}
.price-box .old-price .price-label,
.price-box .special-price .price-label {
  display: none;
}
.price-box .old-price .price,
.price-box .special-price .price {
  display: inline-block;
  font-size: 20px;
  color: #e55151;
  font-weight: 700;
  float: left;
  line-height: 30px;
}

.price-box .old-price {
  width: auto;
  text-align: left;
  letter-spacing: 0.5px;
  margin: 0 10px 0 0;
  float: left;
}
.price-box .old-price .price {
  color: #00035B !important;
  text-decoration: line-through;
  font-family: "Jost400", sans-serif;
  float: left;
  line-height: 30px;
}

.price-box .special-price {
  width: auto;
  color: #000;
  float: left;
}
.price-box .special-price .price-label {
  color: #D84D3C;
  float: left;
  line-height: 30px;
}

/* -------------------------------------------- *
 * Price Box - Taxes
 */
.price-box .price-excluding-tax,
.price-box .price-including-tax {
  display: block;
}

span.weee {
  display: block;
}

/* -------------------------------------------- *
 * Tier Prices
 */
.product-pricing,
.tier-prices,
.tier-prices-grouped {
  display: inline-block;
  padding: 4px 8px;
  background: #FBF4DE;
  border: 1px solid #E2D4C7;
  margin-top: 7px;
}
.product-pricing li,
.tier-prices li,
.tier-prices-grouped li {
  font-size: 12px;
}
.product-pricing .benefit,
.tier-prices .benefit,
.tier-prices-grouped .benefit {
  font-style: italic;
}
.product-pricing .price,
.tier-prices .price,
.tier-prices-grouped .price {
  font-weight: bold;
}

/* ============================================ *
 * Item Options
 * ============================================ */
.item-options {
  font-size: 12px;
}
.item-options:after {
  content: '';
  display: table;
  clear: both;
}
.item-options dt {
  float: left;
  clear: left;
  padding-right: 5px;
  font-weight: 500;
  cursor: auto;
  font-style: normal;
  font-size: 14px;
  text-transform: capitalize;
  color: #4a4a4a;
}
.item-options dt:after {
  content: ': ';
}
.item-options dd {
  float: left;
  padding-left: 7px;
  cursor: auto;
  margin: 0 0;
  font-size: 14px;
  color: #4a4a4a;
  font-weight: 500;
}

.truncated,
.truncated a.dots {
  cursor: pointer;
  display: block;
}

.truncated a.details {
  display: none;
  cursor: pointer;
  height: 16px;
  line-height: 16px;
}
.truncated a.details:hover {
  text-decoration: none;
}

.truncated .truncated_full_value {
  position: relative;
  z-index: 300;
  display: inline-block !important;
  padding: 0;
}

.truncated .truncated_full_value .item-options {
  z-index: 300;
  width: 200px;
  display: inline-block;
  color: #575757;
}

.truncated .truncated_full_value .item-options > p {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.truncated .show .item-options {
  display: block;
}

/* -------------------------------------------- *
 * Printer Friendly Page
 */
.page-print {
  width: 6.5in;
  margin: 20px;
  background: #FFFFFF;
}

/* -------------------------------------------- *
 * Add to links
 */
.add-to-links {
  margin: 7px 0;
}
.add-to-links a {
  display: inline-block;
  padding: 0px 3px 3px;
}

.add-to-links .separator {
  display: none;
}

/* -------------------------------------------- *
 * Product Image
 */
.product-image,
.no-touch .product-img-box .product-image:not(.zoom-available):hover {
  position: relative;
  display: block;
}

/* -------------------------------------------- *
 * Ratings
 */
.ratings {
  float: left;
  width: 100%;
  display: block;
  margin: 11px 0;
}
.ratings .rating-box {
  display: block;
}
.ratings .rating-box {
  width: 65px;
  height: 17px;
  background-repeat: repeat-x;
  background-position: 0 -615px;
  overflow: hidden;
  text-indent: 0;
}
.ratings .rating-box i.fa.fa-star {
  font-size: 14px;
}
.ratings .rating-box .rating {
  background-image: url("../images/rating-stars.png");
  float: left;
  height: 13px;
  background-position: 0 0px;
}
.ratings .amount {
  display: block;
  margin: 5px auto;
}
.ratings .rating-links {
  display: none;
}
.ratings .rating-links .separator {
  margin: 0 3px;
}

/* -------------------------------------------- *
 * Standard Formatted Text Block
 */
.std .note {
  color: #646464;
  font-size: 14px;
}

/* -------------------------------------------- *
 * Tabs
 */
.tabs {
  margin-bottom: 10px;
  background: #FFFFFF;
}

/* -------------------------------------------- *
 * Toolbar
 */
.toolbar .view-mode {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .toolbar .view-mode {
    display: none !important;
  }
}
.toolbar .view-mode label {
  display: none;
}
.toolbar .view-mode .grid,
.toolbar .view-mode .list {
  padding: 16px;
}
.toolbar .view-mode .grid {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}
.toolbar .view-mode .grid .fa.fa-th {
  font-size: 16px;
  color: #b1b1b1;
}
.toolbar .view-mode .grid .fa.fa-th.active {
  color: #00035B;
}
.toolbar .view-mode .list {
  border-right: 1px solid #eee;
}
.toolbar .view-mode .list i.fa.fa-list-ul {
  font-size: 16px;
  color: #b1b1b1;
}
.toolbar .view-mode .list i.fa.fa-list-ul.active {
  color: #00035B;
}

.category-products {
  position: relative;
}
.category-products .sort-by {
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .category-products .toolbar {
    width: 100%;
    padding: 0;
    border: solid 1px;
    margin: 0 auto;
    background-color: #00035B;
    color: white;
    border-radius: 2px;
    padding: 0 10px;
    font-size: 14px;
    height: 35px;
  }
}
.category-products .toolbar #sort-xs ul {
  display: none;
}
.category-products .toolbar.active #sort-xs ul {
  display: block;
  background: white;
  text-align: left;
  float: left;
  width: 100%;
  box-shadow: 0px 3px 8px 0px #eee;
  padding: 4px 0;
  margin-top: 1px;
  border-radius: 2px;
  border-bottom: 1px solid #eee;
  padding-bottom: 23px;
}
.category-products .toolbar.active #sort-xs ul li {
  margin: 3px 0;
  font-size: 14px;
  padding: 7px 10px;
}
.category-products .toolbar.active #sort-xs ul li a {
  padding-left: 6px;
}

.toolbar label,
.pager-no-toolbar label {
  font-weight: normal;
  text-transform: uppercase;
}

.sorter {
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
}
.sorter .btn-order {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sorter .btn-order p {
  margin-bottom: 0;
}
.sorter .btn-order img {
  width: 20px;
}
.sorter p {
  display: none;
}
@media only screen and (max-width: 991px) {
  .sorter {
    display: block;
  }
  .sorter p {
    display: flex;
    justify-content: center;
    padding: 6px;
  }
}
.sorter label {
  float: left;
  margin-right: 5px;
  text-transform: inherit;
  font-size: 12px;
  color: #00035B;
  font-weight: 500;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .sorter label {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .sorter div#sort-xs {
    display: block !important;
    width: 100%;
  }
  .sorter div#sort-sm {
    display: none;
  }
}

.limiter select {
  color: #2f2f3e;
  font-weight: 400;
  letter-spacing: 0.91px;
  border: none;
  font-size: 12px;
  font-weight: 300;
  -webkit-appearance: none;
  cursor: pointer;
  background-color: transparent;
  width: 130px;
  border-radius: 0px;
  background-image: url("../images/angle-down-sortby.png");
  background-position: 100px;
  margin-top: 1px;
  background-repeat: no-repeat;
  background-size: 9px;
}

.sorter > .sort-by, .limiter {
  float: left;
  margin: 0 20px;
}
@media only screen and (max-width: 991px) {
  .sorter > .sort-by, .limiter {
    display: flex;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    padding: 12px 16px 0px 16px !important;
    width: 100%;
    overflow: scroll;
  }
}
.sorter > .sort-by label, .limiter label {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.99px;
}
@media only screen and (max-width: 991px) {
  .sorter > .sort-by, .limiter {
    width: 100%;
  }
}
.sorter > .sort-by .sort-by-switcher--asc, .limiter .sort-by-switcher--asc {
  background-position: 4px -542px;
  color: #F06000;
  text-decoration: revert;
  margin-left: 10px;
}
@media only screen and (max-width: 991px) {
  .sorter > .sort-by .sort-by-switcher--asc, .limiter .sort-by-switcher--asc {
    margin-left: 17px;
  }
}
.sorter > .sort-by .sort-by-switcher--asc:hover, .limiter .sort-by-switcher--asc:hover {
  background-position: -46px -542px;
}
.sorter > .sort-by .sort-by-switcher--desc, .limiter .sort-by-switcher--desc {
  background-position: 4px -567px;
  color: #F06000;
  text-decoration: revert;
  margin-left: 10px;
}
@media only screen and (max-width: 991px) {
  .sorter > .sort-by .sort-by-switcher--desc, .limiter .sort-by-switcher--desc {
    margin-left: 17px;
  }
}
.sorter > .sort-by .sort-by-switcher--desc:hover, .limiter .sort-by-switcher--desc:hover {
  background-position: -46px -567px;
}
.sorter > .sort-by #sort-sm, .limiter #sort-sm {
  position: relative;
}
.sorter > .sort-by #sort-sm select, .limiter #sort-sm select {
  color: #2f2f3e;
  font-weight: 400;
  letter-spacing: 0.91px;
  border: none;
  margin-top: 1px;
  font-size: 12px;
  font-weight: 300;
  -webkit-appearance: none;
  cursor: pointer;
  background-color: transparent;
  width: 130px;
  border-radius: 0px;
  background-image: url("../images/angle-down-sortby.png");
  background-position: 100px;
  background-repeat: no-repeat;
  background-size: 9px;
}

.sorter > .view-mode {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .sorter > .view-mode {
    display: none !important;
  }
}
.sorter > .view-mode label {
  display: none;
}
.sorter > .view-mode .grid,
.sorter > .view-mode .list {
  padding: 20px;
}
.sorter > .view-mode .grid {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}
.sorter > .view-mode .list {
  border-right: 1px solid #eee;
}

.pager {
  display: block !important;
  float: right;
}
@media only screen and (min-width: 992px) {
  .pager {
    margin: 0;
  }
}
.pager > .count-container {
  float: left;
  padding: 11px;
  border-left: 1px solid #eee;
}
@media only screen and (max-width: 991px) {
  .pager > .count-container {
    border: none;
  }
}
.pager .amount {
  float: left;
  white-space: nowrap;
  margin: 0 15px 0 0;
}
.pager .limiter {
  float: left;
  height: 30px;
  line-height: 30px;
}
@media only screen and (max-width: 991px) {
  .pager .limiter {
    display: none;
  }
}
.pager .limiter > label {
  padding-right: 5px;
}
.pager .limiter > label:after {
  content: ':';
}
.pager .amount,
.pager .pages {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ededed;
  justify-content: space-between;
}
.pager li > a {
  padding: 23px 30px;
}

.pages {
  float: right;
  overflow: hidden;
}
.pages strong {
  display: none;
}

.pages li {
  float: left;
}
.pages li > a {
  display: inline-block;
  background-color: #fff;
  border: none;
  border-radius: 0;
  font-weight: bold;
}

.pages .current {
  padding: 23px 30px !important;
  display: inline-block;
  border: 0;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  padding: 0;
  color: #646464;
  font-weight: bold;
}

.pages .current,
.pages .current:hover {
  color: #fff;
  background-color: #00035B;
  cursor: pointer;
}

.pages .next,
.pages .previous {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  position: relative;
}

.col2-left-layout .sorter,
.col2-left-layout .pager,
.col2-right-layout .sorter,
.col2-right-layout .pager,
.col3-layout .sorter,
.col3-layout .pager {
  width: 100%;
}
.col2-left-layout .pager,
.col2-right-layout .pager,
.col3-layout .pager {
  float: left;
  clear: both;
}
.col2-left-layout .pager .pages,
.col2-right-layout .pager .pages,
.col3-layout .pager .pages {
  float: left;
  margin-left: 0;
}
.col2-left-layout .pager .count-container,
.col2-right-layout .pager .count-container,
.col3-layout .pager .count-container {
  float: right;
}

.toolbar .view-mode > label {
  display: none;
}

.category-products {
  z-index: 0;
}
.category-products .pager .pages:before, .category-products .pager .pages:after {
  content: '';
  width: 100%;
  position: relative;
  max-width: 68px;
  display: none;
}
@media (min-width: 450px) {
  .category-products .pager .pages:before, .category-products .pager .pages:after {
    display: flex;
  }
}
.category-products .pager .pages div#previous,
.category-products .pager .pages div#Next {
  z-index: 3;
  display: none;
  position: absolute;
}
@media (min-width: 450px) {
  .category-products .pager .pages div#previous,
  .category-products .pager .pages div#Next {
    display: block;
  }
}
.category-products .pager .pages div#Next {
  right: 0;
}
.category-products .pager .pages ol {
  display: flex;
  justify-content: center;
  flex: 0 1 100%;
  z-index: 2;
}
.category-products .pager .pages .current {
  padding: 23px 0 !important;
}
.category-products .pager li {
  width: 100%;
  justify-content: center;
  max-width: 68px;
}
.category-products .pager li > a {
  width: 100%;
  padding: 23px 0;
}

/* ============================================ *
 * Tax - Full Tax Summary
 * ============================================ */
#checkout-review-table .summary-collapse,
#shopping-cart-totals-table .summary-collapse,
body.customer-account .data-table .summary-collapse {
  position: relative;
  cursor: pointer;
}
#checkout-review-table .summary-collapse:before,
#shopping-cart-totals-table .summary-collapse:before,
body.customer-account .data-table .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #00035B;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
#checkout-review-table .summary-collapse:hover:before,
#shopping-cart-totals-table .summary-collapse:hover:before,
body.customer-account .data-table .summary-collapse:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid black;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
#checkout-review-table .show-details .summary-collapse:before,
#shopping-cart-totals-table .show-details .summary-collapse:before,
body.customer-account .data-table .show-details .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #00035B;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
#checkout-review-table .show-details .summary-collapse:hover:before,
#shopping-cart-totals-table .show-details .summary-collapse:hover:before,
body.customer-account .data-table .show-details .summary-collapse:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid black;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

#shopping-cart-totals-table tfoot td .summary-collapse:before, #shopping-cart-totals-table tfoot td .summary-collapse:hover:before {
  margin-bottom: 5px;
}

/* ============================================ *
 * Magento Helpers
 * ============================================ */
.a-center {
  text-align: center;
}

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

.no-display {
  display: none !important;
}

.nobr,
.nowrap {
  white-space: nowrap;
}

.width-full {
  width: 100%;
}

/* ============================================ *
 * Custom Helpers
 * ============================================ */
.hidden {
  display: none;
}

/* ============================================ *
 * Print Styles
 * ============================================ */
.page-print .print-head {
  margin: 0 0 15px;
}

.page-print .print-head .logo {
  float: none;
  max-height: 50px;
  width: auto;
}

/* ============================================ *
 * Responsive Slides
 * ============================================ */
.responsive-slide {
  position: relative;
  margin-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .responsive-slide {
    margin-bottom: 0;
  }
}
.responsive-slide .rslides li {
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .responsive-slide .rslides li {
    height: auto;
  }
}
.responsive-slide .rslides li img {
  width: auto;
  float: none;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .responsive-slide .rslides li img {
    height: auto;
    max-width: 100%;
  }
}
.responsive-slide .rslides .slide-image {
  position: relative;
  display: inline-block;
}
.responsive-slide .rslides .slide-image .slide-caption {
  position: absolute;
  top: 10%;
  left: 10%;
  display: inline-block;
  width: auto;
  text-align: left;
  text-shadow: 2px 2px 5px #fff;
}
@media only screen and (min-width: 1170px) {
  .responsive-slide .rslides .slide-image .slide-caption {
    width: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .responsive-slide .rslides .slide-image .slide-caption {
    top: 10%;
    bottom: auto;
    width: auto;
  }
}
.responsive-slide .rslides .slide-image .slide-caption h1 {
  line-height: 56px;
  letter-spacing: 6px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .responsive-slide .rslides .slide-image .slide-caption h1 {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .responsive-slide .rslides .slide-image .slide-caption .call-to-action {
    padding: 10px !important;
  }
}
.responsive-slide .controls-wrapper {
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 9;
  width: 100%;
}
.responsive-slide .controls-wrapper .rslides_tabs {
  display: block;
  width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}
@media only screen and (max-width: 991px) {
  .responsive-slide .controls-wrapper .rslides_tabs {
    padding: 0 30px;
  }
}
.responsive-slide .controls-wrapper .rslides_tabs li {
  float: left;
  display: inline-block;
  padding: 0 2px;
}
.responsive-slide .controls-wrapper .rslides_tabs li a {
  width: 10px;
  height: 10px;
  background: transparent;
  border-radius: 100%;
  float: left;
  border: 1px solid #000;
}
.responsive-slide .controls-wrapper .rslides_tabs li.rslides_here a {
  background: #000;
}
.responsive-slide .owl-dots {
  bottom: 50px;
  left: calc((100% - 1230px) / 2);
}
@media only screen and (max-width: 991px) {
  .responsive-slide .owl-dots {
    display: none;
  }
}
.responsive-slide .owl-dots .owl-dot {
  background: transparent;
}

/* ============================================ *
 * Theme Elements
 * ============================================ */
a.ver-mas {
  background: transparent;
  border: 1px solid #00035B;
  padding: 14px 23px;
  cursor: pointer;
  float: left;
  font-weight: 400;
  color: #000000;
  margin-top: 30px;
  font-size: 12px;
}
@media only screen and (min-width: 992px) {
  a.ver-mas:before {
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    content: '\f105';
    font-family: FontAwesome;
    margin-left: -12px;
    margin-right: 5px;
    opacity: 0;
  }
  a.ver-mas:hover {
    text-decoration: none;
  }
  a.ver-mas:hover:before {
    opacity: 1;
    margin-left: -5px;
  }
}
@media only screen and (max-width: 991px) {
  a.ver-mas {
    font-size: 14px;
  }
}

.owl-dots {
  width: auto;
  position: relative;
  float: none;
  display: inline-block !important;
}
.owl-dots .owl-dot {
  width: 6px;
  background: #d3dae0;
  height: 6px;
  float: left;
  margin-right: 5px;
  border-radius: 100%;
  border: none;
}
.owl-dots .owl-dot.active {
  background: #4a4a4a !important;
  box-shadow: none;
  width: 7px;
  height: 7px;
  background-color: #9aa8b6;
}

#homepage-main-slides .owl-nav {
  top: 30%;
}
#homepage-main-slides .owl-prev {
  left: 10px !important;
}
#homepage-main-slides .owl-prev:before {
  left: 10px !important;
}

.owl-carousel .owl-nav {
  display: block;
  float: left;
  width: 100%;
  position: absolute;
  top: 40%;
}
@media only screen and (max-width: 991px) {
  .owl-carousel .owl-nav {
    display: flex;
    z-index: 999;
  }
}
.owl-carousel .owl-nav .owl-prev {
  float: left;
  color: transparent;
  position: absolute;
  left: 0px !important;
  width: 40px;
  height: 60px;
  display: block !important;
  transition: all 0.4s;
}
@media only screen and (max-width: 991px) {
  .owl-carousel .owl-nav .owl-prev {
    width: 25px;
    height: 40px;
  }
}
.owl-carousel .owl-nav .owl-prev:before {
  content: "";
  background-image: url(../images/angle-l.png);
  background-repeat: no-repeat;
  background-position: center;
  /*Cambios*/
  background-color: white;
  width: 40px;
  height: 60px;
  border-radius: 4px;
  color: #00035B;
  box-shadow: 0px 1px 6px 1px #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  /*Cambios*/
}
@media only screen and (max-width: 991px) {
  .owl-carousel .owl-nav .owl-prev:before {
    width: 25px;
    height: 40px;
  }
}
.owl-carousel .owl-nav .owl-prev:hover {
  transform: scale(1.1);
}
@media only screen and (max-width: 991px) {
  .owl-carousel .owl-nav .owl-prev {
    left: 10px;
  }
}
.owl-carousel .owl-nav .owl-next {
  float: right;
  color: transparent;
  position: absolute;
  right: 7px;
  height: 39px;
  width: 39px;
  display: block !important;
  transition: all 0.4s;
}
@media only screen and (max-width: 991px) {
  .owl-carousel .owl-nav .owl-next {
    width: 25px;
    height: 40px;
  }
}
.owl-carousel .owl-nav .owl-next:before {
  content: "";
  background-image: url(../images/angle-r.png);
  background-repeat: no-repeat;
  background-position: center;
  /*Cambios*/
  background-color: white;
  width: 40px;
  height: 60px;
  border-radius: 4px;
  color: #00035B;
  box-shadow: 0px 1px 6px 1px #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  /*Cambios*/
}
@media only screen and (max-width: 991px) {
  .owl-carousel .owl-nav .owl-next:before {
    width: 25px;
    height: 40px;
  }
}
.owl-carousel .owl-nav .owl-next:hover {
  transform: scale(1.1);
}
@media only screen and (max-width: 991px) {
  .owl-carousel .owl-nav .owl-next {
    right: 10px;
  }
}

.owl-controls {
  display: none;
  /* width: 100%;
  text-align: center;
  float: left;
  margin-top: -2%; */
}

.product {
  text-align: center;
}
.product .productImage {
  display: inline-block;
}
.product .prodname {
  text-align: center;
  color: #000;
  font-size: 10px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.fancybox-overlay {
  background: rgba(255, 255, 255, 0.9);
}

.fancybox-opened .fancybox-skin {
  background: #fff;
  box-shadow: 0px 2px 8px 1px rgba(0, 0, 0, 0.12) !important;
  -webkit-box-shadow: 0px 2px 8px 1px rgba(0, 0, 0, 0.12) !important;
  border-radius: 0;
}

.fancybox-close {
  background-image: none;
  content: 'Close';
  color: #00035B;
  right: -15px;
  background: #f4f3ee;
  border-radius: 100%;
  top: -15px;
  width: 30px;
  height: 30px;
  text-align: center;
}
.fancybox-close:after {
  content: 'x';
  width: 40px;
  height: 40px;
  font-size: 20px;
}

#ajaxCartSuccess .subtitle {
  float: left;
  width: 100%;
  text-align: center;
}
#ajaxCartSuccess .subtitle h5 {
  font-weight: normal;
}
#ajaxCartSuccess .fancycart-buttons .button {
  margin-bottom: 10px;
  width: 100% !important;
}
#ajaxCartSuccess .fancycart-buttons .button span:after {
  display: none !important;
}

.checkout-onepage-failure .col-main {
  text-align: center;
  width: 100% !important;
  padding: 0;
  margin-top: 155px;
  font-size: 14px;
}
.checkout-onepage-failure .col-main h2.sub-title {
  width: 100%;
  background: #f5f4f2;
  border-top: #eeedeb 1px solid;
  padding: 30px 0;
  color: #00035B !important;
}
.checkout-onepage-failure .col-main h2.sub-title::before {
  content: '\f00d';
  font-family: FontAwesome;
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-failure .col-main h2.sub-title {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20%;
  }
}
.checkout-onepage-failure .main-container {
  padding: 0 !important;
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
}
.checkout-onepage-failure .container-fluid {
  padding: 0 !important;
}
.checkout-onepage-failure .container {
  padding: 0;
}
.checkout-onepage-failure .page-title {
  position: relative;
  margin: 0;
  margin-bottom: 15px;
  float: left;
  width: 100%;
  min-height: 140px;
  background: #ddd;
}
.checkout-onepage-failure .page-title h1 {
  border-bottom: none;
}
.checkout-onepage-failure .page-title .sub-title {
  position: absolute;
  left: 0;
  right: 0;
  border: none;
  text-align: center;
  top: 40%;
  margin: 0;
  font-weight: 100;
  letter-spacing: 2px;
  font-size: 28px;
}
.checkout-onepage-failure .page-title .sub-title:before {
  content: '\f00d';
  font-family: FontAwesome;
  margin-right: 10px;
}
.checkout-onepage-failure .sidebar {
  display: none;
}
.checkout-onepage-failure .failure_wrapper {
  float: left;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-failure .failure_wrapper {
    margin-top: 220px;
  }
}
.checkout-onepage-failure .failure_wrapper p {
  text-align: center;
  max-width: 30%;
  margin: 0 auto;
  color: #6d6d6d;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-failure .failure_wrapper p {
    max-width: 80%;
    margin: 30px auto;
  }
}
.checkout-onepage-failure .failure_wrapper p.strong {
  color: #000;
  font-weight: bold;
}
.checkout-onepage-failure .failure_wrapper p a {
  color: #337ab7;
  font-weight: 600;
}
.checkout-onepage-failure .buttons-set {
  margin: 10px 0;
  text-align: center;
  border-top: none !important;
}
.checkout-onepage-failure .buttons-set button {
  float: none;
}

.ajax_load {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  line-height: 41px;
  width: 100%;
  z-index: 9;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  visibility: visible;
  font-size: 20px;
  height: 100%;
  text-align: center;
}
.ajax_load i {
  font-size: 88px;
  line-height: 510px;
  color: transparent;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80px;
  animation: fa-spin 0.5s infinite linear;
  display: none !important;
}

.product-label {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center top;
  display: none;
}
.product-label.sale {
  background-image: url("../images/back-cucarda.png");
}
.product-label.new {
  background-image: url("../images/new-cucarda.png");
  text-transform: uppercase;
  padding-top: 10px;
}
.product-label.featured {
  background-image: url("../images/envio-gratis.png");
  text-transform: uppercase;
}

@media only screen and (max-width: 359px) {
  input {
    font-size: 16px !important;
  }
}

.inchoo-socialconnect-register .col-1.inchoo-socialconnect-register-facebook .clearer .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-inner {
  height: 40px !important;
}

@media only screen and (max-width: 991px) {
  .tooltip-category.btn-consultar {
    margin: 10px 0;
  }
}

.container-btn {
  display: flex;
  flex-direction: column;
  justify-content: unset;
  width: 100%;
  float: left;
}
@media only screen and (max-width: 991px) {
  .container-btn {
    flex-direction: column;
    align-items: inherit;
    padding: 0 20px;
  }
}
.container-btn input#consultar, .container-btn #mbbxProductBtn {
  box-shadow: none !important;
  white-space: normal;
  color: #00035B;
  font-size: 12px !important;
  font-family: "Jost500M", sans-serif;
  background-color: white;
  text-transform: uppercase;
  padding: 0 9px;
  text-decoration: underline;
  display: flex;
  border: none;
  margin-left: 22px !important;
  margin-top: 0 !important;
}
.container-btn input#consultar:hover, .container-btn #mbbxProductBtn:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 991px) {
  .container-btn input#consultar, .container-btn #mbbxProductBtn {
    width: 100%;
    margin-left: 0 !important;
    background-color: transparent;
    color: #00035B;
    text-decoration: underline;
    justify-content: flex-start;
  }
}

.out-of-stock-btn {
  text-align: center;
  margin: 0 0 10px 0;
  float: left;
  width: 91%;
  font-size: 12px;
  color: #5f5f5f;
  margin-left: 22px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .out-of-stock-btn {
    width: 100%;
    margin-left: 0;
  }
}
.out-of-stock-btn p {
  padding: 10px;
  margin: 0;
  background: #cccccc;
}
@media only screen and (max-width: 991px) {
  .out-of-stock-btn p {
    margin: 0 20px;
  }
}
@media only screen and (max-width: 991px) {
  .out-of-stock-btn {
    width: 100%;
    margin: 0 auto;
  }
}

.btn-consultar.isNotSaleable {
  width: 91% !important;
}
@media only screen and (max-width: 991px) {
  .btn-consultar.isNotSaleable {
    width: 100% !important;
  }
}
.btn-consultar.isNotSaleable ~ #mbbxProductBtn {
  display: none;
}
.btn-consultar.isNotSaleable .tooltiptext {
  left: 25%;
}
.btn-consultar.isNotSaleable input#consultar {
  background-color: #F06000 !important;
  color: white;
  width: 91%;
  text-decoration: none;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .btn-consultar.isNotSaleable input#consultar {
    width: 100% !important;
  }
}

div#formulario-contacto {
  padding: 20px;
  height: auto;
}
div#formulario-contacto .buttons-set button.button {
  width: 100%;
  line-height: 37px;
}
div#formulario-contacto p.required {
  width: 100%;
  text-align: left;
}
div#formulario-contacto select {
  color: #565656;
  font-size: 11px;
  font-weight: 500;
  line-height: 28px;
  width: 100%;
  height: 30px;
  padding: 0 0 0 10px;
  border: 1px solid #a7a7a7;
  max-width: 99%;
}
div#formulario-contacto input {
  height: 30px !important;
}
div#formulario-contacto textarea {
  max-width: 98%;
}

div#ajaxCartSuccess {
  padding: 0 20px 23px;
  width: 100%;
  float: left;
}
div#ajaxCartSuccess .texto_popup {
  font-size: 12px;
  color: #F06000;
  text-align: center;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
  margin: 0 auto;
}

.heart-right {
  position: absolute;
  top: -36px;
  right: 11px;
}
.heart-right i.fa.fa-heart {
  color: #d3dae0;
  padding: 10px;
  background-color: #fafafa;
  border-radius: 50%;
  box-shadow: 0px 1px 6px 1px #ccc;
  font-size: 20px;
}
.heart-right i.fa.fa-heart:hover {
  color: #f35555;
}

.block-content.toggle-content dl#narrow-by-list.list dd ol {
  display: none;
}

.accordion-open dl#narrow-by-list.list dd.current ol {
  display: block !important;
}

dl#narrow-by-list.list dd:nth-child(2) ol {
  display: block !important;
}

dl#narrow-by-list.list dd:nth-child(2) {
  display: block !important;
}

.prodname_details span.product-name {
  padding: 0;
}

@media only screen and (max-width: 991px) {
  .plan-de-pago {
    padding: 0 23px;
  }
}
.whatsapp-floater, .icono-prode {
  z-index: 99;
  position: fixed;
  display: block;
  cursor: pointer;
}

.icono-prode {
  bottom: 116px;
  width: 63px;
  right: 52px;
}
@media only screen and (max-width: 991px) {
  .icono-prode {
    bottom: 151px;
    right: 19px;
  }
}

.whatsapp-floater {
  bottom: 54px;
  width: 50px;
  right: 56px;
  height: 50px;
  text-align: center;
  background-color: #4FCE5D;
  border-radius: 50px;
}
.whatsapp-floater:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 991px) {
  .whatsapp-floater:hover {
    opacity: 1;
  }
}
.whatsapp-floater i.fa.fa-whatsapp {
  line-height: 50px;
  font-size: 35px;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .whatsapp-floater {
    right: 25px;
    bottom: 80px;
  }
}

a#amshopby-more-marcas, a#amshopby-less-marcas {
  color: #F06000;
  font-weight: 700;
}

.btn-consultar {
  float: right;
}

#popup_box .img-cont {
  background: #F06000;
}
#popup_box .img-cont img {
  max-width: 100%;
}
#popup_box .text-popup {
  text-align: left;
  font-size: 16px;
  padding: 25px 20px;
}

.product-view .product-options dl {
  padding-left: 23px;
}
@media only screen and (max-width: 991px) {
  .product-view .product-options dl {
    padding-left: 0;
  }
}
.product-view .product-options dl select {
  background: transparent;
  border: 2px solid #d3dae0;
}

#cart-sidebar .prodname_details.col-xs-8 {
  width: 100%;
}
#cart-sidebar .prodname_details.col-xs-8 .price-list {
  padding-right: 5px;
}

.validation-advice {
  width: 100%;
}

.catalogsearch-result-index .toolbar .pager {
  margin: 0;
}
.catalogsearch-result-index .toolbar .pager .pages {
  display: none !important;
}

.catalogsearch-result-index .view-mode {
  display: none;
}
.catalogsearch-result-index .pager > .count-container {
  border-right: 1px solid #eee;
}
.catalogsearch-result-index dl#narrow-by-list {
  margin-top: 20px;
}
.catalogsearch-result-index .page-title {
  width: 100%;
  float: left;
}
.catalogsearch-result-index .toolbar {
  border-bottom: 1px solid #eee;
  float: left;
  width: 100%;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .catalogsearch-result-index .toolbar {
    border-bottom: none;
  }
}
.catalogsearch-result-index .toolbar-bottom .toolbar {
  margin-bottom: 0;
  height: 0;
}
.catalogsearch-result-index .toolbar-bottom .toolbar .pager {
  display: block !important;
}
.catalogsearch-result-index .toolbar-bottom .toolbar .pager .pages {
  display: flex !important;
  border-bottom: none;
}

body.storepickup-index-index {
  background-color: #fff;
}

.checkout-cart-index #header .block-container .block.logo-frizata .logocont {
  margin-left: 0;
  width: 100%;
}
.checkout-cart-index .visible-md.visible-lg.search-desktop {
  opacity: 0;
  display: none !important;
}

.customer-account-changeforgotten #form-validate {
  width: 50%;
}
.customer-account-changeforgotten #form-validate button.button {
  line-height: 40px;
  float: left !important;
}
@media only screen and (max-width: 991px) {
  .customer-account-changeforgotten #form-validate {
    width: 100%;
  }
}

.cms-page-view.cms-quienes-somos .form-list select {
  background-color: #fff !important;
  border-color: #a7a7a7 !important;
  text-transform: uppercase;
}

.tooltip-category {
  position: relative;
}
.tooltip-category .tooltiptext {
  visibility: hidden;
  width: 72%;
  background-color: #8e8e93d4;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 0;
  margin-left: -60px;
  transition: opacity ease-in-out .3s;
  font-size: 15px;
}
@media only screen and (max-width: 991px) {
  .tooltip-category .tooltiptext {
    bottom: 12px;
    left: 107px;
    display: none;
  }
}
.tooltip-category .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #8e8e93b8 transparent transparent transparent;
}
@media only screen and (max-width: 991px) {
  .tooltip-category .tooltiptext::after {
    left: -5px;
    transform: rotate(88deg);
    top: 10px;
  }
}
.tooltip-category:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltip-category.isNotSaleable input {
  margin-left: 0 !important;
}
.tooltip-category.isNotSaleable + .add-to-cart-wrapper input#mbbxProductBtn {
  display: none;
}

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

input[type=number] {
  -moz-appearance: textfield;
}

.customer-account-confirmation h1 {
  text-align: center;
}
.customer-account-confirmation form#form-validate {
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .customer-account-confirmation form#form-validate {
    width: 100%;
  }
}
.customer-account-confirmation form#form-validate .buttons-set p.required {
  float: left;
  width: 100%;
  margin: 0;
}
.customer-account-confirmation form#form-validate .buttons-set button.button {
  width: 50%;
  line-height: 34px;
}

.block-content.aw-arp-block-content .free-shipping {
  top: 5px;
}

.cms-index-index .free-shipping {
  bottom: 5px;
}

.catalog-category-view .products-grid .free-shipping, .catalogsearch-result-index .products-grid .free-shipping {
  top: 0;
  right: 0;
}
.catalog-category-view .products-grid .free-shipping img, .catalogsearch-result-index .products-grid .free-shipping img {
  height: 27px !important;
}

.products-list .free-shipping {
  top: 0;
}
.products-list .free-shipping span {
  font-size: 10px;
}

.catalogsearch-result-index .products-grid .free-shipping, .catalog-category-view .products-grid .free-shipping, .products-list .free-shipping, .cms-index-index .free-shipping, .block-content.aw-arp-block-content .free-shipping {
  position: absolute;
  font-weight: 600;
  border-radius: 3px;
  padding: 0px 5px;
}

.product-shop .free-shipping {
  margin-left: 10px;
  font-size: 11px;
  padding: 1px;
}

.free-shipping {
  background: #043980;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}
.free-shipping span {
  padding: 0 5px;
}
.free-shipping img {
  width: auto !important;
  height: auto !important;
}

.conianer-plan {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  flex-wrap: wrap;
  justify-content: start;
  width: 100%;
}
.conianer-plan img.cucarda-ahora {
  width: 41px !important;
  height: auto !important;
  border-radius: 2px;
  border: 1px solid #ccc;
  margin: 0 3px 10px 0 !important;
  padding: 2px 0;
  background-color: white !important;
  box-shadow: 0px 2px 3px #b5b2b29c;
}
.conianer-plan.top {
  top: -10px;
}
.conianer-plan.top .cucarda-ahora {
  border-top: 0;
  border-radius: 0 0 2px 2px;
  padding: 4px;
  width: 20% !important;
  background-color: white;
}
.conianer-plan.pdp {
  left: 100px;
  justify-content: flex-start;
}
@media only screen and (max-width: 991px) {
  .conianer-plan.pdp {
    left: 23px;
    top: 143px;
    z-index: 1;
  }
}
.conianer-plan.pdp .cucarda-ahora {
  box-shadow: 0px 2px 3px #b5b2b29c;
  border-top: 0;
  padding: 5px;
  border-radius: 0 0 2px 2px;
}
@media only screen and (max-width: 991px) {
  .conianer-plan.pdp .cucarda-ahora {
    border-top: 1px solid #ccc;
    width: 41px !important;
  }
}
.conianer-plan.list {
  justify-content: left;
  position: inherit;
}
@media only screen and (max-width: 991px) {
  .conianer-plan.list {
    float: left;
    position: absolute;
    left: 10px;
    top: -9px;
  }
}
.conianer-plan.list img.cucarda-ahora {
  width: 27px !important;
}

.product-pay {
  border: 1px solid #dadada;
  border-radius: 2px;
  float: left;
  margin-bottom: 20px;
  width: 87%;
  margin-left: 28px;
}
@media only screen and (max-width: 991px) {
  .product-pay {
    width: 95%;
    margin-left: 6px;
    margin-bottom: 8px;
    margin-top: 17px;
  }
}
.product-pay .product-detail {
  padding-top: 10px;
  overflow-y: auto;
  max-height: 250px;
}
.product-pay .product-detail .cucarda-ahora {
  width: 11%;
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  .product-pay .product-detail .cucarda-ahora {
    width: 41px;
  }
}
.product-pay .product-detail > div {
  display: flex;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  color: #3b3b3b;
  font-size: 14px;
  padding: 10px 0;
}
.product-pay h5 {
  background: #dadada;
  text-align: center;
  margin: 0;
  text-transform: none;
  padding: 10px;
  position: relative;
}
.product-pay h5::before {
  content: '\f0d8';
  font-family: FontAwesome;
  color: #dadada;
  position: absolute;
  font-size: 14px;
  top: -12px;
  left: 38px;
}


@media only screen and (max-width: 991px) {
  #mbbxProductModalContent {
    width: 100% !important;
    padding: 10px !important;
  }
}

@media only screen and (max-width: 991px) {
  .filter-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
  }
}
.price-info .pdp {
  width: 23%;
}
@media only screen and (max-width: 991px) {
  .price-info .pdp {
    width: auto;
    padding: 0 23px;
  }
}

.terminos {
  text-transform: uppercase;
  font-size: 11px;
  color: #555;
  letter-spacing: 0;
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  justify-content: center;
  padding-top: 21px;
  border-top: 1px solid #ebebeb;
}
@media only screen and (max-width: 991px) {
  .terminos {
    flex-direction: column;
  }
}
.terminos a {
  font-weight: 900;
  color: #F06000 !important;
  height: auto !important;
  margin-left: 10px;
}
.terminos i.fa.fa-external-link {
  padding-right: 6px;
}

/* ============================================ *
 * FORMS - COMMON
 * ============================================ */
/* -------------------------------------------- *
 * Fieldsets
 */
.fieldset p {
  margin-bottom: 7px;
}
.fieldset p.required {
  margin-bottom: 5px;
  float: right;
  font-size: 12px !important;
  margin-top: 0px;
}

.fieldset + .fieldset {
  margin-top: 5px;
}

form .legend {
  margin-bottom: 5px;
  padding-bottom: 7px;
  font-style: normal;
  text-transform: uppercase;
  color: black;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  text-transform: uppercase;
  display: none;
}

/* -------------------------------------------- *
 * Input Box
 */
.input-box {
  padding-top: 2px;
}
.input-box:after {
  content: '';
  display: table;
  clear: both;
}

li.centinel-logos div.input-box img {
  display: inline;
  vertical-align: middle;
}

/* For adjacent select inputs. */
/* Example: credit card expiration month and year. */
.input-box .v-fix {
  float: left;
  margin-right: 5px;
  max-width: 100%;
}

/* -------------------------------------------- *
 * Labels
 */
label {
  display: inline-block;
  color: #434542;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 0;
}

label.required:after,
span.required:after {
  content: ' *';
  color: #6d6d6d;
  font-weight: normal;
  font-size: 11px;
  font-weight: 300;
}

label.required em,
span.required em {
  display: none;
}

/* -------------------------------------------- *
 * Hints
 */
.input-hint {
  color: #646464;
  font-size: 12px;
}

/* -------------------------------------------- *
 * Select
 */
select {
  font-size: 14px;
}

select + select {
  margin-left: 5px;
}

select[multiple] {
  width: 270px;
  border: 1px solid #C0C0C0;
  font-size: 17px;
  padding: 5px;
}

/* -------------------------------------------- *
 * Textarea
 */
textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 450px;
  padding: 5px;
}

/* -------------------------------------------- *
 * Inputs
 */
.input-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #C0C0C0;
  background: #FFFFFF;
  font-size: 17px;
}
.input-text:focus {
  border: 1px solid #f1f1f1;
}

.input-text.validation-failed {
  border-color: #DF280A;
}

.input-text.validation-failed:focus {
  outline-color: #ef9485;
}

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  height: 30px;
  padding: 0 8px;
}

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  color: #565656;
  font-size: 11px;
  font-weight: 500;
  line-height: 28px;
  width: 100%;
  max-width: 98%;
  height: 35px;
  border: 1px solid #a7a7a7;
}

/* Only show on iPhones (not iPads or any other device) */
@media only screen and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 0) {
  input[type=email],
  input[type=search],
  input[type=number],
  input[type=password],
  input[type=tel],
  input[type=text],
  select {
    font-size: 16px;
    /* Prevent from zooming on focus */
  }
}
.ie8 .input-text {
  max-width: none;
}

/* -------------------------------------------- *
 * Inputs - Quantity
 */
input[type=number].qty,
input[type=text].qty {
  width: 3em;
  text-align: center;
  vertical-align: middle;
}

/* -------------------------------------------- *
 * Placeholder
 */
::-webkit-input-placeholder {
  color: #646464;
}

input:-moz-placeholder {
  color: #646464;
}

/* -------------------------------------------- *
 * Checkbox And Radio
 */
.checkbox,
.radio {
  position: relative;
  top: -1px;
  display: inline-block;
}

.checkbox + label,
.radio + label {
  width: auto;
  max-width: 85%;
  padding: 0 0 0 8px;
  font-size: 12px;
  font-weight: normal;
  vertical-align: top;
}

/* -------------------------------------------- *
 * Validation
 */
p.required,
.validation-advice {
  margin: 5px 0 0;
  color: #DF280A;
  font-size: 14px;
  float: left;
}


/* Turn the label of controls (radio/checkbox) into a button style that wraps the input */
.form-list .control,
.sp-methods dt,
#checkout-shipping-method-load .sp-methods dd,
#co-shipping-method-form .sp-methods dd,
.product-options ul.options-list {
  /* When a label is next to an input that is set to not display, we should style the label in a non-clickable state */
}
.form-list .control div.input-box,
.sp-methods dt div.input-box,
#checkout-shipping-method-load .sp-methods dd div.input-box,
#co-shipping-method-form .sp-methods dd div.input-box,
.product-options ul.options-list div.input-box {
  display: inline;
  float: left;
}
.form-list .control div.input-box:after,
.sp-methods dt div.input-box:after,
#checkout-shipping-method-load .sp-methods dd div.input-box:after,
#co-shipping-method-form .sp-methods dd div.input-box:after,
.product-options ul.options-list div.input-box:after {
  display: none;
}
.form-list .control input.radio,
.form-list .control input.checkbox,
.sp-methods dt input.radio,
.sp-methods dt input.checkbox,
#checkout-shipping-method-load .sp-methods dd input.radio,
#checkout-shipping-method-load .sp-methods dd input.checkbox,
#co-shipping-method-form .sp-methods dd input.radio,
#co-shipping-method-form .sp-methods dd input.checkbox,
.product-options ul.options-list input.radio,
.product-options ul.options-list input.checkbox {
  float: left;
  margin-right: -40px;
  margin-top: 10px;
  margin-left: 15px;
}
.form-list .control label,
.sp-methods dt label,
#checkout-shipping-method-load .sp-methods dd label,
#co-shipping-method-form .sp-methods dd label,
.product-options ul.options-list label {
  color: #606060;
  background-color: #f5f4f2;
  padding: 5px 10px;
  display: inline-block;
  width: auto;
  max-width: none;
  min-width: 250px;
  float: none;
  padding: 6px 10px 6px 40px;
}
.form-list .control label:hover,
.sp-methods dt label:hover,
#checkout-shipping-method-load .sp-methods dd label:hover,
#co-shipping-method-form .sp-methods dd label:hover,
.product-options ul.options-list label:hover {
  background-color: #eeedeb;
}
.form-list .control .no-display + label,
.sp-methods dt .no-display + label,
#checkout-shipping-method-load .sp-methods dd .no-display + label,
#co-shipping-method-form .sp-methods dd .no-display + label,
.product-options ul.options-list .no-display + label {
  padding-left: 10px;
  background-color: transparent;
}
.form-list .control .no-display + label:hover,
.sp-methods dt .no-display + label:hover,
#checkout-shipping-method-load .sp-methods dd .no-display + label:hover,
#co-shipping-method-form .sp-methods dd .no-display + label:hover,
.product-options ul.options-list .no-display + label:hover {
  background-color: transparent;
}

.product-options ul.options-list label,
.col2-set .form-list .control label {
  min-width: inherit;
  width: 250px;
  max-width: 100%;
}

.form-list .control.remember-me-box label {
  width: auto;
  max-width: none;
  min-width: inherit;
}

.form-list .control {
  margin-top: 10px;
}
.form-list .control label {
  float: none;
}
.form-list .control .radio,
.form-list .control .checkbox {
  margin-right: 6px;
}
.form-list .control .input-box {
  clear: none;
  display: inline-block;
  width: auto;
  padding: 0;
}

form .form-instructions {
  font-style: italic;
  font-size: 14px;
  color: #646464;
}

input, select, textarea {
  outline: none;
}

/* ============================================ *
 * Table Helpers
 * ============================================ */
.hide-th {
  text-indent: -9999px;
}

/* ============================================ *
 * Data Table
 * ============================================ */
.data-table {
  width: 100%;
}

.data-table td,
.data-table th {
  padding: 10px;
  vertical-align: top;
}

.data-table th {
  background: #F4F4F4;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
}

.data-table thead th,
.data-table tbody td {
  border-bottom: 1px solid #C0C0C0;
}

.data-table tfoot tr {
  background: #F4F4F4;
}

.data-table tbody td .item-options {
  margin-left: 20px;
  margin-top: 10px;
  display: none;
}
.data-table tbody td .item-options dt:after {
  content: ':';
}

/* ============================================ *
 * Generic Info Table
 * ============================================ */
.info-box {
  border: 1px solid #C0C0C0;
  padding: 12px 15px;
  margin: 0 0 15px;
}
.info-box h2 {
  font-weight: bold;
  font-size: 13px;
}

.info-table th,
.info-table td {
  vertical-align: top;
}

.info-table th {
  font-weight: bold;
  padding: 4px 20px 4px 0;
}

.info-table td {
  padding: 4px 0;
}

/* ============================================ *
 * Zebra-Stripe Table
 * ============================================ */
.zebra-table tr:first-child,
.zebra-table th:first-child {
  border-top: 1px solid #C0C0C0;
}
.zebra-table td,
.zebra-table th {
  border-bottom: 1px solid #C0C0C0;
  padding: 6px;
  background-color: transparent;
}
.zebra-table tr {
  background-color: #EEEDED;
}
.zebra-table tr:nth-child(odd) {
  background-color: #F8F7F5;
}

/* ============================================ *
 * Linearize Table
 * ============================================ */
.linearize-table .linearize-collapse {
  display: none;
}

/* ============================================ *
 * Global
 * ============================================ */
body.catalog-product-view.catalog-product-view {
  overflow-x: visible;
}

html,
body {
  height: 100%;
  background-color: #f1f1f1;
  overflow-x: unset;
}

body {
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

@media only screen and (min-width: 1500px) {
  .col1-layout {
    max-width: 1500px;
    float: none;
    margin: 0 auto;
  }
}

.skip-link {
  width: auto !important;
  border: none;
  padding: 0 10px;
}

.absolute {
  position: absolute !important;
}

#disclaimer-global .disclaimer-popup {
  min-width: 50%;
  background-size: contain;
  padding: 30px;
  border-radius: 5px;
  position: relative;
  transition: all 5s ease-in-out;
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-position-x: right;
}
@media only screen and (max-width: 991px) {
  #disclaimer-global .disclaimer-popup {
    width: 100%;
    padding: 10px;
  }
}
#disclaimer-global .disclaimer-popup h2 {
  margin: 0;
  margin-top: 0px;
  margin-bottom: 10px;
  color: #00a6e2;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
}
#disclaimer-global .disclaimer-popup a.cross-btn {
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 18px;
  font-size: 32px;
  font-weight: 500;
}
#disclaimer-global .disclaimer-popup .content {
  width: 60%;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  #disclaimer-global .disclaimer-popup .content {
    width: 100%;
  }
}
#disclaimer-global .disclaimer-popup .dis-close-btn {
  color: #00a6e2;
  cursor: pointer;
  margin-left: 15px;
  font-size: 12px;
  margin-left: 0px;
}
@media only screen and (max-width: 991px) {
  #disclaimer-global .disclaimer-popup .dis-close-btn {
    width: 100%;
    text-align: left;
    margin: 0 auto;
    display: inline-block;
    margin-top: 10px;
  }
}
#disclaimer-global .disclaimer-popup .dis-acc-btn {
  color: #fff;
  cursor: pointer;
  background-color: #071689;
  font-size: 13px;
  transition: opacity 300ms;
  border: none;
  border-radius: 2px;
  font-weight: 600;
  float: left;
  display: block;
  border-radius: 2px;
  padding: 0px 15px;
  line-height: 45px;
  margin-left: 0;
  margin-right: 15px;
}
@media only screen and (max-width: 991px) {
  #disclaimer-global .disclaimer-popup .dis-acc-btn {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
}

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

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

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
}

@media only screen and (max-width: 991px) {
  .container {
    width: 100%;
  }

  .catalog-category-view .main {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}
.container {
  width: 100%;
  float: left;
}
@media only screen and (min-width: 1170px) {
  .container {
    width: 1170px;
    float: none;
    margin: 0 auto;
  }
}

.catalog-category-view.category-stockout .logocont,
.catalog-category-view.category-stockout .breadcrumbs,
.catalog-category-view.category-stockout .pre-contenido .item-cont.sucursal,
.catalog-category-view.category-stockout .footer .img-cont,
.catalog-category-view.category-stockout .footer .logo,
.catalog-category-view.category-stockout .footer .contenido,
.catalog-category-view.category-stockout .footer .first-row,
.catalog-category-view.category-stockout .footer .second-row .logo {
  pointer-events: none;
}

.catalog-product-view.category-stockout .logocont,
.catalog-product-view.category-stockout .breadcrumbs,
.catalog-product-view.category-stockout .pre-contenido .item-cont.sucursal,
.catalog-product-view.category-stockout .footer .img-cont,
.catalog-product-view.category-stockout .footer .logo,
.catalog-product-view.category-stockout .footer .contenido,
.catalog-product-view.category-stockout .footer .first-row,
.catalog-product-view.category-stockout .footer .second-row .logo {
  pointer-events: none;
}

/* ============================================ *
 * Header
 * ============================================ */
/* ============================================ *
 * Logo
 * ============================================ */
.cms-pre-inicio .nav-primary {
  display: none;
}

.logo {
  display: inline-block;
  width: 165px;
  text-align: center;
  padding: 0;
  margin: 20px 0 30px;
  -moz-transition: all, 300ms;
  -o-transition: all, 300ms;
  -webkit-transition: all, 300ms;
  transition: all, 300ms;
}
.logo img {
  max-width: 100%;
}
.logo .small {
  display: block;
}
.logo .large {
  display: none;
}

.logo img:hover {
  opacity: 0.8;
}

.logo .small {
  display: none;
}
.logo .large {
  display: block;
}

/* ============================================ *
 * Skip Links
 * ============================================ */
.skip-links {
  clear: both;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .skip-links {
    padding: 10px 20px;
    display: flex !important;
    align-items: center;
  }
  .skip-links .resp-nav > a {
    padding: 0;
    margin: 0;
    margin-left: 10px;
  }
}

.skip-links {
  border: 0;
}

.skip-link .label {
  display: inline !important;
}

/* -------------------------------------------- *
 * Skip - Link
 */
.skip-link {
  float: left;
  width: 20%;
  border: none !important;
  color: #606060;
  line-height: 1.4;
  text-align: center;
  height: auto;
}
@media only screen and (min-width: 992px) {
  .skip-link {
    position: relative;
  }
}
@media only screen and (max-width: 991px) {
  .skip-link {
    padding: 0;
    margin-bottom: -3px !important;
  }
  .skip-link .bar {
    width: 31px;
    height: 1px;
    background-color: #fff;
    display: block;
    float: none;
    margin: 4px auto;
    text-align: center;
    border-radius: 10px;
    -moz-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -moz-transition: all, 300ms;
    -o-transition: all, 300ms;
    -webkit-transition: all, 300ms;
    transition: all, 300ms;
  }
  .skip-link .bar:nth-of-type(2) {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .skip-link .menu-label {
    position: absolute;
    left: 42px;
    font-size: 22px;
    top: 15px;
    font-weight: 500;
    color: #fff;
  }
}
@media only screen and (max-width: 991px) and (max-width: 359px) {
  .skip-link .menu-label {
    left: 42px;
    font-size: 16px;
    top: 19px;
  }
}
@media only screen and (max-width: 991px) {
  .skip-link.skip-active {
    position: relative;
  }
  .skip-link.skip-active .bar {
    color: black;
  }
  .skip-link.skip-active .bar:nth-of-type(1) {
    -moz-transform: translateX(3px) translateY(-2px) rotate(45deg);
    -ms-transform: translateX(3px) translateY(-2px) rotate(45deg);
    -webkit-transform: translateX(3px) translateY(-2px) rotate(45deg);
    transform: translateX(3px) translateY(-2px) rotate(45deg);
  }
  .skip-link.skip-active .bar:nth-of-type(2) {
    opacity: 0;
  }
  .skip-link.skip-active .bar:nth-of-type(3) {
    -moz-transform: translateX(2px) rotate(-45deg);
    -ms-transform: translateX(2px) rotate(-45deg);
    -webkit-transform: translateX(2px) rotate(-45deg);
    transform: translateX(2px) rotate(-45deg);
  }
  .skip-link.skip-active:after {
    content: '';
    height: 2px;
    width: 130%;
    position: absolute;
    background: none;
    left: -15%;
    bottom: -20px;
    border-radius: 30px;
  }
}
.skip-link:hover {
  color: #000;
}

.maps-marker {
  height: 100%;
  width: 75px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #7f89a1;
  border-right: 1px solid #7f89a1;
  background: #00035B;
}
@media only screen and (max-width: 991px) {
  .maps-marker {
    display: none !important;
  }
}

.search-block {
  height: 100%;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #7f89a1;
  border-right: 1px solid #7f89a1;
}
@media only screen and (max-width: 991px) {
  .search-block {
    border: none !important;
    width: 20%;
    align-items: flex-end;
    z-index: 999;
  }
}

a.skip-link {
  text-decoration: none;
}
a.skip-link .icon-lupa {
  font-size: 21px;
  color: white;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  a.skip-link .icon-lupa {
    width: auto;
    line-height: 27px;
  }
}
a.skip-link .label {
  margin-left: 5px;
  color: #4a4a4a;
  display: none !important;
}

.account .label {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

.minicart .label {
  color: #00035B;
  font-size: 13px;
}

.skip-link:not(.skip-active):hover {
  opacity: 0.8;
}

.skip-link {
  width: 25%;
}

/* -------------------------------------------- *
 * Skip Link - Active
 */
/* -------------------------------------------- *
 * Skip Link - Icon
 */
.skip-link .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

.skip-link.skip-nav .icon,
.skip-link.skip-cart:not(.no-count) .icon {
  margin-right: 3px;
}

.skip-link .icon {
  margin-right: 3px;
}

/* -------------------------------------------- *
 * Skip Link - Label
 */
.skip-link .label {
  display: none;
}

/* ============================================ *
 * Skip Content
 * ============================================ */
.skip-content {
  display: none;
}

.skip-content.skip-active {
  display: block;
  transition: all 1s;
  border-bottom: 1px solid #e0e0e0;
  background: white;
  position: absolute;
  z-index: 10;
  width: 100%;
  left: 0;
}

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
.account-cart-wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
}

.label {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  line-height: 12px;
  padding: 0;
}
.label .fa {
  font-size: 8px;
  margin-left: 4px;
}

.header-top {
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .header-top {
    margin: 0;
    padding: 0;
  }
}
@media only screen and (max-width: 991px) {
  .header-top ul.checkout-types.minicart {
    width: 100%;
  }
}
.header-top .minicart {
  height: 100%;
  width: 70px;
  display: flex !important;
  justify-content: center;
  align-items: end;
  border-left: 1px solid #7f89a1;
}
@media only screen and (max-width: 991px) {
  .header-top .minicart {
    border-left: none;
  }
}
.header-top .link-wrapper {
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  .header-top .link-wrapper {
    position: relative;
    align-items: center;
  }
}
@media only screen and (max-width: 991px) {
  .header-top .link-wrapper {
    border: none !important;
  }
}
.header-top .search-account-minicart {
  text-align: right;
  display: inline-block;
  float: right;
}
@media only screen and (max-width: 991px) {
  .header-top .search-account-minicart {
    display: flex;
    align-items: end;
    margin-top: 0;
    margin-right: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .header-top .search-account-minicart .search {
    transform: translate(260px, 70px);
    z-index: 9;
  }
}

#header {
  z-index: 9;
  width: 100%;
  float: left;
  background: #fff;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0px;
}
#header .page-header-container {
  text-align: center;
  float: left;
  width: 100%;
  margin: 0;
}
#header .logo-container {
  display: flex;
  float: left;
  width: 100%;
  display: none;
}
@media only screen and (max-width: 991px) {
  #header .logo-container {
    float: left;
    margin-left: 0px;
    padding-top: 40px;
    line-height: 1;
    width: auto;
    box-shadow: 1px 3px 7px 0px #bdbdbd;
  }
}
#header .logo-container .inner-cont {
  display: flex;
  justify-content: flex-start;
  float: left;
  width: 100%;
}
#header .logo-container .inner-cont .logo {
  margin: 20px 0;
  width: 10%;
}
#header .logo-container .inner-cont .logo:hover {
  opacity: 1;
}
@media only screen and (max-width: 991px) {
  #header .logo-container .inner-cont .logo {
    width: 79px;
    margin: 0;
  }
}
#header .logo-container .inner-cont .logo img {
  text-align: center;
  margin: 0 auto;
}
#header .logo-container .inner-cont .no-login {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .logo-container .inner-cont .no-login h2 {
  color: #ff664b;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
  margin-bottom: -5px;
}
@media only screen and (max-width: 991px) {
  #header .logo-container .inner-cont .no-login {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 991px) {
  #header .logo-container .inner-cont {
    flex-wrap: wrap;
    padding: 10px 0;
  }
}
#header .block-container {
  height: 73px !important;
  display: flex;
  align-items: center;
  float: right;
  width: 100%;
  background-color: #F06000;
}
@media only screen and (max-width: 991px) {
  #header .block-container {
    width: 100%;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
  }
}
#header .block-container .container {
  padding: 0;
}
#header .block-container .block {
  float: right;
  margin: 0px;
  padding: 0px;
}
@media only screen and (max-width: 991px) {
  #header .block-container .block {
    padding: 0px;
  }
}
#header .block-container .block.logo-frizata {
  float: left !important;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
}
#header .block-container .block.logo-frizata .logocont {
  display: flex;
  width: 43%;
}
#header .block-container .block.logo-frizata .logocont img {
  margin-left: 15px !important;
  margin-bottom: -9px;
  max-height: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1243px) {
  #header .block-container .block.logo-frizata .logocont img {
    max-height: 40px;
  }
}
@media only screen and (max-width: 991px) {
  #header .block-container .block.logo-frizata .logocont img {
    z-index: 99;
    max-height: 40px;
  }
}
@media only screen and (max-width: 359px) {
  #header .block-container .block.logo-frizata .logocont img {
    min-height: auto;
    width: 100%;
    max-height: 40px;
  }
}
@media only screen and (max-width: 991px) {
  #header .block-container .block.logo-frizata .logocont {
    width: auto;
    height: auto;
  }
}
@media only screen and (max-width: 359px) {
  #header .block-container .block.logo-frizata .logocont {
    max-width: 70%;
  }
}
#header .block-container .block.logo-frizata .linksblock {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-left: 0;
  position: relative;
}
#header .block-container .block.logo-frizata .linksblock li.nav-popup {
  height: 40px;
  display: flex;
  align-items: center;
}
#header .block-container .block.logo-frizata .linksblock li.nav-popup .dropbtn:after {
  content: '\f0d7';
  font-family: fontAwesome;
  margin-left: 5px;
}
#header .block-container .block.logo-frizata .linksblock .productos {
  position: absolute;
  overflow: hidden;
  top: 40px;
  left: 15%;
  background: #fff;
  z-index: 15;
  width: 70%;
  box-shadow: 0px 5px 7px 2px rgba(123, 123, 123, 0.55);
  height: 0;
  opacity: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
#header .block-container .block.logo-frizata .linksblock .productos .column1 {
  width: 50%;
  height: 100%;
  display: flex;
  text-align: left;
  flex-direction: column;
  padding-top: 15px;
}
#header .block-container .block.logo-frizata .linksblock .productos .column1.completa {
  width: 100% !important;
}
#header .block-container .block.logo-frizata .linksblock .productos .column1 ul {
  display: block;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 20px;
}
#header .block-container .block.logo-frizata .linksblock .productos .column1 ul li {
  padding-bottom: 10px;
}
#header .block-container .block.logo-frizata .linksblock .productos .column1 ul li a {
  color: #2f2f3e;
  font-size: 15px;
}
#header .block-container .block.logo-frizata .linksblock .productos .column2 {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}
@media only screen and (max-width: 991px) {
  #header .block-container .block.logo-frizata .linksblock .productos .column2 {
    height: 350px !important;
  }
}
#header .block-container .block.logo-frizata .linksblock .productos .column2 p {
  margin-bottom: 20px;
  color: #666666;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0;
  line-height: 1;
}
#header .block-container .block.logo-frizata .linksblock .productos .column2 div {
  width: 60%;
}
#header .block-container .block.logo-frizata .linksblock a {
  font-family: "Jost500M", sans-serif;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  transition: .2s;
}
@media only screen and (max-width: 991px) {
  #header .block-container .block.logo-frizata .linksblock a {
    font-size: 10px;
  }
}
#header .block-container .block.logo-frizata .linksblock a.dropdown {
  color: #00035B !important;
}
#header .block-container .block.logo-frizata .linksblock a.dropdown:after {
  content: '\f0d7';
  font-family: fontAwesome;
  color: #00035B !important;
  margin-left: 5px;
}
#header .block-container .block.logo-frizata .linksblock a:hover {
  text-decoration: none;
  color: white;
}
#header .block-container .block.logo-frizata .linksblock .button {
  width: auto;
  line-height: 1;
  padding: 10px;
  color: white;
  background-color: #f4bd67;
  border-radius: 4px;
}
@media only screen and (max-width: 991px) {
  #header .block-container .block.logo-frizata .linksblock .button {
    width: 30%;
    padding: 5px;
  }
}
@media only screen and (max-width: 991px) {
  #header .block-container .block.logo-frizata .linksblock {
    width: 100%;
    padding-top: 10px;
    justify-content: space-between;
    padding-right: 5%;
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  #header .block-container .block.logo-frizata {
    height: auto;
    flex-wrap: wrap;
    width: 100%;
    top: 0;
  }
  #header .block-container .block.logo-frizata a.logocont {
    margin-left: 0%;
    z-index: 99;
  }
}
#header .block-container .block.top {
  height: 100%;
  width: 25%;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  #header .block-container .block.top {
    width: 100%;
    height: 50%;
    float: left;
    position: absolute;
  }
  #header .block-container .block.top .user .icon-micuenta img {
    margin-bottom: -1px;
  }
  #header .block-container .block.top .search-account-minicart .icon-carrito img {
    max-width: 30px;
  }
}
#header .block-container .block.top .block-buttons {
  float: left;
  width: auto;
  margin-left: 20px;
  display: none;
}
#header .block-container .block.top .block-buttons .button {
  border-radius: 0px;
  margin: 0px;
  width: 90px;
  border-radius: 2px;
  line-height: 40px;
  padding: 0px;
  font-size: 12px;
  background-color: transparent;
  color: white;
  font-weight: 500;
}
#header .block-container .block.top .block-buttons .button.activo {
  background-color: #f4bd67;
  opacity: 1;
  color: #fff;
}
#header .block-container .block.top .block-buttons .button.second {
  color: #4a4a4a;
}
#header .block-container .block.top .espacio-comunicacion {
  width: 62%;
  float: left;
  line-height: 40px;
  text-align: right;
  padding: 0;
  display: none;
}
#header .block-container .block.top .espacio-comunicacion .label {
  font-size: 12px;
}
#header .block-container .block.top .espacio-comunicacion .label.first {
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  #header .block-container .block.top .espacio-comunicacion {
    display: none;
  }
}
#header .block-container .block.top .account {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  #header .block-container .block.top .account div.heart {
    display: none !important;
  }
}
#header .block-container .block.top .account div.search-account-minicart, #header .block-container .block.top .account div.heart, #header .block-container .block.top .account .user, #header .block-container .block.top .account .search-block {
  width: 75px;
  background: #00035B;
}
@media only screen and (max-width: 991px) {
  #header .block-container .block.top .account div.search-account-minicart, #header .block-container .block.top .account div.heart, #header .block-container .block.top .account .user, #header .block-container .block.top .account .search-block {
    width: auto;
    background-color: transparent;
  }
}
#header .block-container .block.top .account div.search-account-minicart.heart, #header .block-container .block.top .account div.search-account-minicart .search.link-wrapper, #header .block-container .block.top .account div.search-account-minicart .header-minicart, #header .block-container .block.top .account div.heart.heart, #header .block-container .block.top .account div.heart .search.link-wrapper, #header .block-container .block.top .account div.heart .header-minicart, #header .block-container .block.top .account .user.heart, #header .block-container .block.top .account .user .search.link-wrapper, #header .block-container .block.top .account .user .header-minicart, #header .block-container .block.top .account .search-block.heart, #header .block-container .block.top .account .search-block .search.link-wrapper, #header .block-container .block.top .account .search-block .header-minicart {
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .block-container .block.top .account div.search-account-minicart.heart .fa.fa-heart-o, #header .block-container .block.top .account div.search-account-minicart .search.link-wrapper .fa.fa-heart-o, #header .block-container .block.top .account div.search-account-minicart .header-minicart .fa.fa-heart-o, #header .block-container .block.top .account div.heart.heart .fa.fa-heart-o, #header .block-container .block.top .account div.heart .search.link-wrapper .fa.fa-heart-o, #header .block-container .block.top .account div.heart .header-minicart .fa.fa-heart-o, #header .block-container .block.top .account .user.heart .fa.fa-heart-o, #header .block-container .block.top .account .user .search.link-wrapper .fa.fa-heart-o, #header .block-container .block.top .account .user .header-minicart .fa.fa-heart-o, #header .block-container .block.top .account .search-block.heart .fa.fa-heart-o, #header .block-container .block.top .account .search-block .search.link-wrapper .fa.fa-heart-o, #header .block-container .block.top .account .search-block .header-minicart .fa.fa-heart-o {
  font-size: 21px;
  color: white;
}
@media only screen and (max-width: 991px) {
  #header .block-container .block.top .account {
    width: 30%;
    position: absolute;
    bottom: 3px;
    right: 7px;
    display: flex;
    align-items: center;
  }
}
#header .block-container .block.top .account a.skip-link.skip-account {
  line-height: 1;
  text-transform: capitalize;
  padding: 0px;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #7f89a1 !important;
}
@media only screen and (max-width: 991px) {
  #header .block-container .block.top .account a.skip-link.skip-account {
    line-height: 0px;
    display: none;
  }
}
#header .block-container .block.top .account a.help-header {
  line-height: 44px;
  text-transform: capitalize;
  padding: 0px;
  font-size: 14px;
  color: #4a4a4a;
  width: auto;
  font-weight: 300;
}
#header .block-container .block.top .account i.fa.fa-chevron-down {
  display: none;
}
#header .block-container .block.top .search-account-minicart .minicart .header-minicart .skip-cart span.label i.fa.fa-chevron-down {
  display: none !important;
}
#header .block-container .block.top .search-account-minicart .minicart .header-minicart .skip-cart .icon-carrito {
  display: block;
  color: white;
}
#header .block-container .block.top .search-account-minicart .minicart .header-minicart div#header-cart {
  position: fixed;
  z-index: 200;
  padding: 16px;
  top: 73px;
  left: initial;
  right: -400px;
  border: 1px solid #e9e9e9;
  width: 325px;
  height: 100vh;
  background: white;
  padding-top: 0;
  transition: ease-in-out .2s;
}
#header .block-container .block.top .search-account-minicart .minicart .header-minicart div#header-cart.skip-active {
  right: 0;
  transition: ease-in-out .2s;
}
@media only screen and (max-width: 991px) {
  #header .block-container .block.top .search-account-minicart .minicart .header-minicart div#header-cart {
    position: fixed;
  }
}
#header .block-container .block.middle {
  display: none;
}
@media only screen and (min-width: 992px) {
  #header .block-container .block.middle {
    padding: 30px 0 14px 0;
  }
  #header .block-container .block.middle .search-label {
    float: left;
    width: 24%;
    display: none;
  }
  #header .block-container .block.middle .search-label span.label {
    color: #00035B;
    float: right;
    line-height: 36px;
    position: relative;
    padding: 4px 27px 0 0;
    font-size: 12px;
  }
  #header .block-container .block.middle .search-label span.label:after {
    content: '.';
    color: transparent;
    background-image: url(../images/header-right-row.png);
    background-repeat: no-repeat;
    width: 34px;
    height: 20px;
    position: absolute;
    right: 0px;
    bottom: -10px;
  }
  #header .block-container .block.middle .search-block {
    width: 45%;
    margin: 0 auto;
    border: 1px solid #d9d6d6;
    line-height: 16px;
    position: relative;
    float: left;
    background-color: white;
  }
  #header .block-container .block.middle .search-block .search.link-wrapper {
    display: none;
    width: 100%;
    vertical-align: top;
  }
  #header .block-container .block.middle .search-block .search.link-wrapper a.skip-link.skip-search {
    display: none;
  }
  #header .block-container .block.middle .search-block div#header-search.skip-content {
    display: block;
  }
  #header .block-container .block.middle .search-block div#header-search.skip-content a.skip-link.skip-search {
    display: none !important;
  }
  #header .block-container .block.middle .search-block div#header-search.skip-content .input-box input#search {
    width: 75%;
    float: left;
    box-shadow: none;
    height: auto;
    background: transparent;
    font-size: 10px;
    font-weight: 300;
  }
  #header .block-container .block.middle .search-block div#header-search.skip-content .input-box input#search::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a2a1a0;
    opacity: 1;
    /* Firefox */
    font-weight: 300;
  }
  #header .block-container .block.middle .search-block div#header-search.skip-content .input-box button.button.search-button {
    width: 20%;
    float: right;
    height: 33px;
    padding: 6px 0;
  }
  #header .block-container .block.middle .search-block div#header-search.skip-content .input-box button.button.search-button:focus {
    outline: 0px;
  }
  #header .block-container .block.middle .search-block div#header-search.skip-content .input-box button.button.search-button span.search-button-child {
    float: right;
    width: 90%;
    height: 100%;
    background-color: #00035B;
    border-radius: 2px;
    color: #fff;
    text-indent: 0px;
    line-height: 20px;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 991px) {
  #header .block-container .block.middle .search-block div#header-search.skip-content .input-box {
    justify-content: space-between;
    border: none;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
  }
  #header .block-container .block.middle .search-block div#header-search.skip-content .input-box .hidden-lg.hidden-md {
    display: none;
  }
  #header .block-container .block.middle .search-block div#header-search.skip-content .input-box input#search {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  #header .block-container .block.middle .search-block div#header-search.skip-content .input-box input#search::placeholder {
    font-size: 12px;
  }
  #header .block-container .block.middle .search-block div#header-search.skip-content .input-box .button.search-button {
    height: 40px;
    border-top-right-radius: 3px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 3px;
  }
}
@media only screen and (min-width: 992px) {
  #header .block-container .block.middle .search-account-minicart .minicart .header-minicart .skip-cart span.label i.fa.fa-chevron-down {
    display: none !important;
  }
  #header .block-container .block.middle .search-account-minicart .minicart .header-minicart .skip-cart .icon-carrito {
    display: block;
    color: #00035B;
  }
  #header .block-container .block.middle .search-account-minicart .minicart .header-minicart div#header-cart {
    position: absolute;
    z-index: 200;
    padding: 16px;
    top: 49px;
    left: initial;
    right: 0;
    border: 1px solid #e9e9e9;
    width: 390px;
    background: white;
  }
}
@media only screen and (min-width: 992px) and (max-width: 991px) {
  #header .block-container .block.middle .search-account-minicart .minicart .header-minicart div#header-cart {
    position: fixed;
    top: 81px;
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  #header .block-container .block.middle {
    width: auto;
    float: right;
    padding: 0;
  }
  #header .block-container .block.middle .search-label {
    display: none;
  }
  #header .block-container .block.middle input#search {
    color: #00035B;
  }
  #header .block-container .block.middle input#search::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #00035B;
    opacity: 1;
    /* Firefox */
  }
  #header .block-container .block.middle .search-block {
    padding: 0 5px;
    float: left;
  }
  #header .block-container .block.middle .search-account-minicart {
    padding: 0 0 0 10px;
    float: left;
  }
}
@media only screen and (max-width: 991px) {
  #header .block-container {
    height: 75px;
    display: flex;
    flex-wrap: wrap;
  }
}
#header .mobile-nav-wrapper {
  position: relative;
  width: 100%;
  padding: 0px;
}
@media only screen and (max-width: 991px) {
  #header .mobile-nav-wrapper {
    position: relative;
    width: 100%;
    content: '';
    display: table;
    clear: both;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e4e4e4;
  }
  #header .mobile-nav-wrapper.mobile-nav-active {
    z-index: 1000;
  }
}
@media only screen and (min-width: 992px) {
  #header .mobile-nav-wrapper .nav-links {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media only screen and (max-width: 991px) {
  #header .mobile-nav-wrapper .nav-links {
    margin-left: auto;
    width: auto;
  }
  #header .mobile-nav-wrapper .nav-links .link-wrapper {
    margin-left: 15px;
  }
}
#header .mobile-nav-wrapper .nav-links .top-links {
  display: inline-block;
  line-height: 29px;
  vertical-align: top;
  margin-top: 15px;
}
@media only screen and (max-width: 991px) {
  #header .mobile-nav-wrapper .nav-links .top-links {
    margin-top: 0;
    margin-bottom: 5px;
    display: none;
  }
}
#header .mobile-nav-wrapper .nav-links .top-links li {
  float: left;
  margin-left: 60px;
}
@media only screen and (max-width: 991px) {
  #header .mobile-nav-wrapper .nav-links .top-links li {
    margin-left: 12px;
  }
}
#header .mobile-nav-wrapper .nav-links .top-links li a {
  color: #555;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.sticky-centrar {
  -moz-transition: margin-top, 300ms;
  -o-transition: margin-top, 300ms;
  -webkit-transition: margin-top, 300ms;
  transition: margin-top, 300ms;
}

.is-sticky #header {
  transition: box-shadow 0.8s;
  box-shadow: 1px 1px 13px -3px #464646;
}
.is-sticky .page-header-container {
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 1px 1px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 1px 1px;
  box-shadow: rgba(0, 0, 0, 0.15) 0 1px 1px;
}
@media only screen and (min-width: 992px) {
  .is-sticky .sticky-centrar {
    margin-top: 23px;
  }
  .is-sticky .sticky-centrar.nav-links {
    margin-top: 20px;
  }
}
.is-sticky .logo {
  margin: 10px 0 15px;
  width: 130px;
}

@media only screen and (min-width: 992px) {
  body.scrollUp {
    transition: all 1s;
  }
  body.scrollUp #header.sticky {
    transition: transform 1s;
    transform: translateY(0%);
  }
  body #header.sticky {
    transition: all 1s;
    transform: translateY(-100%);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
    padding: 0;
  }
}
@media only screen and (max-width: 359px) {
  .search-block {
    left: 30px !important;
    position: absolute !important;
    top: -33px;
  }
}
/* ============================================ *
 * Nav - Skip Link
 * ============================================ */
.skip-nav {
  width: 40%;
  padding: 4px 0;
}
@media only screen and (max-width: 359px) {
  .skip-nav {
    right: 37px !important;
  }
}
@media only screen and (max-width: 991px) {
  .skip-nav {
    display: flex !important;
    flex-direction: column;
    justify-content: end;
    left: 113px;
    top: 16px;
    padding: 0;
    width: 32px !important;
    height: 32px !important;
    margin-bottom: -3px;
  }
}
.skip-nav:not(.skip-active):hover {
  text-decoration: none;
}
.skip-nav:not(.skip-active):hover .icon {
  background-position: -46px 4px;
}
@media only screen and (max-width: 991px) {
  .skip-nav {
    z-index: 999;
    top: 2px;
    left: 0;
  }
}

.skip-nav .label {
  display: inline;
}

.skip-nav .icon {
  background-position: 4px 4px;
}

.skip-nav {
  width: 25%;
}

.skip-nav {
  display: none;
}

/* ============================================ *
 * Nav - Skip Content (mobile)
 * ============================================ */
/* ============================================ *
 * Nav Primary (desktop)
 * ============================================ */
#header-nav {
  background: transparent;
  float: left;
  width: 100%;
  display: none;
}

.nav-primary {
  display: block;
  text-align: center;
  float: left;
}
.nav-primary li.mobile-button {
  display: none;
}

/* ============================================ *
 * General Navigation Styles
 * ============================================ */
.nav-primary .menu-active {
  transition: all 1s;
}
.nav-primary .menu-active li {
  transition: background .3s;
  float: left;
  width: 100%;
  background: transparent;
  transition: background .3s;
  padding: 5px 15px;
}
.nav-primary .menu-active li a {
  font-size: 12px;
  letter-spacing: 0;
  color: #4a4a4a;
  font-weight: 400;
  line-height: 20px;
}
.nav-primary .menu-active li.view-all a {
  color: #00035B;
}
@media only screen and (min-width: 992px) {
  .nav-primary .menu-active li:hover {
    background: #00035B;
  }
  .nav-primary .menu-active li:hover > a {
    color: #fff;
  }
  .nav-primary .menu-active li .categories a {
    color: #4a4a4a;
  }
  .nav-primary .menu-active li .categories a:hover {
    color: #fff;
  }
}
.nav-primary a {
  text-decoration: none;
  position: relative;
  display: block;
  color: #00035B;
  line-height: 32px;
  font-size: 15px;
  letter-spacing: 1.15px;
  font-weight: normal;
}
.nav-primary a.has-children:after {
  display: none;
  content: '\f105';
  font-family: FontAwesome;
  margin-left: 5px;
}
.nav-primary li {
  position: relative;
}
@media only screen and (min-width: 992px) {
  .nav-primary li.level0 {
    padding: 10px 0px;
    border-top: 0;
    transition: border 0.4s linear;
  }
}
@media only screen and (min-width: 992px) {
  .nav-primary li.level0.active {
    background: #fff;
  }
}
@media only screen and (max-width: 991px) {
  .nav-primary li.level0.active {
    border-left: 2px solid #151FD3;
  }
}
.nav-primary li.level1 a:before, .nav-primary li.level1 a:after {
  content: '\f105';
  font-family: FontAwesome;
  margin-right: 10px;
  display: none;
}

.nav-primary .menu-active > ul.level0,
.nav-primary li.level0 li.sub-menu-active > ul {
  display: block;
}
@media only screen and (max-width: 991px) {
  .nav-primary .menu-active > ul.level0,
  .nav-primary li.level0 li.sub-menu-active > ul {
    margin: 10px 0;
  }
}

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
.nav-primary {
  margin: 0 auto;
  float: none;
  text-align: left;
  width: 100%;
  padding: 0;
  /* Default styles for 1+ drop-down menus */
  /* Level 2+ */
  /* Class for js to add briefly to evaluate element positioning. */
  /* Correct menus that will hang off the page (class added by js) */
  /* Level 1+ */
}
.nav-primary a.level0 {
  border-right: 1px solid #d9d6d6;
  line-height: 20px;
  color: #00035B;
  font-size: 13px;
  font-weight: 500;
  padding: 0 7px;
  letter-spacing: 0;
}
.nav-primary a.level0:hover {
  opacity: 0.8;
  text-decoration: none;
}
.nav-primary li.level0,
.nav-primary a.level0 {
  display: inline-block;
}
.nav-primary .menu-active {
  z-index: 999999;
}
.nav-primary li.level0 ul {
  background: #fff;
  position: absolute;
  left: 0;
  top: 39px;
  /* Height of ".nav-primary a.level0" */
  z-index: 10;
  min-width: 280px;
  padding: 20px 0;
  box-shadow: 1px 0 4px rgba(0, 0, 0, 0.06);
  border: 1px solid #eeeeee;
  border-top: 2px solid #00035B;
  text-align: left;
  display: none;
  /* Hide until displayed. */
}
.nav-primary li.level0 ul a:hover,
.nav-primary li.level0 ul li:hover > a {
  text-decoration: none;
}
.nav-primary li.level0 ul.hasbanner {
  min-width: 600px !important;
}
.nav-primary li.level0 ul.hasbanner .categories {
  float: left;
  width: auto;
  max-width: 70%;
}
.nav-primary li.level0 ul.hasbanner .submenu-banner {
  float: right;
  max-width: 75%;
  width: auto;
}
.nav-primary li.level1 ul {
  left: 100%;
  top: 0;
}
.nav-primary li.level0 ul.level0.position-test {
  display: block;
}
.nav-primary li.level0 ul.level0.spill {
  right: 0;
  left: auto;
}
.nav-primary li.level0 ul.level0.spill li.level1 ul {
  left: auto;
  right: 50px;
  top: 20px;
}
.nav-primary li.level0 li.parent > a {
  position: relative;
}
.nav-primary li.level0 li.parent > a:after {
  content: '\f105';
  right: 5px;
  top: 5px;
  position: absolute;
  margin-top: -3px;
  font-family: FontAwesome;
}

@media only screen and (min-width: 992px) {
  .nav-primary li.menu-active.parent:before {
    content: '\f0d8';
    font-family: FontAwesome;
    color: #00035B;
    z-index: 99999999;
    bottom: -8px;
    position: absolute;
    left: 45%;
    font-size: 15px;
  }
}
.nav-primary li.menu-active > ul {
  display: block;
}

.mob-back-link {
  display: none;
}

@media only screen and (max-width: 991px) {
  #nav .nav-title {
    margin-top: 30px;
    width: 100%;
    color: #4a4a4a !important;
    line-height: 1;
    padding: 0;
    font-size: 15px;
    letter-spacing: 0;
    font-weight: 700;
    text-align: left;
    float: left;
    display: flex;
    padding-left: 20px;
    padding-bottom: 10px;
    text-transform: uppercase;
  }
  #nav .mi_cuenta {
    padding-left: 20px;
  }
  #nav .mi_cuenta .account {
    padding-top: 20px;
    width: 100% !important;
    justify-content: left;
    text-align: left;
    position: relative;
    float: left;
  }
  #nav .mi_cuenta .account .icon-micuenta:before {
    content: "\f007";
    font-family: fontAwesome;
    color: #4a4a4a;
    font-size: 20px;
    font-weight: 300;
  }
  #nav .mi_cuenta .account span {
    width: 100%;
    color: #4a4a4a !important;
    line-height: 45px;
    padding: 0;
    font-size: 15px;
    letter-spacing: 0;
  }
  #nav .mi_cuenta .account span:before {
    padding-right: 10px;
  }
  #nav .linksblock li {
    text-align: left;
    padding-left: 23px;
    position: relative;
  }
  #nav li.nav-popup {
    height: 40px;
    display: flex;
    align-items: center;
  }
  #nav li.nav-popup.active a.dropdown {
    font-weight: 700;
    font-size: 15px;
  }
  #nav .productos {
    position: fixed;
    overflow: auto;
    top: 0px;
    left: 1000px;
    background: #fff;
    z-index: 15;
    width: 100%;
    box-shadow: 0px 5px 7px 2px rgba(123, 123, 123, 0.55);
    height: 88vh;
    opacity: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: ease-in-out .4s;
  }
  #nav .productos .column1 {
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
  }
  #nav .productos .column1 .mob-back-link {
    position: fixed;
    width: 100%;
    top: 2px;
    height: 40px;
    background: #EDEBE5;
    display: flex;
    justify-content: left;
    align-items: center;
    z-index: 999;
  }
  #nav .productos .column1 .mob-back-link p {
    margin-bottom: 0;
    padding-left: 35px;
    color: #4a4a4a !important;
    font-size: 16px;
    margin-top: 4px;
  }
  #nav .productos .column1 .mob-back-link p:after {
    content: '\f053';
    font-family: FontAwesome;
    color: #a29f9f !important;
    font-size: 18px;
    top: 9px;
    position: absolute;
    left: 10px;
  }
  #nav .productos .column1 .subtitle {
    width: 100%;
    margin: 10px 0;
  }
}
@media only screen and (max-width: 991px) and (max-width: 991px) {
  #nav .productos .column1 .subtitle {
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  #nav .productos .column1 ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #nav .productos .column1 ul li {
    padding: 12px;
  }
  #nav .productos .column1 ul li:first-child {
    margin: 0;
  }
  #nav .productos .column1 ul li a {
    color: #2f2f3e;
    font-size: 15px;
    line-height: 1;
  }
  #nav .productos .column2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 30px;
  }
  #nav .productos .column2 p {
    margin-bottom: 20px;
    color: #666666;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0;
    line-height: 1;
  }
  #nav .productos .column2 div {
    width: 30%;
  }
  #nav li {
    float: left;
    width: 100%;
    padding: 0 10px;
    list-style: none;
  }
  #nav li.wishlist {
    position: relative;
  }
  #nav li.wishlist a {
    width: 100% !important;
  }
  #nav li.wishlist a .label {
    display: block !important;
    width: 100%;
    color: #4a4a4a !important;
    line-height: 45px;
    padding: 0;
    font-size: 15px;
    letter-spacing: 0;
    font-weight: 500;
    padding-left: 15px;
    text-align: left;
  }
  #nav li.wishlist a .icon-favoritos:before {
    content: "\f004";
    font-family: fontAwesome;
    color: #4a4a4a;
    font-size: 20px;
    font-weight: 300;
    position: absolute;
    left: 0;
  }
  #nav li a {
    float: left;
    width: 100%;
    color: #4a4a4a !important;
    line-height: 45px;
    padding: 0;
    font-size: 15px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 991px) and (max-width: 991px) {
  #nav li a {
    font-size: 17px;
  }
}
@media only screen and (max-width: 991px) {
  #nav li a:after {
    display: none;
  }
  #nav li.parent.level0 .categories .parent a.level1:after, #nav li.parent.level0 a.level0:after {
    display: block;
    right: 0;
    margin: 0;
    content: '\f078';
    font-family: FontAwesome;
    color: #a29f9f !important;
    font-size: 18px;
  }
  #nav li.parent.level0 .categories .parent a.level1:after {
    right: 0;
  }
  #nav li ul.level0 {
    float: left;
    width: 100%;
    margin: 0 0 15px 0;
    padding: 0 0 0 10px;
    border-left: 2px solid #00035B;
  }
  #nav li ul.level0 .categories {
    float: left;
    width: 100%;
  }
  #nav li ul.level0 .categories > .level1 {
    float: left;
    width: 100%;
    padding: 10px 0 10px 10px;
  }
  #nav li ul.level0 .categories > .level1.menu-active {
    margin-bottom: 15px;
  }
  #nav li ul.level0 .categories > .level1.menu-active ul {
    padding: 0 0 0 10px;
  }
  #nav li ul.level0 .categories > .level1 .level2 {
    padding-top: 5px;
  }
  #nav li ul.level0 .categories a {
    line-height: 30px;
    border: 0;
  }
  #nav li ul.level0 .categories .view-all a {
    color: #151FD3 !important;
    font-weight: 500;
  }
}
@media only screen and (min-width: 992px) {
  .search-account-minicart {
    background-color: #00035B;
  }
}

@media only screen and (min-width: 992px) {
  .user {
    border-right: 1px solid #7f89a1 !important;
    position: relative;
  }
}
@media only screen and (max-width: 991px) {
  .user {
    display: flex;
    align-items: end;
  }
}

@media only screen and (min-width: 992px) {
  .user, .heart {
    width: 100%;
    background-color: #00035B;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .user i.fa.fa-heart-o, .heart i.fa.fa-heart-o {
    font-size: 21px;
    color: white;
  }
}

/* ============================================ *
 * Search - Skip Link
 * ============================================ */
.skip-search {
  z-index: 2;
  width: 30px;
  background: none;
}

.skip-search .icon {
  line-height: 30px;
  color: #646464;
}

.search-wrapper {
  position: relative;
}

/* ============================================ *
 * Search - Skip Content
 * ============================================ */
#header-search {
  z-index: 11;
  right: 0;
  top: 51px;
  left: initial;
  border: none;
  background: none;
}
#header-search:after {
  display: none;
  content: '\f0d8';
  font-family: FontAwesome;
  position: absolute;
  right: 20px;
  top: -18px;
  font-size: 20px;
  color: white;
}
@media only screen and (max-width: 991px) {
  #header-search {
    background-image: url(../images/home/background.png);
    background-size: cover;
    overflow: hidden;
    top: 72px;
    right: 0;
    width: 100%;
    position: fixed;
  }
  #header-search form#search_mini_form {
    background: #F06000;
    padding: 10px 15px;
  }
}

/* ============================================ *
 * Search Input
 * ============================================ */
#search_mini_form .input-box {
  position: relative;
}
@media only screen and (max-width: 991px) {
  #search_mini_form .input-box {
    text-align: left;
    padding: 0;
    background-color: white;
    border-radius: 3px;
    box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-between;
    border: none;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
  }
  #search_mini_form .input-box img {
    display: none;
  }
  #search_mini_form .input-box .ui-input-search {
    float: left;
  }
  #search_mini_form .input-box .ui-input-search input {
    border: none;
    margin-left: 22px;
    width: 180px;
    height: 55px;
    line-height: 55px;
    padding: 0;
    background: transparent;
    outline: none;
  }
  #search_mini_form .input-box .button.search-button {
    float: right;
    background-color: #00035B;
    border: none;
    height: 40px;
    width: 15%;
    padding: 0 !important;
  }
}
@media only screen and (max-width: 991px) and (max-width: 991px) {
  #search_mini_form .input-box .button.search-button {
    height: 40px;
    border-top-right-radius: 3px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 3px;
    min-width: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #search_mini_form .input-box .button.search-button:before {
    display: block;
    content: '';
    background-position: center center;
    background-size: 20px;
    background-image: url(../images/MagnifyingGlassWhite.svg);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
  }
}
@media only screen and (max-width: 991px) {
  #search_mini_form .input-box .button.search-button span span {
    color: #00035B;
    font-size: 12px;
    font-weight: 400;
  }
  #search_mini_form .input-box .button.search-button span span:after {
    content: "\f105";
    font-family: fontAwesome;
    color: #ffffff;
    margin-left: 0px;
    font-size: 18px;
  }
}
#search_mini_form .input-box:after {
  content: '\f002';
  font-family: fontAwesome;
  font-size: 16px;
  z-index: 9;
  position: absolute;
  right: 20px;
  top: 10px;
}
@media only screen and (max-width: 376px) {
  #search_mini_form .input-box:after {
    right: 17px;
    display: none;
  }
}
@media only screen and (max-width: 359px) {
  #search_mini_form .input-box:after {
    right: 15px;
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  #search_mini_form .input-box:after {
    display: none;
    top: 7px;
    color: white;
  }
}
@media only screen and (min-width: 441px) and (max-width: 768px) {
  #search_mini_form .input-box:after {
    right: 6%;
    display: none;
  }
}

#search_mini_form label {
  display: none;
}

#search {
  padding: 4px 8px;
  color: #000;
  border: 0;
  font-size: 11px;
  font-weight: 500;
  outline: none;
  text-transform: uppercase;
  width: 360px;
  height: 43px;
  border-radius: 2px;
  background-color: #ffffff;
}
#search::placeholder {
  color: #a2a2a3;
}
@media only screen and (max-width: 991px) {
  #search {
    width: 83%;
    height: 40px;
    border: none;
    padding: 0 12px;
    margin-left: 0px;
    font-size: 11px !important;
    font-weight: 500;
    box-shadow: none;
    text-transform: math-auto;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }
}

span.search-button-child {
  display: none;
}
@media only screen and (max-width: 991px) {
  span.search-button-child {
    font-weight: 700;
    border-radius: 3px;
    font-size: 16px;
    display: none;
  }
}

.ui-input-clear {
  display: none;
}

@media only screen and (min-width: 992px) {
  .button.search-button {
    padding: 0;
    top: 3px;
    right: 9px;
    position: absolute;
    width: 40px;
    background: transparent;
    height: 40px;
    line-height: 45px;
    text-indent: -999px;
    outline: none;
  }
}

.search-desktop .search-autocomplete {
  left: 3px !important;
}
@media only screen and (min-width: 992px) {
  .search-desktop .search-autocomplete {
    top: -1px !important;
  }
}
.search-desktop.skip-content .search-autocomplete {
  top: 132px !important;
}
.search-desktop.skip-content .search-autocomplete::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #dddddc;
  border-top: none;
  left: 5%;
  top: -7px;
}

/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
.skip-account:not(.skip-active):hover .icon {
  background-position: -46px -44px;
}
.skip-account .icon {
  background-position: 4px -44px;
}

.skip-account {
  float: none;
  width: auto;
  vertical-align: top;
  display: inline-block;
  padding: 0 10px;
  text-transform: uppercase;
}

#header-account.skip-active {
  transition: all 1s;
  background: #fff;
  border: solid 1px #e9e9e9;
  display: block;
  position: absolute;
  z-index: 200;
  top: 72px;
  min-width: 205px;
  right: 0px;
  width: 100%;
  padding: 0;
}
#header-account.skip-active ul {
  float: left;
  width: 100%;
  padding: 15px 15px;
}
#header-account.skip-active ul li {
  float: left;
  width: 100%;
}
#header-account.skip-active ul li a {
  position: relative;
  display: block;
  padding: 0px;
  text-align: left;
  color: #464646;
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
}
#header-account.skip-active ul li a:hover {
  text-decoration: none;
  font-weight: bold;
}
#header-account.skip-active ul li a:before {
  content: "\f054";
  font: normal normal normal 7px/1 FontAwesome;
  margin-right: 5px;
}
#header-account.skip-active:before {
  content: '\f0d8';
  font-family: FontAwesome;
  color: #e9e9e9;
  position: absolute;
  font-size: 14px;
  top: -13px;
  left: 35px;
}

#header-account a {
  position: relative;
  display: block;
  padding: 0px 10px;
  text-align: left;
  color: #00035B;
  font-size: 11px;
  font-weight: 200;
  line-height: 30px;
}
#header-account a:before {
  content: "\f054";
  font: normal normal normal 7px/1 FontAwesome;
  margin-right: 5px;
}

#header-account a:hover {
  color: #646464;
}

/* -------------------------------------------- *
 * Account Links
 */
#header-account {
  padding: 5px 0;
}
@media only screen and (max-width: 991px) {
  #header-account {
    padding: 20px 0;
    position: fixed;
    top: 82px;
    left: 0;
    z-index: 11;
    width: 100%;
  }
}
#header-account .links ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  #header-account .links ul {
    flex-direction: column;
  }
}
#header-account .links ul li {
  display: none;
}
#header-account .links ul li.getIsFirst, #header-account .links ul li.last, #header-account .links ul li.my_orders {
  display: inline-block;
}
#header-account .links ul li.getIsFirst {
  order: 1;
  display: none !important;
}
#header-account .links ul li.last {
  order: 3;
}
#header-account .links ul li.my_orders {
  order: 2;
}
#header-account .links ul li:hover {
  font-weight: bold;
}

.account-wrapper {
  position: relative;
}

#header-account a {
  position: relative;
  display: block;
  padding: 5px 10px;
  line-height: 23px;
  text-align: center;
}

#header-account a:hover {
  color: #646464;
}

/* ============================================ *
 * Header - Cart
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Cart
 */
.skip-cart {
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .skip-cart {
    position: relative;
  }
}
.skip-cart .icon-carrito {
  font-size: 20px;
}

@media only screen and (max-width: 991px) {
  #header-cart {
    padding: 20px;
  }
}

.skip-cart {
  width: auto;
}

#header-cart.skip-active {
  background: #fff;
  border: solid 1px #949494;
  transition: all 1s;
  display: block;
  position: absolute;
  z-index: 200;
  padding: 30px;
  top: 35px;
  left: initial;
  right: -13px;
  border: 1px solid #e9e9e9;
  width: 390px;
  background: white;
}

@media only screen and (max-width: 991px) {
  .minicart #header-cart.skip-active {
    background: #fff;
    border: solid 1px #949494;
    transition: all 1s;
    display: block;
    position: absolute;
    padding: 20px;
    top: 49px;
    left: initial;
    right: 0;
    border: 1px solid #e9e9e9;
    width: 300px;
    background: white;
  }
}

/* -------------------------------------------- *
 * Skip Cart Notifier
 */
.skip-cart .count {
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  display: inline-block;
  position: relative;
  z-index: 5;
  width: 22px;
  height: 22px;
  background: rgba(100, 100, 100, 0.9);
  color: #FFFFFF;
  font-size: 11px;
  line-height: 1;
  text-align: center;
  margin: 0 2px;
}
.skip-cart .count.mobile {
  display: block;
}
@media only screen and (max-width: 991px) {
  .skip-cart .count.mobile {
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
    line-height: 18px;
    top: -8px;
    right: -8px;
    background: #00035B;
    font-size: 11px;
  }
}

.skip-link.skip-active .count {
  color: white;
}

.skip-cart.no-count .count {
  display: none;
}

.skip-cart {
  color: #000000;
  text-transform: uppercase;
  padding: 0;
  height: auto;
}
.skip-cart:hover {
  text-decoration: none;
}
.skip-cart .count {
  position: absolute;
  background: #F06000;
  font-size: 11px;
  border-radius: 100%;
  width: 20px;
  color: #fff !important;
  height: 20px;
  line-height: 21px;
  left: 13px;
  top: -13px;
  margin: 0;
}

.skip-cart .count,
.skip-link.skip-active .count {
  color: #000000;
}

.skip-cart .count.empty {
  display: none;
}

/* -------------------------------------------- *
 * Mini Cart - Empty
 */
.cart-menu .empty {
  padding: 20px;
  text-align: center;
}

/* -------------------------------------------- *
 * Mini Cart - Full
 */
/* Actions */
.cart-menu .actions {
  overflow: hidden;
  padding: 15px;
}

.cart-menu .actions .button {
  float: left;
  width: 48%;
}

.cart-menu .actions .button + .button {
  margin-left: 4%;
}

/* Subtotal */
.cart-menu .subtotal {
  padding: 0 15px 15px;
  font-size: 24px;
  line-height: 1.2;
}

/* List */
.mini-cart-list {
  margin-bottom: 5px;
}

.mini-cart-list li {
  position: relative;
  min-height: 90px;
  padding: 15px 15px 15px 90px;
  border-top: 1px solid #949494;
  font-size: 14px;
  line-height: 1.35;
}

.mini-cart-list .product-name {
  display: inline-block;
}

.mini-cart-list .product-image {
  position: absolute;
  left: 15px;
  top: 15px;
}

.mini-cart-list .product-image img {
  width: 60px;
  height: 60px;
}

.mini-cart-list .has-options {
  margin-bottom: 0;
  color: #646464;
  font-size: 12px;
}

/* Too full - additional items will be shown in cart */
.cart-menu .last-added {
  padding: 10px 15px 15px;
  border-top: 1px solid #949494;
  font-size: 14px;
}

/* ============================================ *
 * Footer
 * ============================================ */
/* -------------------------------------------- *
 * Footer
 */
.footer .row, .pre-footer .row {
  margin-right: 0px;
  margin-left: 0px;
}
.footer .logo .img-cont img, .pre-footer .logo .img-cont img {
  max-width: 45%;
}
@media only screen and (max-width: 991px) {
  .footer .logo .img-cont img, .pre-footer .logo .img-cont img {
    max-width: 70%;
  }
}

.pre-footer {
  float: left;
  margin-top: 40px;
  height: 73px;
  background-color: #cccccc;
  display: flex;
  align-items: center;
  width: 100%;
}
.pre-footer .pre-contenido {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 400;
}
.pre-footer .pre-contenido .item-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
}
.pre-footer .pre-contenido .item-cont a {
  color: #575555;
  font-weight: 400;
  font-size: 19px;
}
.pre-footer .pre-contenido .item-cont a:hover {
  color: #3a3636;
}
.pre-footer .pre-contenido .item-cont img {
  margin-right: 10px;
  border-radius: 50%;
  background: #00035B;
  height: 40px;
  width: 40px;
  padding: 7px;
}
@media only screen and (max-width: 991px) {
  .pre-footer .pre-contenido {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pre-footer .pre-contenido .item-cont {
    width: 100%;
    padding: 10px 0;
    justify-content: space-between;
    padding: 10px 0;
  }
  .pre-footer .pre-contenido .item-cont a:first-child {
    padding-left: 8px;
    width: 100%;
  }
  .pre-footer .pre-contenido .mobile {
    padding-top: 30px;
  }
  .pre-footer .pre-contenido .mobile h3 {
    font-family: "Ubuntu600S", sans-serif;
    color: #fff;
    font-size: 28px;
    margin-bottom: 30px;
  }
  .pre-footer .pre-contenido .mobile .footer-whatsapp {
    background: white;
    padding: 4px;
    border-radius: 50%;
  }
}
.pre-footer .iconos-container {
  display: flex;
  justify-content: space-between;
  margin: 28px 0;
  align-items: center;
}
.pre-footer .iconos-container .linea {
  float: right;
  width: 33.33%;
  border-bottom: 1px solid #00a6e2;
}
.pre-footer .iconos-container .iconos {
  display: inline-block;
}
.pre-footer .iconos-container .iconos ul {
  display: flex;
}
.pre-footer .iconos-container .iconos ul li a {
  font-size: 37px;
  font-weight: 400;
  margin: 0 20px;
  color: #00a6e2;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .pre-footer .iconos-container .iconos ul li a {
    font-size: 22px;
    margin: 0 10px;
    border: none;
  }
}
.pre-footer .iconos-container .iconos ul li.facebook a:before {
  content: "\f09a";
  font-family: fontAwesome;
}
.pre-footer .iconos-container .iconos ul li.instagram a:before {
  content: "\f16d";
  font-family: fontAwesome;
}
.pre-footer .iconos-container .iconos ul li.youtube a:before {
  content: "\f16a";
  font-family: fontAwesome;
}
.pre-footer .row .logo-prefooter {
  padding-left: 0;
}
.pre-footer .row .logo-prefooter img {
  margin: 0 38px 16px;
}
@media only screen and (max-width: 991px) {
  .pre-footer .row .logo-prefooter {
    margin: 0 0 30px 0;
  }
  .pre-footer .row .logo-prefooter img {
    margin: 0 20px 0 0;
    float: left;
    width: 80px;
  }
}
.pre-footer .row .logo-prefooter p {
  font-size: 10px;
  font-weight: 300;
  line-height: 16px;
  margin: 0 34px 0 0;
}
@media only screen and (max-width: 991px) {
  .pre-footer .row .logo-prefooter p {
    margin: 0 auto;
    text-align: left;
    padding-top: 12px;
    font-size: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .pre-footer {
    height: auto;
    background: #F06000;
  }
  .pre-footer > .container {
    padding: 0 !important;
  }
}

.footer .inner-cont {
  display: flex;
  justify-content: space-between;
}
.footer .inner-cont .links {
  width: 100%;
}
.footer .inner-cont .links .row-footer {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  float: left;
}
@media only screen and (max-width: 991px) {
  .footer .inner-cont .links .row-footer {
    display: block;
    padding-top: 22px;
  }
}
.footer .inner-cont .links .row-footer .col-media {
  width: 30%;
  margin-left: 25px;
  height: 110px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .footer .inner-cont .links .row-footer .col-media {
    width: 100%;
    margin-left: 0 !important;
    height: auto;
    margin-top: 15px;
  }
}
.footer .inner-cont .links .row-footer .col-media .logos-footer img {
  max-width: 90px;
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  .footer .inner-cont .links .row-footer .col-media .logos-footer {
    text-align: center;
  }
}
.footer .inner-cont .links .row-footer .col-media.social li {
  width: auto !important;
}
.footer .inner-cont .links .row-footer .col-media.social .contenido {
  width: 40%;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .footer .inner-cont .links .row-footer .col-media.social .contenido {
    display: none;
  }
  .footer .inner-cont .links .row-footer .col-media.social .contenido.flexgrid {
    display: flex !important;
  }
}
.footer .inner-cont .links .row-footer .col-media.social .fb::after, .footer .inner-cont .links .row-footer .col-media.social .insta::after {
  border-radius: 100px;
  background: white;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .inner-cont .links .row-footer .col-media.social .fb:after {
  content: '\f09a';
  font-family: FontAwesome;
  color: #00035B;
  font-size: 20px;
}
.footer .inner-cont .links .row-footer .col-media.social .fb:hover:after {
  color: #3b5999;
  cursor: pointer;
}
.footer .inner-cont .links .row-footer .col-media.social .tw:after {
  content: '\f099';
  font-family: FontAwesome;
  color: #00035B;
  font-size: 20px;
}
.footer .inner-cont .links .row-footer .col-media.social .tw:hover:after {
  color: #00035B;
  cursor: pointer;
}
.footer .inner-cont .links .row-footer .col-media.social .gp:after {
  content: '\f0d5';
  font-family: FontAwesome;
  color: white;
  font-size: 20px;
}
.footer .inner-cont .links .row-footer .col-media.social .gp:hover:after {
  color: #dd4b39;
  cursor: pointer;
}
.footer .inner-cont .links .row-footer .col-media.social .in:after {
  content: '\f0e1';
  font-family: FontAwesome;
  color: white;
  font-size: 20px;
}
.footer .inner-cont .links .row-footer .col-media.social .in:hover:after {
  color: #00035B;
  cursor: pointer;
}
.footer .inner-cont .links .row-footer .col-media.social .insta {
  margin-right: 20px;
}
.footer .inner-cont .links .row-footer .col-media.social .insta:after {
  content: '\f16d';
  font-family: FontAwesome;
  color: #00035B;
  font-size: 20px;
}
.footer .inner-cont .links .row-footer .col-media.social .insta:hover:after {
  color: #00035B;
  cursor: pointer;
}
.footer .inner-cont .links .row-footer .col-media.logo {
  width: 40%;
  margin: 0;
  display: inline-block;
  height: auto;
  flex-wrap: wrap;
}
.footer .inner-cont .links .row-footer .col-media.logo .img-cont {
  width: 100%;
  margin-bottom: 13px;
}
.footer .inner-cont .links .row-footer .col-media.logo li {
  padding: 2px 0;
  display: inline-block;
  text-align: left;
  height: auto;
}
@media only screen and (max-width: 991px) {
  .footer .inner-cont .links .row-footer .col-media.logo {
    width: 100%;
    flex-direction: column;
  }
  .footer .inner-cont .links .row-footer .col-media.logo .img-cont {
    margin-bottom: 20px;
  }
  .footer .inner-cont .links .row-footer .col-media.logo .cont li {
    width: 100%;
  }
  .footer .inner-cont .links .row-footer .col-media.logo .cont li a {
    border: none;
  }
}
.footer .inner-cont .links .row-footer .col-media .contenido {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.footer .inner-cont .links .row-footer .col-media .contenido li {
  width: 50%;
}
@media only screen and (max-width: 991px) {
  .footer .inner-cont .links .row-footer .col-media .contenido {
    margin-bottom: 20px;
    display: none;
  }
  .footer .inner-cont .links .row-footer .col-media .contenido li {
    width: 100%;
  }
  .footer .inner-cont .links .row-footer .col-media .contenido li a {
    border-bottom: 1px solid #807979;
  }
}
.footer .inner-cont .links .row-footer .col-last {
  width: 24%;
}
@media only screen and (max-width: 991px) {
  .footer .inner-cont .links .row-footer .col-last {
    width: 100%;
    float: left;
    border-top: 1px solid #eee;
    padding: 14px 0;
  }
}
@media only screen and (max-width: 991px) {
  .footer .inner-cont .links .row-footer .col-last img {
    margin: 0 auto;
    width: auto !important;
  }
}
.footer .inner-cont .links .row-footer .col-last .ecloud {
  display: none;
}
@media only screen and (max-width: 991px) {
  .footer .inner-cont .links .row-footer .col-last .ecloud {
    display: block;
    margin-bottom: 16px;
  }
}
.footer .inner-cont .links .row-footer .col-last .derechos {
  display: none;
}
@media only screen and (max-width: 991px) {
  .footer .inner-cont .links .row-footer .col-last .derechos {
    display: block;
    text-align: center;
    color: #4a4a4a;
    font-size: 12px;
    line-height: 30px;
  }
}
.footer .inner-cont .links .row-footer .col-last .tarjetas {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .footer .inner-cont .links .row-footer .col-last .tarjetas a {
    width: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .footer .inner-cont .links {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .footer .inner-cont .links .row-footer-mobile .first-row a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 376px) {
  .footer .inner-cont .links .row-footer-mobile .first-row a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 359px) {
  .footer .inner-cont .links .row-footer-mobile .first-row a {
    font-size: 14px;
  }
}
.footer .inner-cont #newsletter {
  width: 30%;
  margin-top: 0;
}
@media only screen and (max-width: 991px) {
  .footer .inner-cont #newsletter {
    width: 100%;
  }
  .footer .inner-cont #newsletter .block-subscribe {
    margin-top: 0;
  }
  .footer .inner-cont #newsletter .block-subscribe form.container {
    padding: 0 15px !important;
  }
  .footer .inner-cont #newsletter .block-subscribe .block-content {
    padding-top: 10px;
  }
  .footer .inner-cont #newsletter .block-subscribe .block-content .inputs-wrapper {
    padding: 0;
  }
  .footer .inner-cont #newsletter .block-subscribe .block-content .inputs-wrapper .input-box {
    width: 100%;
  }
  .footer .inner-cont #newsletter .block-subscribe .block-content .inputs-wrapper .input-box label {
    font-size: 17px;
  }
  .footer .inner-cont #newsletter .block-subscribe .block-content .inputs-wrapper .input-box .input-box-container {
    width: 100%;
  }
  .footer .inner-cont #newsletter .block-subscribe .block-content .inputs-wrapper .input-box .input-box-container input {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .footer .inner-cont {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 991px) {
  .footer .col-media, .pre-footer .col-media {
    float: left;
    width: 100%;
  }
  .footer .col-media.social .contenido a, .pre-footer .col-media.social .contenido a {
    display: block;
  }
  .footer .col-media .img-cont, .pre-footer .col-media .img-cont {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }
}
.footer .col-md-3, .pre-footer .col-md-3 {
  padding: 0 0 0 49px;
}
@media only screen and (max-width: 991px) {
  .footer .col-md-3, .pre-footer .col-md-3 {
    padding: 0;
    float: left;
    width: 100%;
  }
}
.footer h2, .pre-footer h2 {
  color: #f3f3f3;
  line-height: 18px;
  font-size: 12px;
  font-weight: 700;
  width: 100%;
  float: left;
}
@media only screen and (max-width: 991px) {
  .footer h2, .pre-footer h2 {
    line-height: 38px;
    margin: 0;
  }
  .footer h2:after, .pre-footer h2:after {
    content: '\f107';
    font-family: FontAwesome;
    font-size: 12px;
    float: right;
  }
  .footer h2.open:after, .pre-footer h2.open:after {
    content: '\f106';
  }
}
.footer ul, .pre-footer ul {
  float: left;
  width: 100%;
  display: block;
}
@media only screen and (max-width: 991px) {
  .footer ul, .pre-footer ul {
    display: none;
  }
  .footer ul.active, .pre-footer ul.active {
    display: block;
  }
}
.footer li, .pre-footer li {
  width: 100%;
  float: left;
  font-weight: 300;
  font-size: 11px;
  line-height: 18px;
  color: #4a4a4a;
  transition: 0.5s ease;
}
.footer li:hover, .pre-footer li:hover {
  transform: translate(5px, 0);
}
.footer li:hover a, .pre-footer li:hover a {
  color: white;
}
.footer li a, .pre-footer li a {
  font-weight: 300;
  font-size: 11px;
  line-height: 18px;
  color: #4a4a4a;
  float: left;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .footer li a, .pre-footer li a {
    font-size: 13px;
    line-height: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
  }
}

.footer {
  float: left;
  width: 100%;
  padding: 41px 0 34px;
  background-color: #00035B;
  /* -------------------------------------------- *
   * Social icons
   */
}
@media only screen and (max-width: 991px) {
  .footer {
    background-color: #F06000;
    padding: 5px 0px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.footer .footer-widget {
  display: inline-block;
}
.footer .footer-widget.active .links-wrapper {
  display: inline-block !important;
  float: left;
  width: 100%;
  margin-bottom: 10px;
}
.footer .footer-widget.active:after {
  content: '\f106';
}
@media only screen and (max-width: 991px) {
  .footer .footer-widget {
    border-bottom: 1px solid #ccc;
    padding: 6px 0 7px;
    position: relative;
    cursor: pointer;
  }
  .footer .footer-widget:after {
    content: '\f107';
    font-family: FontAwesome;
    font-size: 18px;
    float: right;
    margin-right: 15px;
    font-weight: bold;
    color: #00a6e2;
    position: absolute;
    top: 16px;
    right: -9px;
    line-height: 10px;
  }
}
.footer .footer-widget h4 {
  font-family: 'Raleway';
  color: #00035B;
  font-size: 13px;
  font-weight: 800;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0px;
  margin: 0;
  letter-spacing: 1px;
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  .footer .footer-widget h4 {
    display: inline-block;
    line-height: 25px;
    font-size: 13px;
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .footer .footer-widget ul.links-wrapper {
    display: none;
  }
}
.footer .footer-widget ul.links-wrapper li {
  line-height: 30px;
}
@media only screen and (max-width: 991px) {
  .footer .footer-widget ul.links-wrapper li {
    font-size: 13px;
    color: #555;
    font-weight: 100;
    line-height: 22px;
  }
}
.footer .footer-widget ul.links-wrapper li a {
  font-size: 13px;
  /*
  color: #323232;
  font-weight: 300;
  letter-spacing: 1px;
  */
}
.footer .block-title {
  border-bottom: 0;
  padding: 3px 0;
}
.footer .block-title strong {
  font-weight: normal;
}
.footer .block-title,
.footer address {
  color: #000;
}
.footer .links li {
  word-break: break-all;
  line-height: 1.4;
  padding: 4px 0;
}
.footer .links a {
  color: white;
  width: auto;
}
@media only screen and (max-width: 991px) {
  .footer .links a {
    width: 100%;
  }
}
.footer .links a:hover {
  color: #b1b1b1;
}
.footer .links p {
  color: white;
  margin: 0px;
  display: inline-block;
  width: 100%;
  text-align: left;
  margin-top: 5px;
  padding-bottom: 4px;
}
.footer .block-subscribe {
  float: right;
  width: 320px;
  margin-bottom: 0px;
}
.footer .links,
.footer .block-subscribe {
  text-transform: uppercase;
  font-size: 12px;
}
.footer .links.social-media em {
  background-repeat: no-repeat;
  font-size: 12px;
  color: #fff;
  vertical-align: middle;
  display: inline-block;
  margin-right: 0px;
  width: 16px;
}
.footer .block-subscribe .input-box {
  float: left;
  width: 65.625%;
  padding-top: 0;
}
.footer .block-subscribe .input-text {
  width: 100%;
  border-right: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.footer .block-subscribe .block-content {
  padding-top: 7px;
}
.footer .block-subscribe .block-content:after {
  content: '';
  display: table;
  clear: both;
}
.footer .block-subscribe .actions {
  float: left;
  width: 34.375%;
  margin: 0;
  display: none;
}
.footer .block-subscribe .actions .button {
  height: 30px;
  line-height: 17px;
  float: left;
}
.footer address {
  border-top: 1px solid #949494;
  text-align: center;
  width: 100%;
  font-size: 11px;
  margin-top: 0px;
  padding: 0px 0;
}
.footer .sub-footer {
  display: inline-block;
  margin-top: 45px;
  width: 100%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .footer .sub-footer {
    margin: 0;
    float: left;
  }
}
.footer .sub-footer h4 {
  display: inline-block;
  margin: 0 6px;
  color: #00035B;
  font-size: 13px;
  font-weight: 800;
  line-height: 24px;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .footer .sub-footer h4 {
    font-size: 13px;
    margin: 0 !important;
    line-height: 30px;
    letter-spacing: 0;
  }
}
.footer .medios-pago .title {
  display: inline-block;
  vertical-align: top;
}
.footer .medios-pago .images {
  display: inline-block;
  vertical-align: top;
}
.footer .medios-pago .images li {
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  .footer .medios-pago {
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
  }
  .footer .medios-pago .images {
    vertical-align: bottom;
    margin-left: 10px;
  }
}
.footer .sitio-seguro {
  text-align: center;
}
.footer .sitio-seguro em.icon-lock {
  font-size: 20px;
  color: #223179;
  margin-left: -6px;
}
.footer .sitio-seguro img {
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 991px) {
  .footer .sitio-seguro img {
    max-width: 30px;
  }
}
.footer .sitio-seguro h4 {
  display: inline-block;
  margin: 0 6px;
}
@media only screen and (max-width: 991px) {
  .footer .sitio-seguro {
    text-align: left;
    display: inline-block;
    float: left;
    width: 100%;
    padding: 3px 0;
    border-bottom: 1px solid #ccc;
  }
  .footer .sitio-seguro img {
    float: right;
    margin: 0 !important;
    vertical-align: bottom;
  }
}
.footer .social-media {
  text-align: center;
}
.footer .social-media .block-title {
  border: none;
  display: inline-block;
  padding-left: 20px;
}
.footer .social-media ul {
  display: inline-block;
}
.footer .social-media li {
  display: inline-block;
  background-color: #26327a;
  padding: 7px 9px;
  line-height: 18px;
  width: 33px;
  border-radius: 100%;
  height: 33px;
}
.footer .social-media li:hover {
  transform: scale(1.1);
}
@media only screen and (max-width: 991px) {
  .footer .social-media {
    padding: 17px 0 5px;
    float: left;
    clear: none;
  }
  .footer .social-media ul {
    float: right;
  }
  .footer .social-media ul li {
    margin: 0 5px;
  }
  .footer .social-media .block-title {
    padding: 0;
    float: left;
  }
}

/* ============================================ *
 * Newsletter.
 * ============================================ */
div#newsletter {
  background: #00035B;
  border-bottom: 1px solid #cccccc78;
}
@media only screen and (max-width: 991px) {
  div#newsletter {
    background: #F06000;
    margin-top: 0px;
    border: none;
  }
}
div#newsletter .block-subscribe {
  float: left;
  width: 100%;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe {
    margin: 20px 0 90px 0;
  }
  div#newsletter .block-subscribe form.container {
    padding: 0 15px !important;
  }
}
div#newsletter .block-subscribe .block-content {
  float: left;
  display: flex;
  padding: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content {
    display: inline-block;
  }
}
div#newsletter .block-subscribe .block-content .form-subscribe-header {
  float: left;
  width: 84%;
  text-align: right;
  margin: 0;
  padding: 20px 0px;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .form-subscribe-header {
    float: left;
    width: 100%;
    display: inline-block;
    text-align: center;
  }
}
div#newsletter .block-subscribe .block-content .form-subscribe-header label {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: normal;
  text-align: left;
  color: white;
  line-height: 20px;
  max-width: 80%;
  float: left;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .form-subscribe-header label {
    font-size: 16px;
    float: left;
    text-align: center;
    font-weight: 400;
    line-height: 18px;
    max-width: 100%;
    width: 100%;
    font-family: "Ubuntu600S", sans-serif;
  }
}
@media only screen and (max-width: 359px) {
  div#newsletter .block-subscribe .block-content .form-subscribe-header label {
    font-size: 13px;
  }
}
div#newsletter .block-subscribe .block-content .certificaciones {
  width: 100%;
  display: block;
  margin-top: 20px;
}
div#newsletter .block-subscribe .block-content .certificaciones img {
  display: inline-block;
  padding: 0 5px;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .certificaciones {
    padding: 12px 0;
    margin-top: 0;
  }
}
div#newsletter .block-subscribe .block-content .inputs-wrapper {
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 35px;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .inputs-wrapper {
    width: 100%;
    text-align: center;
    padding: 0;
  }
}
div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box-container {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: left;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box-container {
    justify-content: left !important;
  }
}
div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box-container div#advice-g-recaptcha-response-g-recaptcha-response {
  position: inherit !important;
  text-align: left;
  color: white !important;
  font-size: 13px !important;
  line-height: 14px;
  margin-top: 2px;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box-container div#advice-g-recaptcha-response-g-recaptcha-response {
    color: red !important;
    margin-top: 30px;
  }
}
div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box-container .g-recaptcha {
  position: absolute;
  right: -101px;
  top: -20px;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box-container .g-recaptcha {
    right: 0;
    top: 60px;
    left: 0px;
    bottom: 0;
  }
}
@media only screen and (max-width: 479px) {
  div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box-container {
    margin-top: 5px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box {
  float: left;
  width: 100%;
  position: relative;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box {
    width: 100%;
    margin: 0 auto;
    float: none;
    margin-bottom: 10px;
  }
}
div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box h6 {
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  line-height: 18px;
  letter-spacing: 0.16px;
  width: 100%;
  margin-top: 15px;
  text-transform: none;
  color: #4a4a4a;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box h6 {
    display: none;
  }
}
div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box label {
  display: block;
  width: 100%;
  color: #4a4a4a;
  font-size: 26px;
  line-height: 18px;
  text-align: left;
  letter-spacing: 0.17px;
  font-weight: 700;
  text-transform: none;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box label {
    font-size: 11px;
    line-height: 30px;
  }
}
div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box input[type="date"] {
  padding: 10px;
  border-radius: 2px;
  font-size: 13px;
  color: #a5a5a5;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box input[type="date"] {
    width: 100%;
    height: 40px;
    min-width: 96%;
    font-size: 16px;
  }
}
div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box input {
  width: 60%;
  float: left;
  font-size: 12px;
  border: none;
  padding: 4px 10px;
  height: auto;
  color: #787575;
  font-weight: 300;
  letter-spacing: -0.05px;
  border-radius: 0;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box input {
    max-width: 100%;
    text-transform: none;
    width: 100%;
    padding: 8px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
  div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box input::placeholder {
    font-size: 12px;
  }
}
div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box .validation-advice {
  position: absolute;
  bottom: -28px;
  font-size: 12px;
  color: white;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box .validation-advice {
    bottom: -152px !important;
    font-size: 13px;
    font-weight: 500;
    color: red;
    background: #ff9797;
    text-align: left;
    max-width: 300px;
    border-radius: 5px;
    padding-bottom: 10px;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 359px) {
  div#newsletter .block-subscribe .block-content .inputs-wrapper .input-box .validation-advice {
    bottom: -149px !important;
    max-width: 288px !important;
  }
}
div#newsletter .block-subscribe .block-content .inputs-wrapper .actions {
  float: left;
  margin: 0;
  width: 9%;
  display: flex;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .inputs-wrapper .actions {
    width: auto;
  }
}
div#newsletter .block-subscribe .block-content .inputs-wrapper .actions .button {
  padding: 0px 13px;
  line-height: 36px;
  font-size: 14px;
  font-weight: 600;
  background-color: #cccccc;
  border-radius: 0px;
}
div#newsletter .block-subscribe .block-content .inputs-wrapper .actions .button i.fa.fa-envelope-o {
  color: #043980;
  font-weight: 600;
}
div#newsletter .block-subscribe .block-content .inputs-wrapper .actions .button:active {
  border: none;
}
@media only screen and (max-width: 991px) {
  div#newsletter .block-subscribe .block-content .inputs-wrapper .actions .button {
    padding: 0 18px;
    background: #00035B !important;
    width: 100%;
    border-top-right-radius: 3px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 3px;
    position: relative;
    left: -2px;
  }
  div#newsletter .block-subscribe .block-content .inputs-wrapper .actions .button i.fa.fa-envelope-o {
    font-weight: 400;
    font-size: 30px;
    margin-top: 8px;
    color: #f0f0f0;
  }
  div#newsletter .block-subscribe .block-content .inputs-wrapper .actions .button:active {
    border: none;
  }
}

/* ============================================ *
 * Bottom footer.
 * ============================================ */
.bottom-footer {
  background-color: white;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 33px;
  width: 100%;
  float: left;
  display: none !important;
}
.bottom-footer address {
  color: #4a4a4a;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  padding-top: 8px;
  text-transform: none;
}
@media only screen and (max-width: 991px) {
  .bottom-footer address {
    line-height: 14px;
    display: none;
  }
}
.bottom-footer .col-xs-6.logo-brand img {
  float: left;
  padding-top: 3px;
  max-width: 70px;
}
@media only screen and (max-width: 991px) {
  .bottom-footer .col-xs-6.logo-brand {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .bottom-footer {
    height: 33px;
    background-color: #00a6e2;
  }
}

/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */
/* -------------------------------------------- *
 * Product List General
 */
.category-title h1, body.catalogsearch-result-index .page-title h1 {
  border-bottom: 1px solid #eee;
  padding: 18px 0 11px;
  font-size: 18px;
}
@media only screen and (max-width: 991px) {
  .category-title h1, body.catalogsearch-result-index .page-title h1 {
    font-size: 16px;
  }
}

.catalogsearch-result-index .category-products {
  border-bottom: 0 !important;
}
.catalogsearch-result-index .block.block-layered-nav.amshopby-filters-left.block-layered-nav.amshopby-filters-left--no-filters {
  border-right: 1px solid #eee;
}
.catalogsearch-result-index .page-title {
  width: 100%;
  float: right;
}
@media only screen and (max-width: 991px) {
  .catalogsearch-result-index .page-title {
    width: 100%;
    border-left: none;
  }
}
.catalogsearch-result-index .page-title h1 {
  text-align: center;
  color: #898989;
  margin: 0;
}
.catalogsearch-result-index p.note-msg {
  text-align: center;
}

.products-list .action .button,
.products-grid .actions .button {
  white-space: normal;
}

/* -------------------------------------------- *
 * Product Name
 */
h2.product-name,
h3.product-name,
h4.product-name,
h5.product-name,
p.product-name {
  margin: 0;
  margin-bottom: 0.5em;
  color: #00035B;
  font-size: 21px;
  font-weight: 400;
  text-transform: uppercase;
  font-style: normal;
  line-height: 36px;
  text-rendering: optimizeLegibility;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
}
h2.product-name a,
h3.product-name a,
h4.product-name a,
h5.product-name a,
p.product-name a {
  color: #4a4a4a;
}
h2.product-name a:hover,
h3.product-name a:hover,
h4.product-name a:hover,
h5.product-name a:hover,
p.product-name a:hover {
  text-decoration: none;
}

h2.product-name a {
  color: #646464;
  font-size: 16px;
}
h2.product-name a:hover {
  opacity: 0.8;
}

.products-grid .product-name,
.products-list .product-name {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) {
  .products-grid .product-name,
  .products-list .product-name {
    min-height: auto;
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  .products-grid .product-name,
  .products-list .product-name {
    min-height: auto;
    padding: 0 8px;
    padding-left: 0;
  }
}
.products-grid .product-name p,
.products-list .product-name p {
  text-transform: lowercase;
}
.products-grid .product-name p:first-letter,
.products-list .product-name p:first-letter {
  text-transform: uppercase;
}
.products-grid .product-name a,
.products-list .product-name a {
  font-weight: 500;
  color: #2f2f3e;
  font-size: 15px;
}

/* ============================================ *
 * Product Grid
 * ============================================ */
.products-grid {
  position: relative;
  float: left;
  width: 100%;
  margin: 10px 0 32px 0;
  padding: 0;
}
.products-grid .minimal-price .price {
  color: #00035B;
  font-size: 24px;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .products-grid {
    padding: 14px;
  }
}

.products-grid:after {
  content: '';
  display: table;
  clear: both;
}

.products-grid > li {
  position: relative;
  text-align: center;
}
.products-grid > li:after {
  content: '';
  display: table;
  clear: both;
}

.products-grid .product-image {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
}
.products-grid .product-image:hover > .wishilist-quickview {
  display: block !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 99;
  height: 40px;
}
.products-grid .product-image .wishilist-quickview #quickview {
  position: absolute;
  bottom: 0;
  right: 0;
  text-indent: -999999px;
  height: 75px;
  width: 75px;
  background-image: url(../images/quickshop.png);
}
.products-grid .product-image .wishilist-quickview #wishlist {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 16px;
}
.products-grid .product-image .wishilist-quickview #wishlist:hover {
  color: #f3ccca;
}

.products-grid .product-image img {
  width: 100%;
  height: auto;
  background-color: #f4f4f4;
}
.products-grid .product-image img:hidden {
  display: none;
}

.ias-spinner {
  width: 100%;
  float: left;
  margin-top: -29px;
}

.ias-trigger {
  width: 100%;
  float: left;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 9px;
  font-weight: 500;
}
.ias-trigger.ias-trigger-prev {
  margin-top: -26px;
}

.widget-new-products .products-grid .product-image {
  width: 100%;
  margin-bottom: 15px;
  margin-left: 0;
  position: relative;
}

.destacados .widget-products ul div.owl-item {
  padding: 42px 0;
}
.destacados .widget-products ul div.owl-item .item {
  width: 99%;
}
@media only screen and (max-width: 991px) {
  .destacados .widget-products ul div.owl-item .item {
    width: 100%;
  }
}

.products-grid .product-info {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: left;
  flex-wrap: wrap;
}
.products-grid .product-info .info-units {
  display: flex;
  justify-content: space-between;
  line-height: 2;
}
.products-grid .product-info .info-units p {
  color: #a2a1a0;
  font-size: 16px;
  font-weight: 300;
  font-style: normal !important;
}
.products-grid .product-info .info-units p span {
  font-weight: 700;
}
.products-grid .product-info span.etiqueta {
  float: left;
  width: 100%;
  text-align: left;
}
.products-grid .product-info span.etiqueta.stock {
  font-size: 12px;
  color: #7ed321;
}
.products-grid .product-info span.etiqueta.stock:before {
  content: "\f00c";
  font-family: FontAwesome;
  color: #7ed321;
  margin-right: 6px;
  font-size: 16px;
}
.products-grid .product-info .swatches-toggle {
  cursor: pointer;
  font-size: 10px;
  color: #646464;
  letter-spacing: 1px;
}

.products-grid .actions {
  padding-top: 15px;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.products-grid .ratings .rating-box {
  display: block;
}

.products-grid .ratings .amount {
  display: none;
}

.products-grid .prodprice {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 5px;
  padding-left: 3px;
  min-height: 46px;
  flex-wrap: wrap;
}
.products-grid .prodprice p {
  color: #00035B;
  margin: 0 10px 0 0;
  display: flex;
  align-items: center;
}
.products-grid .prodprice .text {
  line-height: 1;
  color: #00035B;
  font-size: 14px;
  font-weight: 400;
  margin-right: 12px;
}

.products-grid .price-box {
  color: #646464;
  font-size: 10px;
  font-weight: 700;
  float: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  line-height: 1;
  margin-top: 0;
  flex-wrap: wrap;
}
.products-grid .price-box .old-price .price {
  color: #38373A;
  font-size: 1em !important;
}
.products-grid .price-box .special-price .price {
  color: #00035B;
  font-size: 1.5em !important;
}
.products-grid .price-box .regular-price .price {
  color: #00035B;
  font-size: 2em;
}

.products-grid .ahorro {
  color: #f4bd67 !important;
  font-family: "Jost", sans-serif !important;
  font-size: 18px !important;
  margin-bottom: 0 !important;
  line-height: 1.8 !important;
  font-style: normal !important;
}
.products-grid .ahorro span {
  font-weight: 900;
}

.products-grid .add-to-links {
  margin-bottom: 0;
}

/* Config: Two columns + flexible gutter */
.products-grid > li {
  float: left;
  width: 49.54545%;
  margin-right: 0.90909%;
}

.products-grid > li:nth-child(odd) {
  clear: left;
}

.products-grid > li:nth-child(even) {
  margin-right: 0;
}

.products-grid .product-image {
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .products-grid .product-image {
    width: 90%;
    left: 0;
  }
}
.products-grid .product-image:before, .products-grid .product-image:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.products-grid .product-image:before {
  opacity: 0.8;
  z-index: 2;
}
.products-grid .product-image:after {
  background-image: url("../images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.products-grid .product-image.loading {
  position: relative;
}
.products-grid .product-image.loading:before, .products-grid .product-image.loading:after {
  display: block;
}

/* Config: Three columns + flexible gutter */
.products-grid {
  /* Undo two-column config */
  /* Set three-column config */
}
.products-grid > li:nth-child(odd) {
  clear: none;
}
.products-grid > li:nth-child(even) {
  margin-right: 1.11111%;
}
.products-grid > li {
  width: 48%;
  margin-right: 1.11111%;
}
.products-grid > li:nth-child(4n+1) {
  clear: left;
}
.products-grid > li:nth-child(4n) {
  margin-right: 0;
}

/* Config: Columns + flexible gutter */
/* Undo three-column config */
.products-grid--max-4-col > li:nth-child(odd) {
  clear: none;
}

.products-grid--max-4-col > li:nth-child(3n+1) {
  clear: none;
}

.products-grid--max-4-col > li:nth-child(even),
.products-grid--max-4-col > li:nth-child(3n) {
  margin-right: 1.04167%;
}

/* Set column config */
.products-grid--max-4-col > li {
  margin-right: 1.04167%;
}

.products-grid--max-4-col > li {
  width: 24.21875%;
  margin-right: 1.04167%;
}

.products-grid--max-4-col > li:nth-child(4n+1) {
  clear: left;
}

.products-grid--max-4-col > li:nth-child(4n) {
  margin-right: 0;
}

/* Config: Columns + flexible gutter */
/* Undo three-column config */
.products-grid--max-5-col > li:nth-child(odd) {
  clear: none;
}

.products-grid--max-5-col > li:nth-child(3n+1) {
  clear: none;
}

.products-grid--max-5-col > li:nth-child(even),
.products-grid--max-5-col > li:nth-child(3n) {
  margin-right: 1.04167%;
}

/* Set column config */
.products-grid--max-5-col > li {
  margin-right: 1.04167%;
}

.products-grid--max-5-col > li {
  width: 19.16667%;
  margin-right: 1.04167%;
}

.products-grid--max-5-col > li:nth-child(5n+1) {
  clear: left;
}

.products-grid--max-5-col > li:nth-child(5n) {
  margin-right: 0;
}

/* Config: Columns + flexible gutter */
/* Undo three-column config */
.products-grid--max-6-col > li:nth-child(odd) {
  clear: none;
}

.products-grid--max-6-col > li:nth-child(3n+1) {
  clear: none;
}

.products-grid--max-6-col > li:nth-child(even),
.products-grid--max-6-col > li:nth-child(3n) {
  margin-right: 1.04167%;
}

/* Set column config */
.products-grid--max-6-col > li {
  margin-right: 1.04167%;
}

.products-grid--max-6-col > li {
  width: 15.79861%;
  margin-right: 1.04167%;
}

.products-grid--max-6-col > li:nth-child(6n+1) {
  clear: left;
}

.products-grid--max-6-col > li:nth-child(6n) {
  margin-right: 0;
}

/* ============================================ *
 * Product List
 * ============================================ */
.products-list {
  margin-top: 20px;
  margin-bottom: 20px;
  float: left;
  width: 100%;
}
.products-list > li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EDEDED;
  display: flex;
  align-items: center;
}
.products-list > li:after {
  content: '';
  display: table;
  clear: both;
}
.products-list > li .product-image {
  float: left;
  width: 13%;
  margin-left: 15px;
}
@media only screen and (max-width: 991px) {
  .products-list > li .product-image {
    width: 40%;
    margin-left: 0;
  }
}
.products-list > li .product-image img {
  width: 100%;
  max-width: 100%;
}
.products-list > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.products-list .product-shop {
  width: 80%;
}
.products-list .product-shop .f-fix {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .products-list .product-shop .f-fix {
    display: block;
  }
}
.products-list .product-shop .f-fix .product-primary a {
  color: #2f2f3e;
  font-size: 15px;
  font-weight: bold;
}
.products-list .product-shop .f-fix .product-secondary .add-to-links {
  margin: 0;
}
.products-list .product-shop .f-fix .product-secondary .add-to-links i.fa.fa-heart {
  font-size: 20px;
  color: #d3dae0;
}
.products-list .product-shop .f-fix .product-secondary .add-to-links i.fa.fa-heart:hover {
  color: #f35555;
}
@media only screen and (max-width: 991px) {
  .products-list .product-shop .f-fix .product-secondary .add-to-links {
    display: none;
  }
}

.products-list .product-shop {
  float: right;
  width: 84%;
  padding-left: 9px;
}
@media only screen and (max-width: 991px) {
  .products-list .product-shop {
    width: 100%;
    padding-left: 5px;
  }
}
.products-list .product-shop .product-name {
  text-align: left;
  color: #646464;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.2px;
}
.products-list .product-shop .ratings {
  margin: 0;
}
.products-list .product-shop .ratings .rating-box,
.products-list .product-shop .ratings .rating-links {
  float: left;
  margin-right: 7px;
}
.products-list .product-shop .ratings .rating-links {
  margin-top: 4px;
}
.products-list .product-shop .price-box {
  margin-top: 0;
  margin: 0;
  padding-right: 19px;
  float: left;
  display: flex;
  width: 100%;
  align-items: center;
}
.products-list .product-shop .price-box p {
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  .products-list .product-shop .price-box {
    padding-right: 0px;
  }
}
.products-list .product-shop .price-box .price {
  font-size: 20px;
  color: #00035B;
}
.products-list .product-shop .desc {
  width: 30%;
}
.products-list .product-shop .desc.std div a {
  background-color: #F06000;
  display: flex;
  padding: 6px 17px;
  float: right;
  width: 67px;
  justify-content: center;
  color: white;
}
@media only screen and (max-width: 991px) {
  .products-list .product-shop .desc.std div a {
    opacity: 0;
    display: none;
  }
}
.products-list .product-shop .desc.std div a:after {
  content: '\f067';
  font-family: fontAwesome;
  color: #fff;
  margin-left: 7px;
}
.products-list .product-shop .desc.std div a:hover {
  opacity: 0.8;
}
.products-list .product-shop .desc.std div a a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}
.products-list .product-shop .product-primary {
  float: left;
  overflow: hidden;
  width: 50%;
  padding-left: 20px;
}
@media only screen and (max-width: 991px) {
  .products-list .product-shop .product-primary {
    padding-left: 0;
  }
}
.products-list .product-shop .product-primary p {
  color: #2f2f3e;
  font-size: 11px;
  font-weight: 300;
  text-transform: lowercase;
}
.products-list .product-shop .product-primary p:first-letter {
  text-transform: uppercase;
}
.products-list .product-shop .product-primary p.marca {
  text-transform: uppercase;
}
.products-list .product-shop .container-secondary {
  display: flex;
  width: 57%;
  padding-left: 19px;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .products-list .product-shop .container-secondary {
    display: block;
    width: 100%;
    padding-left: 0;
  }
}
.products-list .product-shop .container-secondary .container-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
}
@media only screen and (max-width: 991px) {
  .products-list .product-shop .container-secondary .container-end {
    display: block;
    width: 100%;
  }
}
.products-list .product-shop .container-secondary .product-secondary {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .products-list .product-shop .container-secondary .product-secondary {
    display: block;
  }
}
.products-list .product-shop .container-secondary .product-secondary .price-box .old-price .price {
  font-size: 18px;
}
.products-list .product-shop .container-secondary .product-secondary .action {
  float: right;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .products-list .product-shop .container-secondary .product-secondary .action {
    margin-top: 10px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
  }
  .products-list .product-shop .container-secondary .product-secondary .action a {
    color: #fff;
    font-weight: 600;
    line-height: 35px;
  }
}
.products-list .product-shop .container-secondary .product-secondary .action.availability.out-of-stock {
  padding: 0 25px;
}
@media only screen and (max-width: 991px) {
  .products-list .product-shop .container-secondary .product-secondary .action.availability.out-of-stock {
    margin-bottom: 13px;
    border-radius: 5px;
  }
}
.products-list .product-shop .container-secondary .product-secondary .regular-price p {
  margin-right: 7px;
  display: flex;
  align-items: center;
}
.products-list .product-shop .container-secondary .product-secondary .button {
  background-color: transparent;
  width: 100%;
  color: #43507b;
  padding: 0;
}
.products-list .product-shop .container-secondary .product-secondary .button:hover {
  color: #43507b;
}
@media only screen and (max-width: 991px) {
  .products-list .product-shop .container-secondary .product-secondary .button {
    background-color: #F06000;
  }
}
@media only screen and (max-width: 991px) {
  .products-list .product-shop .container-secondary .product-secondary .button .btn-img {
    display: none;
  }
}
.products-list .product-shop .container-secondary .product-secondary .button span {
  display: none;
}
@media only screen and (max-width: 991px) {
  .products-list .product-shop .container-secondary .product-secondary .button span {
    display: block;
  }
}

.products-list .product-name a {
  font-size: 15px;
}

.products-list .product-shop .product-primary,
.products-list .product-shop .desc {
  float: left;
  width: 40%;
  padding-right: 20px;
}
.products-list .product-shop .product-secondary {
  width: 40%;
}

@media only screen and (max-width: 991px) {
  .products-list .product-shop .container-end .product-secondary {
    width: 40% !important;
  }
}

/* ============================================ *
 * Mini Product List
 * ============================================ */
.mini-products-list .product-image {
  float: left;
  min-width: 50px;
}
.mini-products-list .product-details {
  margin-left: 60px;
}
.mini-products-list .product-details .product-name {
  padding-top: 10px;
}
.mini-products-list li {
  margin-bottom: 10px;
  clear: both;
}
.mini-products-list li:after {
  content: '';
  display: table;
  clear: both;
}

.mini-products-images-list:after {
  content: '';
  display: table;
  clear: both;
}
.mini-products-images-list li.item {
  float: left;
  width: 50%;
  margin: 0;
  padding: 0 5px 10px 0;
}
.mini-products-images-list li.item:nth-child(even) {
  padding-right: 0;
  padding-left: 5px;
}
.mini-products-images-list li.item .product-image {
  display: block;
}
.mini-products-images-list li.item .product-image img {
  width: 100%;
  max-width: 100%;
}

.cms-index-index.cms-home .product-grid .item {
  width: auto;
}

@media only screen and (max-width: 991px) {
  .products-list .item {
    width: 100%;
    position: relative;
    margin: 0 auto;
    transition: 0.5s;
    float: left;
    background-color: white;
    padding: 0px;
    cursor: pointer;
    margin-bottom: 24px;
    float: left;
  }
}

.products-grid .item {
  margin: 0 auto;
  transition: 0.5s;
  float: left;
  background-color: white;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0px 1px 6px 1px #ccc;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 14px;
  float: left;
  width: 22.3%;
}
@media only screen and (max-width: 991px) {
  .products-grid .item {
    width: 100%;
    margin: 0;
  }
}
.products-grid .item .codigo {
  text-transform: uppercase;
  color: #F06000;
  font-size: 11px;
  padding-left: 3px;
  font-weight: 500;
  width: 90%;
  text-align: left;
}
.products-grid .item .product-info .product-name {
  min-height: 60px;
  text-align: left;
  font-size: 16px;
  text-transform: none;
  overflow: hidden;
  margin-bottom: 15px !important;
  line-height: 20px;
  color: #4a4a4a;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .products-grid .item .product-info .product-name {
    min-height: 40px;
    margin-bottom: 0;
  }
}
.products-grid .item .product-info .buy-button {
  float: left;
  width: 100%;
}
.products-grid .item .product-info .buy-button a.button {
  transition: 0.5s;
  padding: 2.5px 0px;
  width: 100%;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost500M", sans-serif;
  text-transform: uppercase;
}
.products-grid .item .product-info .buy-button p.availability.out-of-stock {
  line-height: 35px;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Jost500M", sans-serif;
  font-size: 14px;
  cursor: auto;
}
.products-grid .item .product-info .rating-box {
  transition: all 0.5s;
  opacity: 1;
  line-height: 20px;
  margin: 5px 0 0 0;
  padding: 0;
  width: 100%;
  display: inline-block;
  height: auto;
  float: left;
  overflow: auto;
  text-indent: 0;
}
.products-grid .item .product-info .rating-box i {
  float: left;
  font-size: 16px;
  color: #807e80;
}
.products-grid .item .product-info .stock {
  width: 100%;
  float: left;
}
.products-grid .item .product-info .stock p {
  margin: 0;
  float: left;
  line-height: 25px;
}
.products-grid .item .product-info .edad {
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
}
.products-grid .item:hover {
  box-shadow: 0px 1px 6px 1px #9e9e9e;
}
@media only screen and (min-width: 992px) {
  .products-grid .item:hover .rating-box, .products-grid .item:hover .stock, .products-grid .item:hover .edad {
    line-height: 0px;
    opacity: 0;
    margin: 0;
    display: none;
  }
}
.products-grid .item .desc.std {
  background-color: #00035B;
  padding: 9px 2px;
  width: 43%;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  margin-left: 3px;
  height: 35px;
  font-family: "Jost500M", sans-serif;
}
.products-grid .item .desc.std:hover {
  opacity: 0.8;
}
.products-grid .item .desc.std a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}
.products-grid .item .desc.std a:after {
  content: '\f067';
  font-family: fontAwesome;
  color: #fff;
  margin-left: 7px;
}
.products-grid .pl-bottom-left {
  bottom: -5px;
}

/* ============================================ *
 * Catalog - List
 * ============================================ */
.category-image {
  display: block;
  position: relative;
  margin-bottom: 0;
  margin-top: 2%;
}
.category-image img {
  width: auto;
  width: 100%;
  margin: 0 auto;
}
.category-image img.hidden {
  display: none;
}
.category-image .category-name {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 40%;
  letter-spacing: 0.15em;
}

@media only screen and (max-width: 991px) {
  .catalogsearch-advanced-result .col-right.sidebar {
    float: left;
    width: 100%;
    margin-top: 10px;
  }
  .catalogsearch-advanced-result .col-right.sidebar .block-title span {
    font-size: 15px;
  }
  .catalogsearch-advanced-result .col-right.sidebar .block-content {
    display: block;
  }
  .catalogsearch-advanced-result .col-right.sidebar .block-content .product-name {
    font-size: 13px;
    text-transform: none;
  }
}
/* ============================================ *
 * Layered Navigation
 * ============================================ */
.block-layered-nav .block-subtitle--filter {
  display: none;
  cursor: pointer;
}

.block-layered-nav .block-content .toggle-tabs {
  display: none;
}
.block-layered-nav .block-content > dl > dt {
  display: block;
}

.block-layered-nav dl dd {
  margin-bottom: 10px;
  margin-top: 10px;
}
@media only screen and (max-width: 991px) {
  .block-layered-nav dl dd.list dd {
    display: none;
  }
}
.block-layered-nav dl dd ol > li > span, .block-layered-nav dl dd ol > li > a {
  padding: 5px 15px;
  display: block;
}
.block-layered-nav dl dd ol > li > a .count {
  color: #646464;
}

.block-layered-nav .block-content > dl > dt {
  padding-left: 10px;
}
.block-layered-nav .block-content > dl > dt:after {
  display: none;
}

.block-layered-nav .currently .block-subtitle {
  display: block;
  margin: 0;
  margin-bottom: 10px;
  color: #606060;
  letter-spacing: 2px;
  font-size: 18px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
.block-layered-nav .currently ol {
  padding-left: 10px;
  margin-bottom: 10px;
}
.block-layered-nav .currently ol li {
  margin-bottom: 10px;
}
.block-layered-nav .currently ol li .label {
  font-weight: bold;
}
.block-layered-nav .currently ol li:after {
  content: '';
  display: table;
  clear: both;
}

.block-layered-nav .actions {
  text-align: right;
  margin-bottom: 7px;
}

.catalog-category-view .row .category-image {
  padding: 0;
}
.catalog-category-view .col-main {
  background: none !important;
}
.catalog-category-view div#slcontador {
  background: no-repeat top center;
  background-image: url(../images/Contador_Mobile.png);
  background-size: contain;
  /* height: 140.3vw; */
  position: relative;
  border-radius: 10px;
}
@media (min-width: 600px) {
  .catalog-category-view div#slcontador {
    background-image: url(../images/Contador_Web.png);
    max-width: 1200px;
    max-height: 322px;
    /* height: 26.1vw; */
    position: relative;
    margin: 0 auto;
  }
}
.catalog-category-view div#slcontador > div {
  color: #000;
  position: absolute;
  top: 27vw;
  width: 100%;
}
@media (min-width: 600px) {
  .catalog-category-view div#slcontador > div {
    top: 8.2vw;
  }
}
@media (min-width: 1200px) {
  .catalog-category-view div#slcontador > div {
    top: 108px;
  }
}
.catalog-category-view div#slcontador .contador_container_legend,
.catalog-category-view div#slcontador .contador_container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 600px) {
  .catalog-category-view div#slcontador .contador_container_legend,
  .catalog-category-view div#slcontador .contador_container {
    justify-content: flex-start;
    padding-left: 4.2vw;
  }
}
@media (min-width: 1200px) {
  .catalog-category-view div#slcontador .contador_container_legend,
  .catalog-category-view div#slcontador .contador_container {
    padding-left: 55px;
  }
}
.catalog-category-view div#slcontador .contador_container_legend > div,
.catalog-category-view div#slcontador .contador_container > div {
  width: 20vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 10.4vw;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 600px) {
  .catalog-category-view div#slcontador .contador_container_legend > div,
  .catalog-category-view div#slcontador .contador_container > div {
    font-size: 5.2vw;
    width: 11.1vw;
  }
}
@media (min-width: 1200px) {
  .catalog-category-view div#slcontador .contador_container_legend > div,
  .catalog-category-view div#slcontador .contador_container > div {
    font-size: 62px;
    width: 130px;
  }
}
.catalog-category-view div#slcontador .contador_container {
  margin-top: 10px;
}
.catalog-category-view div#slcontador .contador_container > div:after {
  content: ':';
  position: absolute;
  right: -0.5vw;
}
.catalog-category-view div#slcontador .contador_container > div:last-child:after {
  display: none;
}
@media (max-width: 768px) {
  .catalog-category-view div#slcontador .contador_container {
    margin-top: -20px;
  }
}
.catalog-category-view div#slcontador .contador_container_legend > div {
  font-size: 2.5vw;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 600px) {
  .catalog-category-view div#slcontador .contador_container_legend > div {
    font-size: 1.1vw;
  }
}
@media (min-width: 1200px) {
  .catalog-category-view div#slcontador .contador_container_legend > div {
    font-size: 20px;
  }
}
.catalog-category-view div#slcontador .contador_container_legend {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .catalog-category-view div#slcontador .contador_container_legend {
    margin-top: 10px;
  }
}
.catalog-category-view div#slcontador .contador_container_message {
  padding-left: 45px;
  margin-top: 3%;
}
.catalog-category-view div#slcontador .contador_container_message .contador_message {
  color: #fff;
  background: #000;
  padding: 5px;
  font-weight: 600;
  line-height: 20px;
  font-size: 18px;
  text-transform: uppercase;
  max-width: 550px;
  overflow: hidden;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .catalog-category-view div#slcontador .contador_container_message {
    padding: 0 !important;
  }
  .catalog-category-view div#slcontador .contador_container_message .contador_message {
    font-size: 18px;
    line-height: 19px;
    text-align: center;
  }
}
.catalog-category-view .category-view {
  background: #fff !important;
}

.addtocart-wrapper {
  display: inline-block;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .addtocart-wrapper:hover button.button.btn-cart {
    position: relative;
  }
}
.addtocart-wrapper input.qty {
  position: inherit;
  left: 4px;
  top: 5px;
  width: 40px;
  border-radius: 3px;
}

/* ============================================ *
* Cucardas
* ============================================ */
.products-grid li.item {
  margin-bottom: 21px;
}

.noScroll {
  height: 100%;
  overflow: hidden !important;
  width: 100%;
  position: fixed;
  z-index: -4;
}

.ajax_load {
  float: none;
  display: none !important;
}

/*lazy load settings */
.products-grid .product-image img {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -ms-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.products-grid .product-image img.lazy-loaded {
  width: 100% !important;
  height: auto !important;
}

.lazy-hidden {
  opacity: 0;
}

.lazy-loaded {
  opacity: 1;
}

.products-grid .product-image {
  background: #ffffff url("../images/lazy-loader-logo.gif") no-repeat 50% 50%;
  background-size: 50px;
  opacity: 1;
  border-bottom: 1px solid #d3dae0;
}

.products-grid .price-box .old-price .price {
  font-size: 17px;
}

.catalog-product-view .minimal-price {
  display: flex;
  align-items: center;
}
.catalog-product-view .minimal-price span.price-label {
  font-size: 10px !important;
  font-weight: 100 !important;
  color: #646464 !important;
}

/* ============================================ *
 * Catalog - Product
 * ============================================ */
@media only screen and (max-width: 991px) {
  .view-mode {
    display: none;
  }
}

#product_addtocart_form {
  width: 100%;
}

.catalogsearch-result-index .category-products {
  width: 100%;
  float: right;
}
@media only screen and (max-width: 991px) {
  .catalogsearch-result-index .category-products {
    width: 100%;
    float: left;
  }
}

.category-dia-especial .category-view, .category-productos .category-view {
  width: 100%;
}
.category-dia-especial .category-view .toolbar-top, .category-productos .category-view .toolbar-top {
  display: none;
}

.category-view {
  width: 100%;
  float: right;
  border-left: 1px solid #ededed;
}
@media only screen and (max-width: 991px) {
  .category-view {
    width: 100%;
    float: left;
  }
}

.catalog-product-view .produbox-up-sell .price .old-price {
  display: flex;
  flex-direction: column;
}
.catalog-product-view .price-info.davidd.stockout div#slcontador {
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/Contador_Web.png);
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: 10px;
}
.catalog-product-view .price-info.davidd.stockout div#slcontador > div {
  color: #000;
  position: absolute;
  top: 40px;
  width: 100%;
}
@media (max-width: 768px) {
  .catalog-product-view .price-info.davidd.stockout div#slcontador > div {
    top: 13vw !important;
  }
}
@media (max-width: 321px) {
  .catalog-product-view .price-info.davidd.stockout div#slcontador > div {
    top: 14vw !important;
  }
}
@media screen and (min-width: 1380px) {
  .catalog-product-view .price-info.davidd.stockout div#slcontador > div {
    top: 45px;
  }
}
.catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container_legend,
.catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: 15px;
}
.catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container_legend > div,
.catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container > div {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
  line-height: 1;
  font-size: 24px;
  width: 60px;
}
@media (max-width: 768px) {
  .catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container_legend > div,
  .catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container > div {
    font-size: 4.4vw;
    width: 10vw;
  }
}
@media screen and (min-width: 1380px) {
  .catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container_legend > div,
  .catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container > div {
    width: 54px;
  }
}
@media screen and (min-width: 1380px) {
  .catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container_legend,
  .catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container {
    margin-left: 25px;
  }
}
.catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container {
  margin-top: 10px;
}
.catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container > div:after {
  content: ':';
  position: absolute;
  right: -0.5vw;
}
.catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container > div:last-child:after {
  display: none;
}
@media (max-width: 768px) {
  .catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container {
    margin-top: -20px;
  }
}
.catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container_legend > div {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 768px) {
  .catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container_legend > div {
    font-size: 1vw;
  }
}
.catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container_legend {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container_legend {
    margin-top: 8px;
  }
}
@media screen and (min-width: 1380px) {
  .catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container_legend {
    margin-top: 8px;
  }
}
.catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container_message {
  margin-top: 8%;
  background: #000;
}
.catalog-product-view .price-info.davidd.stockout div#slcontador .contador_container_message .contador_message {
  color: #fff;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  max-width: 100%;
  font-weight: 600;
  padding: 5px;
}
@media (max-width: 768px) {
  .catalog-product-view .price-info.davidd.stockout {
    width: 100% !important;
    padding: 0;
    margin-bottom: 0 !important;
  }
}
.catalog-product-view .add-to-box {
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .add-to-box {
    margin-bottom: 12px;
    align-items: end;
  }
}
.catalog-product-view #mbbxProductBtn {
  height: 35px;
  float: left;
  min-height: auto;
  width: 45%;
  line-height: 35px;
}
.catalog-product-view #mbbxProductBtn img {
  display: none;
}
.catalog-product-view #mbbxProductBtn:hover {
  color: #003480 !important;
  background-color: transparent !important;
}
@media only screen and (max-width: 991px) {
  .catalog-product-view #mbbxProductBtn {
    width: 100%;
  }
}
.catalog-product-view .extra-info, .catalog-product-view .product-name, .catalog-product-view .description, .catalog-product-view .price-info, .catalog-product-view .add-to-cart, .catalog-product-view .codigo, .catalog-product-view .price-box, .catalog-product-view .add-to-cart-wrapper {
  padding: 0 23px;
}
.catalog-product-view .extra-info i.fa-heart {
  font-size: 19px;
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .add-to-cart {
    padding: 0 !important;
  }
}
@media only screen and (min-width: 992px) {
  .catalog-product-view .breadcrumbs {
    padding-left: 0px;
  }
  .catalog-product-view .col1-layout {
    padding-top: 80px;
  }
  .catalog-product-view > .extra-info {
    display: none;
  }
  .catalog-product-view .product-name.mobile {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-product-view {
    background: #ffffff;
  }
  .catalog-product-view .breadcrumbs {
    display: none !important;
  }
  .catalog-product-view .owl-next {
    display: block;
  }
  .catalog-product-view .owl-prev {
    display: block;
    left: -13px !important;
  }
  .catalog-product-view .owl-dots .owl-dot {
    width: 12px;
    background: #c8c8c8;
    height: 12px;
    float: left;
    margin-right: 8px;
  }
  .catalog-product-view .wrapper {
    background-color: #ffffff;
  }
  .catalog-product-view .product-view > .extra-info {
    padding: 0 !important;
  }
  .catalog-product-view .product-view > .extra-info .info-left .availability {
    background-color: transparent;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
  }
  .catalog-product-view .product-view > .extra-info .info-left .availability.out-of-stock {
    color: #a2a0a0;
  }
  .catalog-product-view .product-view > .extra-info .info-left .availability.in-stock {
    color: #F06000;
  }
  .catalog-product-view .product-view .product-name.mobile {
    padding: 0 !important;
  }
  .catalog-product-view .product-view .product-name.mobile .h3 {
    color: #00035b;
    font-weight: 500;
    font-size: 24px;
  }
  .catalog-product-view .product-view .product-img-box {
    border: none;
  }
  .catalog-product-view .product-view .product-img-box .extra-info,
  .catalog-product-view .product-view .product-img-box .product-name {
    display: none;
  }
  .catalog-product-view .product-view .product-img-box .conianer-plan.pdp {
    top: 35px !important;
  }
  .catalog-product-view .product-view .product-essential {
    box-shadow: none;
  }
  .catalog-product-view .product-view .product-essential .product-img-box {
    border: none;
  }
  .catalog-product-view .product-view .product-essential .product-shop {
    display: flex;
    flex-wrap: wrap;
  }
  .catalog-product-view .product-view .product-essential .product-shop .codigo {
    width: 50%;
    font-size: 11px;
    font-weight: 500;
    color: #000;
  }
  .catalog-product-view .product-view .product-essential .product-shop .price-info {
    width: 50% !important;
    margin: 0;
    justify-content: right;
    flex-wrap: wrap;
  }
  .catalog-product-view .product-view .product-essential .product-shop .price-info .pdp {
    padding: 0;
    font-size: 14px;
    color: #F06000;
  }
  .catalog-product-view .product-view .product-essential .product-shop .price-info .price-box .price {
    margin: 0 !important;
    font-size: 24px;
  }
  .catalog-product-view .product-view .product-essential .product-shop .price-info .price-box .special-price .price {
    color: #F06000 !important;
  }
  .catalog-product-view .product-view .product-essential .product-shop .product-pay {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 7px;
    background: #C3D2E8;
  }
}
@media only screen and (max-width: 991px) and (max-width: 991px) {
  .catalog-product-view .product-view .product-essential .product-shop .product-pay {
    background: #eaeae9 !important;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .product-view .product-essential .product-shop .product-pay h5 {
    padding: 15px;
    color: #00035b;
    background: transparent;
  }
  .catalog-product-view .product-view .product-essential .product-shop .product-pay .product-detail {
    padding-top: 0px;
    width: 90%;
  }
  .catalog-product-view .product-view .product-essential .product-shop .product-pay .product-detail .fee {
    width: auto;
    justify-content: space-evenly;
    margin-bottom: 10px;
    border-radius: 7px;
    background-color: #ffffff;
  }
  .catalog-product-view .product-view .product-essential .product-shop .product-pay .product-detail .fee span {
    color: #00035b;
  }
  .catalog-product-view .product-view .product-essential .product-shop .product-pay .product-detail .fee .cucarda-ahora {
    width: 30 !important;
    margin: 0 8px !important;
  }
  .catalog-product-view .product-view .product-essential .product-shop .tabs-mobile {
    width: 100%;
  }
  .catalog-product-view .product-view .product-essential .product-shop .tabs-mobile .tabs-bar {
    display: flex;
    padding: 0 23px;
    margin: 20px 0;
  }
  .catalog-product-view .product-view .product-essential .product-shop .tabs-mobile .description-caract {
    margin-bottom: 0 !important;
  }
  .catalog-product-view .product-view .product-essential .product-shop .tabs-mobile .tab-content {
    display: none;
    margin-bottom: 0 !important;
  }
  .catalog-product-view .product-view .product-essential .product-shop .tabs-mobile .tab-content .title {
    display: none;
  }
  .catalog-product-view .product-view .product-essential .product-shop .tabs-mobile .tab-content p {
    font-size: 16px;
    line-height: 2;
  }
  .catalog-product-view .product-view .product-essential .product-shop .tabs-mobile .active-tab {
    display: block;
  }
  .catalog-product-view .product-view .product-essential .product-shop .tabs-mobile .tab {
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    color: #00035b;
  }
  .catalog-product-view .product-view .product-essential .product-shop .tabs-mobile .tab.tab1 {
    width: 45%;
    border-bottom: 1px solid #F06000;
    text-align: left;
  }
  .catalog-product-view .product-view .product-essential .product-shop .tabs-mobile .tab.tab2 {
    width: 55%;
    border-bottom: 1px solid #F06000;
    text-align: right;
  }
  .catalog-product-view .product-view .product-essential .product-shop .tabs-mobile .tab.active-tab {
    border-bottom: 3px solid #F06000;
    padding-bottom: 4px;
    margin-bottom: -2px;
  }
  .catalog-product-view .product-view .product-essential .product-shop .add-to-cart-wrapper {
    margin-bottom: 0 !important;
  }
  .catalog-product-view .product-view .product-essential .product-shop .container-btn .cons-planes-diarios {
    text-align: left;
    padding: 0 !important;
    color: #F06000 !important;
  }
  .catalog-product-view .product-view .product-essential .product-shop #mbbxProductBtn {
    padding: 0 !important;
    color: #F06000 !important;
  }
  .catalog-product-view .box-up-sell {
    margin: 0 !important;
  }
  .catalog-product-view .box-up-sell h2 {
    text-align: center;
    color: #00035b;
  }
  .catalog-product-view .box-up-sell .product-details {
    border: none !important;
    min-height: 145px !important;
  }
  .catalog-product-view .box-up-sell .product-details .pricebox {
    justify-content: center !important;
  }
  .catalog-product-view .box-up-sell .product-details .product-name {
    order: 3;
    padding-top: 5px !important;
    border-top: 1px solid #C3D2E8;
    min-height: unset !important;
    margin-bottom: 0 !important;
  }
  .catalog-product-view .box-up-sell .product-details .product-name a {
    font-size: 12px;
    color: #00035b !important;
    min-height: unset !important;
    text-align: left;
  }
}
@media only screen and (max-width: 991px) and (max-width: 991px) {
  .catalog-product-view .box-up-sell .product-details .product-name a {
    font-weight: 500;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .box-up-sell .product-details .codigo {
    order: 1;
    width: 80% !important;
    color: #00035b !important;
  }
  .catalog-product-view .box-up-sell .product-details .prodprice {
    order: 4;
    justify-content: center !important;
  }
  .catalog-product-view .box-up-sell .product-details .prodprice .pricebox {
    justify-content: center;
  }
  .catalog-product-view .box-up-sell .product-details .prodprice > p {
    display: none;
  }
  .catalog-product-view .box-up-sell .product-details .prodprice .price {
    color: #F06000 !important;
  }
}
@media only screen and (max-width: 991px) and (max-width: 991px) {
  .catalog-product-view .box-up-sell .product-details .prodprice .price .price-box .regular-price span,
  .catalog-product-view .box-up-sell .product-details .prodprice .price .price-box .special-price span {
    font-size: 16px !important;
  }
  .catalog-product-view .box-up-sell .product-details .prodprice .price .price-box .old-price span {
    font-size: 13px !important;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .box-up-sell .product-details .link-wishlist {
    position: initial !important;
    background: transparent !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    width: 20% !important;
    height: auto !important;
    order: 2;
  }
  .catalog-product-view .box-up-sell .product-details .link-wishlist .fa-heart {
    display: block !important;
    width: 17px !important;
    height: 17px !important;
  }
  .catalog-product-view .box-up-sell .product-details .link-wishlist .fa-heart:hover {
    color: #F06000 !important;
  }
  .catalog-product-view .box-up-sell .owl-dot.active {
    background: #F06000 !important;
  }
}
.catalog-product-view .product-view .description-caract {
  padding: 0 23px;
}
.catalog-product-view .product-view .description, .catalog-product-view .product-view .description-caract {
  overflow: scroll;
  max-height: 300px;
  overflow: auto;
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .product-view .description, .catalog-product-view .product-view .description-caract {
    overflow: hidden;
    max-height: none;
  }
}
.catalog-product-view .product-view .description .title-description, .catalog-product-view .product-view .description-caract .title-description {
  font-size: 18px;
  font-weight: 500;
  color: #4a4a4a;
}
.catalog-product-view .product-view .description .std, .catalog-product-view .product-view .description-caract .std {
  line-height: 24px;
  padding: 0px;
  color: #3b3b3b;
  font-size: 18px;
  font-family: "Jost400", sans-serif;
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .product-view .description, .catalog-product-view .product-view .description-caract {
    margin-bottom: 40px;
  }
}
.catalog-product-view .product-view .product-shop {
  display: flex;
  flex-direction: column;
  width: 43%;
  padding-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .product-view .product-shop {
    width: 100%;
    flex-direction: row;
  }
}
.catalog-product-view .product-view .product-shop .texto_popup {
  display: none;
}
.catalog-product-view .product-view .product-shop .plan-de-pago {
  float: left;
  width: 100%;
}
.catalog-product-view .product-view .product-shop .plan-de-pago #product-options-wrapper .required {
  display: none;
}
.catalog-product-view .product-view .product-shop .plan-de-pago #product-options-wrapper .required.active-required {
  display: block;
}
.catalog-product-view .product-view .product-shop .product-name .h3 {
  color: #2f2f3e;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  font-family: "Jost400", sans-serif;
  letter-spacing: 0px;
  float: left;
  width: 100%;
}
.catalog-product-view .product-view .product-shop .review {
  float: left;
  width: 100%;
  display: none;
}
.catalog-product-view .product-view .product-shop .share {
  width: 100%;
  float: left;
  display: flex;
  display: none;
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .product-view .product-shop .share {
    padding-left: 20px;
  }
}
.catalog-product-view .product-view .product-shop .price-info .price-left .price-box:first-child {
  margin: 0 23px;
  width: 100%;
  float: left;
}
.catalog-product-view .product-view .product-shop .price-info .price-left .price {
  margin: 0;
}
.catalog-product-view .product-view .product-shop .price-info .special-price .price {
  font-family: "Jost800", sans-serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.8px;
}
.catalog-product-view .col-main #age {
  margin: 10px 0;
}
.catalog-product-view .col-main #age {
  padding: 0;
  width: 100%;
  float: left;
  font-size: 14px;
  letter-spacing: 0.2px;
  font-weight: 300;
  display: flex;
  display: none;
  margin-bottom: 5px;
}
.catalog-product-view .col-main #age:before {
  content: 'Edad:';
  font-weight: 700;
  margin-right: 5px;
}
.catalog-product-view .fancybox-skin {
  padding: 0 !important;
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .fancybox-skin {
    width: 90% !important;
    margin: auto;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .fancybox-opened, .catalog-product-view .fancybox-inner {
    width: 100% !important;
    left: 0 !important;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-product-view #fancy-nutri {
    width: 100% !important;
    margin: auto;
  }
}
.catalog-product-view .table-nutri {
  width: 600px;
}
.catalog-product-view .table-nutri .header-col {
  width: 100%;
  display: flex;
  background-color: #d9d6d6;
  padding: 10px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-top: 15px;
}
.catalog-product-view .table-nutri .header-col .col-1 {
  width: 60%;
}
.catalog-product-view .table-nutri .header-col .col-1 .title {
  color: #4a4a4a;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .table-nutri .header-col .col-1 .title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .table-nutri .header-col .col-1 {
    width: 70%;
    display: flex;
    align-items: center;
  }
}
.catalog-product-view .table-nutri .header-col .col-2 {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .table-nutri .header-col .col-2 {
    width: 15%;
  }
  .catalog-product-view .table-nutri .header-col .col-2 b {
    font-size: 10px;
  }
}
.catalog-product-view .table-nutri .header-col .col-3 {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .table-nutri .header-col .col-3 {
    width: 15%;
  }
  .catalog-product-view .table-nutri .header-col .col-3 b {
    font-size: 10px;
  }
}
.catalog-product-view .table-nutri .cont-col {
  width: 100%;
  display: flex;
  padding: 20px;
}
.catalog-product-view .table-nutri .cont-col .col-1 {
  width: 60%;
  display: flex;
  flex-direction: column;
}
.catalog-product-view .table-nutri .cont-col .col-1 p {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d6d6;
}
.catalog-product-view .table-nutri .cont-col .col-1 p:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .table-nutri .cont-col .col-1 {
    width: 70%;
  }
}
.catalog-product-view .table-nutri .cont-col .col-2 {
  width: 20%;
  display: flex;
  flex-direction: column;
}
.catalog-product-view .table-nutri .cont-col .col-2 p {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d6d6;
}
.catalog-product-view .table-nutri .cont-col .col-2 p:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .table-nutri .cont-col .col-2 {
    width: 15%;
  }
}
.catalog-product-view .table-nutri .cont-col .col-3 {
  width: 20%;
  display: flex;
  flex-direction: column;
}
.catalog-product-view .table-nutri .cont-col .col-3 p {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d6d6;
}
.catalog-product-view .table-nutri .cont-col .col-3 p:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .table-nutri .cont-col .col-3 {
    width: 15%;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-product-view .table-nutri {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .catalog-product-view .zoomWindow {
    top: 20px !important;
    width: 450px !important;
    height: 450px !important;
  }
}
.catalog-product-view .ratings .rating-box {
  display: inline-block;
  float: left;
  margin-right: 10px;
}

@media only screen and (max-width: 991px) {
  .product-view .product-name .h3 {
    color: #4a4a4a;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.3px;
    float: left;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 24px;
  }
  .product-view .old-price .price {
    color: #606060;
    text-decoration: line-through;
    font-weight: 500 !important;
    font-size: 25px;
  }
  .product-view .special-price {
    padding-left: 10px;
    color: #e55151;
  }
  .product-view .special-price .price {
    font-size: 32px;
    color: #00035B;
    font-weight: 900;
  }
  .product-view .regular-price .price {
    font-size: 32px;
    color: #00035B;
    font-weight: 900;
  }
}
.product-view .product-essential {
  padding: 0 !important;
  background-color: white;
  box-shadow: 0px 0px 13px #b5b2b2;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.product-view .product-essential .items-description {
  width: 65%;
  margin: 5px 0;
  margin-bottom: 30px;
  display: inline-block;
}
.product-view .product-essential .items-description .cont {
  display: flex;
  justify-content: space-between;
}
.product-view .product-essential .items-description .cont .item {
  width: 25%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.product-view .product-essential .items-description .cont .item b {
  width: 100%;
  margin-top: 5px;
  text-align: center;
}
.product-view .product-essential .items-description .cont .item .block.nutri {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 100%;
}
.product-view .product-essential .items-description .cont .item .block.nutri .img.lightbox-nutri {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}
.product-view .product-essential .items-description .cont .item .block.nutri a {
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .product-view .product-essential .items-description {
    width: 100%;
  }
}
.product-view .product-essential .extra-info .ratings .rating-box,
.product-view .product-essential .extra-info .ratings .amount {
  float: left;
}
.product-view .product-essential .extra-info .ratings .rating-box {
  margin-top: 8px;
  margin-right: 10px;
}
.product-view .product-essential .extra-info .ratings:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-essential .extra-info .info-right {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fafafa;
  box-shadow: 0px 1px 2px #9a9590;
}
@media only screen and (max-width: 991px) {
  .product-view .product-essential .extra-info .info-right {
    z-index: 1;
  }
}
.product-view .product-essential .extra-info .info-right i {
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d3dae0;
}
.product-view .product-essential .extra-info .info-right i:hover {
  color: #f35555;
}
.product-view .product-essential:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-essential .product-img-box .caracteristicas {
  border-top: 1px solid #d3dae0;
}
@media only screen and (max-width: 991px) {
  .product-view .product-essential .product-img-box {
    border-bottom: 1px solid #d3dae0;
  }
}
.product-view .product-essential .countdown {
  right: 10px;
}
@media only screen and (max-width: 991px) {
  .product-view .product-essential .countdown {
    top: -60px;
    padding: 4px;
    margin-top: 0;
  }
  .product-view .product-essential .countdown .countdown__title {
    display: none;
  }
}
.product-view .product-essential .caracteristicas {
  width: 100%;
  float: left;
}
.product-view .product-essential .caracteristicas .title {
  color: #00035B;
  font-family: "Jost500M", sans-serif;
  font-size: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .product-view .product-essential .caracteristicas .title {
    text-align: left;
    border-bottom: 0;
  }
}
.product-view .product-essential .caracteristicas p {
  margin-bottom: 10px;
  line-height: 1;
  color: #3b3b3b;
  font-size: 18px;
}
.product-view .product-essential .caracteristicas p:first-child {
  margin-top: 10px;
}
@media only screen and (max-width: 991px) {
  .product-view .product-essential .caracteristicas {
    width: 100%;
    padding-top: 0;
    margin-bottom: 30px;
  }
}
.product-view .product-shop .product-name .h1,
.product-view .product-img-box .product-name h1 {
  color: #646464;
  margin-bottom: 10px;
  border: 0;
}
.product-view .product-shop {
  width: 36%;
  float: left;
}
.product-view .product-shop .envio {
  margin: 12px 0;
  background: url("../images/envio.png");
  background-repeat: no-repeat;
  background-size: 28px;
}
.product-view .product-shop .envio span {
  font-size: 10px;
  font-weight: 300;
  line-height: 13px;
  letter-spacing: -0.4px;
  padding-left: 31px;
}
@media only screen and (min-width: 992px) {
  .product-view .product-shop .product-name {
    display: none;
    float: left;
  }
}
.product-view .product-shop .product-name .h1 {
  float: left;
  margin-bottom: 5px;
}
.product-view .product-shop .extra-info {
  float: left;
  padding-right: 0px;
  clear: left;
  width: 70%;
}
.product-view .product-shop .price-info {
  float: left;
  padding-left: 0px;
  text-align: left;
  width: 100% !important;
}
@media only screen and (max-width: 991px) {
  .product-view .product-shop .price-info {
    border-bottom: none;
    margin-top: 10px;
  }
}
.product-view .product-shop .description, .product-view .product-shop .description-caract {
  margin-bottom: 20px;
  width: 100%;
  float: left;
}
.product-view .product-shop .description .title.mobile, .product-view .product-shop .description-caract .title.mobile {
  color: #00035B;
  display: none;
  font-family: "Jost500M", sans-serif;
  font-size: 20px;
  padding-top: 20px;
}
@media only screen and (max-width: 991px) {
  .product-view .product-shop .description .title.mobile, .product-view .product-shop .description-caract .title.mobile {
    display: block;
  }
}
.product-view .product-shop .codigo {
  text-transform: uppercase;
  color: #4a4a4a;
  font-size: 11px;
  font-family: "Jost200", sans-serif;
  width: 100%;
  float: left;
}
@media only screen and (max-width: 991px) {
  .product-view .product-shop .codigo {
    font-size: 15px;
    display: flex;
    justify-content: left;
    margin: 4px 0;
  }
}
.product-view .product-shop .extra-info .info-left {
  display: flex;
  align-items: center;
  justify-content: initial;
}
.product-view .product-shop .extra-info .info-right {
  margin-right: 14px;
}
.product-view .product-shop .price-info {
  justify-content: space-around;
}
.product-view .product-shop .price-info p {
  margin-bottom: 0;
}
.product-view .product-shop .price-info select#single {
  background-color: #fff;
  border: 2px solid #d3dae0;
  margin-left: 17px;
}
.product-view .product-shop .extra-info {
  justify-content: space-between;
  width: 100%;
}
.product-view .product-shop .price-info {
  width: 100%;
  margin: 15px 0 22px 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.product-view .product-shop .price-info p.minimal-price {
  float: left;
  margin: 0 23px;
}
@media only screen and (max-width: 991px) {
  .product-view .product-shop .price-info p.minimal-price {
    margin-bottom: 20px;
  }
}
.product-view .product-shop .price-info .container-coutas {
  display: flex;
  padding: 0 6px;
}
.product-view .product-shop .price-info .info-units {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.product-view .product-shop .price-info .info-units p {
  color: #a2a1a0;
  font-size: 16px;
  font-weight: 300;
}
.product-view .product-shop .price-info .info-units p span {
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .product-view .product-shop .price-info .info-units {
    justify-content: space-around;
  }
}
.product-view .product-shop .price-info .old-price .price {
  font-size: 16px !important;
}

@media only screen and (max-width: 991px) {
  .product-view .product-shop .price-info {
    margin-bottom: 14px;
    width: 100%;
    margin: 0;
    justify-content: left;
    flex-wrap: wrap;
  }
}
.product-view .product-shop .short-description {
  margin-bottom: 15px;
  clear: both;
  width: 100%;
  float: left;
  margin-top: 10px;
}
@media only screen and (max-width: 991px) {
  .product-view .product-shop .short-description {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 26px;
  }
}
.product-view .product-shop .short-description .title-description {
  float: left;
  width: 100%;
  color: #646464;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.44px;
}
.product-view .product-shop .short-description .std {
  float: left;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  color: #a2a1a0;
  line-height: 20px;
}
.product-view .product-shop .ratings {
  margin-bottom: 8px;
}
.product-view .product-shop .availability {
  font-weight: 500;
  display: block;
}
.product-view .product-shop .availability.in-stock {
  display: block;
}
.product-view .product-shop .availability.in-stock:before {
  content: url("/skin/frontend/ecloud/girodidactico/images/in-stock.png");
}
.product-view .product-shop .price-box {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0px;
}
@media only screen and (max-width: 991px) {
  .product-view .product-shop .price-box {
    float: left;
    padding: 0;
    display: flex;
    align-items: center;
  }
}
.product-view .product-shop .price-box .special-price,
.product-view .product-shop .price-box .regular-price {
  padding-right: 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.product-view .product-shop .price-box .special-price span,
.product-view .product-shop .price-box .regular-price span {
  font-size: 30px;
}
.product-view .product-shop .price-box .old-price .price {
  font-size: 18px;
}
.product-view .product-shop .price-box .regular-price .price,
.product-view .product-shop .price-box .special-price .price,
.product-view .product-shop .price-box .full-product-price .price {
  color: #00035B;
  letter-spacing: -0.8px;
}
@media only screen and (max-width: 991px) {
  .product-view .product-shop .price-box .regular-price .price,
  .product-view .product-shop .price-box .special-price .price,
  .product-view .product-shop .price-box .full-product-price .price {
    margin: 0 9px;
  }
}
@media only screen and (max-width: 991px) {
  .product-view .product-shop .price-box .price {
    margin: 0;
  }
  .product-view .product-shop .price-box .price#valor-cuota {
    margin: 0 13px;
  }
}
.product-view .product-shop .price-box .special-price .price-label {
  font-size: 26px;
  text-transform: uppercase;
  display: none;
}
.product-view .product-shop .price-box .special-price span.weee {
  color: #606060;
}
.product-view .product-shop .price-box .special-price span.weee span.price {
  font-size: 26px;
}
.product-view .product-shop .price-box .price-excluding-tax,
.product-view .product-shop .price-box .price-including-tax {
  display: block;
  line-height: 1.2;
  color: #606060;
}
.product-view .product-shop .price-box .price-excluding-tax .label,
.product-view .product-shop .price-box .price-including-tax .label {
  font-size: 26px;
  font-weight: 300;
}
.product-view .product-shop .price-box .price-excluding-tax .price,
.product-view .product-shop .price-box .price-including-tax .price {
  font-size: 20px;
}
.product-view .product-shop .price-box .price-as-configured .price-label {
  display: none;
}
.product-view .price-box.map-info a {
  display: inherit;
}
.product-view .old-price .price-label {
  display: none;
}
.product-view .block-related {
  width: 20%;
  float: right;
  clear: right;
}

.product-img-box {
  float: left;
  padding-right: 0;
}
.product-img-box .product-name h1 {
  border: 0;
}
@media only screen and (min-width: 992px) {
  .product-img-box .more-views {
    width: 11%;
    text-align: center;
    float: left;
    height: auto;
    display: flex;
    overflow: auto;
    position: relative;
    margin-right: 0;
    order: 1;
    border-bottom: 1px solid #d3dae0;
  }
  .product-img-box .more-views .product-image-thumbs {
    float: left;
    text-align: left;
  }
}
.product-img-box .product-image {
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) {
  .product-img-box .product-image {
    width: 89%;
    order: 2;
    float: left;
    margin-bottom: 0;
    border-left: 1px solid #d3dae0;
  }
}
@media only screen and (max-width: 991px) {
  .product-img-box .product-image {
    margin-top: 35px;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .product-img-box .product-image .product-image-gallery {
    width: 100%;
  }
}
.product-img-box .product-image .owl-carousel .owl-nav {
  display: none;
}
.product-img-box .product-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 750px;
  margin: 0px auto;
}
@media only screen and (max-width: 991px) {
  .product-img-box .product-image img {
    width: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .product-img-box .product-label {
    z-index: 8;
  }
}
.product-img-box .product-label li {
  font-size: 14px;
  display: inline-block;
  min-width: auto;
  border-radius: 0;
  position: relative;
  margin: 0px;
  background: transparent !important;
  width: 60px;
  height: 64px;
  padding: 12px 0px;
}
@media only screen and (max-width: 991px) {
  .product-img-box .product-label.pl-top-right {
    top: 0px;
    right: 0px;
  }
}
.product-img-box .product-label {
  background-size: 69px;
  position: absolute;
  display: none;
}
.product-img-box .product-label li {
  padding: 16px 0 0 0;
}
.product-img-box .product-label.pl-bottom-left.featured {
  position: absolute;
}
@media only screen and (max-width: 991px) {
  .product-img-box .product-label.pl-bottom-left.featured {
    left: 0;
    bottom: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .product-img-box .product-label.pl-top-left.new {
    left: 0;
  }
}

@media only screen and (max-width: 991px) {
  #block-related .product-image .product-label {
    z-index: 8;
  }
}
#block-related .product-image .product-label li {
  font-size: 14px;
  display: inline-block;
  min-width: auto;
  border-radius: 0;
  position: relative;
  margin: 0px;
  background: transparent !important;
  width: 35px;
  height: 35px;
  padding: 12px 0px;
}
@media only screen and (max-width: 991px) {
  #block-related .product-image .product-label.pl-top-right {
    top: 0px;
    right: 0px;
  }
}
#block-related .product-image .product-label {
  background-size: 35px;
  position: absolute;
  padding-top: 7px;
}
#block-related .product-image .product-label li {
  padding: 0px 0 0 0;
}
#block-related .product-image .product-label.pl-bottom-left.featured {
  position: absolute;
}
@media only screen and (max-width: 991px) {
  #block-related .product-image .product-label.pl-bottom-left.featured {
    left: 0;
    bottom: 40px;
  }
}
@media only screen and (max-width: 991px) {
  #block-related .product-image .product-label.pl-top-left.new {
    left: 0;
  }
}
#block-related .product-image .product-label .label span {
  font-size: 6px;
}
#block-related .product-image .product-label .sale {
  padding-top: 2px;
}

.product-image-gallery {
  position: relative;
}
.product-image-gallery .gallery-image {
  display: none;
}
.product-image-gallery .gallery-image.visible {
  display: block;
}
.product-image-gallery .gallery-image.visible.hidden {
  visibility: hidden;
}
.product-image-gallery:before, .product-image-gallery:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.product-image-gallery:before {
  opacity: 0.8;
  z-index: 2;
}
.product-image-gallery:after {
  background-image: url("../images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.product-image-gallery.loading {
  position: relative;
}
.product-image-gallery.loading:before, .product-image-gallery.loading:after {
  display: block;
}

.product-image-thumbs li {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #d3dae0;
}
.product-image-thumbs li:first-child {
  margin-left: -1px;
}
.product-image-thumbs a {
  display: inline-block;
  border: 1px solid transparent;
}

.product-view .product-shop,
.product-view .block-related {
  padding-left: 0px;
}
.product-view .product-shop .product-pricing,
.product-view .block-related .product-pricing {
  display: none;
}

.product-img-box {
  border-right: 1px solid #d3dae0;
  width: 57% !important;
}

.product-view .product-shop,
.product-img-box,
.product-collateral,
.product-view .block-related,
.box-collateral {
  margin-bottom: 0px;
  position: relative;
}

.product-view {
  /* Set a min-height so that the floated elements break appropriately */
}
@media only screen and (max-width: 991px) {
  .product-view {
    padding: 0 15px;
    margin-top: 15px;
    float: left;
    width: 100%;
    padding: 0;
    margin-top: 0px;
  }
  .product-view .product-essential {
    padding: 0 !important;
  }
}
.product-view .add-to-box:after,
.product-view .add-to-cart:after {
  content: '';
  display: table;
  clear: both;
  display: none;
}
.product-view .add-to-cart {
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 24px;
}
.product-view .add-to-cart .container-qty {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .product-view .add-to-cart .container-qty {
    align-items: baseline;
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .product-view .add-to-cart {
    margin-bottom: 0;
    display: inline;
    width: auto;
    float: left;
  }
}
.product-view .add-to-cart p.label {
  width: 100%;
  color: #00035B;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  margin-right: 15px;
}
@media only screen and (max-width: 991px) {
  .product-view .add-to-cart p.label {
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .product-view .add-to-cart {
    padding-bottom: 0px;
    justify-content: center;
    width: auto;
  }
  .product-view .add-to-cart .label {
    width: 100%;
    float: left;
    padding-right: 10px;
  }
}
.product-view .add-to-cart .title-description {
  float: left;
  width: auto;
  line-height: 43px;
  margin-right: 0;
  color: #4a4a4a;
  font-size: 20px;
  font-weight: 700;
  margin-left: 20px;
}
@media only screen and (max-width: 991px) {
  .product-view .add-to-cart .title-description {
    margin-right: 15px;
    display: flex;
    align-items: center;
  }
}
.product-view .add-to-cart-buttons {
  width: 80%;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart-buttons {
  min-height: 35px;
  height: 35px;
}
@media only screen and (max-width: 991px) {
  .product-view .add-to-cart .qty-wrapper,
  .product-view .product-options-bottom .price-box,
  .product-view .add-to-cart-buttons {
    display: flex;
    align-items: center;
    margin-bottom: 0 !important;
  }
}
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart .qty-wrapper label {
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #d3dae0;
}
@media only screen and (max-width: 991px) {
  .product-view .add-to-cart .qty-wrapper {
    margin-right: 0;
  }
}
.product-view .add-to-cart .qty-wrapper label {
  line-height: 40px;
}
.product-view .add-to-cart .qty-wrapper .qty {
  float: left;
  border: none;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  height: 100%;
  border-right: 1px solid #d3dae0;
}
.product-view .add-to-cart .qty-wrapper .qty-ctl {
  cursor: pointer;
  padding: 3px 0;
}
.product-view .add-to-cart .qty-wrapper .qty-ctl span {
  height: 7px;
}
.product-view .add-to-cart .qty-wrapper .qty-ctl span i:before {
  font-size: 17px;
}
.product-view .add-to-cart .qty-wrapper .qty-ctl:last-child span {
  display: flex;
  align-items: flex-end;
}
.product-view .add-to-cart .qty-wrapper .qty-ctl:last-child span i:before {
  height: 8px;
}
.product-view .add-to-cart .qty-wrapper .inputs-cont {
  height: auto;
  padding: 3px;
}
.product-view .add-to-cart-buttons a.link-wishlist {
  display: none;
}
@media only screen and (max-width: 991px) {
  .product-view .add-to-cart-buttons {
    width: 100%;
    float: right;
    height: auto !important;
    padding: 17px 10px;
    position: fixed;
    bottom: 0;
    background: white;
    float: left;
    z-index: 9;
    left: 0;
    right: 0;
    box-shadow: #84848469 0px -1px 6px 0px;
  }
  .product-view .add-to-cart-buttons button {
    text-align: center;
  }
}
.product-view .add-to-cart-buttons button {
  background: #00a6e2;
}
.product-view .add-to-cart-buttons .paypal-logo {
  clear: left;
  text-align: center;
}
.product-view .add-to-cart-buttons .paypal-logo .paypal-button {
  margin: 0 auto;
  display: block;
  width: 170px;
}
.product-view .add-to-cart-buttons .paypal-logo .bml_button {
  display: block;
  width: 174px;
  margin: 0 auto;
}
.product-view .add-to-cart-buttons .paypal-logo .bml_button a {
  text-align: center;
}
.product-view .add-to-cart-buttons .paypal-logo .paypal-or {
  display: block;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  line-height: 1;
  text-align: center;
}
.product-view .add-to-cart-buttons .icon-carrito:before {
  display: none;
}
.product-view .add-to-cart-buttons .icon-carrito span {
  font-size: 18px;
  text-align: center;
  font-weight: 500;
}
.product-view .add-to-cart-buttons .button {
  line-height: 38px;
  float: left;
  position: relative;
  width: 100%;
  white-space: normal;
  color: #ffffff;
  font-size: 14px;
  font-family: "Jost500M", sans-serif;
  background-color: #F06000;
  text-transform: uppercase;
  display: flex;
  padding: 0 10px;
  justify-content: center;
}
.product-view .add-to-cart-buttons .button:after {
  background: url(/skin/frontend/ecloud/famago/images/cart-pdp.png);
  content: '';
  height: 34px;
  width: 8%;
  background-repeat: no-repeat;
  background-position: left;
  margin-left: 13px;
}
@media only screen and (max-width: 991px) {
  .product-view .add-to-cart-buttons .button:after {
    display: none;
    background: none;
    margin-left: 0px;
  }
}
.product-view .alert-price,
.product-view .alert-stock {
  clear: both;
}

/* This is the "or" that separates the "Add to Cart" and "Add to X" links */
.add-to-box .or {
  display: none;
}

.product-view .add-to-links {
  clear: both;
  margin-top: 0px;
  margin-right: 15px;
  float: left;
  display: none;
}
.product-view .add-to-links:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .add-to-links li {
  float: left;
}
.product-view .add-to-links a {
  padding: 2px 7px 2px 0px;
  margin-left: 7px;
  border-right: 1px solid #949494;
}
.product-view .add-to-links li:first-child a {
  margin-left: 0px;
}
.product-view .add-to-links li:last-child a {
  border-right: 0px;
}

.subtitle {
  color: #666666;
  font-family: "Jost500M", sans-serif;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0;
  margin-top: 40px;
  margin-bottom: 20px;
}

.contenedor-descubri {
  display: flex;
  justify-content: space-around;
  margin-bottom: 80px;
}
.contenedor-descubri.hidden-md {
  display: none;
}
.contenedor-descubri .colum-1, .contenedor-descubri .colum-2 {
  width: 46%;
  display: flex;
  background-color: white;
  box-shadow: 0px 1px 6px 1px #ccc;
}
.contenedor-descubri .colum-1:hover, .contenedor-descubri .colum-2:hover {
  box-shadow: 0px 1px 6px 1px #9e9e9e;
}
.contenedor-descubri .colum-1 .cont-img, .contenedor-descubri .colum-2 .cont-img {
  width: 60%;
}
.contenedor-descubri .colum-1 .info-cont, .contenedor-descubri .colum-2 .info-cont {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 4%;
}
.contenedor-descubri .colum-1 .info-cont span, .contenedor-descubri .colum-2 .info-cont span {
  color: #2f2f3e;
  font-family: "Jost400", sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2.34px;
  width: 80%;
  margin-bottom: 10px;
}
.contenedor-descubri .colum-1 .info-cont p, .contenedor-descubri .colum-2 .info-cont p {
  color: #2f2f3e;
  font-family: "Jost600S", sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 300;
  width: 80%;
  line-height: 1.4;
}
.contenedor-descubri .colum-1 .info-cont p strong, .contenedor-descubri .colum-2 .info-cont p strong {
  font-family: "Jost500M", sans-serif;
  font-weight: normal !important;
}
.contenedor-descubri .colum-1 .info-cont b, .contenedor-descubri .colum-2 .info-cont b {
  font-weight: 400;
}
.contenedor-descubri .colum-1 .info-cont a, .contenedor-descubri .colum-2 .info-cont a {
  background-color: #00035B;
  color: #ffffff;
  font-family: "Jost500M", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  width: 60%;
  justify-content: center;
  display: flex;
  transition: .3s;
}
.contenedor-descubri .colum-1 .info-cont a:hover, .contenedor-descubri .colum-2 .info-cont a:hover {
  background-color: #1f3b7b;
  opacity: 0.8;
}
.contenedor-descubri:before {
  display: none;
}
.contenedor-descubri:after {
  display: none;
}
@media only screen and (max-width: 991px) {
  .contenedor-descubri {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .contenedor-descubri.hidden-md {
    display: flex;
  }
  .contenedor-descubri .colum-1, .contenedor-descubri .colum-2 {
    width: 100%;
    margin: 20px 0;
  }
  .contenedor-descubri .colum-1 .info-cont, .contenedor-descubri .colum-2 .info-cont {
    padding: 0;
    align-items: center;
    justify-content: space-evenly;
  }
  .contenedor-descubri .colum-1 .info-cont span, .contenedor-descubri .colum-2 .info-cont span {
    font-family: "Ubuntu400", sans-serif;
    width: 100%;
    width: auto;
    margin-bottom: 0;
  }
  .contenedor-descubri .colum-1 .info-cont a, .contenedor-descubri .colum-2 .info-cont a {
    font-family: "Ubuntu400", sans-serif;
    width: 70%;
    padding: 5px 0;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 13px;
  }
  .contenedor-descubri .colum-1 .info-cont p, .contenedor-descubri .colum-2 .info-cont p {
    font-size: 14px;
    font-family: "Ubuntu500", sans-serif;
    text-align: center;
    margin-bottom: 0;
  }
  .contenedor-descubri .colum-1 .info-cont p span, .contenedor-descubri .colum-2 .info-cont p span {
    font-size: 14px;
    font-family: "Ubuntu500", sans-serif;
    text-align: center;
    margin-bottom: 0;
    color: #F06000 !important;
  }
}

.product-view .sharing-links li {
  float: left;
  padding: 0px 7px 7px;
}
.product-view .sharing-links li .fa-pinterest, .product-view .sharing-links li .fa-twitter, .product-view .sharing-links li .fa-facebook {
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  .product-view .sharing-links li .fa-pinterest, .product-view .sharing-links li .fa-twitter, .product-view .sharing-links li .fa-facebook {
    font-size: 20px;
  }
}
.product-view .sharing-links a {
  width: 26px;
  height: 26px;
}
.product-view .sharing-links a:hover {
  opacity: 0.8;
}
.product-view .sharing-links a.link-wishlist {
  background-position: 0px -225px;
}
.product-view .sharing-links a.link-compare {
  background-position: 0px -250px;
}
.product-view .sharing-links a.link-email-friend {
  background-position: 0px -322px;
}
.product-view .sharing-links a.link-facebook {
  background-position: 0px -425px;
}
.product-view .sharing-links a.link-twitter {
  background-position: 0px -372px;
}

.detalles .ingredientes {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  max-height: 60px;
  overflow-y: hidden;
  transition: .5s;
}
.detalles .ingredientes.active {
  max-height: 1000px;
  transition: 1s;
}
.detalles .ingredientes h3 {
  color: #4a4a4a;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 0;
}
.detalles .ingredientes .title {
  width: 100%;
  padding-bottom: 20px;
  position: relative;
}
.detalles .ingredientes .title .ver-mas, .detalles .ingredientes .title .ver-menos {
  font-size: 25px;
  padding-left: 15px;
  display: none;
  color: #a2a1a0;
  font-size: 48px;
  font-weight: 500;
}
.detalles .ingredientes .title .ver-mas.active, .detalles .ingredientes .title .ver-menos.active {
  display: inline-block;
}
.detalles .ingredientes .title:hover {
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .detalles .ingredientes .title {
    width: 100%;
  }
}
.detalles .ingredientes .cont-ing {
  display: flex;
  flex-direction: column;
  width: 40%;
  padding-top: 30px;
}
.detalles .ingredientes .cont-ing p {
  padding: 10px 0;
  color: #a2a1a0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.detalles .como-cocinar {
  margin-top: 50px;
  max-height: 60px;
  overflow-y: hidden;
  transition: .5s;
}
.detalles .como-cocinar.active {
  max-height: 1000px;
  transition: 1s;
}
@media only screen and (max-width: 991px) {
  .detalles .como-cocinar.active {
    max-height: 2000px;
  }
}
.detalles .como-cocinar h3 {
  color: #4a4a4a;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 0;
}
.detalles .como-cocinar .title {
  width: 100%;
  padding-bottom: 20px;
  position: relative;
}
.detalles .como-cocinar .title .ver-mas, .detalles .como-cocinar .title .ver-menos {
  font-size: 25px;
  padding-left: 15px;
  display: none;
  color: #a2a1a0;
  font-size: 48px;
  font-weight: 500;
}
.detalles .como-cocinar .title .ver-mas.active, .detalles .como-cocinar .title .ver-menos.active {
  display: inline-block;
}
.detalles .como-cocinar .title:hover {
  cursor: pointer;
}
.detalles .como-cocinar .contenedor {
  display: flex;
  justify-content: space-between;
}
.detalles .como-cocinar .contenedor .step {
  width: 30%;
}
.detalles .como-cocinar .contenedor .step-icon {
  color: #50d0e7;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid #d9d6d6;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding-top: 5px;
  border-radius: 50%;
  margin-bottom: 20px;
  margin-top: 20px;
}
.detalles .como-cocinar .contenedor b {
  color: #4a4a4a;
  font-size: 24px;
  font-weight: 500;
}
.detalles .como-cocinar .contenedor p {
  color: #a2a1a0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
}
@media only screen and (max-width: 991px) {
  .detalles .como-cocinar .contenedor {
    flex-wrap: wrap;
  }
  .detalles .como-cocinar .contenedor .step {
    width: 100%;
  }
}

.product-collateral {
  background-color: #fff;
  margin-top: 80px;
}
@media only screen and (min-width: 992px) {
  .product-collateral {
    margin-left: 0px;
    margin-right: 0px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 5%;
  }
}
.product-collateral #collateral-tabs dd h2 {
  display: block;
  line-height: 25px;
}
@media only screen and (max-width: 991px) {
  .product-collateral #collateral-tabs dd h2 {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .product-collateral #collateral-tabs dd .std {
    font-size: 14px;
  }
}
.product-collateral #collateral-tabs dt {
  line-height: 30px;
  font-size: 18px;
  padding: 10px 20px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  letter-spacing: 1.2px;
}
.product-collateral .toggle-tabs {
  background-color: #fff;
  border-bottom: none;
}

.box-collateral {
  clear: both;
}
.box-collateral .minimal-price {
  margin-left: 10px;
}
.box-collateral .minimal-price .price-label {
  margin-right: 3px;
}

.product-collateral .toggle-tabs {
  display: block;
}
@media only screen and (min-width: 992px) {
  .product-collateral .toggle-tabs {
    width: 100%;
    position: relative;
    max-width: 1025px;
    margin: 0 auto;
    float: none;
    background-color: #fff;
    display: flex;
    justify-content: center;
  }
}
.product-collateral .toggle-tabs li {
  float: left;
}
@media only screen and (min-width: 992px) {
  .product-collateral .toggle-tabs li {
    padding: 10px;
    margin-right: 55px;
  }
}
.product-collateral .toggle-tabs li > span {
  font-weight: 500;
  display: inline-block;
  padding: 0 0px;
  line-height: 32px;
  cursor: pointer;
  color: #4a4a4a;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  bottom: -1px;
}
.product-collateral .toggle-tabs li.current > span {
  z-index: 5;
  border-bottom: 2px solid #00a6e2;
}
.product-collateral .toggle-tabs li:first-child {
  border-left: none;
}
.product-collateral .toggle-tabs:after {
  content: '';
  display: table;
  clear: both;
}
.product-collateral > dl {
  width: 100%;
  padding-top: 30px;
  max-width: 1025px;
  margin: 0 auto;
}
.product-collateral > dl > dt {
  display: none;
}
.product-collateral > dl > dd {
  width: 100%;
  display: none;
  padding: 15px;
  border-top: 0;
}
.product-collateral > dl > dd.current {
  display: inline-block;
}
.product-collateral #collateral-tabs {
  margin: 0 auto !important;
  box-shadow: inset 0 1px 0px rgba(199, 194, 194, 0.5);
  max-width: 100%;
  float: left;
  width: 100%;
}
.product-collateral #collateral-tabs .std {
  font-size: 14px;
  font-weight: 300;
  color: #4a4a4a;
  line-height: 20px;
}

.product-view .product-shop .product-name {
  display: block;
  width: 100%;
  color: #4a4a4a;
  font-size: 48px;
  font-weight: 700;
  padding-top: 20px;
}

.review {
  float: left;
  width: 100%;
}

.product-img-box .product-name {
  display: none;
}

.product-view .ratings .rating-links {
  display: inline-block;
  clear: none;
  float: left;
  margin-top: 0;
}

#product-attribute-specs-table {
  max-width: 50em;
  border: 0;
}
#product-attribute-specs-table th {
  line-height: 40px;
  border: none;
  vertical-align: middle;
  color: #00a6e2;
  background: transparent;
}
#product-attribute-specs-table td {
  color: #4a4a4a;
}

/* -------------------------------------------- *
 * Catalog - Grouped Product List
 */
.grouped-items-table-wrapper {
  border: solid 1px #C0C0C0;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}
.grouped-items-table-wrapper tbody tr:last-child td {
  border-bottom: none;
}

.grouped-items-table .name-wrapper {
  color: #000;
}
.grouped-items-table .qty-wrapper {
  padding-top: 7px;
}
.grouped-items-table .qty-label {
  margin-left: 7px;
}
.grouped-items-table td {
  padding: 4px;
}
.grouped-items-table td:last-child {
  width: 30%;
  text-align: left;
}
.grouped-items-table .price-box {
  text-align: right;
}

/* -------------------------------------------- *
 * Catalog - Product Options
 */
.product-options {
  float: left;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .product-options {
    float: none;
  }
}
.product-options select {
  width: 100%;
}

.product-options p.required {
  position: absolute;
  right: 15px;
  top: -11px;
  text-align: right;
}
.product-options p.required select {
  width: 95%;
}
@media only screen and (max-width: 991px) {
  .product-options p.required {
    top: -33px;
    left: 0;
    right: inherit;
  }
}

.product-options dt {
  margin: 10px 0 3px;
  font-weight: normal;
}

.product-options dt:first-child {
  margin-top: 0;
}

.product-options dd .qty-holder {
  display: block;
  padding: 10px 0 0 0;
}

.product-options dd .qty-holder .qty {
  width: 3em;
}

.product-options dd .qty-holder label {
  vertical-align: middle;
}

.product-options dd .qty-disabled {
  background: none;
  border: 0;
  padding: 0 2px;
}

.product-options dd {
  padding: 0 0 10px 0;
  margin: 0 0 5px;
  border-bottom: 1px solid #EDEDED;
}

.product-options dl.last dd.last {
  border-bottom: 0;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.product-options dd .input-text {
  width: 98%;
}

.product-options dd .input-box {
  padding-top: 0;
}

.product-options dd input.datetime-picker {
  width: 150px;
}

.product-options dd .time-picker {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 2px 0;
  vertical-align: middle;
}

.product-options dd textarea {
  width: 98%;
  height: 8em;
}

.product-options dd select {
  padding: 3px;
  width: 95%;
}
@media only screen and (max-width: 991px) {
  .product-options dd select {
    width: 100%;
  }
}

.product-options ul.options-list {
  margin-right: 5px;
}

.product-options ul.options-list li {
  line-height: 1.5;
  margin-bottom: 7px;
}

.product-options ul.options-list li:last-child {
  margin-bottom: 0;
}

.product-options ul.options-list .radio,
.product-options ul.options-list .checkbox {
  float: left;
  margin-top: 5px;
}

.product-options ul.options-list .label {
  display: block;
}

.product-options ul.options-list label {
  font-weight: normal;
}

.product-options p.note {
  margin: 0;
  font-size: 11px;
}

.product-options-bottom {
  border-top: 0;
  width: 100%;
  margin-bottom: 10px;
  float: left;
}
@media only screen and (max-width: 991px) {
  .product-options-bottom {
    height: 0;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
  }
  .product-options-bottom .price-box {
    width: 0 !important;
  }
  .product-options-bottom .price-box .price-label {
    display: none;
  }
}

.product-options-bottom:after {
  content: '';
  display: table;
  clear: both;
}

.product-options-bottom .product-pricing,
.product-options-bottom .tier-prices {
  float: right;
  margin: 0;
  padding: 0 0 10px;
  border: 0;
  background: 0;
  color: #606060;
  float: none;
  width: 100%;
  text-align: right;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #CCCCCC;
}

.product-options-bottom .tier-prices li {
  background: 0;
  padding: 2px 0;
}

.product-options-bottom .tier-prices .price,
.product-options-bottom .tier-prices .benefit {
  color: #606060;
}

/* "display: none" should be removed if products on site have a long list of product options and those product options */
/*  affect the price so that the customer can see the updated price close to the "Add to Cart" button */
.product-options-bottom .price-box {
  display: none;
  float: right;
  margin: 0 0 10px;
  padding: 0;
}

.product-options-bottom .price-tax {
  float: left;
}

/* -------------------------------------------- *
 * Related Products
 */
/* Block: Related */
.block-related li, .block-content.aw-arp-block-content li {
  margin-bottom: 7px;
}
.block-related span.regular-price, .block-content.aw-arp-block-content span.regular-price {
  justify-content: flex-end;
  padding: 0;
}
.block-related .price-box, .block-content.aw-arp-block-content .price-box {
  padding: 0;
}
.block-related .price-box .products-grid .item, .block-content.aw-arp-block-content .price-box .products-grid .item {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .block-related, .block-content.aw-arp-block-content {
    border-left: none;
  }
  .block-related .owl-controls, .block-content.aw-arp-block-content .owl-controls {
    margin-top: 10px;
  }
  .block-related .owl-controls .owl-nav, .block-content.aw-arp-block-content .owl-controls .owl-nav {
    display: block;
    width: auto;
    position: inherit;
  }
  .block-related .owl-controls .owl-nav .owl-prev, .block-related .owl-controls .owl-nav .owl-next, .block-content.aw-arp-block-content .owl-controls .owl-nav .owl-prev, .block-content.aw-arp-block-content .owl-controls .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    z-index: 9;
  }
}
.block-related .block-title, .block-content.aw-arp-block-content .block-title {
  border: none;
  padding: 0;
  float: left;
  width: 100%;
}
.block-related .block-title h2, .block-content.aw-arp-block-content .block-title h2 {
  margin-bottom: 0;
  text-transform: unset;
  letter-spacing: 0;
  float: left;
  color: #666666;
  font-size: 24px;
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .block-related .block-title, .block-content.aw-arp-block-content .block-title {
    margin-bottom: 7px;
    margin-left: 0;
  }
  .block-related .block-title h2, .block-content.aw-arp-block-content .block-title h2 {
    float: left;
    text-align: center;
    font-size: 31px;
    font-weight: 500;
    text-transform: initial;
    width: 100%;
    margin-bottom: 5%;
    color: #00035B;
  }
}
.block-related .block-subtitle, .block-content.aw-arp-block-content .block-subtitle {
  margin-bottom: 7px;
  display: none;
}
.block-related .product, .block-content.aw-arp-block-content .product {
  position: relative;
  width: 100%;
  margin: 0 auto;
  transition: 0.5s;
  float: left;
  background-color: white;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0px 1px 6px 1px #ccc;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .block-related .product, .block-content.aw-arp-block-content .product {
    margin-left: 0;
  }
}
.block-related .product .product-details, .block-content.aw-arp-block-content .product .product-details {
  width: 100%;
  min-height: 155px;
  float: left;
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
  z-index: 99999;
  justify-content: center;
  border-top: 1px solid #d3dae0;
  position: relative;
}
.block-related .product .product-details .actions button, .block-content.aw-arp-block-content .product .product-details .actions button {
  width: 100%;
}
.block-related .product .product-details .link-wishlist, .block-content.aw-arp-block-content .product .product-details .link-wishlist {
  position: absolute;
  top: -21px;
  right: 27px;
  background-color: #fafafa;
  border-radius: 50%;
  box-shadow: 0px 1px 6px 1px #ccc;
  height: 40px;
  width: 40px;
}
@media only screen and (max-width: 991px) {
  .block-related .product .product-details .link-wishlist, .block-content.aw-arp-block-content .product .product-details .link-wishlist {
    right: 50%;
    transform: translateX(50%);
  }
}
.block-related .product .product-details i.fa.fa-heart, .block-content.aw-arp-block-content .product .product-details i.fa.fa-heart {
  color: #d3dae0;
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-related .product .product-details i.fa.fa-heart:hover, .block-content.aw-arp-block-content .product .product-details i.fa.fa-heart:hover {
  color: #f35555;
}
.block-related .product .product-details .product-name, .block-content.aw-arp-block-content .product .product-details .product-name {
  float: left;
  width: 100%;
  min-height: 77px;
  font-size: 16px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: 0.17px;
  padding-top: 34px;
  text-align: left;
  padding-left: 0px !important;
  padding-right: 0 !important;
}
.block-related .product .product-details .product-name a, .block-content.aw-arp-block-content .product .product-details .product-name a {
  text-transform: capitalize;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 51px;
}
.block-related .product .product-details .old-price .price-label, .block-related .product .product-details .old-price .price-label, .block-related .product .product-details .special-price .price-label, .block-related .product .product-details .special-price .price-label, .block-content.aw-arp-block-content .product .product-details .old-price .price-label, .block-content.aw-arp-block-content .product .product-details .old-price .price-label, .block-content.aw-arp-block-content .product .product-details .special-price .price-label, .block-content.aw-arp-block-content .product .product-details .special-price .price-label {
  display: none;
}
.block-related .product .stock, .block-related .product .edad, .block-related .product .genero, .block-content.aw-arp-block-content .product .stock, .block-content.aw-arp-block-content .product .edad, .block-content.aw-arp-block-content .product .genero {
  text-align: initial;
}
.block-related .product .edad, .block-related .product .genero, .block-content.aw-arp-block-content .product .edad, .block-content.aw-arp-block-content .product .genero {
  padding: 3px 0;
  font-weight: 300;
  display: none;
}
.block-related .checkbox, .block-content.aw-arp-block-content .checkbox {
  float: left;
  margin-top: 36px;
  display: none;
}
@media only screen and (max-width: 991px) {
  .block-related .product-name, .block-content.aw-arp-block-content .product-name {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
  }
}
.block-related .product-name h3, .block-content.aw-arp-block-content .product-name h3 {
  font-size: 24px;
}
@media only screen and (max-width: 991px) {
  .block-related .product-name h3, .block-content.aw-arp-block-content .product-name h3 {
    color: #00035B;
    font-size: 23px;
    font-weight: 500;
    line-height: 27px;
  }
}
.block-related .product-name a, .block-content.aw-arp-block-content .product-name a {
  font-size: 16px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: 0.17px;
}
.block-related .price-box span, .block-content.aw-arp-block-content .price-box span {
  text-align: left;
  padding: 0;
}
.block-related .codigo, .block-content.aw-arp-block-content .codigo {
  float: left;
  width: 100%;
  text-align: left;
  color: #F06000;
}
.block-related .text, .block-content.aw-arp-block-content .text {
  width: 100%;
  margin-right: 0;
  text-align: left;
}
.block-related .product-details .price-box, .block-content.aw-arp-block-content .product-details .price-box {
  float: left;
}
.block-related .product-details .price-box a,
.block-related .product-details .price-box p,
.block-related .product-details .price-box span, .block-content.aw-arp-block-content .product-details .price-box a,
.block-content.aw-arp-block-content .product-details .price-box p,
.block-content.aw-arp-block-content .product-details .price-box span {
  float: left;
  font-size: 14px;
}
.block-related .product-details .price-box a:first-child,
.block-related .product-details .price-box p:first-child,
.block-related .product-details .price-box span:first-child, .block-content.aw-arp-block-content .product-details .price-box a:first-child,
.block-content.aw-arp-block-content .product-details .price-box p:first-child,
.block-content.aw-arp-block-content .product-details .price-box span:first-child {
  text-align: left;
  letter-spacing: 0.63px;
  color: #00035B !important;
  font-size: 24px;
}
.block-related .product-details .price-box:after, .block-content.aw-arp-block-content .product-details .price-box:after {
  content: '';
  display: table;
  clear: both;
}
.block-related .block-content, .block-content.aw-arp-block-content .block-content {
  width: 100%;
  float: left;
}
.block-related .block-content .stock, .block-content.aw-arp-block-content .block-content .stock {
  width: 100%;
  float: left;
  display: none;
}
@media only screen and (max-width: 991px) {
  .block-related .block-content ol#block-related, .block-content.aw-arp-block-content .block-content ol#block-related {
    display: flex;
  }
}
@media only screen and (max-width: 479px) {
  .block-related .block-content, .block-content.aw-arp-block-content .block-content {
    display: inline-block;
  }
}

/* -------------------------------------------- *
 * Upsell Products
 */
.box-up-sell .product-name a, .block-related .product-name a {
  font-weight: 500;
  color: #4a4a4a;
}

.box-up-sell {
  margin-top: 50px;
  height: auto;
}
.box-up-sell .prodprice.col-xs-12 {
  padding-left: 0;
}
.box-up-sell .title .ver-mas, .box-up-sell .title .ver-menos {
  font-size: 25px;
  padding-left: 15px;
  display: none;
  color: #a2a1a0;
  font-size: 48px;
  font-weight: 500;
}
.box-up-sell .title .ver-mas.active, .box-up-sell .title .ver-menos.active {
  display: inline-block;
}
.box-up-sell .title:hover {
  cursor: pointer;
}
.box-up-sell .owl-stage-outer .owl-item {
  padding: 10px;
}
.box-up-sell .ratings {
  display: block;
}
.box-up-sell h2 {
  text-transform: initial;
  font-family: "Jost500M", sans-serif;
  font-size: 26px;
  text-align: left;
  line-height: 1;
  color: #666666;
}
.box-up-sell .product-name {
  text-align: left;
  text-transform: initial;
}
.box-up-sell .product-name a {
  color: #4a4a4a !important;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}
.box-up-sell .stock {
  display: none;
}
.box-up-sell .price-box span {
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.63px;
}
.box-up-sell .owl-nav {
  display: block !important;
}
.box-up-sell .owl-nav .owl-prev {
  left: 0px !important;
}
@media only screen and (max-width: 991px) {
  .box-up-sell .owl-nav .owl-prev {
    left: 13px !important;
  }
}
.box-up-sell .owl-nav .owl-next {
  right: 0px;
  width: 40px;
  height: 60px;
}
.box-up-sell .product-image {
  border-bottom: 0;
  margin-bottom: 0;
}
.box-up-sell .product-image img {
  width: auto;
  height: auto;
}

/* FANCYBOXES*/
@media only screen and (min-width: 992px) {
  .fancybox-wrap {
    max-width: none;
  }
}
.fancybox-wrap .pdp_info_fancy {
  padding-bottom: 15px;
}
.fancybox-wrap .pdp_info_fancy h2 {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 10px;
  text-align: center;
}
.fancybox-wrap .pdp_info_fancy ul {
  list-style: disc;
  padding-left: 15px;
}
.fancybox-wrap .pdp_info_fancy ul li {
  line-height: 35px;
}
.fancybox-wrap .pdp_info_fancy ul li strong {
  color: #00035B;
}

.fancybox-inner {
  display: inline-block;
}

.informaciones-wrapper .link {
  width: 100%;
  display: inline-block;
  color: #00a6e2;
  font-size: 12px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 11px;
  color: #555;
}
@media only screen and (max-width: 991px) {
  .informaciones-wrapper .link {
    font-size: 12px;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 10px;
    padding-left: 20px;
  }
}
.informaciones-wrapper .link i {
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  .informaciones-wrapper .link.envios i {
    font-size: 20px;
  }
}

.ias-spinner {
  width: 100%;
  float: left;
  margin-top: 0;
}
.ias-spinner:before {
  content: "\f110";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 60px;
  line-height: 50px;
  background-repeat: no-repeat;
  background-image: url(../images/loader.png);
  background-position: center center;
  background-size: 50px;
  color: transparent;
  animation: fa-spin 0.5s infinite linear;
}
.ias-spinner img {
  display: none !important;
}
.ias-spinner em {
  font-size: 0;
  line-height: 0;
}

.catalog-product-view .product-options-bottom span.price {
  display: none;
}

@media only screen and (max-width: 991px) {
  #related-product-table .price {
    display: flex;
    flex-direction: column;
  }
}
#related-product-table .actions {
  display: none;
}
#related-product-table .price-box .old-price .price {
  font-size: 18px;
  color: #a2a1a0 !important;
}
@media only screen and (max-width: 991px) {
  #related-product-table .price-box .old-price .price {
    font-size: 3vw;
    margin-top: 10px;
    line-height: 10px;
    color: #00035B !important;
  }
}
#related-product-table .price-box .special-price .price {
  font-size: 23px;
}
@media only screen and (max-width: 991px) {
  #related-product-table .price-box .special-price .price {
    font-size: 4vw;
  }
}

@media only screen and (max-width: 991px) {
  .col1-layout .toolbar-top {
    padding: 16px 0;
    background: white;
    position: initial;
    width: 100%;
    margin-top: 0 !important;
  }
  .col1-layout .toolbar-top .toolbar {
    background-color: white;
  }
  .col1-layout .toolbar-top .toolbar .sorter p {
    color: #151FD3;
  }
  .col1-layout .toolbar-top .toolbar.active .sort-by {
    bottom: 55px;
    transition: bottom 0.4s;
  }
  .col1-layout .toolbar-top .sort-by {
    bottom: -306px;
  }
  .col1-layout .toolbar-top .sort-by ul {
    box-shadow: 0px -2px 8px 0px #f0f0f0 !important;
  }
}

.notify {
  font-size: 12px;
  margin: 10px 0 10px 3px;
  font-weight: 500;
  color: #F06000;
}

/* ============================================ *
 * Catalog - MSRP MAP Popup
 * ============================================ */
.cart-msrp-totals {
  color: red;
  font-size: 12px !important;
  font-weight: bold;
  margin: 10px 10px 0;
  padding: 10px;
  text-align: right;
  text-transform: uppercase;
}

.map-cart-sidebar-total {
  color: red;
  display: block;
  font-size: 10px;
  font-weight: bold;
  text-align: left;
  padding: 2px 5px;
}

.map-popup {
  background: #FFFFFF;
  border: 5px solid #949494;
  margin: 12px 0 0;
  position: absolute;
  text-align: left;
  width: 450px;
  z-index: 100;
}
.map-popup.map-popup-right {
  left: 10px !important;
}
.map-popup.map-popup-left {
  left: auto !important;
  right: 10px !important;
}
.map-popup .map-popup-heading {
  padding: 8px 10px;
  margin-right: 40px;
  width: auto;
}
.map-popup .map-popup-heading h3 {
  font-size: 12px;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: break-word;
  text-align: left;
  text-overflow: ellipsis;
}
.map-popup .map-popup-close {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 36px;
  width: 36px;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
}
.map-popup .map-popup-content {
  border-top: 1px solid #EDEDED;
  padding: 10px;
  margin: 0 10px;
  overflow: hidden;
  text-align: left;
}
.map-popup .map-popup-checkout {
  padding: 10px 0;
}
.map-popup .map-popup-checkout form:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-checkout span {
  display: block;
}
.map-popup .map-popup-checkout .button {
  float: left;
  margin: 0 2px;
  clear: left;
}
.map-popup .map-popup-checkout .additional-addtocart-box {
  float: left;
  min-width: 210px;
}
.map-popup .map-popup-checkout .additional-addtocart-box li {
  list-style-type: none;
}
.map-popup .map-popup-checkout .paypal-logo {
  width: auto;
}
.map-popup .map-popup-checkout .paypal-logo a {
  display: inline-block;
  float: left;
  clear: left;
}
.map-popup .map-popup-checkout .paypal-logo .paypal-or {
  float: left;
  text-align: center;
  padding: 5px 15px;
  clear: left;
}
.map-popup .map-popup-checkout .paypal-logo:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-checkout .paypal-logo .bml_button a {
  clear: left;
}
.map-popup .map-popup-checkout:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-price {
  padding: 10px 0;
}
.map-popup .map-popup-price .price-box,
.map-popup .map-popup-price .price-box .special-price {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.map-popup .map-popup-price .price-box .minimal-price-link {
  display: inline-block;
}
.map-popup .map-popup-text {
  padding: 10px 0;
  margin: 0 10px;
  word-wrap: break-word;
}
.map-popup .map-popup-text,
.map-popup .map-popup-only-text {
  border-top: 1px solid #EDEDED;
}

/* ============================================ *
 * Catalog - MSRP Product Listing
 * ============================================ */
.price-box .map-link {
  display: block;
  text-align: center;
}

/* ============================================ *
 * Catalog - Compare
 * ============================================ */
.block-compare .product-name:after {
  content: '';
  display: table;
  clear: both;
}

.compare-table .product-image {
  display: inline-block;
}

.compare-table .product-shop-row.top td {
  padding-bottom: 0;
  border-bottom: 0;
}
.compare-table .product-shop-row.bottom td {
  padding-top: 0;
}

/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    design
 * @package     ecloud_default
 * @copyright   Copyright (c) 2017 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
/* ============================================ *
 * Checkout - Layout
 * ============================================ */
.cart-table {
  float: left;
}

.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  padding: 20px;
  background-color: #f5f4f2;
}

.cart-table,
.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  margin-bottom: 20px;
}

/* ============================================ *
 * Checkout - Cart
 * ============================================ */
.cart .page-title {
  margin-bottom: 15px;
  border-bottom: 1px solid #EDEDED;
}
.cart .page-title:after {
  content: '';
  display: table;
  clear: both;
}
.cart .page-title h1 {
  float: left;
  border-bottom: none;
  margin-bottom: 6px;
  margin-right: 10px;
}

.cart .title h2 {
  color: #F06000;
  letter-spacing: 0;
}

.crossell-cart .no-rating a, .crossell-cart .no-rating a:link, .crossell-cart .no-rating a:visited, .crossell-cart .no-rating a:active {
  color: #4a4a4a;
}
.crossell-cart .products-grid .product-info {
  text-align: left;
}
.crossell-cart .owl-stage-outer .owl-item {
  padding: 10px;
}
.crossell-cart .owl-nav {
  display: block !important;
}
.crossell-cart .owl-nav .owl-prev {
  left: 0px;
}
.crossell-cart .owl-nav .owl-prev:before {
  content: "\f053";
  color: #000;
  float: left;
  font-family: FontAwesome;
}
.crossell-cart .owl-nav .owl-next {
  right: 0px;
  height: 30px;
  width: 20px;
}
.crossell-cart .owl-nav .owl-next:before {
  content: "\f054";
  color: #000;
  float: right;
  font-family: FontAwesome;
}

.checkout-types {
  text-align: right;
  /* We always want this shipping method to display on its own line */
}
.checkout-types li {
  text-align: center;
  vertical-align: top;
}
.checkout-types li:after {
  content: '';
  display: table;
  clear: both;
}
.checkout-types li img {
  display: inline;
  vertical-align: top;
}
.checkout-types li:first-child {
  margin-left: 0;
}
.checkout-types .method-checkout-cart-methods-multishipping {
  display: none;
}
.checkout-types.top li {
  display: inline-block;
}
.checkout-types.top .bml_button {
  display: inline-block;
  vertical-align: top;
}
.checkout-types.top .bml_button img {
  display: block;
}
.checkout-types.bottom .paypal-logo a, .checkout-types.minicart .paypal-logo a {
  display: block;
}
.checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
  margin: 0px;
  width: 150px;
  display: block;
  text-align: center;
  float: right;
}

@media only screen and (min-width: 992px) {
  .checkout-cart-index .products-table-list {
    width: 70%;
  }
}
@media only screen and (min-width: 992px) {
  .checkout-cart-index .cart-review {
    width: 30%;
  }
}

.cart-totals .checkout-types .btn-checkout {
  background-color: #F06000;
  line-height: 54px;
  font-weight: 700;
  width: 100%;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 auto;
  float: none;
  padding: 0;
  font-weight: 700;
}

.envio-gratis {
  float: left;
  width: 100%;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 10px 0;
  margin-bottom: 15px;
}

.compra-segura {
  float: left;
  padding: 30px;
  border: 1px solid #eee;
  margin: 30px 0;
}
.compra-segura h1 {
  font-size: 18px;
  color: #444444;
  text-transform: uppercase;
  margin: 0;
}
.compra-segura h2 {
  font-size: 14px;
  color: #6c6c6c;
  margin-bottom: 10px;
  font-weight: bold;
}
.compra-segura p {
  color: #888888;
  line-height: 15px;
}
.compra-segura .info {
  padding: 20px;
  float: left;
}

#shopping-cart-table tbody td {
  vertical-align: middle !important;
  padding: 15px 0;
  text-align: center;
}
#shopping-cart-table tbody td.product-cart-remove .fa-trash-o {
  background-image: url("../images/eliminar.png");
  width: 14px;
  height: 17px;
  background-repeat: no-repeat;
}
#shopping-cart-table tbody td.product-cart-remove .fa-trash-o:before {
  display: none;
}
#shopping-cart-table tbody tr {
  border-bottom: 0px;
}
#shopping-cart-table tbody tr.first td {
  padding-bottom: 0;
}
#shopping-cart-table tbody tr.first.last td {
  padding-bottom: 20px;
}
#shopping-cart-table tfoot .button {
  padding: 0 25px;
  background: transparent;
  text-transform: inherit;
  margin-top: 20px;
}
#shopping-cart-table tfoot #shopping-btn {
  padding-left: 0;
}
#shopping-cart-table tfoot #shopping-btn .btn-continue-shopping {
  width: auto;
  border: 1px solid #4a4a4a;
  float: left;
  padding: 8px;
}
#shopping-cart-table tfoot #shopping-btn .btn-continue-shopping a.btn-continue {
  color: #4a4a4a;
  display: inline-block;
  font-size: 12px;
  cursor: pointer;
  font-weight: 300;
  text-transform: uppercase;
}
#shopping-cart-table tfoot #shopping-btn .btn-continue-shopping a.btn-continue:hover {
  font-weight: 500;
}

.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
}
.cart-table h2 {
  margin-bottom: 0;
  text-align: left;
  line-height: 18px;
  text-transform: none;
}
.cart-table h2.product-name a {
  font-size: 15px;
  color: #4a4a4a;
}
.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 10px 0;
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
}
.cart-table tfoot {
  border-top: 1px solid #e3e3e3;
}
.cart-table tfoot #vercostos:before {
  content: "\f105" !important;
}
.cart-table tfoot .button span {
  position: relative;
}
.cart-table tfoot .button span > :before {
  float: left;
  content: "\f104";
  font-family: FontAwesome;
  margin-right: 5px;
  position: absolute;
  left: -10px;
}
.cart-table tfoot .btn-continue {
  float: left;
}
.cart-table tfoot #necesitas {
  margin-left: 20px;
}
.cart-table tfoot #necesitas:before {
  display: none;
}
.cart-table tfoot a {
  float: right;
}
.cart-table tfoot .btn-empty, .cart-table tfoot .btn-update, .cart-table tfoot .or {
  display: none;
}
.cart-table tfoot tr {
  background: none;
}
.cart-table tfoot tr > td:after {
  content: '';
  display: table;
  clear: both;
}
.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase;
}
.cart-table .product-cart-image .cart-links,
.cart-table .product-cart-info .btn-remove,
.cart-table .product-cart-actions .button {
  display: none;
}
@media only screen and (max-width: 991px) {
  .cart-table .product-cart-info {
    display: flex;
    flex-direction: column;
  }
}
.cart-table .product-cart-actions .btn-update {
  color: #6d6d6d;
  background: transparent;
  padding: 0 !important;
  display: inline-block;
  margin-left: 0;
  border: 0;
  top: 60px;
}
@media only screen and (max-width: 991px) {
  .cart-table .product-cart-actions .quantity-buttons {
    display: flex;
    align-items: center;
    justify-content: start;
  }
  .cart-table .product-cart-actions .quantity-buttons i {
    padding: 10px;
    border: 2px solid lightgray;
    border-radius: 50%;
    cursor: pointer;
  }
  .cart-table .product-cart-actions .quantity-buttons .input-text.qty {
    border: none;
    background: transparent;
    margin: 0 !important;
    width: 3em;
    height: auto;
    pointer-events: none;
  }
}
.cart-table .product-cart-remove .fa {
  font-size: 16px;
  color: #6d6d6d;
}
.cart-table .product-cart-image {
  padding-left: 0;
  padding-right: 0;
}
.cart-table .product-cart-image a.product-image {
  border: 0;
  border: 0;
}
.cart-table .product-cart-image a.cart-edit {
  display: none;
}
.cart-table .product-cart-image img {
  width: auto;
  height: auto;
  margin: 0 auto;
}
.cart-table .product-cart-sku {
  font-size: 12px;
  margin: 5px 0 12px;
}
.cart-table .product-cart-sku .label {
  font-weight: 600;
}
.cart-table .btn-empty {
  float: left;
}
.cart-table .product-cart-sku {
  display: none;
}
.cart-table dl.item-options {
  display: none;
  margin-left: 0 !important;
  margin-top: 0 !important;
  float: left;
  text-transform: none;
}
.cart-table dl.item-options dt {
  float: left;
  clear: left;
  padding-right: 5px;
  font-style: normal;
  font-size: 10px;
  font-weight: 300;
  line-height: 18px;
}
.cart-table dl.item-options dd {
  padding-right: 5px;
  font-style: normal;
  font-size: 10px;
  font-weight: 300;
  line-height: 18px;
  margin-bottom: 0;
  padding-left: 5px;
}
.cart-table .product-cart-total,
.cart-table .product-cart-price {
  text-align: center;
  padding: 0;
  padding-bottom: 0;
  vertical-align: middle;
}
.cart-table .cart-tax-total {
  position: relative;
  cursor: pointer;
}
.cart-table .cart-tax-total:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #000;
  border-left: none;
  position: absolute;
  top: 3px;
  right: -11px;
}
.cart-table .cart-tax-total.cart-tax-total-expanded:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #000;
  border-bottom: none;
  right: -15px;
  top: 6px;
}
.cart-table .cart-links > li {
  white-space: nowrap;
  line-height: 1.3;
  margin-bottom: 5px;
  min-width: 65px;
  font-size: 14px;
}
.cart-table .cart-links > li > a {
  display: block;
}
.cart-table .cart-links > li:last-child {
  margin-bottom: 0;
}
.cart-table .product-cart-actions {
  min-width: 60px;
  text-align: center;
  position: relative;
}
.cart-table .product-cart-actions .qty {
  height: 35px;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  margin-bottom: 0px;
  text-align: center;
  width: 40px;
  color: #606060;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
.cart-table .product-cart-actions .button {
  margin-bottom: 0px;
  min-height: 30px;
  line-height: 30px;
  position: absolute;
  right: 20px;
  width: auto;
}
@media only screen and (max-width: 991px) {
  .cart-table .product-cart-actions .button {
    right: 10px;
    top: 60px;
  }
}
@media only screen and (max-width: 479px) {
  .cart-table .product-cart-actions .button {
    right: 10px;
    top: 20px;
  }
}

.checkout-cart-index #header .logo-container .logo img {
  width: 120px;
}
.checkout-cart-index #header .block-container .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkout-cart-index #header .block-container .block {
  display: none;
}
.checkout-cart-index #header .block-container .block.logo-frizata {
  display: flex;
  width: 100%;
  justify-content: center;
}
.checkout-cart-index #header .block-container .block.logo-frizata .logocont {
  margin-left: 0;
  width: auto;
}
.checkout-cart-index #header .block-container .block.logo-frizata .linksblock {
  display: none;
}
.checkout-cart-index #header .block-container .block #header-search {
  display: none;
}
.checkout-cart-index #header #header-nav {
  display: none;
}
.checkout-cart-index #header .mobile-nav-wrapper .skip-nav {
  display: none !important;
}
.checkout-cart-index .cart-totals-wrapper .shipping {
  width: 100%;
  float: left;
}
.checkout-cart-index .cart-totals-wrapper .shipping .sp-methods {
  margin: 0;
  padding: 10px 20px;
  text-align: left;
  background: #f9f8f4;
}
.checkout-cart-index .cart-totals-wrapper .shipping .shipping-form .buttons-set {
  display: flex;
  justify-content: center;
  background: #f9f8f4;
}
.checkout-cart-index .cart-totals-wrapper .shipping .shipping-form .buttons-set .button {
  width: 190px;
}
.checkout-cart-index .cart-totals-wrapper .shipping .shipping-form .buttons-set span {
  font-size: 12px;
  letter-spacing: 0;
}
.checkout-cart-index .cart-totals-wrapper .shipping ul.form-list {
  padding: 15px 30px;
  background-color: #f9f8f4;
  padding-bottom: 0;
}
.checkout-cart-index .cart-totals-wrapper .shipping ul.form-list li input {
  width: 100%;
  float: left;
}
.checkout-cart-index .cart-totals-wrapper .shipping button.button2 {
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  background: black;
  border-radius: 25px;
  color: white;
  font-size: 14px;
  min-height: 33px;
  margin: 10px 0;
  width: 190px;
}
.checkout-cart-index .cart-totals-wrapper .shipping button.button2 span span {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
}
.checkout-cart-index .cart-totals-wrapper .shipping button.button2:active {
  background: #d8d8d8;
  border: 1px solid black;
}
.checkout-cart-index .cart-totals-wrapper .shipping button.button2:active span span {
  color: #000;
}
.checkout-cart-index .cart-totals-wrapper .shipping button.button2:hover {
  opacity: 0.8;
}
.checkout-cart-index .cart-totals-wrapper h2 {
  font-weight: 700;
  color: #4a4a4a;
  font-size: 12px;
  text-align: center;
  line-height: 26px;
  margin: 0;
  padding: 10px 20px;
  text-transform: uppercase;
  float: left;
  width: 100%;
}
.checkout-cart-index .cart-totals-wrapper .cupons {
  position: relative;
  text-align: left;
  float: left;
  display: none !important;
  width: 100%;
  line-height: 18px;
  padding: 15px 20px;
  background-color: #f5f4f2;
  padding-bottom: 0;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}
.checkout-cart-index .cart-totals-wrapper .cupons + h2 {
  display: none;
}
.checkout-cart-index .cart-totals-wrapper .cupons .text-descuento, .checkout-cart-index .cart-totals-wrapper .cupons .text-rm-descuento {
  padding-bottom: 15px;
  text-align: left;
  float: left;
  font-size: 14px;
  padding-right: 0px;
  color: #565656;
  margin: 10px 0 0;
  line-height: 1.3;
  width: 90%;
  font-weight: 300;
}
.checkout-cart-index .cart-totals-wrapper .cupons .text-descuento a, .checkout-cart-index .cart-totals-wrapper .cupons .text-rm-descuento a {
  color: #565656;
  border-bottom: 2px solid #00a6e3;
  cursor: pointer;
}
.checkout-cart-index .cart-totals-wrapper .cupons .text-descuento a:hover, .checkout-cart-index .cart-totals-wrapper .cupons .text-rm-descuento a:hover {
  opacity: 0.7;
}
.checkout-cart-index .cart-totals-wrapper .cupons i {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 5px;
  color: #F3793B;
}
.checkout-cart-index .cart-totals-wrapper .cupons div#cupon-input {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.checkout-cart-index .cart-totals-wrapper .cupons div#cupon-input .field-wrapper {
  display: block;
}
.checkout-cart-index .cart-totals-wrapper .cupons div#cupon-input .field-wrapper .input-text {
  margin: 0;
  float: left;
  width: 100%;
}
.checkout-cart-index .cart-totals-wrapper .cupons div#cupon-input .field-wrapper .button-wrapper {
  float: left;
  display: flex;
}
.checkout-cart-index .cart-totals-wrapper .cupons div#cupon-input .field-wrapper .button-wrapper button {
  font-size: 10px;
  float: right;
  letter-spacing: 0;
  min-height: auto;
  line-height: 33px;
  margin-top: 7px;
  width: 100% !important;
}
.checkout-cart-index .cart-totals-wrapper .cupons div#cupon-input .field-wrapper .button-wrapper button.cancel-coupon {
  margin-left: 10px;
}

.data-table td.cart-footer-actions {
  padding: 0;
  display: none;
}

#shopping-cart-table thead tr th {
  padding-bottom: 5px;
  padding-top: 5px;
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  border: none;
  letter-spacing: 0;
  color: #4a4a4a;
  font-weight: bold;
}
@media only screen and (min-width: 992px) {
  #shopping-cart-table thead tr th {
    border-bottom: 1px solid #4a4a4a;
  }
}

.checkout-cart-index .cart-totals-wrapper {
  float: right;
}

/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
.shipping h2 {
  font-size: 24px;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}
.shipping select {
  max-width: 100%;
  height: 30px;
  display: block;
  border: 1px solid #C0C0C0;
}
.shipping select.validation-failed {
  border-color: #DF280A;
}
.shipping .buttons-set {
  border: none;
  margin: 0;
  padding: 0;
}
.shipping .form-list:after {
  content: '';
  display: table;
  clear: both;
}
.shipping .form-list li {
  float: left;
  margin: 5px 2% 10px 0;
}
.shipping .form-list .shipping-country {
  width: 100%;
}
.shipping .form-list .shipping-region {
  width: 100%;
}
.shipping .form-list .shipping-postcode {
  margin-right: 0;
  width: 100%;
}
.shipping .form-list .shipping-postcode input {
  margin-top: 4px;
}
.shipping .form-list .input-box {
  padding-top: 0;
}
.shipping .form-list input {
  height: 30px;
  margin-top: 4px;
}
.shipping .form-list label {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
}
.shipping .sp-methods {
  padding: 10px 0 0;
  text-align: left;
}
.shipping .sp-methods dd {
  margin-bottom: 10px;
}
.shipping .sp-methods label span {
  font-weight: bold;
  font-style: normal;
}
@media only screen and (max-width: 991px) {
  .shipping .sp-methods label span {
    font-size: 13px;
    margin-left: 3px;
  }
}
.shipping #co-shipping-method-form .buttons-set .button {
  float: left;
  margin-left: 0;
}
.shipping #co-shipping-method-form .sp-methods dd label {
  border: 1px solid #949494;
  background-color: #e9e8e6;
  min-width: 220px;
}
.shipping #co-shipping-method-form .sp-methods dd label:hover {
  background-color: #dddcda;
}

/* =============================================
// Totals
// =============================================*/
.titulo-resumen-compra {
  text-align: center;
  background-color: #f9f8f4;
  border-bottom: 1px solid #dbdbdb;
  color: #4a4a4a;
  font-size: 12px;
  margin-top: 50px;
  font-weight: 700;
  line-height: 26px;
  padding: 10px 20px;
  text-transform: uppercase;
  float: left;
  width: 100%;
}

.cart .cart-totals {
  text-align: right;
  float: left;
  width: 100%;
  background-color: #f9f8f4;
}
.cart .cart-totals h2 {
  font-size: 18px;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 10px;
  text-align: left;
  text-transform: uppercase;
  font-weight: 400;
  color: #444;
}
.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}
.cart .cart-totals #shopping-cart-totals-table tr td:first-child {
  text-align: left;
}
.cart .cart-totals #shopping-cart-totals-table .a-right {
  text-align: right;
}
.cart .cart-totals table {
  font-size: 12px;
  margin-bottom: 20px;
  width: 100%;
}
.cart .cart-totals table td {
  color: #606060;
  font-size: 14px;
  font-weight: 300;
}
.cart .cart-totals table td:first-child {
  padding-right: 10px;
  min-width: 120px;
}
.cart .cart-totals table tbody td {
  color: #444;
}
.cart .cart-totals table tfoot td {
  font-size: 22px;
  vertical-align: top;
  color: #444;
}
.cart .cart-totals table tfoot strong span,
.cart .cart-totals table tfoot span.price {
  color: #606060;
  font-size: 24px;
  font-weight: 700;
}
.cart .cart-totals table tfoot strong {
  color: #606060;
  font-size: 24px;
  font-weight: 700;
}

/* =============================================
// Discount codes and gift cards
// =============================================*/
.discount-form:after,
#giftcard-form:after {
  content: '';
  display: table;
  clear: both;
}

#discount-coupon-form,
.cart .giftcard {
  width: 100%;
}
#discount-coupon-form h2,
.cart .giftcard h2 {
  display: none;
}
#discount-coupon-form label,
.cart .giftcard label {
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  min-width: 105px;
  display: inline-block;
  margin-right: 10px;
  float: left;
  width: 100%;
}
#discount-coupon-form .field-wrapper,
.cart .giftcard .field-wrapper {
  display: inline-block;
}
#discount-coupon-form .validation-advice,
.cart .giftcard .validation-advice {
  position: absolute;
  right: 0;
}
#discount-coupon-form .button-wrapper,
.cart .giftcard .button-wrapper {
  display: inline-block;
}
#discount-coupon-form .button-wrapper > button,
.cart .giftcard .button-wrapper > button {
  float: left;
}
#discount-coupon-form .input-text,
.cart .giftcard .input-text {
  margin: 10px 0 5px;
  width: 100%;
}

.cart .giftcard p {
  margin-bottom: 7px;
}

.cart .giftcard .check-gc-status {
  float: left;
  padding: 0px;
}
.cart .giftcard .check-gc-status > span > span {
  font-size: 12px;
  text-transform: none;
}

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */
.crossell-cart {
  float: left;
  width: 100%;
  padding-top: 100px;
}
.crossell-cart .shipping {
  display: none;
}

.crosssell {
  float: left;
  width: 100%;
}
.crosssell h2 {
  float: left;
  width: 100%;
  text-align: center;
  font-size: 21px;
  color: #00a6e2;
  font-weight: 700;
  line-height: 36.49px;
  letter-spacing: 1px;
}
.crosssell .owl-theme .owl-controls {
  top: -55px;
}
.crosssell .owl-theme .owl-controls .owl-dots {
  display: none !important;
}
.crosssell li .product-info {
  float: left;
  width: 100%;
}
.crosssell li .product-info .product-image {
  border: 0;
}
.crosssell li .product-info .product-image img {
  margin: 0 auto;
  transform-style: inherit !important;
}
.crosssell li .product-info .product-name {
  padding-top: 15px;
  margin-bottom: 0;
  color: #000000;
  font-size: 12px;
  line-height: 16px;
  float: left;
  width: 100%;
}
.crosssell li .product-info .price-box {
  float: left;
  width: 100%;
  margin: 0;
}
.crosssell li .product-info .price-box .price {
  font-size: 20px;
  font-weight: 600;
  line-height: 16px;
  margin-top: 5px;
  display: inline-block;
  width: 100%;
}
.crosssell li .product-info .price-box .map-link {
  display: none;
}
.crosssell li .product-info .actions {
  display: block;
  float: left;
  width: 100%;
  margin-top: 15px;
}
.crosssell li .product-info .actions button {
  float: none;
}
.crosssell li .product-info .actions .add-to-links {
  float: left;
  margin: 0;
  line-height: 29px;
  padding: 0;
  margin-left: 0;
  width: 100%;
  margin-top: 10px;
}
.crosssell li .product-info .actions .add-to-links li.compare {
  display: none;
}

/* Change the layout to 2 columns at a breakpoint that is higher than a 3 columns layout would normally break */
.crosssell {
  /* Undo three-column config */
}
.crosssell .products-grid > li:nth-child(even),
.crosssell .products-grid > li:nth-child(3n),
.crosssell .products-grid > li {
  width: 47.72727%;
  margin-right: 4.54545%;
}
.crosssell .products-grid > li:nth-child(odd) {
  clear: left;
}
.crosssell .products-grid > li:nth-child(even) {
  margin-right: 0;
}
.crosssell .products-grid > li:nth-child(3n+1) {
  clear: none;
}

/* ============================================ *
 * Banner Cart
 * ============================================ */
.banner-cart {
  margin-bottom: 20px;
}
.banner-cart img {
  width: 100%;
}

.checkout-cart-index button#mbbxProductBtn {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  color: #f08f2a;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 12px;
  background: transparent;
  border-color: #f08f2a;
  font-weight: 700;
}
.checkout-cart-index button#mbbxProductBtn img {
  display: none !important;
}
.checkout-cart-index .breadcrumbs {
  display: none;
}
.checkout-cart-index #header {
  position: relative;
}
.checkout-cart-index .main-container.col1-layout {
  padding-top: 90px;
}
.checkout-cart-index #header .logo-container {
  width: 100%;
}
.checkout-cart-index .page-header-container {
  text-align: center;
  border-bottom: 1px solid #e3e3e3;
}
.checkout-cart-index .page-header-container .logo {
  max-width: none;
  min-height: 0;
  float: left;
  text-align: center;
  width: 100%;
  padding: 20px 0;
}

.checkout-cart-index .bottom-footer {
  margin-top: 200px;
}
.checkout-cart-index #shopping-cart-table tbody tr td.product-cart-image {
  float: left;
  width: 120px;
}
.checkout-cart-index #shopping-cart-table tbody tr td.product-cart-info {
  width: 200px;
  padding-left: 10px;
}
.checkout-cart-index #shopping-cart-table tbody tr td.product-cart-total, .checkout-cart-index #shopping-cart-table tbody tr td.product-cart-actions, .checkout-cart-index #shopping-cart-table tbody tr td.product-cart-price {
  width: 150px;
}
.checkout-cart-index #shopping-cart-table tbody tr td.product-cart-remove {
  width: auto;
}
.checkout-cart-index #shopping-cart-table .informaciones-wrapper {
  float: left;
  width: 100%;
  margin-top: 10px;
}
.checkout-cart-index #shopping-cart-table .informaciones-wrapper .link {
  width: auto;
  float: left;
  padding: 0 25px;
  color: #00a6e2;
  font-size: 12px;
  font-weight: 600;
  line-height: 36px;
}
@media only screen and (max-width: 599px) {
  .checkout-cart-index #shopping-cart-table .informaciones-wrapper .link {
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 991px) {
  .checkout-cart-index #shopping-cart-table .informaciones-wrapper .link {
    width: 100%;
    padding: 0 !important;
  }
}
.checkout-cart-index #shopping-cart-table .informaciones-wrapper .link:after {
  content: '\f105';
  font-family: FontAwesome;
  margin-left: 10px;
}
.checkout-cart-index #shopping-cart-table .informaciones-wrapper .link.medios_pago {
  padding-right: 0;
}
.checkout-cart-index #shopping-cart-table .informaciones-wrapper .link.envios {
  padding-left: 0;
}
.checkout-cart-index .footer {
  display: none;
}
.checkout-cart-index #newsletter {
  display: none;
}
.checkout-cart-index .pre-footer {
  display: none;
}

form#shipping-zip-form {
  background: #f5f4f2;
}
form#shipping-zip-form p.shipping-desc {
  text-align: center;
  padding: 10px 0;
  color: #565656;
  font-size: 13px;
  float: left;
  width: 100%;
}

/* ============================================ *
 * Checkout - One Page
 * ============================================ */
#checkout-step-review .data-table tbody td .item-options, .checkout-cart-index .data-table tbody td .item-options {
  display: block !important;
}

.checkout-onepage-index .col-right,
.checkout-onepage-index .col-left {
  display: none;
}

.checkout-onepage-index .col-main {
  width: auto;
  float: none;
  @import "//fonts.googleapis.com/css?family=Open+Sans";
}
.checkout-onepage-index .col-main .steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
  color: black;
  height: 4rem;
}
.checkout-onepage-index .col-main .steps > .step {
  position: relative;
  display: table-cell;
  text-align: center;
  font-size: 1.275rem;
  color: #6D6875;
}
.checkout-onepage-index .col-main .steps > .step#BillingData:before {
  content: '\f007';
}
.checkout-onepage-index .col-main .steps > .step#ShippingData:before {
  content: '\f0d1';
}
.checkout-onepage-index .col-main .steps > .step#PaymentData:before {
  content: '\f09d';
}
.checkout-onepage-index .col-main .steps > .step#ReviewData:before {
  content: '\f118';
}
.checkout-onepage-index .col-main .steps > .step:before {
  display: block;
  margin: 0 auto;
  font-family: 'FontAwesome';
  background: #ffffff;
  border: 2px solid #00035B;
  color: #00035B;
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  line-height: 2.1rem;
  border-radius: 100%;
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.checkout-onepage-index .col-main .steps > .step:after {
  content: '';
  position: absolute;
  display: block;
  background: #00035B;
  width: 100%;
  height: 3px;
  top: 1rem;
  left: 50%;
}
.checkout-onepage-index .col-main .steps > .step:last-child:after {
  display: none;
}
.checkout-onepage-index .col-main .steps > .step.is-complete {
  color: #6D6875;
}
.checkout-onepage-index .col-main .steps > .step.is-complete:before {
  content: '\2714' !important;
  color: #F06000;
  background: #fef0e2;
  border: 2px solid #F06000;
}
.checkout-onepage-index .col-main .steps > .step.is-complete:after {
  background: #F06000;
}
.checkout-onepage-index .col-main .steps > .step.is-active:before {
  color: #FFF;
  border: 2px solid #F06000;
  background: #F06000;
}
.checkout-onepage-index .col-main form#co-payment-form {
  margin-bottom: 86px;
}
.checkout-onepage-index .col-main span.default-payment-text {
  margin-top: 10px;
  float: left;
}
.checkout-onepage-index .col-main dt#dt_method_mobbex {
  display: block !important;
}

.opc select {
  width: 365px;
}

/* -------------------------------------------- *
 * Section Styling - Default
 */
.opc .section .step-title {
  width: 100%;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.opc .section .step-title:after {
  content: '';
  display: table;
  clear: both;
}

.opc .section.allow:not(.active) .step-title {
  cursor: pointer;
}

/* Using .no-touch since touch devices emulate hover, thereby making steps look active that are not */
.no-touch .opc .section.allow:not(.active) .step-title:hover {
  background-color: #f5f4f2;
}

.opc .section .step-title a {
  display: none;
}

.opc .section.allow:not(.active) .step-title a {
  display: block;
  float: right;
  line-height: 40px;
  height: 40px;
  padding: 0px 10px;
}

.no-touch .opc .section .step-title a:hover {
  text-decoration: none;
}

.opc .section .step-title .number,
.opc .section.allow.active .step-title .number,
.no-touch .opc .section.allow:hover .step-title .number {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  text-align: center;
  color: #fff;
  line-height: 26px;
  border-radius: 100%;
  background-color: #00035B;
  display: block;
}

.opc .section.allow .step-title .number {
  background-color: #b2b2b2;
}

.opc .section.allow .step-title h2 {
  color: #646464;
}

.opc .section.allow .step-title:hover h2,
.opc .section.active .step-title h2 {
  color: #F06000;
}

.opc .section .step-title h2 {
  font-size: 26px;
  font-weight: 400;
  line-height: 40px;
  height: 40px;
  margin: 0px 4px 0px 45px;
}

.opc .section .step {
  padding: 20px;
  padding: 10px;
}
.opc .section .step:after {
  content: '';
  display: table;
  clear: both;
}

.opc select {
  max-width: 365px;
  width: 100%;
  font-size: 15px;
}

.opc h3 {
  font-weight: 500;
}

.opc .col-2 h3 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.78px;
  color: #000000;
  text-align: center;
}
.opc .col-2 h2 {
  text-align: center;
  margin-bottom: 34px;
}
.opc .col-2 fieldset h4 {
  display: none;
}
.opc .col-2 .form-list label {
  display: none;
}
.opc .col-2 .form-list .input-box {
  text-align: center;
}
.opc .col-2 .form-list .input-box input {
  max-width: 300px;
}
.opc .col-2 .form-list input#login-email ::placeholder {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: -0.05px;
  color: #787575;
}
.opc .col-2 .form-list input#login-password ::placeholder {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: -0.05px;
  color: #787575;
}

.opc .buttons-set {
  text-align: left;
}
.opc .buttons-set button.button {
  float: left;
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 0;
}
.opc .buttons-set p.required {
  float: right;
  margin-left: 5px;
  margin-bottom: 0;
  position: absolute;
  right: 20px;
  font-size: 12px;
}
.opc .buttons-set .back-link {
  margin: 0;
  font-size: 12px;
  float: none;
}
@media only screen and (max-width: 991px) {
  .opc .buttons-set .back-link {
    width: 100%;
    font-size: 15px;
  }
  .opc .buttons-set .back-link small {
    font-size: 25px;
  }
}
.opc .buttons-set .back-link a {
  font-size: 12px;
}
.opc .buttons-set .back-link small {
  font-size: 17px;
}
.opc .buttons-set a {
  line-height: 20px;
  display: inline-block;
  padding: 5px 5px 5px 0;
  color: #a2a1a0;
  display: block;
  text-align: left;
  height: 42px;
}

@media only screen and (max-width: 991px) {
  .pre-login p {
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .pre-login p span {
    font-weight: 600;
  }
}

.opc #opc-login .validation-advice {
  width: auto;
  margin: 10px auto;
  float: initial;
  display: inline-block;
}
.opc #opc-login .step {
  padding: 0px;
}
@media only screen and (max-width: 991px) {
  .opc #opc-login .step {
    padding: 15px;
  }
}
.opc #opc-login.section.allow.active .step-title {
  display: none !important;
}
.opc #opc-login .col-2 h3 {
  font-size: 20px;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 30px;
  margin-bottom: 10px;
}
.opc #opc-login .col-2 a.password {
  display: block;
  font-family: Arial;
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: center;
  color: #00035B;
  margin-bottom: 50px;
}
.opc #opc-login .pre-login,
.opc #opc-login .pre-login-email {
  padding: 40px 20px;
}
@media only screen and (max-width: 991px) {
  .opc #opc-login .pre-login,
  .opc #opc-login .pre-login-email {
    padding: 10px 0px;
  }
  .opc #opc-login .pre-login .button,
  .opc #opc-login .pre-login-email .button {
    padding: 6px;
    width: 100%;
  }
}
.opc #opc-login .pre-login p:not(.required),
.opc #opc-login .pre-login-email p:not(.required) {
  text-transform: none;
  letter-spacing: 0;
  color: #000;
}
.opc #opc-login .pre-login p:first-child,
.opc #opc-login .pre-login-email p:first-child {
  font-size: 20px;
}
.opc #opc-login .pre-login p:nth-child(2),
.opc #opc-login .pre-login-email p:nth-child(2) {
  font-size: 15px;
}
@media only screen and (max-width: 991px) {
  .opc #opc-login .pre-login p:first-child,
  .opc #opc-login .pre-login-email p:first-child {
    font-size: 16px;
  }
  .opc #opc-login .pre-login p:nth-child(2),
  .opc #opc-login .pre-login-email p:nth-child(2) {
    font-size: 14px;
  }
}
.opc #opc-login .col-2 input[type="email"],
.opc #opc-login .col-2 input[type="text"],
.opc #opc-login .col-2 input[type="password"],
.opc #opc-login .pre-login-email input[type="email"],
.opc #opc-login .pre-login-email input[type="text"],
.opc #opc-login .pre-login-email input[type="password"] {
  max-width: 460px;
  margin: 20px auto 5px;
  display: block;
  font-size: 22px;
  height: auto;
  line-height: 1;
  padding: 13px 20px;
  border-color: #BDBDBD;
  text-align: center;
}
.opc #opc-login .col-2 input[type="email"]::placeholder,
.opc #opc-login .col-2 input[type="text"]::placeholder,
.opc #opc-login .col-2 input[type="password"]::placeholder,
.opc #opc-login .pre-login-email input[type="email"]::placeholder,
.opc #opc-login .pre-login-email input[type="text"]::placeholder,
.opc #opc-login .pre-login-email input[type="password"]::placeholder {
  color: #BDBDBD;
}
.opc #opc-login .col-2 input[type="password"],
.opc #opc-login .pre-login-email input[type="password"] {
  margin: 0 auto 5px;
}
.opc #opc-login .col-2 sup,
.opc #opc-login .pre-login-email sup {
  font-size: 12px;
  text-align: center;
  display: block;
  line-height: 2.2;
  color: #999999;
}
.opc #opc-login .col-2 sub,
.opc #opc-login .pre-login-email sub {
  font-size: 12px;
  text-align: center;
  display: block;
  line-height: 2.2;
}
.opc #opc-login .col-2 button,
.opc #opc-login .pre-login-email button {
  width: auto;
  float: none;
  margin: 20px auto;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 47px;
  font-size: 20px;
  line-height: 1;
}
.opc #opc-login .buttons-set {
  border-top: 0;
  padding-top: 5px;
  text-align: center;
  position: relative;
  margin: 0;
  float: left;
  width: 100%;
}
.opc #opc-login .buttons-set .clearer .inchoo-socialconnect-google {
  background: none !important;
  float: left;
  width: 100%;
}
.opc #opc-login .buttons-set .clearer .inchoo-socialconnect-google .inchoo-socialconnect-google-inner {
  width: 225px;
  height: 41px !important;
  margin: 0 auto !important;
  float: none !important;
  background: transparent url(../images/google-button.png) no-repeat !important;
  cursor: pointer;
  background-size: 225px !important;
}
.opc #opc-login .buttons-set .clearer .inchoo-socialconnect-google .inchoo-socialconnect-google-inner:hover {
  opacity: 0.8;
}
.opc #opc-login .buttons-set .clearer .inchoo-socialconnect-google .inchoo-socialconnect-google-right {
  display: none;
}

@media only screen and (max-width: 991px) {
  .opc .step {
    padding: 15px;
    background: #fff;
    margin-top: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}

#opc-payment .note {
  padding: 10px;
}
#opc-payment .payment-text {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

/* -------------------------------------------- *
 * This section hides everything but the "Checkout Method" step of the checkout process and fades in the content
 * once the customer progresses to the next step. The purpose of this is to simplify what the customer has to focus on.
 * It is limited to larger viewports since smaller devices are inherently going to be focused solely on the
 * "Checkout Method" step.
 */
.opc.opc-firststep-login .section:not(#opc-login) .step-title,
.opc-block-progress-step-login {
  -moz-transition: opacity 300ms 0;
  -o-transition: opacity 300ms 0;
  -webkit-transition: opacity 300ms 0;
  transition: opacity 300ms 0;
}

.opc.opc-firststep-login .section#opc-login .step-title .number {
  -moz-transition: width 80ms 0;
  -o-transition: width 80ms 0;
  -webkit-transition: width 80ms 0;
  transition: width 80ms 0;
}

.opc.opc-firststep-login .section#opc-login .step-title h2 {
  -moz-transition: margin-left 80ms 0;
  -o-transition: margin-left 80ms 0;
  -webkit-transition: margin-left 80ms 0;
  transition: margin-left 80ms 0;
}

/* When a user progresses from the "Checkout Method" to "Billing Information" for the first time, the              */
/* "opc-has-progressed-from-login" class gets added to the body. Also, the .opc element will only have the         */
/* "opc-firststep-login" class if the first step of the checkout is the "Checkout Method" (eg, not when logged in) */
body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section:not(#opc-login) .step-title,
body:not(.opc-has-progressed-from-login) .opc-block-progress-step-login {
  opacity: 1;
}

body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title .number {
  width: 0px;
  overflow: hidden;
}

body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title h2 {
  margin-left: 0px;
}

/* -------------------------------------------- *
 * Shipping and Payment methods
 */
.sp-methods {
  margin: 0 0 -30px;
}
.sp-methods dt {
  margin: 13px 0 5px;
  font-weight: bold;
}
.sp-methods dt:first-child {
  margin: 0 0 5px;
}
.sp-methods label img {
  float: left;
}
.sp-methods label a {
  margin-top: 6px;
  float: right;
  margin-left: 10px;
}
.sp-methods .price {
  font-weight: bold;
  color: #555;
}
.sp-methods .form-list li {
  margin: 0 0 8px;
}
.sp-methods select.month {
  width: 120px;
  margin-right: 10px;
}
.sp-methods select.year {
  width: 96px;
}
.sp-methods input.cvv {
  width: 4em !important;
}
.sp-methods #advice-validate-cc-exp-ccsave_expiration {
  max-width: 130px;
}
.sp-methods .checkmo-list li {
  margin: 0 0 5px;
  content: '';
  display: table;
  clear: both;
}
.sp-methods .checkmo-list label {
  width: 165px;
  padding-right: 15px;
  text-align: right;
  float: left;
}
.sp-methods .checkmo-list address {
  float: left;
}
.sp-methods .release-amounts {
  margin: 0.5em 0;
}
.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0;
}

/* One Page Checkout */
.block-progress {
  border: 0;
  margin: 0;
  border-left: 1px solid #949494;
  padding-left: 20px;
  border-left: 1px solid #eee;
}
.block-progress .block-content {
  font-size: 14px;
}
.block-progress dt {
  padding-top: 6px;
  margin: 0;
  margin-bottom: 10px;
  color: #606060;
  letter-spacing: 2px;
  font-size: 18px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: normal;
  color: #646464;
}
.block-progress dt.complete {
  color: #606060;
}
.block-progress dd {
  padding-left: 15px;
  margin-bottom: 10px;
  font-style: italic;
}
.block-progress dd address {
  font-style: italic;
}
.block-progress #payment-progress-opcheckout .subtitle {
  font-family: inherit;
  margin: 0 0 3px;
  font-size: inherit;
}
.block-progress .payment-info dt {
  padding: 0;
  margin: 0 0 3px 0;
  color: #606060;
  text-transform: none;
  font-style: italic;
  float: left;
  clear: both;
  font-size: 14px;
}
.block-progress .payment-info dt:after {
  content: ': ';
}
.block-progress .payment-info dd {
  float: left;
  margin-bottom: 3px;
  font-size: 14px;
}
.block-progress .payment-info:after {
  content: '';
  display: table;
  clear: both;
}

/* review step */
#checkout-review-table .btn-remove img {
  display: none;
}

#checkout-review-table-wrapper {
  clear: both;
}

#review-buttons-container {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
#review-buttons-container .btn-checkout {
  min-width: 220px;
}
#review-buttons-container .please-wait {
  float: left;
  margin-right: 10px;
  margin: 15px auto 0;
  width: 100%;
  text-align: center;
}
#review-buttons-container .please-wait img {
  display: inline-block;
  float: none;
}
#review-buttons-container .f-left {
  float: right;
}
@media only screen and (max-width: 991px) {
  #review-buttons-container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* show/hide "change" link for progress step depend on complete status
 * should be placed in .css file */
.opc-block-progress dt.complete a,
.opc-block-progress dt.complete .separator {
  display: inline;
}

.opc-block-progress dt a,
.opc-block-progress dt .separator {
  display: none;
}

/* On small screens, the progress review content will be moved to the review step via JS. Styled via this CSS: */
#checkout-step-review .opc-block-progress {
  border-left: none;
  padding-left: 0;
}
#checkout-step-review .opc-block-progress .block-title {
  display: none;
}
#checkout-step-review .opc-block-progress .block-content {
  display: block !important;
  padding: 0;
}
#checkout-step-review .opc-block-progress .block-content > dl > div {
  float: left;
  width: 50%;
}
#checkout-step-review .opc-block-progress .block-content .changelink {
  display: none;
}

#checkout-step-review .centinel > p {
  margin-bottom: 10px;
}
#checkout-step-review .centinel iframe {
  width: 100%;
  min-height: 400px;
}

/* Gift options */
.gift-messages-form .item {
  content: '';
  display: table;
  clear: both;
  margin-top: 0px;
}
.gift-messages-form .item h5 {
  font-weight: bold;
}
.gift-messages-form .item .product-img-box {
  width: auto;
  float: left;
  padding-right: 15px;
}
.gift-messages-form .item .details {
  float: left;
}

.gift-message-form .inner-box > div {
  content: '';
  display: table;
  clear: both;
  width: 100%;
  margin-top: 15px;
  display: block;
}
.gift-message-form .inner-box > div.extra-options-container p {
  margin-bottom: 15px;
}
.gift-message-form .gift-wrapping-form label {
  margin-right: 10px;
}
.gift-message-form .gift-wrapping-form img {
  float: left;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design {
  height: 75px;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design:after {
  content: '';
  display: table;
  clear: both;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design .image-box {
  margin-right: 5px;
}
.gift-message-form .gift-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #ECECEC;
}
.gift-message-form .gift-item:after {
  content: '';
  display: table;
  clear: both;
}
.gift-message-form .gift-item .product-img-box {
  width: 200px;
}
.gift-message-form .gift-item .product-img-box .product-image {
  width: 75px;
  margin-left: auto;
  margin-right: auto;
}
.gift-message-form .gift-item .product-img-box .product-name {
  display: block;
}
.gift-message-form .gift-item .fieldset {
  margin-left: 200px;
}

.checkout-onepage-index .buttons-set button.button {
  width: auto;
  float: none;
  margin: 17px 0;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 35px;
  font-weight: 700;
  font-size: 17px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .buttons-set button.button {
    margin: 5px auto 0;
    float: none;
    font-size: 14px;
    padding: 6px;
    width: 100%;
  }
}
.checkout-onepage-index .bottom-footer .legales {
  display: inline-block !important;
  float: left;
}
.checkout-onepage-index .bottom-footer .legales a {
  float: left;
  margin-right: 5px;
}
.checkout-onepage-index .bottom-footer .legales a.secure_site {
  margin-top: 10px;
}
.checkout-onepage-index .bottom-footer address {
  color: #fff;
  font-size: 13px;
  line-height: 50px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .bottom-footer address {
    line-height: 16px;
    display: block;
  }
}
.checkout-onepage-index .bottom-footer .logo-brand {
  float: right;
  line-height: 20px;
  width: auto !important;
  padding: 20px 0;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .bottom-footer .logo-brand {
    display: block;
    padding: 2px 0;
  }
}
@media only screen and (max-width: 767px) {
  .checkout-onepage-index .bottom-footer .logo-brand {
    display: block;
    padding: 12px 0;
  }
}
.checkout-onepage-index .validation-advice {
  font-size: 11px;
  color: #da313c;
}
.checkout-onepage-index .validation-advice:before {
  content: '!';
  width: 13px;
  margin-top: 1px;
  height: 13px;
  background-color: #da313c;
  border-radius: 100%;
  color: #fff;
  float: left;
  line-height: 14px;
  text-align: center;
  font-size: 10px;
  margin-right: 3px;
}
.checkout-onepage-index #header {
  position: relative;
}
@media only screen and (min-width: 992px) {
  .checkout-onepage-index #header .logo-container .logo {
    margin: 0px auto 15px;
    float: none;
    max-width: 130px;
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #header .header-top .mobile-nav-wrapper {
    padding: 10px 10px 14px 10px;
    display: inline-block !important;
  }
  .checkout-onepage-index #header .header-top .mobile-nav-wrapper .skip-link {
    display: none !important;
  }
}
.checkout-onepage-index #header .logo-container {
  width: auto !important;
  float: none;
  margin-left: 0;
}
.checkout-onepage-index #header .nav-links {
  display: none;
}
.checkout-onepage-index #header #header-nav {
  display: none;
}
@media only screen and (min-width: 992px) {
  .checkout-onepage-index #header .comprasegura {
    display: inline-block !important;
    line-height: 20px;
    margin-top: 20px;
    margin-right: 120px;
  }
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #header .comprasegura {
    display: inline-block !important;
    text-align: left;
    max-width: 100px;
    position: relative;
    line-height: 14px;
    top: 10px;
  }
}
.checkout-onepage-index #header .comprasegura img {
  max-width: 16px;
  display: inline-block;
  float: left;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #header .comprasegura img {
    position: absolute;
    left: -20px;
    top: 0px;
    max-width: 20px;
  }
}
.checkout-onepage-index #header .comprasegura span {
  float: left;
  font-size: 13px;
  margin-left: 5px;
  font-weight: bold;
  color: #00035B;
}
.checkout-onepage-index #header .block-container .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkout-onepage-index #header .block-container .block {
  display: none;
}
.checkout-onepage-index #header .block-container .block.logo-frizata {
  display: flex;
  width: 100%;
  justify-content: center;
}
.checkout-onepage-index #header .block-container .block.logo-frizata .logocont {
  margin-left: 0;
}
.checkout-onepage-index #header .block-container .block.logo-frizata .linksblock {
  display: none;
}
.checkout-onepage-index .edit-btn {
  color: #00035B;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .edit-btn {
    float: left;
    line-height: 20px;
    margin-left: 30px;
    height: 20px;
    padding: 0;
  }
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .edit-btn:before {
    margin: 0;
    width: 0;
  }
}
.checkout-onepage-index .edit-btn:after {
  font-family: FontAwesome;
  float: right;
  margin-left: 5px;
}
.checkout-onepage-index label {
  font-size: 11px;
  color: #555;
  letter-spacing: 0;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index label {
    color: #000;
  }
}
.checkout-onepage-index h5 {
  letter-spacing: 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
  margin-bottom: 25px;
  font-size: 12px;
  color: #00035B;
}
.checkout-onepage-index h5.address-data {
  margin-top: 20px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index h5.address-data {
    margin-top: 0px;
  }
}
.checkout-onepage-index .input-text {
  border: 1px solid #BDBDBD;
  font-size: 15px;
}
.checkout-onepage-index .input-text:focus {
  border: 1px solid #00035B;
}
.checkout-onepage-index .input-text::placeholder {
  color: #bbb;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .input-text {
    border-radius: 5px;
  }
}
.checkout-onepage-index .logout-wrapper {
  position: absolute;
  right: 20px;
  top: 5px;
  cursor: pointer;
  z-index: 9;
}
.checkout-onepage-index .login-wrapper {
  position: absolute;
  right: 105px;
  top: 11px;
  cursor: pointer;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .login-wrapper {
    margin-bottom: 20px;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    float: left;
  }
}
.checkout-onepage-index .login-wrapper span {
  color: #00035B;
  font-size: 13px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .login-wrapper span {
    font-size: 12px;
    font-weight: 400;
    line-height: 53px;
    float: left;
  }
}
.checkout-onepage-index .login-wrapper .login {
  margin-left: 10px;
  padding: 10px 30px 10px 30px;
  color: #fff;
  background: #00035B;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .login-wrapper .login {
    padding: 13px 20px 13px 15px;
    display: inline-block;
    float: left;
  }
}
.checkout-onepage-index .login-wrapper .login i {
  font-size: 18px;
  line-height: 18px;
  float: left;
}
.checkout-onepage-index .login-wrapper:hover {
  opacity: 0.9;
}
.checkout-onepage-index #checkout-step-login {
  margin-top: 20px;
}
.checkout-onepage-index #checkout-step-login .op-login-container {
  margin-bottom: 30px;
}
.checkout-onepage-index #checkout-step-login .op-login-container #login-form {
  width: 50%;
  float: left;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkout-step-login .op-login-container #login-form {
    width: 100%;
  }
}
.checkout-onepage-index #checkout-step-login .op-login-container #login-form .description {
  display: inline-block;
}
.checkout-onepage-index #checkout-step-login .op-login-container #login-form .forgot-password a {
  font-weight: bold;
  color: #00035B;
}
.checkout-onepage-index #checkout-step-login .op-login-container .col-social-connect {
  width: 50%;
  float: right;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkout-step-login .op-login-container .col-social-connect {
    float: left;
    width: 100%;
    margin-top: 40px;
  }
}
.checkout-onepage-index #checkout-step-login .op-login-container .inchoo-socialconnect-login {
  margin-top: 0;
  float: right;
  width: 100%;
}
.checkout-onepage-index #checkout-step-login .op-login-container .account-login {
  margin: 0;
}
.checkout-onepage-index #checkout-step-login .col1-set .container-control {
  display: flex;
  margin: auto;
  justify-content: space-evenly;
  align-items: center;
  max-width: 100%;
  clear: both;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkout-step-login .col1-set .container-control {
    flex-direction: column;
  }
}
.checkout-onepage-index #checkout-step-login .col1-set .container-control .control {
  margin: 10px;
  width: 100%;
  position: relative;
}
.checkout-onepage-index #checkout-step-login .col1-set .container-control .control > label {
  border: 1px solid #F06000;
  width: 100%;
  padding: 12px 12px 12px 40px;
  max-width: 100%;
  z-index: 1;
  position: relative;
  border-radius: 0;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  background: #F06000;
  font-size: 11px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkout-step-login .col1-set .container-control .control > label {
    flex-direction: column;
    font-size: 16px;
    border: 2px solid #F06000;
    color: #F06000;
    padding: 6px;
    background: transparent;
    text-align: center;
  }
  .checkout-onepage-index #checkout-step-login .col1-set .container-control .control > label:hover {
    border-color: #F06000 !important;
    background-color: #F06000 !important;
  }
}
.checkout-onepage-index #checkout-step-login .col1-set .container-control .control > label:hover {
  border-color: #00035B;
  background-color: #00035B;
  color: #fff;
}
.checkout-onepage-index #checkout-step-login .col1-set .container-control .control > input {
  position: absolute;
  z-index: 2;
  top: 11px;
  left: 16px;
}
.checkout-onepage-index #checkout-step-login .col1-set .container-control .control > input:checked + label {
  border-color: #00035B;
  background-color: #00035B;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkout-step-login .col1-set .container-control .control > input:checked + label {
    border: 2px solid #F06000;
    color: #ffffff;
    background: #F06000;
  }
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkout-step-login .col1-set .container-control .control > input {
    display: none;
  }
}
.checkout-onepage-index #checkout-step-login .col1-set .buttons-set button#onepage-guest-register-button {
  background-color: transparent;
  color: #000;
  border: 1px solid;
  display: flex;
}
.checkout-onepage-index #checkout-step-login .col2-set .col-1 {
  padding: 7px 0;
  text-align: center;
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
.checkout-onepage-index #checkout-step-login .col2-set .col-1 .radio {
  float: none;
}
.checkout-onepage-index #checkout-step-login .col2-set .col-2 {
  padding: 7px 0;
  text-align: center;
  width: 100%;
}
.checkout-onepage-index #checkout-step-login .col2-set .col-2 .inchoo-socialconnect-facebook {
  background: none !important;
  float: left;
  width: 100%;
}
.checkout-onepage-index #checkout-step-login .col2-set .col-2 .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-inner {
  width: 225px;
  height: 41px !important;
  margin: 0 auto !important;
  float: none !important;
  background: transparent url(../images/facebook-button.png) no-repeat !important;
  cursor: pointer;
  background-size: 225px !important;
}
.checkout-onepage-index #checkout-step-login .col2-set .col-2 .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-inner:hover {
  opacity: 0.8;
}
.checkout-onepage-index #checkout-step-login .col2-set .col-2 .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-inner span {
  font-size: 14px;
  color: #eee;
  position: absolute;
  top: 14px;
  left: 72px;
  letter-spacing: 0.78px;
}
.checkout-onepage-index #checkout-step-login .col2-set .col-2 .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-right {
  display: none;
}
.checkout-onepage-index #checkoutSteps #opc-review.active {
  border-bottom: none !important;
}
.checkout-onepage-index #checkoutSteps .section .personal-data {
  display: none;
}
.checkout-onepage-index #checkoutSteps .section .step-title {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #eee;
  padding: 5px 20px;
  line-height: 35px;
  float: left;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkoutSteps .section .step-title {
    padding: 10px;
    background: white;
    margin-top: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}
.checkout-onepage-index #checkoutSteps .section .step-title .number {
  font-size: 19px;
  background-color: #D9D9D9;
  line-height: 32px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkoutSteps .section .step-title .number {
    display: none;
  }
}
.checkout-onepage-index #checkoutSteps .section .step-title h2 {
  color: #717171;
  margin-left: 10px;
  width: auto;
  margin-left: 10px;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkoutSteps .section .step-title h2 {
    display: none;
    font-size: 13px;
    margin: 0;
    width: 100%;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 359px) {
  .checkout-onepage-index #checkoutSteps .section .step-title h2 {
    font-size: 13px;
  }
}
.checkout-onepage-index #checkoutSteps .section .step-title > a {
  margin-left: auto;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkoutSteps .section.active {
    border-bottom: none;
  }
}
.checkout-onepage-index #checkoutSteps .section.active .step-title {
  display: flex;
  border-bottom: none;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkoutSteps .section.active .step-title {
    float: right;
  }
}
.checkout-onepage-index #checkoutSteps .section.active .step-title .number {
  background-color: #F06000 !important;
}
.checkout-onepage-index #checkoutSteps .section.active .step-title h2 {
  color: #00035B !important;
}
.checkout-onepage-index #checkoutSteps .section.active .step-title h2:after {
  display: none !important;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkoutSteps .section.active .step-title .edit-btn {
    float: left;
  }
}
.checkout-onepage-index #checkoutSteps .section.active #opc-review {
  border-bottom: none;
}
.checkout-onepage-index #checkoutSteps .section.allow .step-title {
  display: flex !important;
}
.checkout-onepage-index #checkoutSteps .section.allow .step-title .number {
  background: #D9D9D9;
}
.checkout-onepage-index #checkoutSteps .section.allow .step-title h2 {
  font-weight: 400;
  color: #717171;
  letter-spacing: 0;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 600;
  height: auto;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkoutSteps .section.allow .step-title h2 {
    font-size: 13px;
    margin: 0;
    width: 100%;
    padding-left: 0;
    justify-content: space-between;
  }
}
.checkout-onepage-index #checkoutSteps .section.allow .step-title h2:after {
  background-color: #00A907;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkoutSteps .section.allow .step-title h2:after {
    margin: 0;
    display: none;
  }
}
.checkout-onepage-index #checkoutSteps .section.allow .step-title .edit-btn {
  float: right;
  line-height: 40px;
  font-size: 16px;
  color: #fff;
  background-color: #00035B;
  text-transform: uppercase;
  line-height: 1;
  height: auto;
  font-size: 14px;
  margin: 10px;
  padding: 6px 12px;
  margin-left: auto;
}
.checkout-onepage-index #checkoutSteps .section.allow .step-title .edit-btn:before {
  display: none;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkoutSteps .section.allow .step-title .edit-btn {
    line-height: 1;
    margin: 0 0 0 5px;
    padding: 3px;
    background-color: transparent;
    color: black;
  }
  .checkout-onepage-index #checkoutSteps .section.allow .step-title .edit-btn:after {
    display: block;
    content: '';
    height: 20px;
    width: 20px;
    background-image: url(../images/iconos/edit.svg);
    background-repeat: no-repeat;
    background-size: 20px;
  }
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-shipping_method .sp-methods, .checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods {
  float: left;
  margin: -20px 0 10px;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-shipping_method .sp-methods dt, .checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods dt {
  margin-top: 20px;
  float: left;
  width: 100%;
  font-size: 14px;
  color: #5a5655;
  position: relative;
  top: 1px;
  width: auto;
  margin-bottom: 0px;
  padding: 3px 10px 0;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom: 0;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  position: relative;
  z-index: 2;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-shipping_method .sp-methods dd, .checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods dd {
  float: left;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  background: #fff;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-shipping_method .sp-methods .messages, .checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods .messages {
  padding: 0px;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-shipping_method .sp-methods .method-title, .checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods .method-title {
  color: #555;
  font-size: 12px;
  font-weight: 600;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-shipping_method .sp-methods input, .checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods input {
  margin-top: 19px;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-shipping_method .sp-methods label, .checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods label {
  background: #fff;
  width: 100%;
  min-width: 100%;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid #ebebeb;
  padding: 15px 10px 15px 40px;
  cursor: pointer;
  border-radius: 5px;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-shipping_method .sp-methods #dd_method_mercadopago_custom #mercadopago-form-general label, .checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods #dd_method_mercadopago_custom #mercadopago-form-general label {
  background: #fff;
  width: 100%;
  min-width: 100%;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 10px 0;
  cursor: pointer;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-shipping_method .sp-methods #dd_method_mercadopago_custom #mercadopago-form-general input, .checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods #dd_method_mercadopago_custom #mercadopago-form-general input {
  margin-top: 0;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-shipping_method .sp-methods #checkout-payment-method-load p.communication, .checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods #checkout-payment-method-load p.communication {
  width: 100%;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-shipping_method .sp-methods #selected_st_select_box #select_box_label, .checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods #selected_st_select_box #select_box_label {
  padding: 0 !important;
  font-size: 12px !important;
  padding-left: 10px !important;
  border: none !important;
  box-shadow: none !important;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods dt, .checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods dd {
  padding: 0;
  background: transparent;
  border: none;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods .payment-text,
.checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods .checkout-agreements .agreement-content {
  overflow-y: auto;
  max-height: 125px;
  margin-bottom: 10px;
  padding: 10px;
  background: #fff;
  margin-top: -53px;
  margin-left: -7px;
  padding-top: 67px;
  max-height: none;
  border-radius: 7px;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods .payment-text {
  padding-top: 57px;
  z-index: 0;
  position: relative;
  width: auto;
  clear: both;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods .payment-text img {
  margin-bottom: -5px;
}
.checkout-onepage-index .fieldset li.fields {
  width: 100%;
  display: inline-block;
}
.checkout-onepage-index .fieldset li.fields .field {
  width: 50%;
  float: left;
  margin-bottom: 23px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .fieldset li.fields .field {
    width: 100%;
  }
}
.checkout-onepage-index .fieldset li.fields .field.wide {
  width: 100%;
}
.checkout-onepage-index .fieldset li.fields .field.wide .input-box input {
  max-width: 100%;
}
.checkout-onepage-index .fieldset li.fields .field .input-box input {
  max-width: 96%;
}
.checkout-onepage-index .fieldset li.fields .field .input-box #msj-provincia {
  margin-top: 7px;
  color: #00035B;
}
.checkout-onepage-index .fieldset li.fields .field .input-box #msj-provincia a {
  text-decoration: none;
  color: #00035B;
  font-weight: bold;
  cursor: pointer;
}
.checkout-onepage-index .fieldset select {
  max-width: 98%;
  width: 100%;
  height: 35px;
  border: 1px solid #BDBDBD;
  background: #fff;
  font-size: 13px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .fieldset select {
    border-radius: 5px;
  }
}
.checkout-onepage-index .page-title h1 {
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  padding: 35px 10px 28px;
  border-bottom: 1px solid #0000000f;
  line-height: 1;
  margin: 0;
  font-size: 22px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .page-title h1 {
    padding-bottom: 0;
    display: block !important;
    text-transform: initial;
    text-align: left;
  }
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .main-container {
    padding: 82px 0 0;
    padding-top: 95px !important;
  }
}
.checkout-onepage-index #co-billing-form .addres_square_options {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #co-billing-form .addres_square_options {
    display: block;
  }
}
.checkout-onepage-index #co-billing-form .addres_square_options .address-option {
  position: relative;
  margin-right: 15px;
  flex: 0 0 47%;
  margin-top: 15px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #co-billing-form .addres_square_options .address-option {
    display: inline-block;
    width: 100%;
  }
}
.checkout-onepage-index #co-billing-form .addres_square_options .address-option input {
  position: absolute;
  left: 15px;
  top: 40%;
}
.checkout-onepage-index #co-billing-form .addres_square_options .address-option label {
  text-transform: capitalize;
  color: #555;
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  margin-right: 10px;
  padding: 20px;
  border: 1px solid #eee;
  width: 100%;
  padding-left: 40px;
  position: relative;
  height: 100%;
}
.checkout-onepage-index #co-billing-form .addres_square_options .address-option label:hover {
  border: 1px solid #00035B;
  cursor: pointer;
}
.checkout-onepage-index #co-billing-form .addres_square_options .address-option.add-address label.add-direction {
  text-align: left;
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
  color: #00035B;
  letter-spacing: 1px;
  line-height: 21px;
  min-height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-onepage-index #co-billing-form .addres_square_options .address-option.add-address label.add-direction span {
  position: absolute;
  top: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-onepage-index #co-billing-form .addres_square_options .address-option.add-address label.add-direction span:before {
  margin-right: 5px;
}
.checkout-onepage-index .opc .section .step {
  padding: 0 20px;
  display: inline-block;
  width: 100%;
  margin-top: 0;
}
.checkout-onepage-index .opc .section .step #dd_method_mpexpress .form-list {
  float: left;
  padding-left: 0;
  padding-top: 10px;
}
.checkout-onepage-index .opc .section #checkout-step-billing {
  margin-top: 10px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .opc .section #checkout-step-billing {
    margin: 0 !important;
  }
}
.checkout-onepage-index .opc .buttons-set {
  border: none;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .opc .buttons-set {
    text-align: center;
    padding-top: 0;
    margin: 0;
    padding-bottom: 20px;
  }
}
.checkout-onepage-index .data-table {
  background: white;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .data-table .last {
    margin: 0;
  }
}
.checkout-onepage-index .data-table thead th {
  background-color: #f5f4f2;
  color: #00035B;
  font-size: 11px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .data-table thead th {
    display: none !important;
  }
}
.checkout-onepage-index .data-table tbody {
  border-bottom: 1px solid #eee;
}
.checkout-onepage-index .data-table tbody .product-image {
  float: left;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .data-table tbody .product-image {
    float: none;
    margin: 0 auto;
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .data-table tbody .product-image img {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .data-table tbody tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.checkout-onepage-index .data-table tbody td {
  vertical-align: middle;
  border: none;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .data-table tbody td.a-left {
    width: 100%;
  }
}
.checkout-onepage-index .data-table tbody .item-description {
  display: inline-block;
  margin: 30px 10px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .data-table tbody .item-description {
    margin: 10px;
    display: block;
    text-align: center;
  }
}
.checkout-onepage-index .data-table tbody .item-description h3.product-name {
  color: #555;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 18px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .data-table tfoot {
    background: #fff;
  }
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .data-table tfoot tr {
    background: #fff;
  }
}
.checkout-onepage-index .data-table tfoot tr.last td {
  color: #606060;
  font-size: 24px !important;
  font-weight: 700;
  line-height: 18px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .data-table tfoot tr.last td {
    text-align: left;
    font-size: 20px !important;
    color: #000;
    text-transform: uppercase;
  }
}
.checkout-onepage-index .data-table tfoot tr.last td.last {
  text-align: right !important;
}
.checkout-onepage-index .data-table tfoot td {
  background: #fff;
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .data-table tfoot td {
    text-align: left;
  }
}
.checkout-onepage-index .data-table tfoot td.last {
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .data-table tfoot td.last {
    text-align: right;
  }
  .checkout-onepage-index .data-table tfoot td.last strong {
    font-size: 20px;
  }
}
.checkout-onepage-index .data-table th {
  border: none !important;
}
.checkout-onepage-index #review-buttons-container {
  text-align: center;
  margin-top: 10px;
  padding-top: 20px;
}
.checkout-onepage-index #review-buttons-container .btn-checkout {
  border-radius: 2px;
  float: none;
  margin: 0 auto;
  position: relative;
  padding: 16px 0;
  min-width: 285px;
  clear: both;
  display: block;
}
.checkout-onepage-index #review-buttons-container .btn-checkout span span {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #review-buttons-container .btn-checkout {
    min-width: 0;
    padding: 6px;
  }
}
.checkout-onepage-index div#shipping-progress-opcheckout {
  display: none;
}
.checkout-onepage-index #checkout-progress-wrapper {
  position: sticky;
  top: 0;
}
.checkout-onepage-index #checkout-progress-wrapper .block-content dt {
  font-size: 13px;
  display: none;
}
.checkout-onepage-index #checkout-progress-wrapper .block-content dt.complete {
  display: block;
}
.checkout-onepage-index #checkout-progress-wrapper .changelink {
  font-size: 10px;
}
.checkout-onepage-index #checkout-progress-wrapper .changelink a {
  color: blue;
}
.checkout-onepage-index #checkout-progress-wrapper div#checkout-cart-resume {
  border-bottom: 1px solid #EEEEEE;
  padding: 20px;
  margin-bottom: 20px;
  display: none;
}
@media (min-width: 980px) {
  .checkout-onepage-index #checkout-progress-wrapper div#checkout-cart-resume {
    display: block;
  }
}
.checkout-onepage-index #checkout-progress-wrapper div#checkout-cart-resume .title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 10px;
  color: #00035B;
}
.checkout-onepage-index #checkout-progress-wrapper div#checkout-cart-resume .cart-total,
.checkout-onepage-index #checkout-progress-wrapper div#checkout-cart-resume .cart-shipping,
.checkout-onepage-index #checkout-progress-wrapper div#checkout-cart-resume .cart-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  font-size: 13px;
  line-height: 2;
}
.checkout-onepage-index #checkout-progress-wrapper div#checkout-cart-resume .cart-total {
  font-weight: 600;
  text-transform: uppercase;
  border: 0;
}
.checkout-onepage-index #newsletter {
  display: none;
}
.checkout-onepage-index .pre-footer {
  display: none;
}
.checkout-onepage-index .footer {
  display: none;
}
.checkout-onepage-index .bottom-footer {
  margin-top: 80px;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index .bottom-footer {
    height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .checkout-onepage-index .bottom-footer {
    height: 80px;
  }
}
@media only screen and (max-width: 359px) {
  .checkout-onepage-index .bottom-footer {
    height: 90px;
  }
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index #checkout-step-review {
    background: transparent;
    padding: 0 !important;
  }
  .checkout-onepage-index #checkout-step-review #checkout-progress-wrapper {
    display: none !important;
  }
  .checkout-onepage-index #checkout-step-review #checkout-review-load #checkout-review-table-wrapper {
    background: #fff;
    padding: 20px;
  }
  .checkout-onepage-index #checkout-step-review #checkout-review-submit {
    margin: 20px 0;
    background: #fff;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}
.checkout-onepage-index .block-progress {
  margin: 0;
  padding: 0 20px 20px;
  border: none;
}
.checkout-onepage-index .block-progress .block-title {
  padding: 0;
  margin: 0;
  border: none;
}
.checkout-onepage-index .block-progress .block-title strong {
  line-height: 36px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 10px;
  color: #00035B;
  border: none;
}
.checkout-onepage-index .block-progress .block-content dl {
  margin: 0;
}
.checkout-onepage-index .block-progress .block-content dl div {
  position: relative;
}
.checkout-onepage-index .block-progress .block-content dl div dt {
  color: #000;
  letter-spacing: 0;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  text-transform: uppercase;
}
.checkout-onepage-index .block-progress .block-content dl div dt .changelink {
  position: absolute;
  left: 0;
  bottom: -15px;
}
.checkout-onepage-index .block-progress .block-content dl div dt .changelink .separator {
  display: none;
}
.checkout-onepage-index .block-progress .block-content dl div dt .changelink a {
  color: #00a6e2;
  font-size: 12px;
  font-weight: 500;
  line-height: 28px;
}
.checkout-onepage-index .block-progress .block-content dl div dt .changelink a:before {
  margin: 0;
  margin-right: 5px;
  width: 13px;
  -webkit-mask-size: 13px;
  height: 14px;
  line-height: 33px;
  margin-top: 7px;
}
.checkout-onepage-index .block-progress .block-content dl div dt .changelink a:after {
  font-family: FontAwesome;
  color: #00a6e2;
  margin-left: 5px;
}
.checkout-onepage-index .block-progress .block-content dl div dd {
  color: #555;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  margin: 0;
  text-transform: none;
  padding: 0;
  letter-spacing: 0;
  font-style: normal;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.checkout-onepage-index .block-progress .block-content dl div dd address {
  font-style: normal;
  margin: 0;
  font-size: 12px;
}
.checkout-onepage-index .block-progress dd {
  font-style: normal;
  font-family: monospace;
  font-size: 11px;
}
.checkout-onepage-index .block-progress dd address {
  font-style: normal;
}
.checkout-onepage-index .block-progress dt.complete a {
  color: blue;
  text-decoration: underline;
}

#onepage-checkout-shipping-method-additional-load .gift-messages {
  float: left;
  width: 100%;
  margin-top: 20px;
}
#onepage-checkout-shipping-method-additional-load .gift-messages h3 {
  letter-spacing: 0;
}
#onepage-checkout-shipping-method-additional-load label {
  line-height: 20px;
}

.checkout-onepage-index div#mp-box-form {
  max-width: 100%;
  float: left;
}
.checkout-onepage-index .mp-box-inputs.mp-col-100.mp-doc .mp-box-inputs.mp-col-65.mp-docNumber input#docNumber {
  margin-top: 1px !important;
}
.checkout-onepage-index ul#payment_form_mercadopago_customticket {
  margin-bottom: 20px;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods .mercadopago-ticket-option {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-left: 40px;
  margin: 0;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods .mercadopago-ticket-option input {
  margin: 0 10px 0 0px;
  z-index: 1;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods .mercadopago-ticket-option label {
  padding: 10px;
  border: none;
  box-shadow: none;
  min-width: 100px;
  padding-left: 40px;
  margin-left: -40px;
  display: flex;
  align-items: center;
}
.checkout-onepage-index #checkoutSteps .section #checkout-step-payment .sp-methods .mercadopago-ticket-option label img {
  margin-right: 10px;
}

.checkout-onepage-index header#header .block-container .block.logo-frizata .logocont {
  width: auto !important;
}
.checkout-onepage-index #header .visible-md.visible-lg.search-desktop {
  display: none !important;
}
@media only screen and (max-width: 991px) {
  .checkout-onepage-index {
    background-color: #f6f6f6;
  }
}

#co-shipping-method-form dd.flatrate label .price {
  display: none;
}
#co-shipping-method-form dd.flatrate .error-msg li {
  border-radius: 5px;
  background-color: #e84438 !important;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border: none;
  margin-bottom: 10px;
}
#co-shipping-method-form dd.flatrate .error-msg li:before {
  border: none;
  display: block;
  content: '';
  height: 20px;
  width: 20px;
  background-image: url(../images/iconos/alert.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  position: unset;
  background-position: center;
  background-color: #ee755e;
  border-radius: 50%;
  padding: 14px;
}

.container-address {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .container-address {
    display: block;
  }
}
.container-address .field {
  width: 85%;
}
@media only screen and (max-width: 991px) {
  .container-address .field {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .container-address li.wide {
    width: 33.3333333333%;
    float: left;
  }
}

#checkoutSteps .form-list .control {
  width: 100%;
  float: left;
}

/* ============================================ *
 * Checkout - Success
 * ============================================ */
.checkout-onepage-success .col-main {
  font-size: 14px;
  padding: 0;
  text-align: center;
}
.checkout-onepage-success .col-main .num-pedido {
  color: #00035B;
  font-weight: bold;
  margin-top: 50px;
}
.checkout-onepage-success .col-main .num-pedido a {
  color: #00035B;
}
.checkout-onepage-success .col-main #success-crea-cuenta {
  margin-top: 55px;
}
.checkout-onepage-success .container-fluid.col1-layout {
  padding: 0 !important;
}
.checkout-onepage-success .container {
  padding: 0;
}
.checkout-onepage-success .page-title {
  position: relative;
  margin: 0;
  margin-bottom: 15px;
  float: left;
  width: 100%;
  min-height: 140px;
  background: #ddd;
}
.checkout-onepage-success .page-title .sub-title {
  position: absolute;
  left: 0;
  right: 0;
  border: none;
  text-align: center;
  top: 40%;
  margin: 0;
  font-weight: 100;
  letter-spacing: 2px;
  font-size: 32px;
}
.checkout-onepage-success .page-title .sub-title:before {
  content: '\f00c';
  font-family: FontAwesome;
  margin-right: 10px;
}
.checkout-onepage-success .sub-title {
  background: #f5f4f2;
  padding-top: 34px;
  border-top: #eeedeb 1px solid;
  padding-bottom: 30px;
  margin-top: 30px;
}
.checkout-onepage-success .sub-title:before {
  content: '\f00c';
  font-family: FontAwesome;
  margin-right: 10px;
}
.checkout-onepage-success .success_wrapper {
  float: left;
  width: 100%;
}
.checkout-onepage-success .success_wrapper p {
  text-align: center;
  max-width: 30%;
  margin: 0 auto;
  color: #6d6d6d;
}
.checkout-onepage-success .success_wrapper p.strong {
  color: #000;
  font-weight: bold;
}
.checkout-onepage-success .buttons-set {
  margin: 10px 0;
  text-align: center;
  border-top: none !important;
}
.checkout-onepage-success .buttons-set button {
  float: none;
  margin: 0 auto;
  line-height: 54px;
  font-size: 16px;
  max-width: 240px;
}
.checkout-onepage-success .buttons-set button a {
  color: #fff;
}
.checkout-onepage-success a {
  color: #00035B;
}

.mercadopago-checkout-page #box-mercadopago {
  text-align: center;
  font-size: 15px;
  margin-bottom: 30px;
}
.mercadopago-checkout-page #box-mercadopago .mercadopago-title {
  margin: 0 0 10px 0;
  background: #f5f4f2;
  padding-top: 34px;
  border-top: #eeedeb 1px solid;
  padding-bottom: 30px;
  font-weight: normal;
  margin-bottom: 29px;
}
.mercadopago-checkout-page .button-success {
  float: left;
  display: flex;
  justify-content: center;
  width: 100%;
}
.mercadopago-checkout-page .button-success button.button {
  padding: 10px;
  width: 20%;
  margin: 0;
}
.mercadopago-checkout-page .button-success button.button span {
  font-size: 15px;
}
.mercadopago-checkout-page #logo-mercadopago {
  width: 100px;
  margin: 0 auto;
}

/* ============================================ *
 * Configurable Swatches
 * ============================================ */
/* Clears */
.clearfix:after,
.configurable-swatch-list:after,
.product-view .product-options .swatch-attr:after {
  content: '';
  display: table;
  clear: both;
}

/* General Swatch Styling */
.swatch-link,
.swatch-label {
  display: block;
  border-radius: 3px;
  font-size: 12px;
  text-align: center;
  color: #606060;
  text-decoration: none;
  box-sizing: content-box;
}

.swatch-link {
  border: 1px solid #949494;
  margin: 0 0 3px;
}
.swatch-link:hover {
  cursor: pointer;
  text-decoration: none;
}
.swatch-link .x {
  display: none;
  text-indent: -999em;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/bg_x.png) center no-repeat transparent;
  z-index: 10;
}
.swatch-link.has-image .swatch-label {
  position: relative;
}
.swatch-link.has-image img {
  /*position: absolute;
  top: 0;
  left: 0;*/
}

.swatch-label {
  border: 1px solid #fff;
  margin: 0;
  white-space: nowrap;
  background: #f5f4f2;
}

.configurable-swatch-list {
  margin-left: -3px;
  zoom: 1;
  clear: both;
  -webkit-transform: translateZ(0px);
}
.configurable-swatch-list li {
  float: left;
  zoom: 1;
  margin: 0 0 0 3px;
}
.products-grid .configurable-swatch-list li {
  display: inline-block;
  float: none;
  margin: 0;
  vertical-align: top;
}
.configurable-swatch-list .not-available .x {
  display: block;
}
.configurable-swatch-list .not-available .swatch-link {
  border-color: #EDEDED;
  position: relative;
}
.configurable-swatch-list .not-available .swatch-link.has-image img {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.configurable-swatch-list .not-available .swatch-label {
  color: #aaa;
  background: #fff;
}
.configurable-swatch-list .wide-swatch .swatch-label {
  padding: 0 6px;
}
.configurable-swatch-list .not-available a:focus {
  outline: 0;
}

#narrow-by-list dd .configurable-swatch-list li {
  margin: 0 0 0 3px;
  width: 47%;
}
#narrow-by-list dd .swatch-link {
  border: none;
  line-height: 23px;
  margin-right: 2px;
  text-align: left;
}
#narrow-by-list dd .swatch-link.has-image {
  line-height: inherit;
}
#narrow-by-list dd .swatch-link:hover .swatch-label {
  border-color: #949494;
}
#narrow-by-list dd .swatch-label {
  background: #f5f4f2;
  border: 1px solid #949494;
  border-radius: 3px;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0 5px 0 0;
  padding: 1px 5px;
  white-space: nowrap;
}
#narrow-by-list dd .swatch-label img {
  border: 1px solid #fff;
  box-sizing: content-box;
}
#narrow-by-list dd .has-image .swatch-label {
  padding: 0;
}

.currently .swatch-current {
  position: relative;
}
.currently .swatch-current .btn-remove {
  margin-top: -10px;
  position: absolute;
  right: 0;
  top: 50%;
}
.currently .swatch-current span {
  display: block;
  float: left;
}
.currently .swatch-link {
  display: inline-block;
  margin: 0 0 0 3px;
}
.currently .swatch-link:hover {
  border-color: #949494;
  cursor: default;
}

/* Other Swatch States */
.configurable-swatch-list .hover .swatch-link,
.configurable-swatch-list .selected .swatch-link,
.swatch-link:hover {
  border-color: #949494;
}

.configurable-swatch-box {
  background: none !important;
}
.configurable-swatch-box select.swatch-select {
  display: none;
}
.configurable-swatch-box .validation-advice {
  margin: 0 0 5px;
  background: #DF280A;
  padding: 2px 5px !important;
  font-weight: bold;
  color: #fff !important;
  float: left;
  display: block;
  border-radius: 3px;
}

/* CUSTOM */
.availability.out-of-stock {
  background-color: #a2a0a0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.availability.out-of-stock span {
  color: white;
  font-size: 11px;
  font-weight: 400;
}

.catalog-product-view .availability.out-of-stock {
  padding: 5px;
}

.product-view .product-options dl {
  float: left;
  width: 100%;
}
.product-view .product-options dl .swatch-attr {
  float: left;
  display: block;
  width: 100%;
  border: 0;
}
.product-view .product-options dl .swatch-attr label,
.product-view .product-options dl .swatch-attr .select-label {
  font-size: 12px;
}
.product-view .product-options dl .swatch-attr label {
  display: block;
  font-family: "Jost", sans-serif, serif;
  line-height: 18px;
  color: black;
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
}
.product-view .product-options dl .swatch-attr label .select-label {
  display: none;
}
.product-view .product-options dl .swatch-attr .select-label {
  display: inline;
  font-weight: normal;
  color: #000;
  padding-left: 5px;
}
.product-view .product-options dl .swatch-attr.clearfix {
  margin-bottom: 0px;
}
.product-view .product-options dl .input-box {
  width: 100%;
  float: left;
}
.product-view .product-options dl .input-box .configurable-swatch-list {
  margin-left: 0;
  zoom: 0;
  float: left;
  width: 100%;
}
.product-view .product-options dl .input-box .configurable-swatch-list li {
  float: left;
  zoom: 0;
  margin: 0;
  margin-right: 7px;
}
.product-view .product-options dl .input-box .configurable-swatch-list li .swatch-link {
  border: 0px solid #CCCCCC;
  margin: 0;
}
.product-view .product-options dl .input-box .configurable-swatch-list li.selected {
  width: auto;
  height: auto;
  border: 1px solid #7d7d7d;
}
.product-view .product-options dl .select-label {
  display: none;
}
.product-view .add-to-cart button.out-of-stock {
  background-position: -80px -362px;
  cursor: default;
}

/* ============================================ *
 * Customer
 * ============================================ */
.customer-account-login p.required {
  color: red !important;
}
.customer-account-login a.button {
  padding: 12px 40px;
}
.customer-account-login .scaffold-form label:first-child {
  width: 100%;
  display: none;
}
.customer-account-login ul.benefits li {
  font-size: 14px;
  line-height: 28px;
}
.customer-account-login .buttons-set {
  text-align: left;
  border-top: 0;
  text-transform: uppercase;
}
.customer-account-login .buttons-set button,
.customer-account-login .buttons-set .button {
  float: none;
  margin: 0;
}
.customer-account-login .col-1 ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 20px 0;
}

.customer-account-create .scaffold-form label:first-child {
  width: 140px;
}

.opc #opc-login p:not(.required) {
  font-size: 12px;
  color: #a2a1a0;
  font-weight: 300;
  text-align: center;
  font-size: 11px;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 20px;
  margin-bottom: 0px;
}

.remember-me-box a.hide {
  display: none;
}
.remember-me-box .link-tip {
  font-size: 14px;
  padding-left: 10px;
}

.remember-me-popup {
  display: none;
  border: 1px solid #949494;
  padding: 10px;
  position: relative;
}
.remember-me-popup.show {
  display: block;
}
.remember-me-popup .remember-me-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 12px;
}
.remember-me-popup .remember-me-popup-close-button {
  display: none;
}

.customer-account-create .fieldset .hidden {
  display: none;
}
.customer-account-create #remember-me-popup {
  max-width: 455px;
}

.customer-account-forgotpassword .fieldset,
.customer-account-forgotpassword .buttons-set {
  margin-left: 0px;
  max-width: 600px;
  margin: 0 auto;
}
.customer-account-forgotpassword .fieldset .input-box input.input-text {
  width: 100%;
}
.customer-account-forgotpassword .page-title {
  text-align: center;
}
.customer-account-forgotpassword .fieldset {
  background: white;
  padding: 35px;
  box-shadow: 0 10px 37px #e5e5ea;
  margin-bottom: 26px;
}
@media only screen and (max-width: 991px) {
  .customer-account-forgotpassword .fieldset h2 {
    font-size: 18px;
  }
}
.customer-account-forgotpassword .buttons-set {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .customer-account-forgotpassword .buttons-set {
    display: block;
  }
}
.customer-account-forgotpassword .buttons-set button.button {
  padding: 10px;
}

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
body.customer-account .my-account .page-title h1 {
  border: 0;
  text-align: left;
}
body.customer-account .my-account .title-buttons {
  position: relative;
  text-align: right;
}
body.customer-account .my-account .title-buttons h1 {
  text-align: left;
}
body.customer-account .my-account .title-buttons .button {
  position: absolute;
  right: 0;
  top: 0;
}
body.customer-account .my-account .title-buttons a,
body.customer-account .my-account .title-buttons span.separator {
  position: relative;
  top: -42px;
}
body.customer-account .my-account .fieldset h2,
body.customer-account .my-account .addresses-list h2,
body.customer-account .my-account .order-details h2 {
  width: 100%;
  display: inline-block;
  color: #00035B;
  text-align: center;
  font-weight: bold;
}
body.customer-account .my-account .addresses-list h3 {
  font-size: 12px;
  font-weight: 600;
}
body.customer-account .my-account .fieldset {
  margin-top: 0px;
  margin-bottom: 0px;
}
body.customer-account .data-table {
  margin-top: 5px;
}
body.customer-account .data-table#my-orders-table thead th.total, body.customer-account .data-table#my-orders-table tbody td.total {
  display: none;
}
body.customer-account .data-table td a {
  text-transform: uppercase;
  font-style: normal;
  font-size: 14px;
}
body.customer-account .data-table span.nobr {
  white-space: normal;
}
body.customer-account .data-table span.nobr a {
  white-space: nowrap;
}
body.customer-account .data-table td.view a {
  display: block;
}
body.customer-account .data-table .separator {
  display: none;
}
body.customer-account .sidebar .block ol#compare-items li {
  margin: 10px 0;
}
body.customer-account .sidebar .block .block-content p.block-subtitle {
  margin-bottom: 15px;
}
body.customer-account .sidebar .block .block-content .actions {
  display: flex;
  justify-content: space-between;
  margin-top: 0px;
}
body.customer-account .sidebar .block .block-content .actions button.button.btn-cart {
  width: 75%;
  padding: 0;
}
body.customer-account .sidebar ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}
body.customer-account .sidebar ol#cart-sidebar-reorder li button.button.btn-cart {
  padding: 0 !important;
}
body.customer-account .sidebar ol#cart-sidebar-reorder p.product-name {
  display: inline-block;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-cart .summary {
  margin-bottom: 15px;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder p.product-name {
  display: inline;
  margin-bottom: 0;
}
body.customer-account .wrapper .page .main {
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 1170px) {
  body.customer-account .wrapper .page .main {
    width: 1025px;
  }
}
@media only screen and (max-width: 991px) {
  body.customer-account .wrapper .page .main {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 992px) {
  body.customer-account .wrapper .page .main .col-main {
    width: 75%;
  }
}

.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day {
  width: 40px;
  float: left;
  margin-right: 10px;
}
.form-list .customer-dob .dob-year {
  width: 80px;
  float: left;
}

/* ============================================ *
 * Dashboard
 * ============================================ */
.dashboard .box-head {
  margin-top: 0px;
  border-bottom: 1px solid #949494;
  padding-bottom: 7px;
}
.dashboard .box-head h2 {
  font-size: 17px;
  display: inline-block;
  margin-bottom: 0;
  color: #00035B;
  font-weight: bold;
}
.dashboard .box-head a {
  padding: 10px;
}
.dashboard .box-title a,
.dashboard .box-head a {
  text-transform: uppercase;
  font-size: 12px;
}
.dashboard .box-account {
  padding-bottom: 40px;
  border-bottom: 1px solid #949494;
  margin-bottom: 45px;
}
.dashboard .box-account p,
.dashboard .box-account address {
  font-style: italic;
}
.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2 {
  padding-right: 12.09677%;
  padding-bottom: 0;
}
.dashboard .col2-set .col-1 .box-title,
.dashboard .col2-set .col-2 .box-title {
  position: relative;
  padding-bottom: 10px;
}
.dashboard .col2-set .col-1 .box-title h2,
.dashboard .col2-set .col-1 .box-title h3,
.dashboard .col2-set .col-2 .box-title h2,
.dashboard .col2-set .col-2 .box-title h3 {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 0;
  color: #00035B;
}
.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a {
  line-height: 16.8px;
}
.dashboard .box-reviews.box-account {
  padding-bottom: 0;
}
.dashboard .box-reviews li {
  padding: 10px 0;
  border-top: 1px solid #EDEDED;
}
.dashboard .box-reviews li:first-child {
  border-top: 0;
}
.dashboard .box-reviews li .number {
  margin-right: -20px;
  float: left;
  line-height: 1.4;
  font-size: 14px;
}
.dashboard .box-reviews li .details {
  margin-left: 20px;
}
.dashboard .box-reviews li .details .ratings {
  content: '';
  display: table;
  clear: both;
  margin-bottom: 0;
}
.dashboard .box-reviews li .details .ratings strong {
  float: left;
  font-size: 14px;
  margin-right: 5px;
}
.dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0;
}

/* ============================================ *
 * Address Book
 * ============================================ */
.my-account .addresses-list .col-1,
.my-account .addresses-list .col-2 {
  padding-bottom: 0;
}
.my-account .addresses-list .item {
  margin: 0 0 0px 0;
}
.my-account .addresses-list .item p {
  margin-top: 10px;
}

/* ============================================ *
 * Order View
 * ============================================ */
.order-info {
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
  width: 100%;
  margin-bottom: 0px;
}
.order-info dt,
.order-info dd,
.order-info ul,
.order-info li {
  display: inline;
}
.order-info dt {
  margin-right: 20px;
}
.order-info li {
  margin: 0 0 0 20px;
}
.order-info li.current {
  font-weight: 600;
}
.order-info li:first-child {
  margin-left: 0;
}

.order-date {
  text-transform: uppercase;
}

.order-info-box {
  margin-bottom: 40px;
  margin-top: 20px;
}
.order-info-box + .order-info-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #EDEDED;
}
.order-info-box .col-1 {
  padding-right: 0;
  width: 48%;
}
.order-info-box .col-2 {
  width: 52%;
}
.order-info-box .col-1,
.order-info-box .col-2 {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.order-info-box .box-title {
  width: 150px;
  padding-right: 10px;
  float: left;
}
.order-info-box .box-title h2 {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  color: #00035B;
}
.order-info-box .box-title h2:after {
  content: ':';
}
.order-info-box .box-content {
  float: left;
}
.order-info-box .box-content td,
.order-info-box .box-content th {
  line-height: 1.3;
}
.order-info-box .box-content th {
  padding-top: 10px;
}
.order-info-box .box-content td {
  padding-left: 15px;
}
.order-info-box .box-content strong {
  font-weight: normal;
  text-transform: uppercase;
}

#my-orders-table .option-label {
  margin-left: 10px;
  font-weight: 600;
  font-style: italic;
}
#my-orders-table .option-value {
  margin-left: 20px;
}
#my-orders-table tr.bundle:not(:last-child) td {
  border-bottom: none;
  border-top: none;
}
#my-orders-table h3 {
  color: #00035B;
}

ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
ol#cart-sidebar-reorder p.product-name {
  display: inline;
}

.order-additional {
  margin: 40px 0;
}

.order-gift-message dd {
  margin-top: 10px;
}

.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2 {
  padding-right: 0px;
  padding-bottom: 0;
}

body.customer-account .data-table td.view a {
  white-space: normal;
}

body.customer-account .my-account .title-buttons {
  text-align: left;
}
body.customer-account .my-account .title-buttons span.separator,
body.customer-account .my-account .title-buttons a {
  top: -12px;
}

/* ============================================ *
 * Newsletter Subscriptions
 * ============================================ */
body.newsletter-manage-index .my-account .fieldset {
  margin-bottom: 20px;
}
body.newsletter-manage-index .my-account .fieldset h2 {
  display: none;
}
body.newsletter-manage-index .my-account .form-list {
  border-top: 1px solid #EDEDED;
  padding-top: 10px;
}

.account-login {
  float: left;
  display: inline-block;
  width: 100%;
  margin: 30px 0;
}
.account-login h1 {
  display: none;
}
@media only screen and (max-width: 991px) {
  .account-login input {
    width: 100% !important;
  }
}
.account-login h2 {
  color: #4a4a4a;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}
.account-login .content {
  min-height: 0px !important;
  float: left;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .account-login .content {
    min-height: auto !important;
  }
}
.account-login .content p {
  color: #6d6d6d;
  font-size: 14px;
  line-height: 18px;
  font-style: normal;
}
@media only screen and (max-width: 991px) {
  .account-login .new-users {
    padding: 0 !important;
    float: left;
    width: 100%;
  }
}
.account-login .new-users .col-1 {
  float: left;
  width: 100%;
  padding-bottom: 0;
  padding-right: 50px;
}
.account-login .new-users .col-1 .buttons-set .button {
  float: left;
  min-width: 180px;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .account-login .new-users .col-1 .buttons-set {
    width: auto;
    display: inline-block;
  }
}
.account-login .registered-users {
  float: left;
  padding-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .account-login .registered-users {
    padding: 0;
    padding-top: 40px;
    border-left: none;
  }
}
.account-login .registered-users .buttons-set .button {
  float: left;
  margin: 0;
  line-height: 1;
}
.account-login .registered-users .buttons-set a {
  float: right;
  line-height: 42px;
  display: inline-block;
  padding: 0;
}
.account-login .registered-users .col-2.registered-users .form-list input#email ::placeholder {
  color: #787575;
  font-size: 12px;
  font-weight: 300;
}
.account-login .registered-users .col-2.registered-users .form-list input#pass ::placeholder {
  color: #787575;
  font-size: 12px;
  font-weight: 300;
}

.customer-account-create {
  float: left;
  width: 100%;
}
.customer-account-create h1 {
  display: none;
}
.customer-account-create .col1-layout {
  padding-top: 100px;
}
.customer-account-create .main-container {
  padding-top: 100px;
}
@media only screen and (max-width: 991px) {
  .customer-account-create .main-container {
    padding-top: 158px;
  }
}
.customer-account-create .account-create .fieldset {
  margin: 0;
  float: left;
  width: 50%;
}
@media (max-width: 767px) {
  .customer-account-create .account-create .fieldset {
    width: 100%;
  }
}
.customer-account-create .account-create .buttons-set {
  float: left;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .customer-account-create .account-create .buttons-set {
    width: 100%;
  }
}
.customer-account-create .account-create .col-1.inchoo-socialconnect-register-google, .customer-account-create .account-create .col-2.inchoo-socialconnect-register-facebook {
  padding: 0 0px 60px 70px;
  width: 100%;
  float: left;
}
@media only screen and (max-width: 991px) {
  .customer-account-create .account-create .col-1.inchoo-socialconnect-register-google, .customer-account-create .account-create .col-2.inchoo-socialconnect-register-facebook {
    padding: 0 0px 50px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .customer-account-create .account-create .col-1.inchoo-socialconnect-register-google, .customer-account-create .account-create .col-2.inchoo-socialconnect-register-facebook {
    padding: 10px 0px 0px 0px;
  }
}
.customer-account-create .account-create .inchoo-socialconnect-register {
  float: left;
  width: 50%;
  margin: 0px 0 30px;
}
@media only screen and (max-width: 767px) {
  .customer-account-create .account-create .inchoo-socialconnect-register {
    width: 100%;
    margin: 20px 0 0px;
    text-align: center;
  }
}
.customer-account-create .account-create .inchoo-socialconnect-register .col-1.inchoo-socialconnect-register-google .fieldset {
  float: left;
  width: 100%;
}
.customer-account-create .account-create .inchoo-socialconnect-register .col-1.inchoo-socialconnect-register-google .fieldset .inchoo-socialconnect-google {
  background: none !important;
  float: left;
  width: 100%;
}
.customer-account-create .account-create .inchoo-socialconnect-register .col-1.inchoo-socialconnect-register-google .fieldset .inchoo-socialconnect-google .fieldset {
  width: 100%;
}
.customer-account-create .account-create .inchoo-socialconnect-register .col-1.inchoo-socialconnect-register-google .fieldset .inchoo-socialconnect-google .inchoo-socialconnect-google-inner {
  width: 225px;
  height: 41px !important;
  margin: 0 auto !important;
  float: none !important;
  background: transparent url(../images/google-button.png) no-repeat !important;
  cursor: pointer;
  background-size: 225px !important;
}
.customer-account-create .account-create .inchoo-socialconnect-register .col-1.inchoo-socialconnect-register-google .fieldset .inchoo-socialconnect-google .inchoo-socialconnect-google-inner a {
  font-size: 0px;
  height: 41px;
  width: 100%;
  float: left;
}
@media only screen and (min-width: 992px) {
  .customer-account-create .account-create .inchoo-socialconnect-register .col-1.inchoo-socialconnect-register-google .fieldset .inchoo-socialconnect-google .inchoo-socialconnect-google-inner {
    margin: 10px 0 !important;
  }
}
.customer-account-create .account-create .inchoo-socialconnect-register .col-1.inchoo-socialconnect-register-google .fieldset .inchoo-socialconnect-google .inchoo-socialconnect-google-inner:hover {
  opacity: 0.8;
}
.customer-account-create .account-create .inchoo-socialconnect-register .col-1.inchoo-socialconnect-register-google .fieldset .inchoo-socialconnect-google .inchoo-socialconnect-google-right {
  display: none;
}
@media only screen and (max-width: 479px) {
  .customer-account-create .account-create .inchoo-socialconnect-register .col-2.inchoo-socialconnect-register-facebook {
    float: left;
    width: 100%;
    margin-top: 30px;
  }
}
.customer-account-create .account-create .inchoo-socialconnect-register .col-2.inchoo-socialconnect-register-facebook .fieldset {
  float: left;
  width: 100%;
}
.customer-account-create .account-create .inchoo-socialconnect-register .col-2.inchoo-socialconnect-register-facebook .fieldset .inchoo-socialconnect-facebook {
  background: none !important;
  float: left;
  width: 100%;
}
.customer-account-create .account-create .inchoo-socialconnect-register .col-2.inchoo-socialconnect-register-facebook .fieldset .inchoo-socialconnect-facebook .fieldset {
  width: 100%;
}
.customer-account-create .account-create .inchoo-socialconnect-register .col-2.inchoo-socialconnect-register-facebook .fieldset .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-inner {
  width: 225px;
  height: 41px !important;
  margin: 0 auto !important;
  float: none !important;
  background: transparent url(../images/facebook-button.png) no-repeat !important;
  cursor: pointer;
  background-size: 225px !important;
}
.customer-account-create .account-create .inchoo-socialconnect-register .col-2.inchoo-socialconnect-register-facebook .fieldset .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-inner a {
  font-size: 0px;
  height: 41px;
  width: 100%;
  float: left;
}
@media only screen and (min-width: 992px) {
  .customer-account-create .account-create .inchoo-socialconnect-register .col-2.inchoo-socialconnect-register-facebook .fieldset .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-inner {
    margin: 10px 0 !important;
  }
}
.customer-account-create .account-create .inchoo-socialconnect-register .col-2.inchoo-socialconnect-register-facebook .fieldset .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-inner:hover {
  opacity: 0.8;
}
.customer-account-create .account-create .inchoo-socialconnect-register .col-2.inchoo-socialconnect-register-facebook .fieldset .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-right {
  display: none;
}

.customer-account .sidebar .block-title {
  float: left;
  width: 100%;
  margin-bottom: 0;
  text-transform: none;
}
.customer-account .sidebar .block-title strong span {
  color: #F06000;
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: 0;
  text-transform: none;
}
.customer-account .sidebar .block-title strong span:after {
  content: '';
  width: 20px;
  height: 1px;
  clear: both;
  display: block;
  background: #e3e3e3;
  margin-top: 5px;
}
.customer-account .sidebar .block-content {
  margin-top: 10px;
  float: left;
  width: 100%;
}
.customer-account .sidebar .block-content ul li {
  float: left;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
  color: #4a4a4a;
  text-transform: none;
  letter-spacing: 1px;
}
.customer-account .sidebar .block-content ul li a {
  color: #4a4a4a;
  letter-spacing: 0;
}
.customer-account .sidebar .block-content ul li a:before {
  content: "\f054";
  font: normal normal normal 8px/1 FontAwesome;
  margin-right: 10px;
}
.customer-account .sidebar .block-content ul li a:hover {
  text-decoration: none;
  color: #000000;
}
.customer-account .sidebar .block-content ul li strong {
  font-size: 12px;
  font-weight: bold;
  line-height: 30px;
  color: #4a4a4a;
}
.customer-account .pager.pager-no-toolbar {
  width: 100%;
}
.customer-account .pager.pager-no-toolbar .count-container {
  display: flex;
  width: 100%;
}
.customer-account .pager.pager-no-toolbar .count-container .limiter {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.customer-account .my-account .page-title {
  display: none;
}
.customer-account .my-account .welcome-msg {
  display: none;
}
.customer-account .my-account .box-account {
  padding-bottom: 0;
  border: 1px solid #f1f1f1;
  margin-bottom: 30px;
  float: left;
  width: 100%;
}
.customer-account .my-account .box-account .box-head {
  margin-top: 0;
  border-bottom: 0px;
  padding: 3px 0;
  background: #f5f4f2;
}
.customer-account .my-account .box-account .box-head a {
  text-transform: none;
  color: black;
  font-size: 11px;
  font-weight: 400;
  float: right;
}
.customer-account .my-account .box-account .box-head a:after {
  content: "\f054";
  font: normal normal normal 8px/1 FontAwesome;
  margin-left: 10px;
}
.customer-account .my-account .box-account .box-head h2 {
  display: inline-block;
  margin-bottom: 0;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-left: 30px;
  color: #00035B;
}
.customer-account .my-account .box-account .col2-set {
  float: left;
  width: 100%;
  padding: 30px;
}
.customer-account .my-account .box-account .col2-set .col-1 {
  padding: 20px;
}
.customer-account .my-account .box-account .col2-set .box-title {
  float: left;
  width: 100%;
  padding-bottom: 3px;
  border-bottom: 1px solid #e3e3e3;
}
.customer-account .my-account .box-account .col2-set .box-title h3 {
  float: left;
  line-height: 24px;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 12px;
  color: #4a4a4a;
}
.customer-account .my-account .box-account .col2-set .box-title a {
  color: #4a4a4a;
  font-size: 11px;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
}
.customer-account .my-account .box-account .col2-set .box-title a:before {
  content: "\f040";
  font: normal normal normal 6px/1 FontAwesome;
  margin-left: 5px;
  color: #4a4a4a;
  font-size: 14px;
  margin-right: 9px;
}
.customer-account .my-account .box-account .col2-set .box-title a:after {
  content: "\f054";
  font: normal normal normal 6px/1 FontAwesome;
  margin-left: 5px;
}
.customer-account .my-account .box-account .col2-set .box-content {
  float: left;
  width: 100%;
  margin-top: 15px;
}
.customer-account .my-account .box-account .col2-set .box-content p {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  font-style: normal;
}
.customer-account .my-account .box-account .col2-set .box-content address {
  font-style: normal;
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.col2-set.inchoo-socialconnect-login-upper {
  margin-top: -20px;
}
@media only screen and (max-width: 991px) {
  .col2-set.inchoo-socialconnect-login-upper {
    float: left;
    width: 100%;
  }
  .col2-set.inchoo-socialconnect-login-upper .col-1.new-users.inchoo-socialconnect-login-upper-google {
    margin-bottom: 60px;
    float: left;
    width: 100%;
  }
}
.col2-set.inchoo-socialconnect-login-upper .col-1.inchoo-socialconnect-login-lower-google {
  padding: 0;
  float: left;
  width: 100%;
}
.col2-set.inchoo-socialconnect-login-upper .col-1.inchoo-socialconnect-login-lower-google .buttons-set {
  margin: 0;
}
.col2-set.inchoo-socialconnect-login-upper .col-1.inchoo-socialconnect-login-lower-google .buttons-set .clearer .inchoo-socialconnect-google {
  background: none !important;
  float: left;
  width: 100%;
}
.col2-set.inchoo-socialconnect-login-upper .col-1.inchoo-socialconnect-login-lower-google .buttons-set .clearer .inchoo-socialconnect-google .inchoo-socialconnect-google-inner {
  width: 225px;
  height: 41px !important;
  margin: 0 auto !important;
  float: none !important;
  background: transparent url(../images/google-button.png) no-repeat !important;
  cursor: pointer;
  background-size: 225px !important;
}
.col2-set.inchoo-socialconnect-login-upper .col-1.inchoo-socialconnect-login-lower-google .buttons-set .clearer .inchoo-socialconnect-google .inchoo-socialconnect-google-inner:hover {
  opacity: 0.8;
}
.col2-set.inchoo-socialconnect-login-upper .col-1.inchoo-socialconnect-login-lower-google .buttons-set .clearer .inchoo-socialconnect-google .inchoo-socialconnect-google-inner a {
  font-size: 0px;
  height: 41px;
  width: 220px;
}
.col2-set.inchoo-socialconnect-login-upper .col-1.inchoo-socialconnect-login-lower-google .buttons-set .clearer .inchoo-socialconnect-google .inchoo-socialconnect-google-right {
  display: none;
}
.col2-set.inchoo-socialconnect-login-upper .col-2.inchoo-socialconnect-login-lower-facebook {
  padding: 0;
  float: left;
  width: 100%;
}
.col2-set.inchoo-socialconnect-login-upper .col-2.inchoo-socialconnect-login-lower-facebook .buttons-set {
  margin: 0;
}
.col2-set.inchoo-socialconnect-login-upper .col-2.inchoo-socialconnect-login-lower-facebook .buttons-set .clearer .inchoo-socialconnect-facebook {
  background: none !important;
  float: left;
  width: 100%;
}
.col2-set.inchoo-socialconnect-login-upper .col-2.inchoo-socialconnect-login-lower-facebook .buttons-set .clearer .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-inner {
  width: 225px;
  height: 41px !important;
  margin: 0 auto !important;
  float: none !important;
  background: transparent url(../images/facebook-button.png) no-repeat !important;
  cursor: pointer;
  background-size: 225px !important;
}
.col2-set.inchoo-socialconnect-login-upper .col-2.inchoo-socialconnect-login-lower-facebook .buttons-set .clearer .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-inner:hover {
  opacity: 0.8;
}
.col2-set.inchoo-socialconnect-login-upper .col-2.inchoo-socialconnect-login-lower-facebook .buttons-set .clearer .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-inner a {
  font-size: 0px;
  height: 41px;
  width: 220px;
}
.col2-set.inchoo-socialconnect-login-upper .col-2.inchoo-socialconnect-login-lower-facebook .buttons-set .clearer .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-right {
  display: none;
}

.customer-address-index .col2-set {
  float: left;
  width: 100%;
  padding: 0px;
}
.customer-address-index .col2-set.addresses-list {
  float: left;
  width: 100%;
  padding-bottom: 0;
  border-bottom: 0px;
}
.customer-address-index .col2-set.addresses-list h2 {
  display: inline-block;
  margin-bottom: 0;
  color: #000000;
  font-size: 13px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-left: 0px;
  background: #f1f1f1;
  padding: 10px 30px;
}
.customer-address-index .col2-set.addresses-list ol {
  float: left;
  width: 100%;
  padding: 15px 30px;
  border: 1px solid #e3e3e3;
}
.customer-address-index .col2-set.addresses-list ol li {
  float: left;
  width: 100%;
}

.customer-address-index .col2-set.addresses-list ol li address {
  font-style: normal;
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.customer-address-index .col2-set.addresses-list ol li a {
  color: #000000;
  font-size: 11px;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
  float: right;
}
.customer-address-index .col2-set.addresses-list ol li a:after {
  content: "\f054";
  font: normal normal normal 8px/1 FontAwesome;
  margin-left: 5px;
}
.customer-address-index .buttons-set {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid #EDEDED;
  text-align: right;
  float: left;
  width: 100%;
}

/* ============================================ *
 * Contacts
 * ============================================ */
.contacts-index-index .buttons-set {
  margin-left: 0px;
  max-width: 435px;
}
.contacts-index-index .buttons-set p.required {
  float: left;
}

/* ============================================ *
 * PayPal
 * ============================================ */
.paypal-review-order .col2-set .col-1,
.paypal-review-order .col2-set .col-2 {
  padding: 0px;
}
.paypal-review-order .info-set {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
}
.paypal-review-order .buttons-set {
  margin-top: 0px;
  padding-top: 0px;
  border: 0;
}
.paypal-review-order .buttons-set button {
  margin-bottom: 10px;
}

.top-container .bml-ad {
  margin-top: 7px;
  margin-bottom: 7px;
  text-align: center;
}
.top-container .bml-ad span {
  display: inline-block;
}
.top-container .bml-ad span a {
  display: block;
}

.bml-ad {
  display: none;
  text-align: center;
  margin-bottom: 5px;
}
.bml-ad span {
  display: block;
  line-height: 0;
}
.bml-ad a {
  display: inline-block;
  max-width: 100%;
}
.bml-ad a:hover {
  opacity: 0.7;
}
.bml-ad img {
  height: auto !important;
  max-width: 100%;
}

.cart-totals-wrapper .bml-ad.large img {
  display: block;
  margin: 0;
}

.bml-ad.large {
  display: block;
}

div.paypal-logo {
  text-align: center;
  margin: 15px 0;
  max-width: 100%;
}
div.paypal-logo span {
  display: block;
  width: 100%;
}
div.paypal-logo span a {
  display: inline-block;
  max-width: 100%;
}
div.paypal-logo span a img {
  max-width: 100%;
}
div.paypal-logo span > img {
  display: none;
}

.checkout-types div.paypal-logo {
  text-align: right;
}

.bml-checkout-type {
  list-style-type: none;
}

.sidebar .paypal-logo {
  text-align: center;
  line-height: 0;
}
.sidebar .paypal-logo > a {
  display: inline-block;
  max-width: 100%;
}
.sidebar .paypal-logo > a:hover {
  opacity: 0.8;
}
.sidebar .paypal-logo > a img {
  display: block;
}
.sidebar .paypal-logo .label {
  margin-top: 4px;
}
.sidebar .paypal-logo .label a {
  font-size: 12px;
  line-height: 1.5;
}

/* ============================================ *
 * Review - Customer
 * ============================================ */
#customer-reviews {
  width: 100%;
  float: left;
  padding: 10px;
}
@media only screen and (max-width: 376px) {
  #customer-reviews {
    padding: 0 14px;
  }
}
#customer-reviews .review-heading {
  border-bottom: 1px solid #ccc;
}
#customer-reviews .review-heading:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .review-heading h2 {
  float: left;
  display: block;
}
#customer-reviews .review-heading .pager {
  clear: none;
  float: right;
  width: auto;
}
#customer-reviews .review-heading .pager .count-container .limiter {
  margin-bottom: 0;
}
#customer-reviews .review-heading .pager .count-container .limiter label {
  font-size: 10px;
  text-transform: uppercase;
}
#customer-reviews .review-heading .pager .amount {
  display: none;
}
#customer-reviews h2 {
  color: #00035B;
  font-size: 20px;
  text-transform: uppercase;
}
#customer-reviews h2 span {
  color: #606060;
}
#customer-reviews h3 {
  font-size: 12px;
  font-weight: normal;
  letter-spacing: normal;
}
#customer-reviews h3 span {
  color: #4a4a4a;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.3px;
}
#customer-reviews .fieldset {
  padding-top: 25px;
  width: 600px;
}
#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #ccc;
  font-size: 11px;
  font-weight: normal;
  padding-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0;
}
#customer-reviews .fieldset h4 em {
  display: none;
}
#customer-reviews .fieldset .form-list {
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: uppercase;
  width: 100%;
}
#customer-reviews .fieldset .form-list .inline-label:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .fieldset .form-list label {
  font-size: 11px;
  font-weight: normal;
  float: left;
}
#customer-reviews .fieldset .form-list textarea {
  border: 1px solid #ccc;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
}
@media only screen and (max-width: 991px) {
  #customer-reviews .fieldset .form-list textarea {
    font-size: 16px;
  }
}
#customer-reviews .fieldset .form-list input {
  border: 1px solid #ccc;
  border-radius: 0;
}
#customer-reviews .fieldset .form-list input[type="text"] {
  width: 100%;
  max-width: 100%;
}
#customer-reviews .buttons-set {
  border: none;
  margin: 0;
  width: 470px;
}
#customer-reviews .buttons-set span {
  font-size: 14px;
}
#customer-reviews dl {
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 10px;
}
#customer-reviews dl dt {
  margin: 10px 0;
  text-transform: uppercase;
  color: #000;
  float: left;
  width: 20%;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  #customer-reviews dl dt {
    width: 100%;
    padding-left: 0px;
  }
}
#customer-reviews dl dd {
  font-size: 12px;
  margin: 5px 0 10px;
  float: left;
  width: 79%;
}
@media only screen and (max-width: 991px) {
  #customer-reviews dl dd {
    width: 100%;
  }
}
#customer-reviews dl dd .ratings-table {
  font-size: 12px;
  width: 100%;
}
#customer-reviews dl dd .ratings-table tr {
  margin-right: 15px;
}
#customer-reviews dl dd .ratings-table .review-label {
  width: 300px;
  max-width: 70%;
}
#customer-reviews dl dd table {
  margin: 15px 0;
}
#customer-reviews dl dd .review-meta {
  color: #4a4a4a;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}
#customer-reviews dl dd .icon-star-empty {
  margin-right: 6px;
}

.review-summary-table {
  border-bottom: 1px solid #ccc;
  margin: 0 0 10px;
}
.review-summary-table thead {
  background: transparent;
  width: 100%;
  float: left;
}
.review-summary-table thead th {
  background: transparent;
  border: none;
  padding: 15px 7px 10px 8px;
}
.review-summary-table thead th .rating-box {
  width: 95px;
}
.review-summary-table tbody th {
  background: #FFFFFF;
  font-size: 12px;
}
.review-summary-table tbody td {
  border: none;
  text-align: center;
  padding: 0;
}
.review-summary-table tbody td label {
  width: 100%;
  display: block;
  padding: 11px 0;
}
.review-summary-table .rating-box .rating-number {
  display: none;
}
.review-summary-table .rating-box .rating-number:after {
  content: "";
  display: inline-block;
  background-position: 0px -599px;
  width: 13px;
  height: 12px;
  margin-left: 5px;
  position: relative;
  top: 2px;
}

/* ============================================ *
 * Ratings - Global
 * ============================================ */
.ratings-table {
  font-size: 12px;
  text-transform: uppercase;
}
.ratings-table th {
  padding-right: 10px;
}
.ratings-table .rating-box {
  background-position: 0 -615px;
  background-repeat: repeat-x;
  height: 13px;
  overflow: hidden;
  text-indent: -9999px;
  width: 65px;
}
.ratings-table .rating-box .rating {
  background-position: 0 -600px;
  background-repeat: repeat-x;
  float: left;
  height: 13px;
  text-indent: -9999px;
  background-image: url(../images/icon_sprite@2x.png);
  background-size: 100px;
}

body.review-product-list .product-collateral.toggle-content.tabs {
  display: none;
}
body.review-product-list .block.block-list.block-viewed {
  display: none;
}
body.review-product-list .product-view .product-shop .product-name .h3 {
  color: #4a4a4a;
  font-size: 24px;
  font-weight: 500;
  line-height: 22px;
  font-family: "GothamRounded", Verdana, Arial, sans-serif;
  letter-spacing: 0.3px;
  float: left;
  width: 100%;
}
body.review-product-list .product-view .product-shop .price-info {
  padding-left: 0;
}
body.review-product-list .product-view .product-shop .extra-info {
  padding: 0;
  min-width: 84%;
}
body.review-product-list .product-view .product-shop .extra-info .ratings-table {
  margin: 10px 0;
  width: 100%;
}
body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
  margin-right: 15px;
}
body.review-product-list .product-view #customer-reviews .fieldset .first.last.activo {
  width: 100%;
  float: left;
}
body.review-product-list .product-view .product-essential.container #age {
  padding: 0;
  width: 100%;
  float: left;
  font-size: 14px;
  letter-spacing: 0.2px;
  font-weight: 300;
  display: flex;
  margin-bottom: 10px;
}
body.review-product-list .product-view .product-essential.container #age:before {
  content: 'Edad:';
  font-weight: 700;
  margin-right: 5px;
}
body.review-product-list .product-view .product-essential.container .product-shop {
  margin-top: 30px;
}

/* ============================================ *
 * Review View Page
 * ============================================ */
.review-product-view .product-review .product-details h2 {
  border-bottom: none;
}
.review-product-view .product-review .product-img-box {
  width: auto;
  max-width: 50%;
}
.review-product-view .product-review .product-img-box > a {
  width: 100%;
}
.review-product-view .product-review .product-img-box .product-image {
  width: 100%;
}

/* ============================================ *
 * Slideshow
 * ============================================ */
.slideshow-container {
  position: relative;
  display: block;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .slideshow-container {
    margin-top: 61px;
  }
}
.slideshow-container #homepage-main-slides .owl-nav .owl-prev {
  left: 5px !important;
}
@media only screen and (max-width: 991px) {
  .slideshow-container #homepage-main-slides .owl-nav .owl-next {
    right: 0px !important;
  }
}
.slideshow-container .slideshow {
  width: 100%;
  padding: 0;
  position: relative;
  margin: 0;
  border: 10px solid #FFFFFF;
}
.slideshow-container .slideshow > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  display: block;
  margin: 0;
}
.slideshow-container .slideshow > li:first-child {
  position: static;
  z-index: 100;
}
.slideshow-container .slideshow > li img {
  max-width: 100%;
  width: 100%;
}

.slideshow-pager {
  text-align: center;
  width: 100%;
  z-index: 115;
  position: absolute;
  bottom: 0px;
  top: auto;
  overflow: hidden;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.slideshow-pager span {
  font-family: arial;
  width: 44px;
  height: 44px;
  display: inline-block;
  color: #DDDDDD;
  cursor: pointer;
}
.slideshow-pager span:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 1px;
  background-color: #FFFFFF;
  position: relative;
}
.slideshow-pager span:hover:before {
  background-color: #e4e4e4;
}
.slideshow-pager span.cycle-pager-active:before {
  background-color: #d8d8d8;
}
.slideshow-pager > * {
  cursor: pointer;
}

.slideshow-prev,
.slideshow-next {
  position: absolute;
  top: 0;
  width: 15%;
  max-width: 80px;
  height: 100%;
  opacity: 0.6;
  z-index: 110;
  cursor: pointer;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.slideshow-prev:before,
.slideshow-next:before {
  content: '';
  width: 0;
  height: 0;
  font-size: 0;
  position: absolute;
  border-style: solid;
  display: block;
  top: 50%;
  margin-top: -15px;
}
.slideshow-prev:hover,
.slideshow-next:hover {
  opacity: 1;
}
.slideshow-prev.disabled,
.slideshow-next.disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  cursor: default;
}

.slideshow-prev {
  left: 8px;
}
.slideshow-prev:before {
  border-width: 15px 15px 15px 0;
  border-color: transparent #FFFFFF transparent transparent;
  top: 50%;
  left: 10px;
}
.slideshow-prev:hover:before {
  border-color: transparent #e4e4e4 transparent transparent;
}

.slideshow-next {
  right: 8px;
}
.slideshow-next:before {
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #FFFFFF;
  top: 50%;
  right: 10px;
}
.slideshow-next:hover:before {
  border-color: transparent transparent transparent #e4e4e4;
}

.cycle-caption {
  position: absolute;
  color: white;
  bottom: 15px;
  right: 15px;
  z-index: 110;
}

.cycle-overlay {
  font-family: tahoma, arial;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 120;
  background: black;
  color: white;
  padding: 15px;
  opacity: .5;
}

/* ============================================ *
 * Wishlist
 * ============================================ */
#wishlist-table th {
  text-align: center;
}
#wishlist-table.clean-table {
  font-size: 12px;
  text-transform: uppercase;
  width: 100%;
}
#wishlist-table.clean-table th {
  border-bottom: 1px solid #ededed;
}
#wishlist-table.clean-table td {
  padding: 27px 10px 20px;
}
#wishlist-table.clean-table thead th {
  font-size: 12px;
  text-transform: uppercase;
}
#wishlist-table .product-name {
  color: #000000;
  font-family: "Avenir", serif;
  font-size: 10px;
  line-height: 24px;
  float: left;
  width: 100%;
  letter-spacing: 1.5px;
  font-weight: 500;
}
#wishlist-table .product-name a {
  color: #646464;
}
@media only screen and (max-width: 991px) {
  #wishlist-table .product-name a {
    font-size: 16px;
  }
}
#wishlist-table .wishlist-sku {
  font-size: 11px;
  margin: 5px 0;
  display: none;
}
#wishlist-table .item-manage {
  display: none;
}
#wishlist-table textarea {
  border: 1px solid #C0C0C0;
  width: 80%;
  height: 80px;
  font-size: 11px;
}
#wishlist-table textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea::-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-ms-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:focus {
  border: 1px solid #f1f1f1;
}
#wishlist-table .item-manage {
  text-align: right;
  max-width: 450px;
  padding-top: 5px;
}
#wishlist-table .item-manage .button {
  font-size: 11px;
  padding: 3px 5px;
}
#wishlist-table .cart-cell {
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-image {
  width: 113px;
}
#wishlist-table td.customer-wishlist-item-quantity {
  width: 7em;
}
#wishlist-table td.customer-wishlist-item-price {
  width: 120px;
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-cart {
  width: 200px;
}
#wishlist-table td.customer-wishlist-item-cart .button {
  font-size: 10px;
  width: 100%;
  float: left;
  line-height: 20px;
  letter-spacing: 1px;
}
@media only screen and (max-width: 991px) {
  #wishlist-table td.customer-wishlist-item-cart .button.cart-cell {
    width: 100% !important;
  }
}
#wishlist-table td.customer-wishlist-item-cart a.link-edit {
  display: none;
}
#wishlist-table td.customer-wishlist-item-cart .truncated {
  margin-bottom: 10px;
}
#wishlist-table td.customer-wishlist-item-cart > p {
  margin-bottom: 0;
}
#wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-cart .btn-remove {
  vertical-align: top;
}
#wishlist-table td.customer-wishlist-item-remove {
  width: 20px;
  position: relative;
}
#wishlist-table td.customer-wishlist-item-remove:before {
  content: "\f014";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  position: absolute;
  right: 12px;
}
#wishlist-table td .button,
#wishlist-table td button {
  white-space: normal;
}
#wishlist-table .price-box {
  font-size: 12px;
}
#wishlist-table .price-box .price {
  color: #606060;
}
#wishlist-table .giftregisty-add {
  margin-top: 5px;
}
#wishlist-table .giftregisty-add .change {
  display: none;
}
#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #646464;
  margin-bottom: 3px;
}
#wishlist-table .truncated .details {
  background: none;
  color: #646464;
}
#wishlist-table td[data-rwd-label]:before {
  font-weight: 600;
}

#wishlist-view-form .buttons-set {
  margin-top: 50px;
}
#wishlist-view-form .buttons-set .btn-update.button-secondary {
  display: none;
}
#wishlist-view-form .buttons-set button.button {
  float: right;
  margin-left: 5px;
  min-width: auto;
  font-size: 14px;
  letter-spacing: 0.78px;
  margin-bottom: 13px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 20px;
}

#wishlist-table.clean-table td {
  padding-left: 10px;
  padding-right: 10px;
}

#wishlist-table.clean-table td {
  padding-left: 5px;
  padding-right: 5px;
}
#wishlist-table.clean-table td textarea {
  height: 100px;
}
#wishlist-table.clean-table td.customer-wishlist-item-cart {
  width: 110px;
}
#wishlist-table .product-name {
  font-size: 14px;
}

/* ============================================ *
 * Wishlist Sidebar
 * ============================================ */
.block-wishlist .mini-products-list > li:not(:last-child) {
  padding-bottom: 5px;
}
.block-wishlist .product-details .product-name {
  padding-top: 0;
  margin-bottom: 5px;
}
.block-wishlist .price-box {
  float: left;
  margin: 0;
}
.block-wishlist .price-box,
.block-wishlist .price-box .price,
.block-wishlist .link-cart {
  font-size: 12px;
}
.block-wishlist .link-cart {
  float: left;
  text-transform: uppercase;
  margin-right: 7px;
  padding-right: 7px;
  border-right: 1px solid #EDEDED;
}

.wishlist-index-share.customer-account .buttons-set button.button {
  float: left;
  margin-left: 0;
  line-height: 36px;
  text-transform: uppercase;
}

/* ============================================ *
 * Checkout - Mini cart
 * ============================================ */
.header-minicart {
  display: inline-block;
  padding: 0;
  height: auto;
}
.header-minicart .minicart-message {
  display: block;
  padding: 10px;
  text-transform: uppercase;
}
.header-minicart .empty {
  padding: 10px;
  text-align: center;
  margin: 0;
  color: #464646;
  font-size: 12px;
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .header-minicart .empty {
    padding: 0;
    padding-top: 30px;
  }
}
.header-minicart .minicart-wrapper {
  clear: both;
  position: relative;
  width: 100%;
  height: 83vh;
}
.header-minicart .minicart-wrapper:before, .header-minicart .minicart-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.header-minicart .minicart-wrapper:before {
  opacity: 0.8;
  z-index: 2;
}
.header-minicart .minicart-wrapper:after {
  background-image: url("../images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.header-minicart .minicart-wrapper.loading {
  position: relative;
}
.header-minicart .minicart-wrapper.loading:before, .header-minicart .minicart-wrapper.loading:after {
  display: block;
}
.header-minicart .block-cart {
  display: none;
}
.header-minicart .block-cart.skip-active:before {
  content: '\f0d8';
  font-family: FontAwesome;
  color: #ebebeb;
  position: absolute;
  font-size: 14px;
  top: -14px;
  right: 30px;
}
@media only screen and (max-width: 991px) {
  .header-minicart .block-cart.skip-active:before {
    display: none;
  }
}
.header-minicart .block-subtitle {
  display: none;
  color: #000;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.header-minicart .block-subtitle .close {
  width: 40px;
  float: right;
  display: block;
  color: #606060;
  text-decoration: none;
  font-weight: normal;
  font-size: 30px;
  position: absolute;
  top: -8px;
  right: -3px;
}
.header-minicart .info-envio {
  display: none;
  width: 100%;
  flex-direction: column;
  margin-bottom: 25px;
}
.header-minicart .info-envio .title {
  font-weight: 500;
  margin: 0;
  text-align: left;
  margin-bottom: 5px;
}
.header-minicart .info-envio span {
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 300;
  line-height: 15px;
  text-align: left;
}
.header-minicart .heading {
  text-align: left;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 15px;
  padding-bottom: 5px;
  color: #ed664f;
}
.header-minicart .heading h4 {
  color: #4a4a4a;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  padding-top: 14px;
}
@media only screen and (max-width: 991px) {
  .header-minicart .heading {
    margin-bottom: 0;
    padding-bottom: 5px;
  }
}
.header-minicart .heading span {
  color: #ed664f;
  letter-spacing: 1px;
  font-size: 11px;
  text-transform: uppercase;
  line-height: 24px;
}
.header-minicart .mini-products-list {
  padding: 10px 0;
  border-bottom: 1px solid #e9e9e9;
  max-height: 60vh;
  height: 60vh;
  overflow: auto;
}
.header-minicart .mini-products-list li {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
  color: #ed664f;
}
@media only screen and (max-width: 991px) {
  .header-minicart .mini-products-list li {
    border: none;
    margin: 0;
  }
}
.header-minicart .mini-products-list li.last {
  border: none;
  padding: 0;
  margin-bottom: 0;
}
.header-minicart .mini-products-list li .prodname_details {
  padding: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 10px;
  text-align: left;
  color: #ed664f;
  font-size: 12px;
  line-height: 16px;
}
.header-minicart .mini-products-list li .prodname_details .price {
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 500;
}
.header-minicart .mini-products-list li .prodname_details .product-name {
  line-height: 13px;
  margin-bottom: 5px;
}
.header-minicart .mini-products-list li .prodname_details .product-name a {
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 300;
}
.header-minicart .mini-products-list li .prodname_details .prod-details {
  position: relative;
}
.header-minicart .mini-products-list li .qty-wrapper {
  margin-left: 5px;
  padding: 10px 0;
  text-align: center;
  color: #575757;
}
.header-minicart .mini-products-list li .remove-wrapper {
  padding: 10px 0;
}
.header-minicart .mini-products-list li .remove-wrapper a {
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .header-minicart .mini-products-list li .product-image {
    margin-left: 10px;
  }
}
.header-minicart .block-content {
  display: none;
}
.header-minicart .block-content .subtotal {
  background-color: #DDDDDD;
  text-align: center;
  line-height: 2em;
}
.header-minicart .block-content .subtotal .label {
  color: white;
  text-transform: uppercase;
}
.header-minicart .block-content .subtotal .price {
  color: #4a4a4a;
  font-size: 14px;
}
.header-minicart .minicart-actions {
  padding: 0;
  margin-top: 0px;
  overflow: hidden;
  text-align: center;
  position: absolute;
  bottom: 0;
}
.header-minicart .minicart-actions .checkout-button {
  min-width: 145px;
}
.header-minicart .minicart-actions .cart-link {
  display: inline-block;
  float: none;
  margin-top: 20px;
  width: 100%;
  color: #fff;
  background-color: #F06000;
  border: none;
  font-size: 20px;
  font-weight: 500;
  padding: 0;
  height: 50px;
  justify-content: center;
  display: flex;
  align-items: center;
}
.header-minicart .minicart-actions .cart-link.carrito {
  padding: 2px;
  background: transparent;
  border: none;
  color: #ed664f;
  display: none;
}
.header-minicart .minicart-actions .paypal-logo .paypal-or {
  line-height: 1.6;
}
.header-minicart #minicart-error-message {
  text-align: center;
  color: red;
  display: none;
}
.header-minicart #minicart-success-message {
  text-align: center;
  color: green;
  margin-top: 20px;
  display: none;
  position: relative;
  padding: 0;
}
.header-minicart .jcarousel-control-prev,
.header-minicart .jcarousel-control-next {
  display: none;
}

.header-minicart.skip-active .block-cart,
.block-cart.skip-active {
  display: block;
}

.checkout-types.minicart {
  float: none;
  text-align: center;
  width: 100%;
  border: none !important;
}
.checkout-types.minicart li {
  width: 100%;
}

/* ============================================ *
 * Search - Auto Suggest
 * ============================================ */
.search-autocomplete {
  left: 0 !important;
  overflow: visible !important;
  position: relative !important;
  top: 45px !important;
  width: 100% !important;
  z-index: 200;
}
@media only screen and (max-width: 991px) {
  .search-autocomplete {
    top: 122px !important;
    width: 100% !important;
    position: fixed !important;
  }
}
.search-autocomplete ul {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #949494;
  left: 0;
  padding-left: 0;
  position: absolute;
  top: 0;
  width: 98%;
}
.search-autocomplete ul li {
  border-bottom: 1px solid #f5f4f2;
  color: #646464;
  cursor: pointer;
  font-size: 11px;
  padding: 4px 6px;
  text-align: left;
  text-transform: uppercase;
}
.search-autocomplete ul li:hover {
  color: #575757;
}
.search-autocomplete ul li.selected {
  background-color: #646464;
  color: white;
}
.search-autocomplete ul li .amount {
  float: right;
  font-weight: bold;
}
.search-autocomplete ul li:last-child {
  border-bottom: none;
}
.search-autocomplete:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #646464;
  border-top: none;
  left: 5%;
  top: -7px;
}

/* ============================================ *
 * Search - Advanced
 * ============================================ */
.container-advanced-search {
  width: 100%;
  margin-top: 50px;
  background: linear-gradient(90deg, #f04c50 40%, #f6f5f5 61%);
}

#pdp-advanced-search {
  display: none;
  align-items: center;
  padding: 0;
  margin-top: 100px;
  float: left;
}
#pdp-advanced-search .middle-advance-search #form-validate {
  min-height: 198px;
}
#pdp-advanced-search .middle-advance-search .buttons-set {
  margin: -120px 0 0;
}
@media only screen and (max-width: 991px) {
  #pdp-advanced-search .middle-advance-search .buttons-set {
    width: 100%;
    margin: 0px 0;
  }
}

.home-advanced-search {
  background-color: #f6f5f5;
}
@media only screen and (max-width: 991px) {
  .home-advanced-search {
    flex-direction: column;
    margin: 0px 0;
  }
}
.home-advanced-search .left-advance-search {
  float: left;
  width: 37.5%;
  background-color: #f04c50;
}
@media only screen and (max-width: 991px) {
  .home-advanced-search .left-advance-search {
    width: 100%;
  }
}
.home-advanced-search .middle-advance-search {
  float: left;
  width: 62.5%;
}
@media only screen and (max-width: 991px) {
  .home-advanced-search .middle-advance-search {
    width: 100%;
  }
}
@media only screen and (max-width: 479px) {
  .home-advanced-search .middle-advance-search {
    height: 350px;
    overflow: hidden;
  }
}
.home-advanced-search .middle-advance-search #form-validate {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  background-color: #f6f5f5;
  min-height: 261px;
}
@media only screen and (max-width: 479px) {
  .home-advanced-search .middle-advance-search #form-validate {
    display: block;
  }
}
.home-advanced-search .middle-advance-search .fieldset.advanced-search {
  float: left;
  width: 64%;
  padding: 0% 6%;
}
@media only screen and (max-width: 991px) {
  .home-advanced-search .middle-advance-search .fieldset.advanced-search {
    width: 60%;
    margin: 26px 0;
  }
}
@media only screen and (max-width: 479px) {
  .home-advanced-search .middle-advance-search .fieldset.advanced-search {
    width: 100%;
  }
}
.home-advanced-search .middle-advance-search .fieldset.advanced-search .legend {
  display: none;
}
.home-advanced-search .middle-advance-search .fieldset.advanced-search li {
  margin-bottom: 20px;
}
.home-advanced-search .middle-advance-search .fieldset.advanced-search li label {
  font-size: 16px;
  color: #00035B;
  text-transform: initial;
  float: left;
  padding: 0 10px 0 0;
  font-weight: 500;
}
.home-advanced-search .middle-advance-search .fieldset.advanced-search li.last {
  margin-bottom: 0px;
}
.home-advanced-search .middle-advance-search .fieldset.advanced-search .input-box select {
  width: 200px;
  -webkit-appearance: none;
  border: none;
  border-bottom: 1px solid #00035B;
  cursor: pointer;
  font-size: 14px;
  background: url(../images/angle-down.png) no-repeat right center;
  background-size: 18px;
  line-height: 16px;
  border-radius: 0px;
}
@media only screen and (max-width: 991px) {
  .home-advanced-search .middle-advance-search .fieldset.advanced-search .input-box select {
    margin-top: 10px;
  }
}
.home-advanced-search .middle-advance-search .fieldset.advanced-search .input-box .fa {
  color: #00035B;
  font-size: 16px;
  padding: 0px 0 0 7px;
  vertical-align: bottom;
}
.home-advanced-search .middle-advance-search .buttons-set {
  float: left;
  width: 160px;
  clear: none;
  margin: -180px 0 0;
  padding: 0;
  border: none;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .home-advanced-search .middle-advance-search .buttons-set {
    width: 60%;
    margin: 0px 0;
  }
  .home-advanced-search .middle-advance-search .buttons-set img {
    display: block;
    width: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .home-advanced-search .middle-advance-search .buttons-set {
    width: 100%;
    padding: 0;
    margin: 0px 0 40px;
    bottom: 120px;
    left: 60px;
  }
}
.home-advanced-search .middle-advance-search .buttons-set img {
  float: right;
  width: 100px;
}
@media only screen and (max-width: 767px) {
  .home-advanced-search .middle-advance-search .buttons-set img {
    display: none;
  }
}
.home-advanced-search .middle-advance-search .buttons-set .button {
  border-radius: 0px;
  background-color: #e65151;
  box-shadow: 4px 4px 10px 0px #000000;
  width: 200px;
  line-height: 60px;
}
@media only screen and (max-width: 991px) {
  .home-advanced-search .middle-advance-search .buttons-set .button {
    width: 160px;
    line-height: 40px;
  }
}
.home-advanced-search .middle-advance-search .buttons-set .button span {
  font-size: 22px;
  font-weight: 500;
}
.home-advanced-search .middle-advance-search .input-range {
  color: #00035B;
  position: relative;
}
.home-advanced-search .middle-advance-search .input-range input {
  border: 0px;
  background-color: transparent;
  border-bottom: 1px solid #00035B;
  border-radius: 0px;
  height: 24px;
  font-weight: 500;
  font-size: 14px;
}
.home-advanced-search .middle-advance-search .input-range .validation-advice {
  position: absolute;
  top: 20px;
  font-size: 12px;
}

.advanced-search select.multiselect option {
  border-bottom: 1px solid #EDEDED;
  padding: 2px 5px;
}

/* ============================================ *
 * Account - Reviews
 * ============================================ */
.product-review .product-img-box p.label {
  border-bottom: 1px solid #949494;
  font-size: 26px;
  margin-top: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.product-review .product-img-box .rating-box {
  margin: 15px 0;
}
.product-review .product-details h2 {
  border-bottom: 1px solid #949494;
  color: #3399CC;
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 10px;
}
.product-review .ratings-table th {
  padding-right: 10px;
}
.product-review .ratings-table tr {
  float: left;
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase;
}
.product-review .ratings-description dt {
  border-bottom: 1px solid #949494;
  font-size: 26px;
  font-weight: 400;
  margin-top: 20px;
  padding: 10px 0;
  text-transform: uppercase;
}
.product-review .ratings-description dd {
  color: #737373;
  font-size: 14px;
}

.product-review .ratings-table tr {
  float: none;
}

#accordion .toggle-tabs {
  display: none;
}
#accordion > dl > dt {
  display: block;
}
#accordion li {
  position: relative;
  overflow: hidden;
}
#accordion li .plusimage h2 {
  margin-right: 10px;
}

.page-sitemap .links {
  display: block;
  text-align: right;
  margin: 0 20px 0 0;
}
.page-sitemap .links a {
  position: relative;
}
.page-sitemap .sitemap {
  padding: 0 20px;
  margin: 15px 0;
  font-size: 12px;
}
.page-sitemap .sitemap li {
  margin: 3px 0;
}

.cms-home .col1-layout {
  padding-top: 73px !important;
}
.cms-home .breadcrumbs {
  display: none;
}
.cms-home #header .block-container .block-buttons {
  display: none;
}
.cms-home #header #header-nav {
  display: none;
}
@media only screen and (max-width: 991px) {
  .cms-home #header #header-nav {
    display: block;
    transition: ease-in-out .3s;
  }
}
.cms-home #header #header-nav.skip-active {
  display: block;
}
.cms-home .title {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  color: #4a4a4a;
  letter-spacing: 0;
  font-size: 24px;
  font-weight: 700;
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .cms-home .title {
    margin-bottom: 0;
    margin-top: 30px;
  }
}
.cms-home .como-funciona {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  margin: 20px auto;
  margin-top: 50px;
}
.cms-home .como-funciona .item {
  width: 20%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.cms-home .como-funciona .item .box {
  max-height: 100px;
}
.cms-home .como-funciona .item p {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  height: 100px;
  font-family: "Jost", sans-serif;
}
.cms-home .como-funciona .item p b {
  color: #4a4a4a;
  font-size: 21px;
  font-weight: 700;
}
.cms-home .como-funciona .item:after {
  position: absolute;
  font-family: "FontAwesome";
  font-weight: 400;
  font-size: 20px;
  content: "\f061";
  color: #a2a1a0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cms-home .como-funciona .item:last-child:after {
  display: none;
}
@media only screen and (max-width: 991px) {
  .cms-home .como-funciona .item {
    width: 92%;
    padding: 5%;
  }
  .cms-home .como-funciona .item p {
    text-align: center;
  }
  .cms-home .como-funciona .itemlast-child {
    padding-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .cms-home .como-funciona {
    -ms-touch-action: auto !important;
    touch-action: auto !important;
    display: -webkit-box;
    display: -ms-flexbox;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    margin-top: 10px;
  }
}
.cms-home .subtitle {
  font-family: "Jost500M", sans-serif;
  color: #666666;
  font-size: 24px;
  font-weight: 300;
  text-align: left;
  letter-spacing: 0;
  margin: 0;
}
.cms-home .subtitle.dos {
  margin-top: 10px;
}
@media only screen and (max-width: 991px) {
  .cms-home .subtitle.dos {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .cms-home .subtitle {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
    color: #00035b !important;
    font-family: "Ubuntu500", sans-serif !important;
  }
}

.cms-landing .container {
  display: block;
  position: absolute;
  height: auto;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .cms-landing .container {
    display: flex;
    flex-wrap: wrap;
  }
}
.cms-landing .column_wrap {
  position: relative;
}
.cms-landing .col_left {
  background-color: transparent;
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: auto;
  display: block;
}
.cms-landing .col_left .inner-cont {
  width: 80%;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
}
.cms-landing .col_left .inner-cont .info h1 {
  color: #4a4a4a;
  font-size: 48px;
  font-weight: 700;
  line-height: 53px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .cms-landing .col_left .inner-cont .info h1 {
    font-size: 26px;
    padding-left: 10px;
    line-height: 1.4;
  }
}
.cms-landing .col_left .inner-cont .info p {
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
  font-style: normal;
  letter-spacing: -0.2px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .cms-landing .col_left .inner-cont .info p {
    font-size: 14px;
    padding: 10px;
    line-height: 23px;
  }
}
@media only screen and (max-width: 991px) {
  .cms-landing .col_left .inner-cont .info {
    margin-top: 0;
  }
}
.cms-landing .col_left .inner-cont .block-subscribe {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.cms-landing .col_left .inner-cont .block-subscribe .block-content {
  width: 100%;
}
.cms-landing .col_left .inner-cont .block-subscribe .input-box-container input {
  width: 400px;
  max-width: 100%;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #eeeeee;
  background-color: #bcbcbc;
  color: #4a4a4a;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .cms-landing .col_left .inner-cont .block-subscribe .input-box-container input {
    width: 100%;
  }
}
.cms-landing .col_left .inner-cont .block-subscribe .input-box-container .actions {
  display: flex;
}
.cms-landing .col_left .inner-cont .block-subscribe .input-box-container .actions button {
  width: 400px;
  max-width: 100%;
  height: 40px;
  border-radius: 4px;
  background-color: #ff664b;
  color: white;
  font-size: 16px;
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .cms-landing .col_left .inner-cont .block-subscribe .input-box-container .actions button {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .cms-landing .col_left .inner-cont .block-subscribe .input-box-container .actions {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .cms-landing .col_left .inner-cont .block-subscribe .input-box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.cms-landing .col_left .inner-cont .block-subscribe .thanks {
  color: #4a4a4a;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.22px;
  width: 400px;
  max-width: 100%;
  text-align: center;
  margin-top: 15px;
}
@media only screen and (max-width: 991px) {
  .cms-landing .col_left .inner-cont .block-subscribe .thanks {
    margin-top: 15px;
    margin-bottom: 0;
    padding-top: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .cms-landing .col_left .inner-cont .block-subscribe {
    margin-top: 15px;
  }
}
@media (max-width: 350px) {
  .cms-landing .col_left .inner-cont .block-subscribe {
    margin-top: -10px;
  }
}
@media only screen and (max-width: 991px) {
  .cms-landing .col_left .inner-cont {
    width: 80%;
    height: 80%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #ffffffd6;
  }
}
.cms-landing .col_left .logo {
  width: 108px;
}
@media only screen and (max-width: 991px) {
  .cms-landing .col_left .logo {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .cms-landing .col_left {
    width: 100%;
    left: 0;
    top: unset;
    bottom: 0;
    height: 70%;
  }
  .cms-landing .col_left .inner-cont {
    width: 90%;
  }
  .cms-landing .col_left .inner-cont .block-subscribe form {
    width: 100%;
  }
}
.cms-landing .col_right {
  margin-left: 50%;
  height: 100%;
  background-color: #ff664b;
}
.cms-landing .col_right .inner-cont {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .cms-landing .col_right .inner-cont img {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  .cms-landing .col_right {
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    margin-left: 0;
    height: 30%;
    width: 100%;
    background-color: #ff664b;
  }
}

.cms-pre-inicio #header .block-container .block.logo-frizata {
  display: none;
}
.cms-pre-inicio #header .block-container .block.top .account {
  display: none;
}
.cms-pre-inicio #header .block-container .block.top .block-buttons {
  display: block;
}
.cms-pre-inicio #header .logo-container {
  display: flex;
}
.cms-pre-inicio .main-container.col1-layout {
  padding-top: 112px;
}
.cms-pre-inicio .wrapper {
  overflow-x: hidden;
}
.cms-pre-inicio .breadcrumbs {
  display: none;
}
.cms-pre-inicio .banner {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.cms-pre-inicio .banner img {
  width: 100%;
}
.cms-pre-inicio .banner .inner-cont {
  position: absolute;
  right: 0;
  top: 15%;
  left: 6%;
  margin: auto;
  width: 55%;
  text-align: justify;
  letter-spacing: 0;
}
.cms-pre-inicio .banner .inner-cont h1 {
  color: #4a4a4a;
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 51px;
}
.cms-pre-inicio .banner .inner-cont .register-form {
  width: 50%;
}
.cms-pre-inicio .banner .inner-cont .register-form .account-create .page-title, .cms-pre-inicio .banner .inner-cont .register-form .account-create .required, .cms-pre-inicio .banner .inner-cont .register-form .account-create .form-instructions {
  display: none;
}
.cms-pre-inicio .banner .inner-cont .register-form .account-create .form-list {
  display: flex;
  flex-wrap: wrap;
}
.cms-pre-inicio .banner .inner-cont .register-form .account-create .form-list .fields {
  width: 100%;
  order: 2;
}
.cms-pre-inicio .banner .inner-cont .register-form .account-create .form-list .fields .customer-name-middlename .subfields {
  display: flex;
  justify-content: space-between;
}
.cms-pre-inicio .banner .inner-cont .register-form .account-create .form-list .fields .customer-name-middlename .subfields .field {
  width: 48%;
  margin-bottom: 0;
}
.cms-pre-inicio .banner .inner-cont .register-form .account-create .form-list .email-li {
  width: 100%;
  order: 1;
}
.cms-pre-inicio .banner .inner-cont .register-form .account-create .form-list input {
  max-width: 100%;
  border-radius: 4px;
  border: 1px solid #eeeeee;
  background-color: #ffffff;
  font-size: 16px;
}
.cms-pre-inicio .banner .inner-cont .register-form .account-create .form-list input::placeholder {
  color: #a2a1a0;
}
.cms-pre-inicio .banner .inner-cont .register-form .account-create .buttons-set {
  margin-top: 0;
  padding-top: 0;
}
.cms-pre-inicio .banner .inner-cont .register-form .account-create .buttons-set .back-link {
  display: none;
}
.cms-pre-inicio .banner .inner-cont .register-form .account-create .buttons-set button {
  border-radius: 4px;
  background-color: #f4bd67;
}
@media only screen and (max-width: 991px) {
  .cms-pre-inicio .banner .inner-cont .register-form {
    width: 100%;
    margin-top: 25px;
  }
}
.cms-pre-inicio .banner .inner-cont .sub-title {
  color: #4a4a4a;
  font-weight: 300 !important;
  font-style: normal;
  font-size: 16px;
  width: 50%;
  margin: 5px 0px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .cms-pre-inicio .banner .inner-cont .sub-title {
    width: 100%;
  }
}
.cms-pre-inicio .banner .inner-cont .account-login {
  width: 83%;
  margin-top: 15px;
}
.cms-pre-inicio .banner .inner-cont .account-login .content {
  display: none;
}
.cms-pre-inicio .banner .inner-cont .account-login .inchoo-socialconnect-login-upper {
  display: flex;
  flex-direction: row-reverse;
  width: 60%;
}
.cms-pre-inicio .banner .inner-cont .account-login .inchoo-socialconnect-login-upper .inchoo-socialconnect-login-upper-google {
  width: 50%;
  padding: 0;
  padding-left: 5px;
  display: flex;
  justify-content: flex-end;
}
.cms-pre-inicio .banner .inner-cont .account-login .inchoo-socialconnect-login-upper .inchoo-socialconnect-login-upper-google .inchoo-socialconnect-google {
  height: 100% !important;
}
.cms-pre-inicio .banner .inner-cont .account-login .inchoo-socialconnect-login-upper .inchoo-socialconnect-login-upper-google .inchoo-socialconnect-google .inchoo-socialconnect-google-inner {
  height: 100% !important;
  width: 100%;
  background: none !important;
  background-color: #e04e2c !important;
  position: relative;
  border-radius: 4px;
}
.cms-pre-inicio .banner .inner-cont .account-login .inchoo-socialconnect-login-upper .inchoo-socialconnect-login-upper-google .inchoo-socialconnect-google .inchoo-socialconnect-google-inner:before {
  content: "google";
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: 16px;
  height: 25px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .cms-pre-inicio .banner .inner-cont .account-login .inchoo-socialconnect-login-upper .inchoo-socialconnect-login-upper-google .inchoo-socialconnect-login-lower-google {
    width: 95%;
  }
}
@media only screen and (max-width: 991px) {
  .cms-pre-inicio .banner .inner-cont .account-login .inchoo-socialconnect-login-upper .inchoo-socialconnect-login-upper-google .buttons-set {
    width: 100%;
  }
}
.cms-pre-inicio .banner .inner-cont .account-login .inchoo-socialconnect-login-upper .inchoo-socialconnect-login-upper-facebook {
  width: 50%;
  padding: 0;
  padding-right: 5px;
}
.cms-pre-inicio .banner .inner-cont .account-login .inchoo-socialconnect-login-upper .inchoo-socialconnect-login-upper-facebook .inchoo-socialconnect-facebook {
  height: 100% !important;
}
.cms-pre-inicio .banner .inner-cont .account-login .inchoo-socialconnect-login-upper .inchoo-socialconnect-login-upper-facebook .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-inner {
  height: 100% !important;
  width: 100%;
  background: none !important;
  background-color: #0373e5 !important;
  position: relative;
  border-radius: 4px;
}
.cms-pre-inicio .banner .inner-cont .account-login .inchoo-socialconnect-login-upper .inchoo-socialconnect-login-upper-facebook .inchoo-socialconnect-facebook .inchoo-socialconnect-facebook-inner:before {
  content: "facebook";
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: 16px;
  height: 25px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .cms-pre-inicio .banner .inner-cont .account-login .inchoo-socialconnect-login-upper .inchoo-socialconnect-login-upper-facebook .inchoo-socialconnect-login-lower-facebook {
    width: 95%;
  }
}
@media only screen and (max-width: 991px) {
  .cms-pre-inicio .banner .inner-cont .account-login .inchoo-socialconnect-login-upper .inchoo-socialconnect-login-upper-facebook .buttons-set {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .cms-pre-inicio .banner .inner-cont .account-login .inchoo-socialconnect-login-upper {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .cms-pre-inicio .banner .inner-cont .account-login {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .cms-pre-inicio .banner .inner-cont {
    width: 75%;
    top: 20%;
    left: 0;
  }
  .cms-pre-inicio .banner .inner-cont h1 {
    font-size: 20px;
    text-align: center;
    line-height: 1.4;
  }
}
.cms-pre-inicio .razones {
  width: 85%;
  margin: 60px auto;
  display: flex;
  flex-wrap: wrap;
}
.cms-pre-inicio .razones h3 {
  color: #4a4a4a;
  font-size: 48px;
  font-weight: 700;
  line-height: 65px;
  letter-spacing: 0;
}
@media only screen and (max-width: 991px) {
  .cms-pre-inicio .razones h3 {
    line-height: 1;
    font-size: 35px;
  }
}
.cms-pre-inicio .razones .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  margin-bottom: 100px;
}
.cms-pre-inicio .razones .item img {
  width: 46%;
}
.cms-pre-inicio .razones .item img.box-img {
  width: 335px;
  height: 311px;
}
@media only screen and (max-width: 991px) {
  .cms-pre-inicio .razones .item img {
    width: 80%;
    height: 40%;
  }
}
.cms-pre-inicio .razones .item.custom {
  margin-top: -30px;
}
.cms-pre-inicio .razones .item.custom .images-cont {
  order: 2;
  width: 100%;
}
.cms-pre-inicio .razones .item.custom .images-cont img {
  width: 33%;
  height: 100%;
}
.cms-pre-inicio .razones .item .images-cont {
  display: flex;
  width: 47%;
  justify-content: space-between;
}
.cms-pre-inicio .razones .item .images-cont img {
  width: 135px;
  height: 123px;
}
.cms-pre-inicio .razones .item .info {
  width: 50%;
}
.cms-pre-inicio .razones .item .info h3 {
  color: #4a4a4a;
  font-size: 48px;
  font-weight: 700;
  line-height: 65px;
  letter-spacing: 0;
}
@media only screen and (max-width: 991px) {
  .cms-pre-inicio .razones .item .info h3 {
    line-height: 1;
    font-size: 35px;
  }
}
.cms-pre-inicio .razones .item .info p {
  color: #a2a1a0;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
}
@media only screen and (max-width: 991px) {
  .cms-pre-inicio .razones .item .info p {
    font-size: 16px;
  }
}
.cms-pre-inicio .razones .item .info b {
  font-weight: 700;
  color: #4a4a4a;
}
.cms-pre-inicio .razones .item .info .step {
  color: #50d0e7;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid #d9d6d6;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding-top: 5px;
  border-radius: 50%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .cms-pre-inicio .razones .item {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
  }
  .cms-pre-inicio .razones .item img {
    width: 100%;
    order: 2;
  }
  .cms-pre-inicio .razones .item .info {
    width: 100%;
    order: 1;
  }
}
@media only screen and (max-width: 991px) {
  .cms-pre-inicio .razones {
    margin-top: 270px;
  }
}

.contacts-index-index .main {
  width: 800px;
  margin: 0 auto;
}
.contacts-index-index .main .col-main {
  float: right;
  padding-right: 0;
  width: 100%;
}
.contacts-index-index .main .col-main .buttons-set {
  max-width: 100%;
  width: 100%;
}
.contacts-index-index .main .col-main textarea, .contacts-index-index .main .col-main input {
  max-width: 100%;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .contacts-index-index .main .col-main h1 {
    margin-top: 5%;
  }
}
@media only screen and (max-width: 767px) {
  .contacts-index-index .main .col-main h1 {
    margin-top: 10%;
  }
}
@media only screen and (max-width: 991px) {
  .contacts-index-index .main .col-main {
    float: none;
    width: 95%;
    margin-left: 2.5%;
  }
}
@media only screen and (max-width: 991px) {
  .contacts-index-index .main {
    width: 100%;
  }
}

.estaticas {
  font-style: normal;
}
.estaticas h1, .estaticas h3 {
  color: black;
}
.estaticas h1 {
  font-size: 26px;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: 4px;
}
.estaticas h3 {
  color: black;
  font-size: 10px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1px;
  font-style: normal;
  margin: 0;
}
.estaticas p {
  color: #606060 !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  line-height: 18px !important;
  font-style: normal !important;
  font-family: "Jost", sans-serif !important;
  width: 90%;
}
.estaticas ul li {
  line-height: 17px !important;
  font-style: normal !important;
  font-family: "Jost", sans-serif !important;
}
.storepickup-index-index .storepickup-list .page-title {
  display: none;
}
.storepickup-index-index .storepickup-list .range-slider-label {
  color: #000;
}
.storepickup-index-index .storepickup-list .iw-container .iw-title {
  background-color: #eae9ea;
  color: #000;
}
.storepickup-index-index .storepickup-list .iw-container input {
  border: 1px solid #e9e9e9;
}
.storepickup-index-index .storepickup-list .range-slider-input .handle-slider {
  background-color: #999;
  border: 8px solid #999;
}
.storepickup-index-index .storepickup-list #btn-getdirections {
  background: #e9e9e9;
  border: 1px solid #e9e9e9;
  color: #000;
}
.storepickup-index-index .storepickup-list #store_map .search-tooltip {
  border-radius: 0;
  border: 1px solid #999;
  border-top: 0;
  padding: 2px;
}
.storepickup-index-index .storepickup-list .tab-wrap-store .tabs li a {
  color: #000;
  background: #e9e9e9;
}
.storepickup-index-index .storepickup-list .tab-wrap-store .tabs li a:hover {
  background: #f1f1f1;
  color: #000;
}
.storepickup-index-index .storepickup-list .tab_content h3, .storepickup-index-index .storepickup-list #store-pickup-shday div .open_hour_title {
  background-color: #888;
}
.storepickup-index-index .storepickup-list .tab_content {
  padding: 0px 15px;
}
.storepickup-index-index .storepickup-list .tab-wrap-store .tabs li a.active {
  background: #fff !important;
}

.contenedor-historia, .contenedor-empresa {
  width: 800px;
  margin: 0 auto;
  line-height: 24px;
  color: #4a4a4a;
}
.contenedor-historia p, .contenedor-empresa p {
  font-size: 12px;
  font-weight: 300;
  text-align: justify;
}
.contenedor-historia h2, .contenedor-empresa h2 {
  font-weight: 800;
  line-height: 24px;
}
.contenedor-historia b, .contenedor-empresa b {
  font-size: 18px;
  font-weight: 500;
  text-align: justify;
  display: block;
}
@media only screen and (max-width: 767px) {
  .contenedor-historia b, .contenedor-empresa b {
    text-align: left;
  }
}
.contenedor-historia .destacado, .contenedor-empresa .destacado {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  margin: 10% 0;
}
.contenedor-historia .destacado span, .contenedor-empresa .destacado span {
  color: #a2a1a0;
  font-size: 24px;
  font-weight: 500;
  line-height: 40px;
  width: 520px;
  height: 93px;
}
@media only screen and (max-width: 767px) {
  .contenedor-historia .destacado span, .contenedor-empresa .destacado span {
    width: 100%;
    height: auto;
    text-align: center;
  }
}
.contenedor-historia img, .contenedor-empresa img {
  margin: 5% 0;
  width: 100%;
}
.contenedor-historia .iggiro, .contenedor-empresa .iggiro {
  color: #4a4a4a;
  font-size: 31px;
  font-weight: 500;
  text-align: center;
  font-style: normal;
  margin-top: 10%;
  margin-bottom: 5%;
  width: 100%;
  display: flex;
  justify-content: center;
}
.contenedor-historia .iggiro i, .contenedor-empresa .iggiro i {
  font-family: FontAwesome;
  font-style: normal;
  margin-right: 5px;
}
@media only screen and (max-width: 991px) {
  .contenedor-historia, .contenedor-empresa {
    width: 100%;
  }
}

#instafeed {
  width: 100%;
  float: left;
  margin-bottom: 50px;
}
#instafeed li.instagram-item {
  display: block;
  padding: 0 5px;
}
@media only screen and (max-width: 479px) {
  #instafeed li.instagram-item {
    padding: 2px;
  }
}
@media only screen and (max-width: 479px) {
  #instafeed {
    width: 100%;
    float: left;
  }
}

.contenedor-franq {
  width: 800px;
  margin: 0 auto;
  line-height: 24px;
  color: #4a4a4a;
}
.contenedor-franq b {
  font-weight: 500;
  text-align: justify;
  display: block;
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .contenedor-franq b {
    text-align: left;
  }
}
.contenedor-franq .cont-form {
  width: 100%;
}
.contenedor-franq .cont-form .column1 {
  width: 49%;
  display: inline;
  float: left;
}
@media only screen and (max-width: 767px) {
  .contenedor-franq .cont-form .column1 {
    width: 100%;
  }
}
.contenedor-franq .cont-form .column2 {
  width: 49%;
  display: inline;
  float: right;
  margin-top: -1px;
}
@media only screen and (max-width: 767px) {
  .contenedor-franq .cont-form .column2 {
    width: 100%;
  }
}
.contenedor-franq .cont-form legend {
  display: none;
}
@media only screen and (max-width: 991px) {
  .contenedor-franq {
    width: 100%;
  }
}

.cms-page-view.cms-envios-a-todo-el-pais .wrapper p {
  font-style: normal;
}

.cms-page-view.cms-famago h3 {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.cms-page-view.cms-famago h1 {
  color: #00035B;
}

.title-home {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title-home span {
  color: #F06000;
  font-family: "Jost500M", sans-serif;
  font-size: 15px;
  transition: 2s;
}
.title-home span:hover {
  font-size: 16px;
}
@media only screen and (max-width: 991px) {
  .title-home {
    margin: 0;
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px 0;
  }
}

.cms-page-view.cms-quienes-somos {
  background: #fff;
}
.cms-page-view.cms-quienes-somos .img-title {
  padding: 0 65px;
  font-family: "Jost800", sans-serif;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .img-title {
    padding: 0 10px;
  }
}
.cms-page-view.cms-quienes-somos .container.text p {
  margin-bottom: 45px;
  font-family: "Jost400", sans-serif;
}
.cms-page-view.cms-quienes-somos .panel-default > .panel-heading {
  padding: 0;
  outline: none;
  width: 100%;
}
.cms-page-view.cms-quienes-somos .panel-heading a {
  font-weight: 400;
  padding: 12px 35px 12px 15px;
  display: inline-block;
  width: 100%;
  background-color: #F06000;
  color: #ffffff;
  border-color: #F06000;
  text-decoration: none;
}
.cms-page-view.cms-quienes-somos .panel-heading a.collapsed {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.cms-page-view.cms-quienes-somos .breadcrumbs {
  width: 100%;
}
.cms-page-view.cms-quienes-somos .breadcrumbs li {
  font-size: 16px !important;
}
.cms-page-view.cms-quienes-somos .page-title {
  display: none;
}

@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .container {
    padding: 0;
  }
}
.cms-page-view.cms-quienes-somos .main.container {
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .main.container .breadcrumbs, .cms-page-view.cms-quienes-somos .main.container .container.text, .cms-page-view.cms-quienes-somos .main.container .politics, .cms-page-view.cms-quienes-somos .main.container .form {
    padding: 0 15px !important;
  }
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .main.container .form .information {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .main.container .container.text {
    margin: 15px 0;
  }
}
.cms-page-view.cms-quienes-somos h3 {
  letter-spacing: 0;
}
.cms-page-view.cms-quienes-somos p.required {
  width: 100%;
  float: left;
  text-align: left;
  margin: 20px 0;
}
.cms-page-view.cms-quienes-somos .formulario button {
  padding: 10px;
}
.cms-page-view.cms-quienes-somos .formulario p.required, .cms-page-view.cms-quienes-somos .formulario .validation-advice {
  width: 100%;
}
.cms-page-view.cms-quienes-somos .formulario input, .cms-page-view.cms-quienes-somos .formulario textarea {
  max-width: 90%;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .formulario input, .cms-page-view.cms-quienes-somos .formulario textarea {
    max-width: 98%;
  }
}
.cms-page-view.cms-quienes-somos .formulario select {
  max-width: 98% !important;
  width: 91% !important;
  border-radius: 2px !important;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .formulario select {
    max-width: 99% !important;
    width: 99% !important;
  }
}
.cms-page-view.cms-quienes-somos .formulario select:after {
  left: auto !important;
  right: 68px !important;
  font-size: 17px;
  top: 35px;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .formulario select:after {
    right: 33px !important;
  }
}
.cms-page-view.cms-quienes-somos .politics p, .cms-page-view.cms-quienes-somos .politics li, .cms-page-view.cms-quienes-somos .text p, .cms-page-view.cms-quienes-somos .text li {
  color: #434542 !important;
  font-size: 22px !important;
  line-height: 30px;
  font-family: "Jost400", sans-serif;
}
.cms-page-view.cms-quienes-somos .media {
  width: 50%;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .media {
    width: 100%;
  }
}
.cms-page-view.cms-quienes-somos .flex {
  display: flex;
}
.cms-page-view.cms-quienes-somos .text-header {
  width: 68%;
  margin: 55px 20px;
}
.cms-page-view.cms-quienes-somos .text-header span {
  color: #1e3164;
  font-size: 23px;
  font-weight: 700;
  line-height: 42px;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .text-header {
    margin: 0;
    width: 100%;
  }
  .cms-page-view.cms-quienes-somos .text-header span {
    line-height: 39px;
    font-size: 18px;
  }
}
.cms-page-view.cms-quienes-somos .form {
  padding: 39px 0;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .form {
    display: block;
    border-top: none;
  }
}
.cms-page-view.cms-quienes-somos .form .information .panel-body p:nth-child(1) {
  font-weight: 500;
  font-size: 16px;
}
.cms-page-view.cms-quienes-somos .form .formulario label {
  font-weight: 400;
}
.cms-page-view.cms-quienes-somos .form .media h3 {
  text-transform: uppercase;
  color: #434542;
  font-weight: 700;
  font-size: 21px;
  padding-bottom: 6px;
  border-bottom: 2px solid #989798;
}
.cms-page-view.cms-quienes-somos .form .media h3:nth-child(1) {
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .form .media h3:nth-child(1) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .form .media h3 {
    text-align: center;
  }
}
.cms-page-view.cms-quienes-somos .form .media h4.panel-title {
  font-size: 16px;
  text-transform: uppercase;
  color: #F06000;
  padding-left: 14px;
  font-weight: 700;
  letter-spacing: 0;
}
.cms-page-view.cms-quienes-somos .form .media.formulario .button {
  background: #F06000;
  font-size: 18px;
  text-transform: uppercase;
  float: left;
  min-width: 90%;
}
.cms-page-view.cms-quienes-somos .politics {
  display: flex;
  position: relative;
  margin-bottom: 77px;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .politics {
    margin-bottom: 0;
  }
}
.cms-page-view.cms-quienes-somos .politics .container.flex {
  padding: 20px 0;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .politics .container.flex {
    display: block;
  }
  .cms-page-view.cms-quienes-somos .politics .container.flex .media {
    width: 100%;
  }
}
.cms-page-view.cms-quienes-somos .politics div:nth-child(2) {
  margin-top: 52px;
}
.cms-page-view.cms-quienes-somos .politics b {
  color: #434542;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .politics b {
    font-size: 18px;
  }
}
.cms-page-view.cms-quienes-somos .service {
  margin-bottom: 77px;
}
.cms-page-view.cms-quienes-somos .service .text {
  padding: 0 29px;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-quienes-somos .service {
    display: block;
  }
  .cms-page-view.cms-quienes-somos .service img {
    display: none;
  }
  .cms-page-view.cms-quienes-somos .service .text {
    width: 100%;
    padding: 0;
  }
}
.cms-page-view.cms-quienes-somos .pre-footer .container, .cms-page-view.cms-quienes-somos .footer .container {
  padding: 0 15px;
}

.cms-page-view.cms-contacto {
  background-color: #fff;
}
.cms-page-view.cms-contacto .wrapper {
  background-color: #fff;
  padding-bottom: 60px;
}
.cms-page-view.cms-contacto .buttons-set p.required {
  margin: 0 0 16px 0;
  font-size: 19px;
}
.cms-page-view.cms-contacto .breadcrumbs {
  display: none;
}
.cms-page-view.cms-contacto .required {
  width: 100%;
  text-align: left;
}
.cms-page-view.cms-contacto .buttons-set button.button {
  padding: 0 !important;
}
.cms-page-view.cms-contacto .pre-footer {
  margin-top: 0;
}

.container-contacto {
  display: flex;
  justify-content: space-between;
  align-items: initial;
}
@media only screen and (max-width: 991px) {
  .container-contacto {
    display: block;
  }
}
.container-contacto .columna-1, .container-contacto .columna-2 {
  width: 50%;
}
@media only screen and (max-width: 991px) {
  .container-contacto .columna-1, .container-contacto .columna-2 {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .container-contacto .columna-1 {
    margin-bottom: 50px;
  }
}
.container-contacto .columna-1 .info {
  margin-top: 70px;
}
@media only screen and (max-width: 991px) {
  .container-contacto .columna-1 .info {
    margin-top: 30px;
  }
}
.container-contacto .columna-1 h3 {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  color: #F06000;
}
.container-contacto .columna-1 p {
  color: #575555;
  font-size: 23px;
  font-weight: 300;
  line-height: 27px;
}
.container-contacto .columna-1 .info p {
  font-size: 20px;
  display: flex;
  align-items: center;
}
.container-contacto .columna-1 .info .fa-phone, .container-contacto .columna-1 .info .fa-envelope {
  color: white;
  background-color: #00035B;
  margin-right: 15px;
  border-radius: 50px;
  width: 28px;
  height: 28px;
  text-align: center;
  font-size: 16px;
  padding-top: 5px;
}
.container-contacto .columna-1 .info .fa-phone a, .container-contacto .columna-1 .info .fa-envelope a {
  color: #575555;
}
.container-contacto .columna-2 {
  margin: 0px 54px;
}
.container-contacto .columna-2 button {
  background-color: #F06000;
  text-transform: uppercase;
  font-size: 20px;
  width: 100%;
}
.container-contacto .columna-2 .webforms-success-text {
  text-align: center;
}
.container-contacto .columna-2 .webforms-success-text p {
  text-transform: uppercase;
}
.container-contacto .columna-2 .webforms-success-text p:nth-child(1) {
  font-size: 23px;
}
@media only screen and (max-width: 991px) {
  .container-contacto .columna-2 .webforms-success-text p:nth-child(1) {
    font-size: 20px;
  }
}
.container-contacto .columna-2 .webforms-success-text p:nth-child(2) {
  font-size: 19px;
}
@media only screen and (max-width: 991px) {
  .container-contacto .columna-2 .webforms-success-text p:nth-child(2) {
    font-size: 14px;
  }
}
.container-contacto .columna-2 .form-list .fields {
  width: 100%;
  display: flex;
}
.container-contacto .columna-2 .form-list .fields .field {
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .container-contacto .columna-2 .form-list .fields {
    display: block;
  }
  .container-contacto .columna-2 .form-list .fields .field {
    width: 100%;
  }
}
.container-contacto .columna-2 textarea {
  max-width: 99% !important;
}
@media only screen and (max-width: 991px) {
  .container-contacto .columna-2 textarea {
    max-width: 98% !important;
  }
}
.container-contacto .columna-2 input, .container-contacto .columna-2 textarea {
  border-radius: 0px;
  background-color: white;
  border-color: #000;
}
.container-contacto .columna-2 label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 28px;
  text-transform: uppercase;
  color: #575555;
}
.container-contacto .columna-2 h3 {
  letter-spacing: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
  color: #F06000;
  border-bottom: 2px solid #F0600073;
}
@media only screen and (max-width: 991px) {
  .container-contacto .columna-2 {
    margin: 0;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  z-index: 15;
  box-shadow: 0px 5px 7px 2px rgba(123, 123, 123, 0.55);
  left: 0;
  top: 36px;
  width: 309px;
  text-align: left;
  padding-left: 20px;
}
.dropdown-content .column {
  display: flex;
}
.dropdown-content .column .column1, .dropdown-content .column .column2 {
  width: 100%;
  float: left;
}
.dropdown-content .column .column2 div {
  width: 60%;
  margin: 0 auto;
}
.dropdown-content a {
  color: #2f2f3e !important;
  font-size: 15px !important;
  line-height: 41px;
}
.dropdown-content .subtitle {
  padding-top: 20px;
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  color: #666666;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.customer-account .block.block-reorder {
  display: none;
}
.customer-account.wishlist-index-index #wishlist-view-form .btn-share {
  width: 180px;
  margin-right: 51px;
}
@media only screen and (max-width: 991px) {
  .customer-account.wishlist-index-index #wishlist-view-form .btn-share {
    width: 100%;
    line-height: 40px;
  }
}
.customer-account.wishlist-index-index #wishlist-view-form .btn-add {
  display: none;
}

/* ============================================ *
 * checkout onepage
 * ============================================ */
.iwd-opc-index-index .container-checkout {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .iwd-opc-index-index .container-checkout {
    display: block;
  }
}
.iwd-opc-index-index .container-checkout .detalle {
  width: 25%;
  border-left: 1px solid #eee;
  padding-left: 17px;
}
@media only screen and (max-width: 991px) {
  .iwd-opc-index-index .container-checkout .detalle {
    width: 100%;
    display: none;
  }
}
.iwd-opc-index-index .container-checkout .detalle th {
  text-transform: uppercase;
  padding: 4px 7px;
  color: #00035B;
  text-align: center;
  width: 50%;
}
.iwd-opc-index-index .container-checkout .detalle th td {
  padding: 10px 0;
}
.iwd-opc-index-index .container-checkout .detalle tr td {
  padding: 10px 0;
  text-align: center;
}
.iwd-opc-index-index .container-checkout .iwd_opc_wrapper {
  width: 75% !important;
}
@media only screen and (max-width: 991px) {
  .iwd-opc-index-index .container-checkout .iwd_opc_wrapper {
    width: 100% !important;
  }
  .iwd-opc-index-index .container-checkout .iwd_opc_wrapper h2 {
    text-align: center;
  }
}
.iwd-opc-index-index .container-checkout .iwd_opc_wrapper input, .iwd-opc-index-index .container-checkout .iwd_opc_wrapper .iwd_opc_select_container {
  border-radius: 0;
  padding: 5px 10px;
}
.iwd-opc-index-index .container-checkout .iwd_opc_wrapper input:focus, .iwd-opc-index-index .container-checkout .iwd_opc_wrapper .iwd_opc_select_container:focus {
  border-color: #eb902e !important;
}
.iwd-opc-index-index .container-checkout .iwd_opc_wrapper .iwd_opc_alternative_wrapper .iwd_opc_column {
  width: 100%;
}
.iwd-opc-index-index .container-checkout .iwd-opc-index-index .container-checkout .iwd_opc_wrapper .iwd_opc_alternative_wrapper .iwd_opc_column {
  width: 100%;
}
.iwd-opc-index-index .container-checkout .iwd_opc_alternative_column {
  width: 70% !important;
}
@media only screen and (max-width: 991px) {
  .iwd-opc-index-index .container-checkout .iwd_opc_alternative_column {
    width: 100% !important;
  }
}
.iwd-opc-index-index .container-checkout .iwd_opc_select_container.selected {
  width: 98%;
}
.iwd-opc-index-index .container-checkout .iwd_opc_select_container.selected .iwd_opc_select_option.selected {
  padding: 5px;
}
.iwd-opc-index-index .container-checkout .center {
  text-align: center;
}
.iwd-opc-index-index .container-checkout #iwd_opc_login_buttons button {
  color: #fff;
  cursor: pointer;
  background-color: #00035B;
  border-radius: 0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}
.iwd-opc-index-index .container-checkout #iwd_opc_login_buttons button:hover {
  opacity: 0.8;
}
.iwd-opc-index-index .container-checkout button#iwd_opc_reset_password_button {
  background-color: transparent;
  width: 100%;
  color: #2c3f6b;
  float: left;
}
@media only screen and (max-width: 991px) {
  .iwd-opc-index-index .container-checkout button#iwd_opc_reset_password_button {
    font-size: 12px;
    padding: 0;
  }
}
.iwd-opc-index-index .container-checkout button#iwd_opc_login_button {
  width: 100%;
  margin-top: 20px;
}

/* ============================================ *
 * CONTACTO PREVENTA
 * ============================================ */
.cms-page-view.cms-postventa .postventa {
  box-shadow: 0 10px 37px #e5e5ea;
  border-radius: 10px;
  background-color: #ffffff;
  padding: 39px;
  width: 60%;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-postventa .postventa {
    width: 100%;
  }
}
.cms-page-view.cms-postventa .postventa button {
  background-color: #F06000;
  float: left !important;
  padding: 10px 0;
  width: 30%;
  outline: none;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-postventa .postventa button {
    width: 100%;
  }
}
.cms-page-view.cms-postventa .postventa .form-list .fields {
  width: 100%;
  display: flex;
}
.cms-page-view.cms-postventa .postventa .form-list .fields .field {
  width: 50%;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-postventa .postventa .form-list .fields {
    display: block;
  }
  .cms-page-view.cms-postventa .postventa .form-list .fields .field {
    width: 100%;
  }
}
.cms-page-view.cms-postventa .postventa input, .cms-page-view.cms-postventa .postventa textarea {
  border-radius: 2px;
  background-color: #eff0f4;
  border-color: #eff0f4;
}
.cms-page-view.cms-postventa .postventa label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 28px;
  text-transform: uppercase;
  color: #a8acb9;
}
.cms-page-view.cms-postventa .postventa h3 {
  letter-spacing: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
}
@media only screen and (max-width: 991px) {
  .cms-page-view.cms-postventa .postventa {
    padding: 30px;
    margin: 0;
  }
}

#formulario-contacto div.field.type-select {
  position: relative;
}

div.field.type-select {
  margin-right: 6px;
  position: relative;
}

.cms-postventa #whatsapp-general {
  display: none;
}

#storelocator .contenedorInfo .country {
  display: none;
}

.messages.newsletter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  opacity: 0.95;
  z-index: 999;
}
.messages.newsletter .close {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
  opacity: 1;
  color: #00035B !important;
  right: -15px;
  background: #f4f3ee;
  border-radius: 100%;
  top: -15px;
  width: 30px;
  height: 30px;
  text-align: center;
  position: absolute;
  cursor: pointer;
}
.messages.newsletter .error-msg li, .messages.newsletter .success-msg li {
  background-color: #00035B;
  position: fixed;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50.5%;
  left: 50%;
  top: 50%;
  border-left: 0;
  width: 46%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 2px 8px 1px rgba(0, 0, 0, 0.12) !important;
}
@media only screen and (max-width: 991px) {
  .messages.newsletter .error-msg li, .messages.newsletter .success-msg li {
    height: auto;
  }
}
.messages.newsletter .error-msg li::before, .messages.newsletter .success-msg li::before {
  display: none;
}
.messages.newsletter .error-msg li span, .messages.newsletter .success-msg li span {
  font-size: 15px;
  color: white;
}
@media only screen and (max-width: 991px) {
  .messages.newsletter .error-msg li span, .messages.newsletter .success-msg li span {
    font-family: "Ubuntu500", sans-serif !important;
  }
}

dt#dt_method_mobbex_card_input {
  display: none !important;
}

dt#dt_method_mobbex {
  display: block !important;
}

.terminos {
  text-transform: uppercase;
  font-size: 11px;
  color: #555;
  letter-spacing: 0;
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  justify-content: center;
  padding-top: 21px;
  align-items: center;
  justify-content: left;
  gap: 5px;
}
.terminos a {
  font-weight: 900;
  color: #F06000;
  height: auto !important;
  margin-left: 10px;
}
.terminos #myCheckbox {
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .terminos {
    flex-direction: row;
    border: none;
    padding: 10 0 0 0;
  }
  .terminos #myCheckbox {
    padding: 0;
    margin: -3px 0 0 0;
  }
  .terminos a {
    margin: 4px 0 0 0 !important;
  }
  .terminos p {
    margin: 0;
  }
}

.catalog-product-view #mbbxProductBtn {
  height: 35px;
  float: left;
  min-height: auto;
  width: 45%;
  line-height: 35px;
  box-shadow: none !important;
  white-space: normal;
  color: #00035B;
  font-size: 12px !important;
  font-family: "Jost500M", sans-serif;
  background-color: white;
  text-transform: uppercase;
  padding: 0 9px;
  text-decoration: underline;
  display: flex;
  border: none;
  margin-top: 0 !important;
}
.catalog-product-view #mbbxProductBtn img {
  display: none;
}

.checkout-cart-index button#mbbxProductBtn {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  color: #F06000;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 12px;
  background: transparent;
  border-color: #F06000;
  font-weight: 700;
}
.checkout-cart-index button#mbbxProductBtn img {
  display: none !important;
}

/* ============================================ *
 * Pricing Conditions
 * ============================================ */
.price-box .minimal-price-link .label {
  color: #CF5050;
  font-size: 12px;
  text-transform: uppercase;
}

.map-info {
  white-space: nowrap;
}

.catalog-product-view .map-info {
  white-space: normal;
}
.catalog-product-view .map-info > span {
  float: right;
  margin-bottom: 5px;
}
.catalog-product-view .map-info .price-box.map-info > a {
  float: right;
  width: 100%;
}

/* ============================================ *
 * Cookies
 * ============================================ */
.notice-cookie .notice-inner {
  padding-bottom: 0;
}
.notice-cookie .notice-inner:after {
  content: '';
  display: table;
  clear: both;
}
.notice-cookie .notice-text {
  float: left;
  max-width: 90%;
  padding-top: 4px;
  text-align: left;
}
.notice-cookie .notice-text p {
  padding-bottom: 14.5px;
  line-height: 1.3;
}
.notice-cookie .actions {
  float: left;
  text-align: right;
  padding-bottom: 14.5px;
}

.notice-cookie .notice-text {
  max-width: 86%;
}

/* ============================================ *
 * Tags
 * ============================================ */
#addTagForm button {
  margin-top: 5px;
  margin-bottom: 10px;
}

#addTagForm .form-add {
  margin-top: 10px;
}

.product-tags {
  background-color: #f5f4f2;
  border: 1px solid #949494;
  float: left;
  margin-bottom: 10px;
  padding: 5px 1% 10px;
  width: 98%;
}

.product-tags li {
  float: left;
  margin-right: 15px;
}

.product-tags li.last {
  margin-right: 0px;
}

.tags-list {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

.tags-list > li {
  float: left;
  margin-right: 10px;
}

.block-tags .actions > a {
  font-size: 12px;
}

.my-tag-edit .button.btn-remove {
  padding: 0;
}
.my-tag-edit .button.btn-remove:after {
  color: white;
}

/* ============================================ *
 * Captcha
 * ============================================ */
.captcha-note {
  clear: left;
  padding-top: 5px;
}

.captcha-image {
  float: left;
  display: inline;
  max-width: 100%;
  position: relative;
  width: 258px;
  margin-bottom: 10px;
}

.captcha-image .captcha-img {
  border: 1px solid #b6b6b6;
  vertical-align: bottom;
  width: 100%;
}

.registered-users .captcha-image {
  margin: 0;
}

.captcha-reload {
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 2px;
}

.captcha-reload.refreshing {
  animation: rotate 1.5s infinite linear;
  -webkit-animation: rotate 1.5s infinite linear;
  -moz-animation: rotate 1.5s infinite linear;
}

.customer-account-create .scaffold-form .captcha-input-container label:first-child {
  width: 100%;
}

.captcha-reload {
  position: absolute;
  right: 4px;
  top: 4px;
}

.captcha-img {
  border: 20px solid #bbb;
}

.captcha-input-container {
  margin-bottom: 10px;
}

.control.newsletter-box, .captcha-input-container, .captcha-img-container {
  float: none;
  clear: both;
}
.control.newsletter-box:after, .captcha-input-container:after, .captcha-img-container:after {
  content: '';
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Checkout Billing Fix to place the Captcha properly
 * ============================================ */
#co-billing-form ul.form-list > .control {
  float: left;
  margin: 0 0 5px;
  width: 100%;
}

/* ============================================ *
 * Account - Orders, Invoices, Credit Memos.
 * ============================================ */
/* ============================================ *
 * Recurring Profiles
 * ============================================ */
#recurring_profile_list_view th {
  white-space: normal;
}
#recurring_profile_list_view th span {
  white-space: inherit;
}

.recurring-profiles-title {
  float: left;
}
.recurring-profiles-title h1 {
  margin-bottom: 7px;
}

body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
  float: right;
  text-align: right;
  margin-bottom: 0px;
}
body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons .button {
  position: static;
}

.recurring-profiles-messages:after {
  content: '';
  display: table;
  clear: both;
}

#recurring_start_date_trig {
  display: inline;
}

/* ============================================ *
 * Billing Agreements
 * ============================================ */
.billing-agreements .info-box {
  margin-bottom: 0px;
}
.billing-agreements .info-box:after {
  content: '';
  display: table;
  clear: both;
}
.billing-agreements .info-box .form-list {
  max-width: 400px;
  width: 100%;
}
.billing-agreements .info-box .box-title {
  margin-top: 20px;
  margin-bottom: 7px;
}
.billing-agreements .info-box .button {
  float: right;
  margin-top: 7px;
}
.billing-agreements #payment_method {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 7px;
}

.billing-agreement-view-header-wrapper .heading {
  max-width: 80%;
}

.billing-agreement-details td, .billing-agreement-details th {
  padding: 3.5px;
}

.billing-agreements .data-table .created-at,
.billing-agreements .data-table .updated-at {
  display: none;
}

/* ============================================ *
 * Popular Search Terms Cloud
 * ============================================ */
.catalogsearch-term-popular .tags-list {
  float: left;
  width: 100%;
}

.catalogsearch-term-popular .tags-list > li {
  float: left;
  height: 40px;
  margin-right: 25px;
}

/* ============================================ *
 * Widgets
 * ============================================ */
/* -------------------------------------------- *
 * Add to cart by SKU
 */
.sidebar .widget-addbysku .sku-table .input-text:not(.qty) {
  width: 100%;
  max-width: 100px;
}

.widget {
  clear: both;
}

.widget .pager {
  float: none;
  width: 100%;
}

.col1-layout .col-main .widget {
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  /* Set column config */
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  /* Set column config */
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
  clear: none;
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
  clear: none;
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
  margin-right: 1.04167%;
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
  margin-right: 1.04167%;
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
  width: 24.21875%;
  margin-right: 1.04167%;
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
  clear: left;
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
  margin-right: 0;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
  clear: none;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
  clear: none;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
  margin-right: 1.04167%;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
  margin-right: 1.04167%;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
  width: 19.16667%;
  margin-right: 1.04167%;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
  clear: left;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
  margin-right: 0;
}

.col1-layout .col-main {
  width: 100% !important;
}
.col1-layout .category-products .products-grid li {
  width: 22.8% !important;
}
@media only screen and (max-width: 991px) {
  .col1-layout .category-products .products-grid li {
    width: 100% !important;
  }
}

/* ============================================ *
 * Checkout - Multiple Addresses
 * ============================================ */
body[class*="checkout-multishipping-"] .checkout-progress {
  width: 100%;
  float: left;
  margin-bottom: 25px;
}
body[class*="checkout-multishipping-"] .checkout-progress > li {
  float: left;
  width: 20%;
  text-align: center;
  padding: 8px 1% 6px;
  background: #f5f4f2;
  text-transform: uppercase;
  border-bottom: 1px solid #949494;
  border-right: 1px solid #949494;
  margin-bottom: 10px;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.active {
  background-color: #DDDDDD;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.last {
  border-right: 0px;
}
body[class*="checkout-multishipping-"] .page-title {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .page-title h1 {
  border: 0 none;
  float: left;
  margin-top: 2px;
  margin-right: 2%;
}
body[class*="checkout-multishipping-"] .page-title .button {
  float: right;
}
body[class*="checkout-multishipping-"] .multiple-checkout > h2 {
  text-transform: none;
  font-size: 17px;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .messages {
  float: left;
  width: 100%;
}
body[class*="checkout-multishipping-"] .col-2.col-wide {
  width: 66%;
}
body[class*="checkout-multishipping-"] .col-1.col-narrow {
  width: 30%;
}
body[class*="checkout-multishipping-"] .actions {
  margin-bottom: 10px;
}
body[class*="checkout-multishipping-"] .grand-total {
  text-align: right;
  font-size: 26px;
  font-weight: bold;
}
body[class*="checkout-multishipping-"] #checkout-review-submit {
  float: right;
}
body[class*="checkout-multishipping-"] #review-buttons-container {
  float: right;
  text-align: right;
}

.checkout-multishipping-addresses .btn-remove2 {
  text-indent: -5555px;
  display: block;
  width: 22px;
  height: 22px;
}

.checkout-multishipping-shipping .gift-messages {
  margin-top: 20px;
}
.checkout-multishipping-shipping .gift-messages-form {
  margin-top: 15px;
}
.checkout-multishipping-shipping .gift-messages-form h4 {
  margin-top: 15px;
  margin-bottom: 5px;
}
.checkout-multishipping-shipping .gift-messages-form .form-list {
  margin-top: 10px;
  margin-bottom: 25px;
}
.checkout-multishipping-shipping .gift-messages-form .item {
  margin-top: 15px;
}

.checkout-multishipping-shipping .col-1 .box-title h2, .checkout-multishipping-shipping .col-1 .box-title h3, .checkout-multishipping-shipping .col-1 .box-title h4, .checkout-multishipping-shipping .col-2 .box-title h2, .checkout-multishipping-shipping .col-2 .box-title h3, .checkout-multishipping-shipping .col-2 .box-title h4,
.checkout-multishipping-billing .col-1 .box-title h2,
.checkout-multishipping-billing .col-1 .box-title h3,
.checkout-multishipping-billing .col-1 .box-title h4,
.checkout-multishipping-billing .col-2 .box-title h2,
.checkout-multishipping-billing .col-2 .box-title h3,
.checkout-multishipping-billing .col-2 .box-title h4,
.checkout-multishipping-overview .col-1 .box-title h2,
.checkout-multishipping-overview .col-1 .box-title h3,
.checkout-multishipping-overview .col-1 .box-title h4,
.checkout-multishipping-overview .col-2 .box-title h2,
.checkout-multishipping-overview .col-2 .box-title h3,
.checkout-multishipping-overview .col-2 .box-title h4 {
  font-weight: normal;
  width: 100%;
  background: #f5f4f2;
  border-bottom: 1px solid #949494;
  padding: 10px;
  font-size: 14px;
}
.checkout-multishipping-shipping .col-1 > h4, .checkout-multishipping-shipping .col-2 > h4,
.checkout-multishipping-billing .col-1 > h4,
.checkout-multishipping-billing .col-2 > h4,
.checkout-multishipping-overview .col-1 > h4,
.checkout-multishipping-overview .col-2 > h4 {
  font-weight: normal;
  width: 100%;
  background: #f5f4f2;
  border-bottom: 1px solid #949494;
  padding: 10px;
  font-size: 14px;
}
.checkout-multishipping-shipping .col-1 .box-content, .checkout-multishipping-shipping .col-2 .box-content,
.checkout-multishipping-billing .col-1 .box-content,
.checkout-multishipping-billing .col-2 .box-content,
.checkout-multishipping-overview .col-1 .box-content,
.checkout-multishipping-overview .col-2 .box-content {
  margin-bottom: 25px;
  padding-left: 10px;
  margin-top: 10px;
}

.checkout-multishipping-billing .sp-methods dt {
  float: left;
  width: 100%;
}

#multiship-addresses-table > tbody > tr > td.a-center.last > a {
  background-image: none;
}

#review-order-form > div:nth-child(3) > div.divider {
  width: 100%;
  clear: both;
}

body[class*="checkout-multishipping-"] .checkout-progress span {
  word-spacing: 300px;
}

#review-order-form .col-1,
#review-order-form .col-2 {
  float: none;
  width: auto;
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

.brandlivetheme-ajax-quickview .product-view {
  float: left;
  width: 100%;
  padding: 45px 20px 0px 20px;
}
.brandlivetheme-ajax-quickview .product-view .product-essential .product-img-box {
  float: left;
  width: 100%;
}
.brandlivetheme-ajax-quickview .product-view .product-essential .product-img-box .product-image {
  position: relative;
  display: block;
  border: 1px solid #EDEDED;
}
.brandlivetheme-ajax-quickview .product-view .product-essential .product-img-box .more-views {
  float: left;
}
.brandlivetheme-ajax-quickview .product-view .product-essential .product-img-box .more-views h2 {
  display: none;
}
.brandlivetheme-ajax-quickview .product-view .product-essential .product-img-box .more-views ul {
  max-height: 500px;
  overflow: auto;
  float: left;
  width: 100%;
}
.brandlivetheme-ajax-quickview .product-view .product-essential .product-img-box .more-views ul li {
  float: left;
  width: 100%;
  margin-bottom: 5px;
}
.brandlivetheme-ajax-quickview .product-view .product-essential .product-img-box .more-views ul li a {
  display: block;
}
.brandlivetheme-ajax-quickview .product-view .product-essential .product-img-box .more-views ul li a img {
  width: 100%;
  height: auto;
}
.brandlivetheme-ajax-quickview .product-view .product-shop {
  padding-left: 50px;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .product-name {
  float: left;
  width: 100%;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .product-name .h1 {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 2px;
  color: black;
  font-weight: 400;
  text-transform: uppercase;
  border-bottom: 0px solid #EDEDED;
  padding-bottom: 0;
  margin-bottom: 0;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .extra-info {
  display: none;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .price-info {
  float: left;
  padding-left: 0;
  text-align: left;
  width: 100%;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .price-info .price-box {
  margin: 0;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .price-info .price-box .price {
  color: #000;
  font-weight: bold;
  float: left;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .price-info .price-box .old-price .price-label {
  display: none;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .price-info .price-box .old-price .price {
  color: #646464;
  font-weight: 500;
  float: left;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .price-info .price-box .special-price .price-label {
  display: none;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .price-info .price-box .special-price .price {
  color: #000;
  font-weight: bold;
  float: left;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .add-to-cart-wrapper {
  float: left;
  width: 100%;
  padding-bottom: 15px;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .add-to-cart-wrapper .add-to-box {
  float: left;
  width: 100%;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .add-to-cart-wrapper .add-to-box .add-to-cart {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .add-to-cart-wrapper .add-to-box .add-to-cart .qty-wrapper {
  margin: 0;
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .add-to-cart-wrapper .add-to-box .add-to-cart .qty-wrapper label {
  width: auto;
  color: #000;
  font-size: 11px;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  margin: 0;
  margin-right: 10px;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .add-to-cart-wrapper .add-to-box .add-to-cart .qty-wrapper .input-text.qty {
  width: 30px;
  height: 30px;
  border: 1px solid #d7d7d7;
  color: #000;
  font-size: 11px;
  font-weight: 400;
  line-height: 30px;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons {
  position: relative;
  display: inline-block;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons .button {
  font-weight: lighter;
  letter-spacing: 2px;
  line-height: 38px;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .product-options-bottom {
  float: left;
  width: 100%;
  padding-bottom: 30px;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .product-options-bottom .add-to-cart {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .product-options-bottom .add-to-cart .qty-wrapper {
  margin: 0;
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .product-options-bottom .add-to-cart .qty-wrapper label {
  width: auto;
  color: #000;
  font-size: 11px;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
  text-transform: capitalize;
  margin-right: 10px;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .product-options-bottom .add-to-cart .qty-wrapper .input-text.qty {
  width: 30px;
  height: 30px;
  border: 1px solid #d7d7d7;
  color: #000;
  font-size: 11px;
  font-weight: 400;
  line-height: 30px;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .product-options-bottom .add-to-cart .add-to-cart-buttons {
  position: relative;
  display: inline-block;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .product-options-bottom .add-to-cart .add-to-cart-buttons .button {
  font-weight: lighter;
  letter-spacing: 0.25em;
  line-height: 38px;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .prod_attributes {
  float: left;
  width: 100%;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .prod_attributes .attribute {
  float: left;
  width: 100%;
  cursor: pointer;
  margin-bottom: 10px;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .prod_attributes .attribute h4 {
  cursor: pointer;
  color: #000;
  font-size: 10px;
  font-weight: bold;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .prod_attributes .attribute h4:before {
  content: "\f078";
  font-family: FontAwesome;
  font-style: normal;
  font-size: 8px;
  margin-right: 5px;
  margin-top: -2px;
  float: left;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .prod_attributes .attribute .content {
  color: #646464;
  font-size: 12px;
  font-weight: lighter;
  line-height: 18px;
  display: none;
}
.brandlivetheme-ajax-quickview .product-view .product-shop .prod_attributes .attribute.short-description.current h4:before {
  content: "\f077" !important;
  font-family: FontAwesome;
  font-style: normal;
  font-size: 8px;
  margin-right: 5px;
}

/* ============================================ *
 * Calendar styles (restore styles from /js/calendar)
 * ============================================ */
div.calendar table {
  border-collapse: separate;
}
div.calendar table td.button {
  display: table-cell;
  background: inherit;
  color: inherit;
  text-transform: none;
  float: inherit;
}

/*# sourceMappingURL=styles-ie8.css.map */
