@charset "UTF-8";
/*---------------------------------------------------------------
>>> TABLA DE CONTENIDOS:
-----------------------------------------------------------------
# Tipografia
# Normalize
# Global CSS
# Header
# Home
# Listing
# Producto
 ## Detalle
 ## Miniature
# Carrito
# Customer
 ## Authentification
 ## My-Account
 ## Identity
 ## History
# Checkout
# CMS
 ## CONTACT
# Errors
 ##404
# Footer

--------------------------------------------------------------*/
/*-------------------------------------------------------------
# Mixins y variables
--------------------------------------------------------------*/
/** Box-shadow **/
/** Placeholder Color **/
/** Transition **/
/** Transform **/
/** Border Radius **/
/** Flex **/
/** Opacity **/
/** Placeholder **/
/** Border Radius por lado  **/
/** Border Radius Esquina superior izquierda **/
/** Border Radius Esquina superior derecha **/
/** Border Radius Esquina inferior izquierda **/
/** Border Radius Esquina inferio derecha **/
/*-------------------------------------------------------------
# Variables de pantalla
--------------------------------------------------------------*/
/*-------------------------------------------------------------
# COLORES
--------------------------------------------------------------*/
/** Colores principales **/
/** Botones principales **/
/** Botones secundarios **/
/** Botones info **/
/** Botones add to cart **/
/** Color de los enlaces **/
/** Header config **/
/** Footer config **/
/** Colores de precios **/
/*-------------------------------------------------------------
# Otras Variables
--------------------------------------------------------------*/
/** Directorio de imágenes **/
/** Anchura máxima en desktop **/
/*-------------------------------------------------------------
# Tipografia
--------------------------------------------------------------*/
/** ROBOTO y OSWALD LIGHT, REGULAR, SEMI BOLD, BOLD, EXTRA BOLD **/
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Oswald:300,400,600,700,800");
body, p, a, span, div, input, textarea, label, h4, h5, h6, .h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 14px; }

h1, .h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: capitalize; }

h2, .h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  text-transform: capitalize; }

h3, .h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  text-transform: capitalize; }

@media screen and (min-width: 992px) {
  body, p, a, span, div, input, textarea, label, h4, h5, h6, .h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px; }
  h1, .h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    text-transform: capitalize; }
  h2, .h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    text-transform: capitalize; }
  h3, .h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    text-transform: capitalize; } }

@font-face {
  font-family: "Work Sans";
  src: url("../fonts/work_sans/WorkSans-Medium.ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Work Sans";
  src: url("../fonts/work_sans/WorkSans-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

/*-------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*-------------------------------------------------------------
# CONTAINER 
--------------------------------------------------------------*/
@media screen and (min-width: 1200px) {
  .container {
    width: 96.375rem;
    padding: 0 15px; }
    .container #content-wrapper {
      padding: 0; } }

@media all and (min-width: 1700) {
  .container {
    padding: 0; } }

/*-------------------------------------------------------------
# COLOR PRECIOS 
--------------------------------------------------------------*/
.product-price,
.has-discount.product-price,
.has-discount p {
  color: #444645; }

.product-discount {
  color: #444645; }

.has-discount .discount {
  background: #c13a38; }

/*-------------------------------------------------------------
# COLOR ENLACES
--------------------------------------------------------------*/
a,
.dropdown,
.nav-item .nav-link.active,
.nav-item .nav-separtor.active {
  color: #002D74;
  -webkit-transition: all 0.1s ease-out;
  /* Safari */
  -moz-transition: all 0.1s ease-out;
  /* Mozilla */
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out; }
  a:hover, a:active, a:focus,
  .dropdown:hover,
  .dropdown:active,
  .dropdown:focus,
  .nav-item .nav-link.active:hover,
  .nav-item .nav-link.active:active,
  .nav-item .nav-link.active:focus,
  .nav-item .nav-separtor.active:hover,
  .nav-item .nav-separtor.active:active,
  .nav-item .nav-separtor.active:focus {
    color: #60B3CC;
    -webkit-transition: all 0.2s ease-in;
    /* Safari */
    -moz-transition: all 0.2s ease-in;
    /* Mozilla */
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
    a:hover .expand-more, a:active .expand-more, a:focus .expand-more,
    .dropdown:hover .expand-more,
    .dropdown:active .expand-more,
    .dropdown:focus .expand-more,
    .nav-item .nav-link.active:hover .expand-more,
    .nav-item .nav-link.active:active .expand-more,
    .nav-item .nav-link.active:focus .expand-more,
    .nav-item .nav-separtor.active:hover .expand-more,
    .nav-item .nav-separtor.active:active .expand-more,
    .nav-item .nav-separtor.active:focus .expand-more {
      color: #60B3CC;
      -webkit-transition: all 0.2s ease-in;
      /* Safari */
      -moz-transition: all 0.2s ease-in;
      /* Mozilla */
      -o-transition: all 0.2s ease-in;
      transition: all 0.2s ease-in; }

/*-------------------------------------------------------------
# COLOR BOTONES
--------------------------------------------------------------*/
.btn-primary {
  background-color: #002D74;
  -webkit-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
  color: white;
  -webkit-transition: all 0.2s ease-in;
  /* Safari */
  -moz-transition: all 0.2s ease-in;
  /* Mozilla */
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in; }
  .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary:target {
    background-color: #001941;
    -webkit-transition: all 0.2s ease-in;
    /* Safari */
    -moz-transition: all 0.2s ease-in;
    /* Mozilla */
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
  .btn-primary:active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:target, .btn-primary.active:hover, .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:target {
    background-color: #001941;
    -webkit-transition: all 0.2s ease-in;
    /* Safari */
    -moz-transition: all 0.2s ease-in;
    /* Mozilla */
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
  .btn-primary:disabled {
    opacity: 0.38;
    filter: alpha(opacity=38);
    -webkit-transition: all 0.2s ease-in;
    /* Safari */
    -moz-transition: all 0.2s ease-in;
    /* Mozilla */
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
    .btn-primary:disabled:hover, .btn-primary:disabled:focus, .btn-primary:disabled.focus, .btn-primary:disabled:active, .btn-primary:disabled:target {
      background-color: #002D74; }

.btn-secondary {
  background-color: #60B3CC;
  color: white;
  -webkit-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-in;
  /* Safari */
  -moz-transition: all 0.2s ease-in;
  /* Mozilla */
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in; }
  .btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary:target {
    background-color: #001941;
    color: white;
    -webkit-transition: all 0.2s ease-in;
    /* Safari */
    -moz-transition: all 0.2s ease-in;
    /* Mozilla */
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
  .btn-secondary:active:hover, .btn-secondary:active.focus, .btn-secondary:active:focus, .btn-secondary:active:target, .btn-secondary.active:hover, .btn-secondary.active.focus, .btn-secondary.active:focus, .btn-secondary.active:target {
    background-color: #001941;
    color: white;
    -webkit-transition: all 0.2s ease-in;
    /* Safari */
    -moz-transition: all 0.2s ease-in;
    /* Mozilla */
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
  .btn-secondary:disabled {
    opacity: 0.38;
    filter: alpha(opacity=38);
    -webkit-transition: all 0.2s ease-in;
    /* Safari */
    -moz-transition: all 0.2s ease-in;
    /* Mozilla */
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
    .btn-secondary:disabled:hover, .btn-secondary:disabled:focus, .btn-secondary:disabled:active, .btn-secondary:disabled:target {
      background-color: #60B3CC;
      color: white; }

.btn-info {
  background-color: #60B3CC;
  color: white;
  -webkit-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-in;
  /* Safari */
  -moz-transition: all 0.2s ease-in;
  /* Mozilla */
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in; }
  .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info:target {
    background-color: #001941;
    color: white;
    -webkit-transition: all 0.2s ease-in;
    /* Safari */
    -moz-transition: all 0.2s ease-in;
    /* Mozilla */
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
  .btn-info:active:hover, .btn-info:active.focus, .btn-info:active:focus, .btn-info:active:target, .btn-info.active:hover, .btn-info.active.focus, .btn-info.active:focus, .btn-info.active:target {
    background-color: #001941;
    color: white;
    -webkit-transition: all 0.2s ease-in;
    /* Safari */
    -moz-transition: all 0.2s ease-in;
    /* Mozilla */
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
  .btn-info:disabled {
    opacity: 0.38;
    filter: alpha(opacity=38);
    -webkit-transition: all 0.2s ease-in;
    /* Safari */
    -moz-transition: all 0.2s ease-in;
    /* Mozilla */
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
    .btn-info:disabled:hover, .btn-info:disabled:focus, .btn-info:disabled:active, .btn-info:disabled:target {
      background-color: #60B3CC;
      color: white; }

/*-------------------------------------------------------------
# HOVERS
--------------------------------------------------------------*/
/** Imágenes producto **/
.product-images > li.thumb-container > .thumb.selected,
.product-images > li.thumb-container > .thumb:hover {
  border-color: #60B3CC; }

/** INPUTS **/
.form-control:focus, .input-group.focus {
  outline: 0.1675rem solid #60B3CC;
  border-color: #60B3CC; }

/** PROMO BOTÓN **/
.block-promo .promo-input + button {
  border: 0.1675rem solid #60B3CC; }

/** INPUT WIDGET **/
.search-widget form input[type=text]:focus {
  outline: 0.1675rem solid #60B3CC; }

/*-------------------------------------------------------------
# Radios label
--------------------------------------------------------------*/
.radio-label {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #eee; }

select.form-control:not([size]):not([multiple]) {
  height: calc(2.5rem); }

/*-------------------------------------------------------------
# Global CSS
--------------------------------------------------------------*/
html {
  min-width: 375px;
  margin: 0 auto; }

body {
  margin: 0 auto; }

a {
  opacity: 1;
  cursor: pointer; }
  a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
    opacity: 0.6; }

@media (min-width: 1600px) {
  .container {
    max-width: 1300px; } }

@media (min-width: 1300px) and (max-width: 1599px) {
  .container {
    max-width: 1200px; } }

@media (min-width: 992px) and (max-width: 1299px) {
  .container {
    max-width: 1000px; } }

/*-------------------------------------------------------------
# TEXTOS BÁSICOS
--------------------------------------------------------------*/
h1, .h1 {
  text-align: left;
  font: normal normal 500 1.125rem/1.625rem Oswald;
  letter-spacing: 0px;
  color: #444645; }

h2, .h2 {
  text-align: left;
  font: normal normal 500 1rem/1.25rem Oswald;
  letter-spacing: 0px;
  color: #444645; }

h3, .h3 {
  text-align: left;
  font: normal normal 500 1rem/1.25rem Roboto;
  letter-spacing: 0px;
  color: #444645; }

p, span, p > label {
  text-align: left;
  font: normal normal normal 0.875rem/1.25rem Roboto;
  letter-spacing: 0px;
  color: #444645; }

@media all and (min-width: 992px) {
  h1, .h1 {
    text-align: left;
    font: normal normal 500 2.625rem/3.875rem Oswald;
    letter-spacing: 0px;
    color: #444645; }
  h2, .h2 {
    text-align: left;
    font: normal normal 500 1.563rem/1.5rem Oswald;
    letter-spacing: 0px;
    color: #444645; }
  h3, .h3 {
    text-align: left;
    font: normal normal 500 1.25rem/1.5rem Roboto;
    letter-spacing: 0px;
    color: #444645; }
  p, span, p > label {
    text-align: left;
    font: normal normal normal 1rem/1.375rem Roboto;
    letter-spacing: 0px;
    color: #444645; } }

/*-------------------------------------------------------------
# BOTONES
--------------------------------------------------------------*/
.soy_boton_primario, .form-footer .btn-primary, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button, #authentication.page-authentication #content-wrapper #content > section #login-form footer input, #authentication.page-authentication #content-wrapper #content > section #login-form footer button, #registration.page-registration #content-wrapper #content > section.singup-form footer input, #registration.page-registration #content-wrapper #content > section.singup-form footer button, #registration.page-registration #content-wrapper #content > section #login-form footer input, #registration.page-registration #content-wrapper #content > section #login-form footer button, body#addresses .page-header .addresses-button a, body#addresses .addresses-footer a, body#history .orders .order .row .soy_actions_order a.soy_view_order, body#order-detail .order-message-form footer.form-footer button.btn, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary, body#order-slip .credit-slips .credit-slip ul li:last-of-type a, body#discount .cart-rules .cart-rule ul li a, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
#main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
#main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
#main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
#main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
#main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new,
.btn-primary.soy_boton_primario,
.form-footer .btn-primary,
#authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary,
#authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary,
#authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary,
#authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary,
#registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary,
#registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary,
#registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary,
#registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary,
body#addresses .page-header .addresses-button a.btn-primary,
body#addresses .addresses-footer a.btn-primary,
body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order,
body#order-detail .order-message-form footer.form-footer button.btn-primary.btn,
body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary,
body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary,
body#discount .cart-rules .cart-rule ul li a.btn-primary,
body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv,
body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf,
#module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new,
body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart,
footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
#main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
#main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
#main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
#main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
#main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
#main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
.wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new,
.btn.soy_boton_primario,
.form-footer .btn.btn-primary,
#authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn,
#authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn,
#authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn,
#authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn,
#registration.page-registration #content-wrapper #content > section.singup-form footer input.btn,
#registration.page-registration #content-wrapper #content > section.singup-form footer button.btn,
#registration.page-registration #content-wrapper #content > section #login-form footer input.btn,
#registration.page-registration #content-wrapper #content > section #login-form footer button.btn,
body#addresses .page-header .addresses-button a.btn,
body#addresses .addresses-footer a.btn,
body#history .orders .order .row .soy_actions_order a.btn.soy_view_order,
body#order-detail .order-message-form footer.form-footer button.btn,
body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary,
body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn,
body#discount .cart-rules .cart-rule ul li a.btn,
body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv,
body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf,
#module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new,
body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart,
footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary,
footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary,
footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary,
footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary,
footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary,
footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary,
#main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary,
#main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary,
#main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary,
#main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary,
#main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary,
#main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary,
.wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new {
  background: #002D74 0% 0% no-repeat padding-box;
  opacity: 1;
  padding: 13px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -moz-border-radius: 21px;
  /* Mozilla */
  -webkit-border-radius: 21px;
  /* Safari */
  border-radius: 21px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  font: normal normal 500 1rem/1.188rem Roboto;
  letter-spacing: 0px;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer; }
  .soy_boton_primario span, .form-footer .btn-primary span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button span, #registration.page-registration #content-wrapper #content > section.singup-form footer input span, #registration.page-registration #content-wrapper #content > section.singup-form footer button span, #registration.page-registration #content-wrapper #content > section #login-form footer input span, #registration.page-registration #content-wrapper #content > section #login-form footer button span, body#addresses .page-header .addresses-button a span, body#addresses .addresses-footer a span, body#history .orders .order .row .soy_actions_order a.soy_view_order span, body#order-detail .order-message-form footer.form-footer button.btn span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a span, body#discount .cart-rules .cart-rule ul li a span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new span,
  .btn-primary.soy_boton_primario span,
  .form-footer .btn-primary span,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary span,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary span,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary span,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary span,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary span,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary span,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary span,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary span,
  body#addresses .page-header .addresses-button a.btn-primary span,
  body#addresses .addresses-footer a.btn-primary span,
  body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order span,
  body#order-detail .order-message-form footer.form-footer button.btn-primary.btn span,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary span,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary span,
  body#discount .cart-rules .cart-rule ul li a.btn-primary span,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv span,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf span,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new span,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart span,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary span,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new span,
  .btn.soy_boton_primario span,
  .form-footer .btn.btn-primary span,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn span,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn span,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn span,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn span,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn span,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn span,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn span,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn span,
  body#addresses .page-header .addresses-button a.btn span,
  body#addresses .addresses-footer a.btn span,
  body#history .orders .order .row .soy_actions_order a.btn.soy_view_order span,
  body#order-detail .order-message-form footer.form-footer button.btn span,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary span,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn span,
  body#discount .cart-rules .cart-rule ul li a.btn span,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv span,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf span,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new span,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart span,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary span,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary span,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary span,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary span,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary span,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary span,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary span,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary span,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary span,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary span,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary span,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary span,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new span {
    text-align: center;
    font: normal normal 500 1rem/1.188rem Roboto;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: uppercase; }
  .soy_boton_primario .grupoErikFont, .form-footer .btn-primary .grupoErikFont, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input .grupoErikFont, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button .grupoErikFont, #authentication.page-authentication #content-wrapper #content > section #login-form footer input .grupoErikFont, #authentication.page-authentication #content-wrapper #content > section #login-form footer button .grupoErikFont, #registration.page-registration #content-wrapper #content > section.singup-form footer input .grupoErikFont, #registration.page-registration #content-wrapper #content > section.singup-form footer button .grupoErikFont, #registration.page-registration #content-wrapper #content > section #login-form footer input .grupoErikFont, #registration.page-registration #content-wrapper #content > section #login-form footer button .grupoErikFont, body#addresses .page-header .addresses-button a .grupoErikFont, body#addresses .addresses-footer a .grupoErikFont, body#history .orders .order .row .soy_actions_order a.soy_view_order .grupoErikFont, body#order-detail .order-message-form footer.form-footer button.btn .grupoErikFont, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary .grupoErikFont, body#order-slip .credit-slips .credit-slip ul li:last-of-type a .grupoErikFont, body#discount .cart-rules .cart-rule ul li a .grupoErikFont, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv .grupoErikFont, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf .grupoErikFont, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new .grupoErikFont, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart .grupoErikFont, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new .grupoErikFont,
  .btn-primary.soy_boton_primario .grupoErikFont,
  .form-footer .btn-primary .grupoErikFont,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary .grupoErikFont,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary .grupoErikFont,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary .grupoErikFont,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary .grupoErikFont,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary .grupoErikFont,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary .grupoErikFont,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary .grupoErikFont,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary .grupoErikFont,
  body#addresses .page-header .addresses-button a.btn-primary .grupoErikFont,
  body#addresses .addresses-footer a.btn-primary .grupoErikFont,
  body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order .grupoErikFont,
  body#order-detail .order-message-form footer.form-footer button.btn-primary.btn .grupoErikFont,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary .grupoErikFont,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary .grupoErikFont,
  body#discount .cart-rules .cart-rule ul li a.btn-primary .grupoErikFont,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv .grupoErikFont,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf .grupoErikFont,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new .grupoErikFont,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart .grupoErikFont,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary .grupoErikFont,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new .grupoErikFont,
  .btn.soy_boton_primario .grupoErikFont,
  .form-footer .btn.btn-primary .grupoErikFont,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn .grupoErikFont,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn .grupoErikFont,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn .grupoErikFont,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn .grupoErikFont,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn .grupoErikFont,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn .grupoErikFont,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn .grupoErikFont,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn .grupoErikFont,
  body#addresses .page-header .addresses-button a.btn .grupoErikFont,
  body#addresses .addresses-footer a.btn .grupoErikFont,
  body#history .orders .order .row .soy_actions_order a.btn.soy_view_order .grupoErikFont,
  body#order-detail .order-message-form footer.form-footer button.btn .grupoErikFont,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary .grupoErikFont,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn .grupoErikFont,
  body#discount .cart-rules .cart-rule ul li a.btn .grupoErikFont,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv .grupoErikFont,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf .grupoErikFont,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new .grupoErikFont,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart .grupoErikFont,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary .grupoErikFont,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary .grupoErikFont,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary .grupoErikFont,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary .grupoErikFont,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary .grupoErikFont,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary .grupoErikFont,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary .grupoErikFont,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary .grupoErikFont,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary .grupoErikFont,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary .grupoErikFont,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary .grupoErikFont,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary .grupoErikFont,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new .grupoErikFont {
    display: none; }
  .soy_boton_primario:hover, .form-footer .btn-primary:hover, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input:hover, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button:hover, #authentication.page-authentication #content-wrapper #content > section #login-form footer input:hover, #authentication.page-authentication #content-wrapper #content > section #login-form footer button:hover, #registration.page-registration #content-wrapper #content > section.singup-form footer input:hover, #registration.page-registration #content-wrapper #content > section.singup-form footer button:hover, #registration.page-registration #content-wrapper #content > section #login-form footer input:hover, #registration.page-registration #content-wrapper #content > section #login-form footer button:hover, body#addresses .page-header .addresses-button a:hover, body#addresses .addresses-footer a:hover, body#history .orders .order .row .soy_actions_order a.soy_view_order:hover, body#order-detail .order-message-form footer.form-footer button.btn:hover, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:hover, body#order-slip .credit-slips .credit-slip ul li:last-of-type a:hover, body#discount .cart-rules .cart-rule ul li a:hover, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:hover, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:hover, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:hover, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart:hover, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new:hover, .soy_boton_primario:focus, .form-footer .btn-primary:focus, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input:focus, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button:focus, #authentication.page-authentication #content-wrapper #content > section #login-form footer input:focus, #authentication.page-authentication #content-wrapper #content > section #login-form footer button:focus, #registration.page-registration #content-wrapper #content > section.singup-form footer input:focus, #registration.page-registration #content-wrapper #content > section.singup-form footer button:focus, #registration.page-registration #content-wrapper #content > section #login-form footer input:focus, #registration.page-registration #content-wrapper #content > section #login-form footer button:focus, body#addresses .page-header .addresses-button a:focus, body#addresses .addresses-footer a:focus, body#history .orders .order .row .soy_actions_order a.soy_view_order:focus, body#order-detail .order-message-form footer.form-footer button.btn:focus, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:focus, body#order-slip .credit-slips .credit-slip ul li:last-of-type a:focus, body#discount .cart-rules .cart-rule ul li a:focus, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:focus, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:focus, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:focus, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart:focus, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new:focus, .soy_boton_primario:active, .form-footer .btn-primary:active, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input:active, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button:active, #authentication.page-authentication #content-wrapper #content > section #login-form footer input:active, #authentication.page-authentication #content-wrapper #content > section #login-form footer button:active, #registration.page-registration #content-wrapper #content > section.singup-form footer input:active, #registration.page-registration #content-wrapper #content > section.singup-form footer button:active, #registration.page-registration #content-wrapper #content > section #login-form footer input:active, #registration.page-registration #content-wrapper #content > section #login-form footer button:active, body#addresses .page-header .addresses-button a:active, body#addresses .addresses-footer a:active, body#history .orders .order .row .soy_actions_order a.soy_view_order:active, body#order-detail .order-message-form footer.form-footer button.btn:active, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:active, body#order-slip .credit-slips .credit-slip ul li:last-of-type a:active, body#discount .cart-rules .cart-rule ul li a:active, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:active, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:active, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:active, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart:active, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new:active,
  .btn-primary.soy_boton_primario:hover,
  .form-footer .btn-primary:hover,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary:hover,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary:hover,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary:hover,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary:hover,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary:hover,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary:hover,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary:hover,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary:hover,
  body#addresses .page-header .addresses-button a.btn-primary:hover,
  body#addresses .addresses-footer a.btn-primary:hover,
  body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order:hover,
  body#order-detail .order-message-form footer.form-footer button.btn-primary.btn:hover,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:hover,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary:hover,
  body#discount .cart-rules .cart-rule ul li a.btn-primary:hover,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv:hover,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf:hover,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new:hover,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart:hover,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new:hover,
  .btn-primary.soy_boton_primario:focus,
  .form-footer .btn-primary:focus,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary:focus,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary:focus,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary:focus,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary:focus,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary:focus,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary:focus,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary:focus,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary:focus,
  body#addresses .page-header .addresses-button a.btn-primary:focus,
  body#addresses .addresses-footer a.btn-primary:focus,
  body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order:focus,
  body#order-detail .order-message-form footer.form-footer button.btn-primary.btn:focus,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:focus,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary:focus,
  body#discount .cart-rules .cart-rule ul li a.btn-primary:focus,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv:focus,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf:focus,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new:focus,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart:focus,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new:focus,
  .btn-primary.soy_boton_primario:active,
  .form-footer .btn-primary:active,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary:active,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary:active,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary:active,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary:active,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary:active,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary:active,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary:active,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary:active,
  body#addresses .page-header .addresses-button a.btn-primary:active,
  body#addresses .addresses-footer a.btn-primary:active,
  body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order:active,
  body#order-detail .order-message-form footer.form-footer button.btn-primary.btn:active,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:active,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary:active,
  body#discount .cart-rules .cart-rule ul li a.btn-primary:active,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv:active,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf:active,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new:active,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart:active,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new:active,
  .btn.soy_boton_primario:hover,
  .form-footer .btn.btn-primary:hover,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn:hover,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn:hover,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn:hover,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn:hover,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn:hover,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn:hover,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn:hover,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn:hover,
  body#addresses .page-header .addresses-button a.btn:hover,
  body#addresses .addresses-footer a.btn:hover,
  body#history .orders .order .row .soy_actions_order a.btn.soy_view_order:hover,
  body#order-detail .order-message-form footer.form-footer button.btn:hover,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary:hover,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn:hover,
  body#discount .cart-rules .cart-rule ul li a.btn:hover,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv:hover,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf:hover,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new:hover,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart:hover,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new:hover,
  .btn.soy_boton_primario:focus,
  .form-footer .btn.btn-primary:focus,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn:focus,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn:focus,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn:focus,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn:focus,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn:focus,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn:focus,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn:focus,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn:focus,
  body#addresses .page-header .addresses-button a.btn:focus,
  body#addresses .addresses-footer a.btn:focus,
  body#history .orders .order .row .soy_actions_order a.btn.soy_view_order:focus,
  body#order-detail .order-message-form footer.form-footer button.btn:focus,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary:focus,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn:focus,
  body#discount .cart-rules .cart-rule ul li a.btn:focus,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv:focus,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf:focus,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new:focus,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart:focus,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new:focus,
  .btn.soy_boton_primario:active,
  .form-footer .btn.btn-primary:active,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn:active,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn:active,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn:active,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn:active,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn:active,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn:active,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn:active,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn:active,
  body#addresses .page-header .addresses-button a.btn:active,
  body#addresses .addresses-footer a.btn:active,
  body#history .orders .order .row .soy_actions_order a.btn.soy_view_order:active,
  body#order-detail .order-message-form footer.form-footer button.btn:active,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary:active,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn:active,
  body#discount .cart-rules .cart-rule ul li a.btn:active,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv:active,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf:active,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new:active,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart:active,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new:active {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
    background: #60B3CC 0% 0% no-repeat padding-box;
    color: #002D74; }
    .soy_boton_primario:hover span, .form-footer .btn-primary:hover span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input:hover span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button:hover span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input:hover span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button:hover span, #registration.page-registration #content-wrapper #content > section.singup-form footer input:hover span, #registration.page-registration #content-wrapper #content > section.singup-form footer button:hover span, #registration.page-registration #content-wrapper #content > section #login-form footer input:hover span, #registration.page-registration #content-wrapper #content > section #login-form footer button:hover span, body#addresses .page-header .addresses-button a:hover span, body#addresses .addresses-footer a:hover span, body#history .orders .order .row .soy_actions_order a.soy_view_order:hover span, body#order-detail .order-message-form footer.form-footer button.btn:hover span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:hover span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a:hover span, body#discount .cart-rules .cart-rule ul li a:hover span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:hover span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:hover span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:hover span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart:hover span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new:hover span, .soy_boton_primario:focus span, .form-footer .btn-primary:focus span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input:focus span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button:focus span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input:focus span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button:focus span, #registration.page-registration #content-wrapper #content > section.singup-form footer input:focus span, #registration.page-registration #content-wrapper #content > section.singup-form footer button:focus span, #registration.page-registration #content-wrapper #content > section #login-form footer input:focus span, #registration.page-registration #content-wrapper #content > section #login-form footer button:focus span, body#addresses .page-header .addresses-button a:focus span, body#addresses .addresses-footer a:focus span, body#history .orders .order .row .soy_actions_order a.soy_view_order:focus span, body#order-detail .order-message-form footer.form-footer button.btn:focus span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:focus span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a:focus span, body#discount .cart-rules .cart-rule ul li a:focus span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:focus span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:focus span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:focus span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart:focus span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new:focus span, .soy_boton_primario:active span, .form-footer .btn-primary:active span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input:active span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button:active span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input:active span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button:active span, #registration.page-registration #content-wrapper #content > section.singup-form footer input:active span, #registration.page-registration #content-wrapper #content > section.singup-form footer button:active span, #registration.page-registration #content-wrapper #content > section #login-form footer input:active span, #registration.page-registration #content-wrapper #content > section #login-form footer button:active span, body#addresses .page-header .addresses-button a:active span, body#addresses .addresses-footer a:active span, body#history .orders .order .row .soy_actions_order a.soy_view_order:active span, body#order-detail .order-message-form footer.form-footer button.btn:active span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:active span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a:active span, body#discount .cart-rules .cart-rule ul li a:active span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:active span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:active span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:active span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart:active span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new:active span,
    .btn-primary.soy_boton_primario:hover span,
    .form-footer .btn-primary:hover span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary:hover span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary:hover span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary:hover span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary:hover span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary:hover span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary:hover span,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary:hover span,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary:hover span,
    body#addresses .page-header .addresses-button a.btn-primary:hover span,
    body#addresses .addresses-footer a.btn-primary:hover span,
    body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order:hover span,
    body#order-detail .order-message-form footer.form-footer button.btn-primary.btn:hover span,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:hover span,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary:hover span,
    body#discount .cart-rules .cart-rule ul li a.btn-primary:hover span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv:hover span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf:hover span,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new:hover span,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart:hover span,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover span,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new:hover span,
    .btn-primary.soy_boton_primario:focus span,
    .form-footer .btn-primary:focus span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary:focus span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary:focus span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary:focus span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary:focus span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary:focus span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary:focus span,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary:focus span,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary:focus span,
    body#addresses .page-header .addresses-button a.btn-primary:focus span,
    body#addresses .addresses-footer a.btn-primary:focus span,
    body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order:focus span,
    body#order-detail .order-message-form footer.form-footer button.btn-primary.btn:focus span,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:focus span,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary:focus span,
    body#discount .cart-rules .cart-rule ul li a.btn-primary:focus span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv:focus span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf:focus span,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new:focus span,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart:focus span,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus span,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new:focus span,
    .btn-primary.soy_boton_primario:active span,
    .form-footer .btn-primary:active span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary:active span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary:active span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary:active span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary:active span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary:active span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary:active span,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary:active span,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary:active span,
    body#addresses .page-header .addresses-button a.btn-primary:active span,
    body#addresses .addresses-footer a.btn-primary:active span,
    body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order:active span,
    body#order-detail .order-message-form footer.form-footer button.btn-primary.btn:active span,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:active span,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary:active span,
    body#discount .cart-rules .cart-rule ul li a.btn-primary:active span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv:active span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf:active span,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new:active span,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart:active span,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active span,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new:active span,
    .btn.soy_boton_primario:hover span,
    .form-footer .btn.btn-primary:hover span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn:hover span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn:hover span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn:hover span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn:hover span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn:hover span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn:hover span,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn:hover span,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn:hover span,
    body#addresses .page-header .addresses-button a.btn:hover span,
    body#addresses .addresses-footer a.btn:hover span,
    body#history .orders .order .row .soy_actions_order a.btn.soy_view_order:hover span,
    body#order-detail .order-message-form footer.form-footer button.btn:hover span,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary:hover span,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn:hover span,
    body#discount .cart-rules .cart-rule ul li a.btn:hover span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv:hover span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf:hover span,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new:hover span,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart:hover span,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover span,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover span,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover span,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover span,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover span,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover span,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover span,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover span,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover span,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover span,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover span,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover span,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new:hover span,
    .btn.soy_boton_primario:focus span,
    .form-footer .btn.btn-primary:focus span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn:focus span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn:focus span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn:focus span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn:focus span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn:focus span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn:focus span,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn:focus span,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn:focus span,
    body#addresses .page-header .addresses-button a.btn:focus span,
    body#addresses .addresses-footer a.btn:focus span,
    body#history .orders .order .row .soy_actions_order a.btn.soy_view_order:focus span,
    body#order-detail .order-message-form footer.form-footer button.btn:focus span,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary:focus span,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn:focus span,
    body#discount .cart-rules .cart-rule ul li a.btn:focus span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv:focus span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf:focus span,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new:focus span,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart:focus span,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus span,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus span,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus span,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus span,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus span,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus span,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus span,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus span,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus span,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus span,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus span,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:focus span,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new:focus span,
    .btn.soy_boton_primario:active span,
    .form-footer .btn.btn-primary:active span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn:active span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn:active span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn:active span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn:active span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn:active span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn:active span,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn:active span,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn:active span,
    body#addresses .page-header .addresses-button a.btn:active span,
    body#addresses .addresses-footer a.btn:active span,
    body#history .orders .order .row .soy_actions_order a.btn.soy_view_order:active span,
    body#order-detail .order-message-form footer.form-footer button.btn:active span,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary:active span,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn:active span,
    body#discount .cart-rules .cart-rule ul li a.btn:active span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv:active span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf:active span,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new:active span,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart:active span,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active span,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active span,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active span,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active span,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active span,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active span,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active span,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active span,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active span,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active span,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active span,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:active span,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new:active span {
      color: #002D74; }
  .soy_boton_primario:disabled, .form-footer .btn-primary:disabled, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input:disabled, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button:disabled, #authentication.page-authentication #content-wrapper #content > section #login-form footer input:disabled, #authentication.page-authentication #content-wrapper #content > section #login-form footer button:disabled, #registration.page-registration #content-wrapper #content > section.singup-form footer input:disabled, #registration.page-registration #content-wrapper #content > section.singup-form footer button:disabled, #registration.page-registration #content-wrapper #content > section #login-form footer input:disabled, #registration.page-registration #content-wrapper #content > section #login-form footer button:disabled, body#addresses .page-header .addresses-button a:disabled, body#addresses .addresses-footer a:disabled, body#history .orders .order .row .soy_actions_order a.soy_view_order:disabled, body#order-detail .order-message-form footer.form-footer button.btn:disabled, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled, body#order-slip .credit-slips .credit-slip ul li:last-of-type a:disabled, body#discount .cart-rules .cart-rule ul li a:disabled, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:disabled, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:disabled, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:disabled, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart:disabled, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new:disabled, .soy_boton_primario.disabled, .form-footer .disabled.btn-primary, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.disabled, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.disabled, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.disabled, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.disabled, #registration.page-registration #content-wrapper #content > section.singup-form footer input.disabled, #registration.page-registration #content-wrapper #content > section.singup-form footer button.disabled, #registration.page-registration #content-wrapper #content > section #login-form footer input.disabled, #registration.page-registration #content-wrapper #content > section #login-form footer button.disabled, body#addresses .page-header .addresses-button a.disabled, body#addresses .addresses-footer a.disabled, body#history .orders .order .row .soy_actions_order a.disabled.soy_view_order, body#order-detail .order-message-form footer.form-footer button.disabled.btn, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .disabled.btn-primary, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.disabled, body#discount .cart-rules .cart-rule ul li a.disabled, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToCsv, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToPdf, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .disabled.wishlist-add-to-new, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .disabled.wishlist-product-addtocart, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.disabled.wishlist-add-to-new, .soy_boton_primario.btn_disabled, .form-footer .btn_disabled.btn-primary, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn_disabled, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn_disabled, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn_disabled, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn_disabled, #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn_disabled, #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn_disabled, #registration.page-registration #content-wrapper #content > section #login-form footer input.btn_disabled, #registration.page-registration #content-wrapper #content > section #login-form footer button.btn_disabled, body#addresses .page-header .addresses-button a.btn_disabled, body#addresses .addresses-footer a.btn_disabled, body#history .orders .order .row .soy_actions_order a.btn_disabled.soy_view_order, body#order-detail .order-message-form footer.form-footer button.btn_disabled.btn, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn_disabled.btn-primary, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn_disabled, body#discount .cart-rules .cart-rule ul li a.btn_disabled, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToCsv, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToPdf, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn_disabled.wishlist-add-to-new, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn_disabled.wishlist-product-addtocart, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn_disabled.wishlist-add-to-new,
  .btn-primary.soy_boton_primario:disabled,
  .form-footer .btn-primary:disabled,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary:disabled,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary:disabled,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary:disabled,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary:disabled,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary:disabled,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary:disabled,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary:disabled,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary:disabled,
  body#addresses .page-header .addresses-button a.btn-primary:disabled,
  body#addresses .addresses-footer a.btn-primary:disabled,
  body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order:disabled,
  body#order-detail .order-message-form footer.form-footer button.btn-primary.btn:disabled,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary:disabled,
  body#discount .cart-rules .cart-rule ul li a.btn-primary:disabled,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv:disabled,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf:disabled,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new:disabled,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart:disabled,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new:disabled,
  .btn-primary.soy_boton_primario.disabled,
  .form-footer .btn-primary.disabled,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.disabled,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.disabled,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.disabled,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.disabled,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.disabled,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.disabled,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.disabled,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.disabled,
  body#addresses .page-header .addresses-button a.btn-primary.disabled,
  body#addresses .addresses-footer a.btn-primary.disabled,
  body#history .orders .order .row .soy_actions_order a.btn-primary.disabled.soy_view_order,
  body#order-detail .order-message-form footer.form-footer button.btn-primary.disabled.btn,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.disabled,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.disabled,
  body#discount .cart-rules .cart-rule ul li a.btn-primary.disabled,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToCsv,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToPdf,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.disabled.wishlist-add-to-new,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.disabled.wishlist-product-addtocart,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.disabled.wishlist-add-to-new,
  .btn-primary.soy_boton_primario.btn_disabled,
  .form-footer .btn-primary.btn_disabled,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled,
  body#addresses .page-header .addresses-button a.btn-primary.btn_disabled,
  body#addresses .addresses-footer a.btn-primary.btn_disabled,
  body#history .orders .order .row .soy_actions_order a.btn-primary.btn_disabled.soy_view_order,
  body#order-detail .order-message-form footer.form-footer button.btn-primary.btn_disabled.btn,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.btn_disabled,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.btn_disabled,
  body#discount .cart-rules .cart-rule ul li a.btn-primary.btn_disabled,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToCsv,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToPdf,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.btn_disabled.wishlist-add-to-new,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.btn_disabled.wishlist-product-addtocart,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.btn_disabled.wishlist-add-to-new,
  .btn.soy_boton_primario:disabled,
  .form-footer .btn.btn-primary:disabled,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn:disabled,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn:disabled,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn:disabled,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn:disabled,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn:disabled,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn:disabled,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn:disabled,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn:disabled,
  body#addresses .page-header .addresses-button a.btn:disabled,
  body#addresses .addresses-footer a.btn:disabled,
  body#history .orders .order .row .soy_actions_order a.btn.soy_view_order:disabled,
  body#order-detail .order-message-form footer.form-footer button.btn:disabled,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary:disabled,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn:disabled,
  body#discount .cart-rules .cart-rule ul li a.btn:disabled,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv:disabled,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf:disabled,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new:disabled,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart:disabled,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new:disabled,
  .btn.soy_boton_primario.disabled,
  .form-footer .btn.disabled.btn-primary,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.disabled,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.disabled,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.disabled,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.disabled,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.disabled,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.disabled,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.disabled,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.disabled,
  body#addresses .page-header .addresses-button a.btn.disabled,
  body#addresses .addresses-footer a.btn.disabled,
  body#history .orders .order .row .soy_actions_order a.btn.disabled.soy_view_order,
  body#order-detail .order-message-form footer.form-footer button.btn.disabled,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.disabled.btn-primary,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.disabled,
  body#discount .cart-rules .cart-rule ul li a.btn.disabled,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToCsv,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToPdf,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.disabled.wishlist-add-to-new,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.disabled.wishlist-product-addtocart,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.disabled.wishlist-add-to-new,
  .btn.soy_boton_primario.btn_disabled,
  .form-footer .btn.btn_disabled.btn-primary,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.btn_disabled,
  #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.btn_disabled,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.btn_disabled,
  #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.btn_disabled,
  #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.btn_disabled,
  #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.btn_disabled,
  #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.btn_disabled,
  #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.btn_disabled,
  body#addresses .page-header .addresses-button a.btn.btn_disabled,
  body#addresses .addresses-footer a.btn.btn_disabled,
  body#history .orders .order .row .soy_actions_order a.btn.btn_disabled.soy_view_order,
  body#order-detail .order-message-form footer.form-footer button.btn.btn_disabled,
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn_disabled.btn-primary,
  body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.btn_disabled,
  body#discount .cart-rules .cart-rule ul li a.btn.btn_disabled,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToCsv,
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToPdf,
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.btn_disabled.wishlist-add-to-new,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.btn_disabled.wishlist-product-addtocart,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary,
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.btn_disabled.wishlist-add-to-new {
    background: #D8D8D8 0% 0% no-repeat padding-box;
    color: #002D74;
    cursor: not-allowed; }
    .soy_boton_primario:disabled span, .form-footer .btn-primary:disabled span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input:disabled span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button:disabled span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input:disabled span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button:disabled span, #registration.page-registration #content-wrapper #content > section.singup-form footer input:disabled span, #registration.page-registration #content-wrapper #content > section.singup-form footer button:disabled span, #registration.page-registration #content-wrapper #content > section #login-form footer input:disabled span, #registration.page-registration #content-wrapper #content > section #login-form footer button:disabled span, body#addresses .page-header .addresses-button a:disabled span, body#addresses .addresses-footer a:disabled span, body#history .orders .order .row .soy_actions_order a.soy_view_order:disabled span, body#order-detail .order-message-form footer.form-footer button.btn:disabled span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a:disabled span, body#discount .cart-rules .cart-rule ul li a:disabled span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:disabled span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:disabled span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:disabled span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart:disabled span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new:disabled span, .soy_boton_primario.disabled span, .form-footer .disabled.btn-primary span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.disabled span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.disabled span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.disabled span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.disabled span, #registration.page-registration #content-wrapper #content > section.singup-form footer input.disabled span, #registration.page-registration #content-wrapper #content > section.singup-form footer button.disabled span, #registration.page-registration #content-wrapper #content > section #login-form footer input.disabled span, #registration.page-registration #content-wrapper #content > section #login-form footer button.disabled span, body#addresses .page-header .addresses-button a.disabled span, body#addresses .addresses-footer a.disabled span, body#history .orders .order .row .soy_actions_order a.disabled.soy_view_order span, body#order-detail .order-message-form footer.form-footer button.disabled.btn span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .disabled.btn-primary span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.disabled span, body#discount .cart-rules .cart-rule ul li a.disabled span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToCsv span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToPdf span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .disabled.wishlist-add-to-new span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .disabled.wishlist-product-addtocart span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.disabled.wishlist-add-to-new span, .soy_boton_primario.btn_disabled span, .form-footer .btn_disabled.btn-primary span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn_disabled span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn_disabled span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn_disabled span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn_disabled span, #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn_disabled span, #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn_disabled span, #registration.page-registration #content-wrapper #content > section #login-form footer input.btn_disabled span, #registration.page-registration #content-wrapper #content > section #login-form footer button.btn_disabled span, body#addresses .page-header .addresses-button a.btn_disabled span, body#addresses .addresses-footer a.btn_disabled span, body#history .orders .order .row .soy_actions_order a.btn_disabled.soy_view_order span, body#order-detail .order-message-form footer.form-footer button.btn_disabled.btn span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn_disabled.btn-primary span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn_disabled span, body#discount .cart-rules .cart-rule ul li a.btn_disabled span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToCsv span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToPdf span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn_disabled.wishlist-add-to-new span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn_disabled.wishlist-product-addtocart span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn_disabled.wishlist-add-to-new span,
    .btn-primary.soy_boton_primario:disabled span,
    .form-footer .btn-primary:disabled span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary:disabled span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary:disabled span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary:disabled span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary:disabled span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary:disabled span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary:disabled span,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary:disabled span,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary:disabled span,
    body#addresses .page-header .addresses-button a.btn-primary:disabled span,
    body#addresses .addresses-footer a.btn-primary:disabled span,
    body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order:disabled span,
    body#order-detail .order-message-form footer.form-footer button.btn-primary.btn:disabled span,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled span,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary:disabled span,
    body#discount .cart-rules .cart-rule ul li a.btn-primary:disabled span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv:disabled span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf:disabled span,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new:disabled span,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart:disabled span,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled span,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new:disabled span,
    .btn-primary.soy_boton_primario.disabled span,
    .form-footer .btn-primary.disabled span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.disabled span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.disabled span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.disabled span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.disabled span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.disabled span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.disabled span,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.disabled span,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.disabled span,
    body#addresses .page-header .addresses-button a.btn-primary.disabled span,
    body#addresses .addresses-footer a.btn-primary.disabled span,
    body#history .orders .order .row .soy_actions_order a.btn-primary.disabled.soy_view_order span,
    body#order-detail .order-message-form footer.form-footer button.btn-primary.disabled.btn span,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.disabled span,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.disabled span,
    body#discount .cart-rules .cart-rule ul li a.btn-primary.disabled span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToCsv span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToPdf span,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.disabled.wishlist-add-to-new span,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.disabled.wishlist-product-addtocart span,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled span,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled span,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled span,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled span,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled span,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled span,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled span,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled span,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled span,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled span,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled span,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled span,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.disabled.wishlist-add-to-new span,
    .btn-primary.soy_boton_primario.btn_disabled span,
    .form-footer .btn-primary.btn_disabled span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled span,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled span,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled span,
    body#addresses .page-header .addresses-button a.btn-primary.btn_disabled span,
    body#addresses .addresses-footer a.btn-primary.btn_disabled span,
    body#history .orders .order .row .soy_actions_order a.btn-primary.btn_disabled.soy_view_order span,
    body#order-detail .order-message-form footer.form-footer button.btn-primary.btn_disabled.btn span,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.btn_disabled span,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.btn_disabled span,
    body#discount .cart-rules .cart-rule ul li a.btn-primary.btn_disabled span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToCsv span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToPdf span,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.btn_disabled.wishlist-add-to-new span,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.btn_disabled.wishlist-product-addtocart span,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled span,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled span,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled span,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled span,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled span,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled span,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled span,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled span,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled span,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled span,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled span,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled span,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.btn_disabled.wishlist-add-to-new span,
    .btn.soy_boton_primario:disabled span,
    .form-footer .btn.btn-primary:disabled span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn:disabled span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn:disabled span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn:disabled span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn:disabled span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn:disabled span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn:disabled span,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn:disabled span,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn:disabled span,
    body#addresses .page-header .addresses-button a.btn:disabled span,
    body#addresses .addresses-footer a.btn:disabled span,
    body#history .orders .order .row .soy_actions_order a.btn.soy_view_order:disabled span,
    body#order-detail .order-message-form footer.form-footer button.btn:disabled span,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary:disabled span,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn:disabled span,
    body#discount .cart-rules .cart-rule ul li a.btn:disabled span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv:disabled span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf:disabled span,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new:disabled span,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart:disabled span,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled span,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled span,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled span,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled span,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled span,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled span,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled span,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled span,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled span,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled span,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled span,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled span,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new:disabled span,
    .btn.soy_boton_primario.disabled span,
    .form-footer .btn.disabled.btn-primary span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.disabled span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.disabled span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.disabled span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.disabled span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.disabled span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.disabled span,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.disabled span,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.disabled span,
    body#addresses .page-header .addresses-button a.btn.disabled span,
    body#addresses .addresses-footer a.btn.disabled span,
    body#history .orders .order .row .soy_actions_order a.btn.disabled.soy_view_order span,
    body#order-detail .order-message-form footer.form-footer button.btn.disabled span,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.disabled.btn-primary span,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.disabled span,
    body#discount .cart-rules .cart-rule ul li a.btn.disabled span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToCsv span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToPdf span,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.disabled.wishlist-add-to-new span,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.disabled.wishlist-product-addtocart span,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary span,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary span,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary span,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary span,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary span,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary span,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary span,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary span,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary span,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary span,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary span,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary span,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.disabled.wishlist-add-to-new span,
    .btn.soy_boton_primario.btn_disabled span,
    .form-footer .btn.btn_disabled.btn-primary span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.btn_disabled span,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.btn_disabled span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.btn_disabled span,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.btn_disabled span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.btn_disabled span,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.btn_disabled span,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.btn_disabled span,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.btn_disabled span,
    body#addresses .page-header .addresses-button a.btn.btn_disabled span,
    body#addresses .addresses-footer a.btn.btn_disabled span,
    body#history .orders .order .row .soy_actions_order a.btn.btn_disabled.soy_view_order span,
    body#order-detail .order-message-form footer.form-footer button.btn.btn_disabled span,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn_disabled.btn-primary span,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.btn_disabled span,
    body#discount .cart-rules .cart-rule ul li a.btn.btn_disabled span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToCsv span,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToPdf span,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.btn_disabled.wishlist-add-to-new span,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.btn_disabled.wishlist-product-addtocart span,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary span,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary span,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary span,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary span,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary span,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary span,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary span,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary span,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary span,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary span,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary span,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary span,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.btn_disabled.wishlist-add-to-new span {
      color: #002D74; }
    .soy_boton_primario:disabled:hover, .form-footer .btn-primary:disabled:hover, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input:disabled:hover, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button:disabled:hover, #authentication.page-authentication #content-wrapper #content > section #login-form footer input:disabled:hover, #authentication.page-authentication #content-wrapper #content > section #login-form footer button:disabled:hover, #registration.page-registration #content-wrapper #content > section.singup-form footer input:disabled:hover, #registration.page-registration #content-wrapper #content > section.singup-form footer button:disabled:hover, #registration.page-registration #content-wrapper #content > section #login-form footer input:disabled:hover, #registration.page-registration #content-wrapper #content > section #login-form footer button:disabled:hover, body#addresses .page-header .addresses-button a:disabled:hover, body#addresses .addresses-footer a:disabled:hover, body#history .orders .order .row .soy_actions_order a.soy_view_order:disabled:hover, body#order-detail .order-message-form footer.form-footer button.btn:disabled:hover, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled:hover, body#order-slip .credit-slips .credit-slip ul li:last-of-type a:disabled:hover, body#discount .cart-rules .cart-rule ul li a:disabled:hover, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:disabled:hover, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:disabled:hover, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:disabled:hover, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart:disabled:hover, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new:disabled:hover, .soy_boton_primario:disabled:focus, .form-footer .btn-primary:disabled:focus, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input:disabled:focus, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button:disabled:focus, #authentication.page-authentication #content-wrapper #content > section #login-form footer input:disabled:focus, #authentication.page-authentication #content-wrapper #content > section #login-form footer button:disabled:focus, #registration.page-registration #content-wrapper #content > section.singup-form footer input:disabled:focus, #registration.page-registration #content-wrapper #content > section.singup-form footer button:disabled:focus, #registration.page-registration #content-wrapper #content > section #login-form footer input:disabled:focus, #registration.page-registration #content-wrapper #content > section #login-form footer button:disabled:focus, body#addresses .page-header .addresses-button a:disabled:focus, body#addresses .addresses-footer a:disabled:focus, body#history .orders .order .row .soy_actions_order a.soy_view_order:disabled:focus, body#order-detail .order-message-form footer.form-footer button.btn:disabled:focus, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled:focus, body#order-slip .credit-slips .credit-slip ul li:last-of-type a:disabled:focus, body#discount .cart-rules .cart-rule ul li a:disabled:focus, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:disabled:focus, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:disabled:focus, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:disabled:focus, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart:disabled:focus, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new:disabled:focus, .soy_boton_primario:disabled:active, .form-footer .btn-primary:disabled:active, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input:disabled:active, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button:disabled:active, #authentication.page-authentication #content-wrapper #content > section #login-form footer input:disabled:active, #authentication.page-authentication #content-wrapper #content > section #login-form footer button:disabled:active, #registration.page-registration #content-wrapper #content > section.singup-form footer input:disabled:active, #registration.page-registration #content-wrapper #content > section.singup-form footer button:disabled:active, #registration.page-registration #content-wrapper #content > section #login-form footer input:disabled:active, #registration.page-registration #content-wrapper #content > section #login-form footer button:disabled:active, body#addresses .page-header .addresses-button a:disabled:active, body#addresses .addresses-footer a:disabled:active, body#history .orders .order .row .soy_actions_order a.soy_view_order:disabled:active, body#order-detail .order-message-form footer.form-footer button.btn:disabled:active, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled:active, body#order-slip .credit-slips .credit-slip ul li:last-of-type a:disabled:active, body#discount .cart-rules .cart-rule ul li a:disabled:active, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:disabled:active, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:disabled:active, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:disabled:active, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart:disabled:active, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new:disabled:active, .soy_boton_primario.disabled:hover, .form-footer .disabled.btn-primary:hover, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.disabled:hover, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.disabled:hover, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.disabled:hover, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.disabled:hover, #registration.page-registration #content-wrapper #content > section.singup-form footer input.disabled:hover, #registration.page-registration #content-wrapper #content > section.singup-form footer button.disabled:hover, #registration.page-registration #content-wrapper #content > section #login-form footer input.disabled:hover, #registration.page-registration #content-wrapper #content > section #login-form footer button.disabled:hover, body#addresses .page-header .addresses-button a.disabled:hover, body#addresses .addresses-footer a.disabled:hover, body#history .orders .order .row .soy_actions_order a.disabled.soy_view_order:hover, body#order-detail .order-message-form footer.form-footer button.disabled.btn:hover, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .disabled.btn-primary:hover, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.disabled:hover, body#discount .cart-rules .cart-rule ul li a.disabled:hover, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToCsv:hover, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToPdf:hover, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .disabled.wishlist-add-to-new:hover, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .disabled.wishlist-product-addtocart:hover, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.disabled.wishlist-add-to-new:hover, .soy_boton_primario.disabled:focus, .form-footer .disabled.btn-primary:focus, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.disabled:focus, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.disabled:focus, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.disabled:focus, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.disabled:focus, #registration.page-registration #content-wrapper #content > section.singup-form footer input.disabled:focus, #registration.page-registration #content-wrapper #content > section.singup-form footer button.disabled:focus, #registration.page-registration #content-wrapper #content > section #login-form footer input.disabled:focus, #registration.page-registration #content-wrapper #content > section #login-form footer button.disabled:focus, body#addresses .page-header .addresses-button a.disabled:focus, body#addresses .addresses-footer a.disabled:focus, body#history .orders .order .row .soy_actions_order a.disabled.soy_view_order:focus, body#order-detail .order-message-form footer.form-footer button.disabled.btn:focus, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .disabled.btn-primary:focus, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.disabled:focus, body#discount .cart-rules .cart-rule ul li a.disabled:focus, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToCsv:focus, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToPdf:focus, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .disabled.wishlist-add-to-new:focus, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .disabled.wishlist-product-addtocart:focus, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.disabled.wishlist-add-to-new:focus, .soy_boton_primario.disabled:active, .form-footer .disabled.btn-primary:active, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.disabled:active, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.disabled:active, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.disabled:active, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.disabled:active, #registration.page-registration #content-wrapper #content > section.singup-form footer input.disabled:active, #registration.page-registration #content-wrapper #content > section.singup-form footer button.disabled:active, #registration.page-registration #content-wrapper #content > section #login-form footer input.disabled:active, #registration.page-registration #content-wrapper #content > section #login-form footer button.disabled:active, body#addresses .page-header .addresses-button a.disabled:active, body#addresses .addresses-footer a.disabled:active, body#history .orders .order .row .soy_actions_order a.disabled.soy_view_order:active, body#order-detail .order-message-form footer.form-footer button.disabled.btn:active, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .disabled.btn-primary:active, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.disabled:active, body#discount .cart-rules .cart-rule ul li a.disabled:active, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToCsv:active, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToPdf:active, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .disabled.wishlist-add-to-new:active, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .disabled.wishlist-product-addtocart:active, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.disabled.wishlist-add-to-new:active, .soy_boton_primario.btn_disabled:hover, .form-footer .btn_disabled.btn-primary:hover, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn_disabled:hover, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn_disabled:hover, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn_disabled:hover, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn_disabled:hover, #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn_disabled:hover, #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn_disabled:hover, #registration.page-registration #content-wrapper #content > section #login-form footer input.btn_disabled:hover, #registration.page-registration #content-wrapper #content > section #login-form footer button.btn_disabled:hover, body#addresses .page-header .addresses-button a.btn_disabled:hover, body#addresses .addresses-footer a.btn_disabled:hover, body#history .orders .order .row .soy_actions_order a.btn_disabled.soy_view_order:hover, body#order-detail .order-message-form footer.form-footer button.btn_disabled.btn:hover, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn_disabled.btn-primary:hover, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn_disabled:hover, body#discount .cart-rules .cart-rule ul li a.btn_disabled:hover, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToCsv:hover, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToPdf:hover, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn_disabled.wishlist-add-to-new:hover, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn_disabled.wishlist-product-addtocart:hover, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn_disabled.wishlist-add-to-new:hover, .soy_boton_primario.btn_disabled:focus, .form-footer .btn_disabled.btn-primary:focus, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn_disabled:focus, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn_disabled:focus, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn_disabled:focus, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn_disabled:focus, #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn_disabled:focus, #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn_disabled:focus, #registration.page-registration #content-wrapper #content > section #login-form footer input.btn_disabled:focus, #registration.page-registration #content-wrapper #content > section #login-form footer button.btn_disabled:focus, body#addresses .page-header .addresses-button a.btn_disabled:focus, body#addresses .addresses-footer a.btn_disabled:focus, body#history .orders .order .row .soy_actions_order a.btn_disabled.soy_view_order:focus, body#order-detail .order-message-form footer.form-footer button.btn_disabled.btn:focus, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn_disabled.btn-primary:focus, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn_disabled:focus, body#discount .cart-rules .cart-rule ul li a.btn_disabled:focus, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToCsv:focus, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToPdf:focus, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn_disabled.wishlist-add-to-new:focus, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn_disabled.wishlist-product-addtocart:focus, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn_disabled.wishlist-add-to-new:focus, .soy_boton_primario.btn_disabled:active, .form-footer .btn_disabled.btn-primary:active, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn_disabled:active, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn_disabled:active, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn_disabled:active, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn_disabled:active, #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn_disabled:active, #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn_disabled:active, #registration.page-registration #content-wrapper #content > section #login-form footer input.btn_disabled:active, #registration.page-registration #content-wrapper #content > section #login-form footer button.btn_disabled:active, body#addresses .page-header .addresses-button a.btn_disabled:active, body#addresses .addresses-footer a.btn_disabled:active, body#history .orders .order .row .soy_actions_order a.btn_disabled.soy_view_order:active, body#order-detail .order-message-form footer.form-footer button.btn_disabled.btn:active, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn_disabled.btn-primary:active, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn_disabled:active, body#discount .cart-rules .cart-rule ul li a.btn_disabled:active, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToCsv:active, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToPdf:active, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn_disabled.wishlist-add-to-new:active, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn_disabled.wishlist-product-addtocart:active, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn_disabled.wishlist-add-to-new:active,
    .btn-primary.soy_boton_primario:disabled:hover,
    .form-footer .btn-primary:disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary:disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary:disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary:disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary:disabled:hover,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary:disabled:hover,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary:disabled:hover,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary:disabled:hover,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary:disabled:hover,
    body#addresses .page-header .addresses-button a.btn-primary:disabled:hover,
    body#addresses .addresses-footer a.btn-primary:disabled:hover,
    body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order:disabled:hover,
    body#order-detail .order-message-form footer.form-footer button.btn-primary.btn:disabled:hover,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled:hover,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary:disabled:hover,
    body#discount .cart-rules .cart-rule ul li a.btn-primary:disabled:hover,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv:disabled:hover,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf:disabled:hover,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new:disabled:hover,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart:disabled:hover,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new:disabled:hover,
    .btn-primary.soy_boton_primario:disabled:focus,
    .form-footer .btn-primary:disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary:disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary:disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary:disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary:disabled:focus,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary:disabled:focus,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary:disabled:focus,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary:disabled:focus,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary:disabled:focus,
    body#addresses .page-header .addresses-button a.btn-primary:disabled:focus,
    body#addresses .addresses-footer a.btn-primary:disabled:focus,
    body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order:disabled:focus,
    body#order-detail .order-message-form footer.form-footer button.btn-primary.btn:disabled:focus,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled:focus,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary:disabled:focus,
    body#discount .cart-rules .cart-rule ul li a.btn-primary:disabled:focus,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv:disabled:focus,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf:disabled:focus,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new:disabled:focus,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart:disabled:focus,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new:disabled:focus,
    .btn-primary.soy_boton_primario:disabled:active,
    .form-footer .btn-primary:disabled:active,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary:disabled:active,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary:disabled:active,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary:disabled:active,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary:disabled:active,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary:disabled:active,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary:disabled:active,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary:disabled:active,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary:disabled:active,
    body#addresses .page-header .addresses-button a.btn-primary:disabled:active,
    body#addresses .addresses-footer a.btn-primary:disabled:active,
    body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order:disabled:active,
    body#order-detail .order-message-form footer.form-footer button.btn-primary.btn:disabled:active,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled:active,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary:disabled:active,
    body#discount .cart-rules .cart-rule ul li a.btn-primary:disabled:active,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv:disabled:active,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf:disabled:active,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new:disabled:active,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart:disabled:active,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new:disabled:active,
    .btn-primary.soy_boton_primario.disabled:hover,
    .form-footer .btn-primary.disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.disabled:hover,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.disabled:hover,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.disabled:hover,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.disabled:hover,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.disabled:hover,
    body#addresses .page-header .addresses-button a.btn-primary.disabled:hover,
    body#addresses .addresses-footer a.btn-primary.disabled:hover,
    body#history .orders .order .row .soy_actions_order a.btn-primary.disabled.soy_view_order:hover,
    body#order-detail .order-message-form footer.form-footer button.btn-primary.disabled.btn:hover,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.disabled:hover,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.disabled:hover,
    body#discount .cart-rules .cart-rule ul li a.btn-primary.disabled:hover,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToCsv:hover,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToPdf:hover,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.disabled.wishlist-add-to-new:hover,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.disabled.wishlist-product-addtocart:hover,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.disabled.wishlist-add-to-new:hover,
    .btn-primary.soy_boton_primario.disabled:focus,
    .form-footer .btn-primary.disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.disabled:focus,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.disabled:focus,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.disabled:focus,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.disabled:focus,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.disabled:focus,
    body#addresses .page-header .addresses-button a.btn-primary.disabled:focus,
    body#addresses .addresses-footer a.btn-primary.disabled:focus,
    body#history .orders .order .row .soy_actions_order a.btn-primary.disabled.soy_view_order:focus,
    body#order-detail .order-message-form footer.form-footer button.btn-primary.disabled.btn:focus,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.disabled:focus,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.disabled:focus,
    body#discount .cart-rules .cart-rule ul li a.btn-primary.disabled:focus,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToCsv:focus,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToPdf:focus,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.disabled.wishlist-add-to-new:focus,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.disabled.wishlist-product-addtocart:focus,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.disabled.wishlist-add-to-new:focus,
    .btn-primary.soy_boton_primario.disabled:active,
    .form-footer .btn-primary.disabled:active,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.disabled:active,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.disabled:active,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.disabled:active,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.disabled:active,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.disabled:active,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.disabled:active,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.disabled:active,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.disabled:active,
    body#addresses .page-header .addresses-button a.btn-primary.disabled:active,
    body#addresses .addresses-footer a.btn-primary.disabled:active,
    body#history .orders .order .row .soy_actions_order a.btn-primary.disabled.soy_view_order:active,
    body#order-detail .order-message-form footer.form-footer button.btn-primary.disabled.btn:active,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.disabled:active,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.disabled:active,
    body#discount .cart-rules .cart-rule ul li a.btn-primary.disabled:active,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToCsv:active,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToPdf:active,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.disabled.wishlist-add-to-new:active,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.disabled.wishlist-product-addtocart:active,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.disabled.wishlist-add-to-new:active,
    .btn-primary.soy_boton_primario.btn_disabled:hover,
    .form-footer .btn-primary.btn_disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled:hover,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled:hover,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled:hover,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled:hover,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled:hover,
    body#addresses .page-header .addresses-button a.btn-primary.btn_disabled:hover,
    body#addresses .addresses-footer a.btn-primary.btn_disabled:hover,
    body#history .orders .order .row .soy_actions_order a.btn-primary.btn_disabled.soy_view_order:hover,
    body#order-detail .order-message-form footer.form-footer button.btn-primary.btn_disabled.btn:hover,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.btn_disabled:hover,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.btn_disabled:hover,
    body#discount .cart-rules .cart-rule ul li a.btn-primary.btn_disabled:hover,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToCsv:hover,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToPdf:hover,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.btn_disabled.wishlist-add-to-new:hover,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.btn_disabled.wishlist-product-addtocart:hover,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.btn_disabled.wishlist-add-to-new:hover,
    .btn-primary.soy_boton_primario.btn_disabled:focus,
    .form-footer .btn-primary.btn_disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled:focus,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled:focus,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled:focus,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled:focus,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled:focus,
    body#addresses .page-header .addresses-button a.btn-primary.btn_disabled:focus,
    body#addresses .addresses-footer a.btn-primary.btn_disabled:focus,
    body#history .orders .order .row .soy_actions_order a.btn-primary.btn_disabled.soy_view_order:focus,
    body#order-detail .order-message-form footer.form-footer button.btn-primary.btn_disabled.btn:focus,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.btn_disabled:focus,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.btn_disabled:focus,
    body#discount .cart-rules .cart-rule ul li a.btn-primary.btn_disabled:focus,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToCsv:focus,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToPdf:focus,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.btn_disabled.wishlist-add-to-new:focus,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.btn_disabled.wishlist-product-addtocart:focus,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.btn_disabled.wishlist-add-to-new:focus,
    .btn-primary.soy_boton_primario.btn_disabled:active,
    .form-footer .btn-primary.btn_disabled:active,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled:active,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled:active,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled:active,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled:active,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled:active,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled:active,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled:active,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled:active,
    body#addresses .page-header .addresses-button a.btn-primary.btn_disabled:active,
    body#addresses .addresses-footer a.btn-primary.btn_disabled:active,
    body#history .orders .order .row .soy_actions_order a.btn-primary.btn_disabled.soy_view_order:active,
    body#order-detail .order-message-form footer.form-footer button.btn-primary.btn_disabled.btn:active,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.btn_disabled:active,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.btn_disabled:active,
    body#discount .cart-rules .cart-rule ul li a.btn-primary.btn_disabled:active,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToCsv:active,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToPdf:active,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.btn_disabled.wishlist-add-to-new:active,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.btn_disabled.wishlist-product-addtocart:active,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.btn_disabled.wishlist-add-to-new:active,
    .btn.soy_boton_primario:disabled:hover,
    .form-footer .btn.btn-primary:disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn:disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn:disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn:disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn:disabled:hover,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn:disabled:hover,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn:disabled:hover,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn:disabled:hover,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn:disabled:hover,
    body#addresses .page-header .addresses-button a.btn:disabled:hover,
    body#addresses .addresses-footer a.btn:disabled:hover,
    body#history .orders .order .row .soy_actions_order a.btn.soy_view_order:disabled:hover,
    body#order-detail .order-message-form footer.form-footer button.btn:disabled:hover,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary:disabled:hover,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn:disabled:hover,
    body#discount .cart-rules .cart-rule ul li a.btn:disabled:hover,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv:disabled:hover,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf:disabled:hover,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new:disabled:hover,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart:disabled:hover,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new:disabled:hover,
    .btn.soy_boton_primario:disabled:focus,
    .form-footer .btn.btn-primary:disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn:disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn:disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn:disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn:disabled:focus,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn:disabled:focus,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn:disabled:focus,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn:disabled:focus,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn:disabled:focus,
    body#addresses .page-header .addresses-button a.btn:disabled:focus,
    body#addresses .addresses-footer a.btn:disabled:focus,
    body#history .orders .order .row .soy_actions_order a.btn.soy_view_order:disabled:focus,
    body#order-detail .order-message-form footer.form-footer button.btn:disabled:focus,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary:disabled:focus,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn:disabled:focus,
    body#discount .cart-rules .cart-rule ul li a.btn:disabled:focus,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv:disabled:focus,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf:disabled:focus,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new:disabled:focus,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart:disabled:focus,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new:disabled:focus,
    .btn.soy_boton_primario:disabled:active,
    .form-footer .btn.btn-primary:disabled:active,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn:disabled:active,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn:disabled:active,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn:disabled:active,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn:disabled:active,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn:disabled:active,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn:disabled:active,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn:disabled:active,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn:disabled:active,
    body#addresses .page-header .addresses-button a.btn:disabled:active,
    body#addresses .addresses-footer a.btn:disabled:active,
    body#history .orders .order .row .soy_actions_order a.btn.soy_view_order:disabled:active,
    body#order-detail .order-message-form footer.form-footer button.btn:disabled:active,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary:disabled:active,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn:disabled:active,
    body#discount .cart-rules .cart-rule ul li a.btn:disabled:active,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv:disabled:active,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf:disabled:active,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new:disabled:active,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart:disabled:active,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new:disabled:active,
    .btn.soy_boton_primario.disabled:hover,
    .form-footer .btn.disabled.btn-primary:hover,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.disabled:hover,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.disabled:hover,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.disabled:hover,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.disabled:hover,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.disabled:hover,
    body#addresses .page-header .addresses-button a.btn.disabled:hover,
    body#addresses .addresses-footer a.btn.disabled:hover,
    body#history .orders .order .row .soy_actions_order a.btn.disabled.soy_view_order:hover,
    body#order-detail .order-message-form footer.form-footer button.btn.disabled:hover,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.disabled.btn-primary:hover,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.disabled:hover,
    body#discount .cart-rules .cart-rule ul li a.btn.disabled:hover,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToCsv:hover,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToPdf:hover,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.disabled.wishlist-add-to-new:hover,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.disabled.wishlist-product-addtocart:hover,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.disabled.wishlist-add-to-new:hover,
    .btn.soy_boton_primario.disabled:focus,
    .form-footer .btn.disabled.btn-primary:focus,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.disabled:focus,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.disabled:focus,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.disabled:focus,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.disabled:focus,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.disabled:focus,
    body#addresses .page-header .addresses-button a.btn.disabled:focus,
    body#addresses .addresses-footer a.btn.disabled:focus,
    body#history .orders .order .row .soy_actions_order a.btn.disabled.soy_view_order:focus,
    body#order-detail .order-message-form footer.form-footer button.btn.disabled:focus,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.disabled.btn-primary:focus,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.disabled:focus,
    body#discount .cart-rules .cart-rule ul li a.btn.disabled:focus,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToCsv:focus,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToPdf:focus,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.disabled.wishlist-add-to-new:focus,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.disabled.wishlist-product-addtocart:focus,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.disabled.wishlist-add-to-new:focus,
    .btn.soy_boton_primario.disabled:active,
    .form-footer .btn.disabled.btn-primary:active,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.disabled:active,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.disabled:active,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.disabled:active,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.disabled:active,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.disabled:active,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.disabled:active,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.disabled:active,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.disabled:active,
    body#addresses .page-header .addresses-button a.btn.disabled:active,
    body#addresses .addresses-footer a.btn.disabled:active,
    body#history .orders .order .row .soy_actions_order a.btn.disabled.soy_view_order:active,
    body#order-detail .order-message-form footer.form-footer button.btn.disabled:active,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.disabled.btn-primary:active,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.disabled:active,
    body#discount .cart-rules .cart-rule ul li a.btn.disabled:active,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToCsv:active,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToPdf:active,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.disabled.wishlist-add-to-new:active,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.disabled.wishlist-product-addtocart:active,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.disabled.wishlist-add-to-new:active,
    .btn.soy_boton_primario.btn_disabled:hover,
    .form-footer .btn.btn_disabled.btn-primary:hover,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.btn_disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.btn_disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.btn_disabled:hover,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.btn_disabled:hover,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.btn_disabled:hover,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.btn_disabled:hover,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.btn_disabled:hover,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.btn_disabled:hover,
    body#addresses .page-header .addresses-button a.btn.btn_disabled:hover,
    body#addresses .addresses-footer a.btn.btn_disabled:hover,
    body#history .orders .order .row .soy_actions_order a.btn.btn_disabled.soy_view_order:hover,
    body#order-detail .order-message-form footer.form-footer button.btn.btn_disabled:hover,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn_disabled.btn-primary:hover,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.btn_disabled:hover,
    body#discount .cart-rules .cart-rule ul li a.btn.btn_disabled:hover,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToCsv:hover,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToPdf:hover,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.btn_disabled.wishlist-add-to-new:hover,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.btn_disabled.wishlist-product-addtocart:hover,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.btn_disabled.wishlist-add-to-new:hover,
    .btn.soy_boton_primario.btn_disabled:focus,
    .form-footer .btn.btn_disabled.btn-primary:focus,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.btn_disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.btn_disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.btn_disabled:focus,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.btn_disabled:focus,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.btn_disabled:focus,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.btn_disabled:focus,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.btn_disabled:focus,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.btn_disabled:focus,
    body#addresses .page-header .addresses-button a.btn.btn_disabled:focus,
    body#addresses .addresses-footer a.btn.btn_disabled:focus,
    body#history .orders .order .row .soy_actions_order a.btn.btn_disabled.soy_view_order:focus,
    body#order-detail .order-message-form footer.form-footer button.btn.btn_disabled:focus,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn_disabled.btn-primary:focus,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.btn_disabled:focus,
    body#discount .cart-rules .cart-rule ul li a.btn.btn_disabled:focus,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToCsv:focus,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToPdf:focus,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.btn_disabled.wishlist-add-to-new:focus,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.btn_disabled.wishlist-product-addtocart:focus,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.btn_disabled.wishlist-add-to-new:focus,
    .btn.soy_boton_primario.btn_disabled:active,
    .form-footer .btn.btn_disabled.btn-primary:active,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.btn_disabled:active,
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.btn_disabled:active,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.btn_disabled:active,
    #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.btn_disabled:active,
    #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.btn_disabled:active,
    #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.btn_disabled:active,
    #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.btn_disabled:active,
    #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.btn_disabled:active,
    body#addresses .page-header .addresses-button a.btn.btn_disabled:active,
    body#addresses .addresses-footer a.btn.btn_disabled:active,
    body#history .orders .order .row .soy_actions_order a.btn.btn_disabled.soy_view_order:active,
    body#order-detail .order-message-form footer.form-footer button.btn.btn_disabled:active,
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn_disabled.btn-primary:active,
    body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.btn_disabled:active,
    body#discount .cart-rules .cart-rule ul li a.btn.btn_disabled:active,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToCsv:active,
    body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToPdf:active,
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.btn_disabled.wishlist-add-to-new:active,
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.btn_disabled.wishlist-product-addtocart:active,
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active,
    #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active,
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.btn_disabled.wishlist-add-to-new:active {
      background: #D8D8D8 0% 0% no-repeat padding-box;
      color: #002D74; }
      .soy_boton_primario:disabled:hover span, .form-footer .btn-primary:disabled:hover span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input:disabled:hover span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button:disabled:hover span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input:disabled:hover span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button:disabled:hover span, #registration.page-registration #content-wrapper #content > section.singup-form footer input:disabled:hover span, #registration.page-registration #content-wrapper #content > section.singup-form footer button:disabled:hover span, #registration.page-registration #content-wrapper #content > section #login-form footer input:disabled:hover span, #registration.page-registration #content-wrapper #content > section #login-form footer button:disabled:hover span, body#addresses .page-header .addresses-button a:disabled:hover span, body#addresses .addresses-footer a:disabled:hover span, body#history .orders .order .row .soy_actions_order a.soy_view_order:disabled:hover span, body#order-detail .order-message-form footer.form-footer button.btn:disabled:hover span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled:hover span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a:disabled:hover span, body#discount .cart-rules .cart-rule ul li a:disabled:hover span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:disabled:hover span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:disabled:hover span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:disabled:hover span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart:disabled:hover span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new:disabled:hover span, .soy_boton_primario:disabled:focus span, .form-footer .btn-primary:disabled:focus span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input:disabled:focus span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button:disabled:focus span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input:disabled:focus span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button:disabled:focus span, #registration.page-registration #content-wrapper #content > section.singup-form footer input:disabled:focus span, #registration.page-registration #content-wrapper #content > section.singup-form footer button:disabled:focus span, #registration.page-registration #content-wrapper #content > section #login-form footer input:disabled:focus span, #registration.page-registration #content-wrapper #content > section #login-form footer button:disabled:focus span, body#addresses .page-header .addresses-button a:disabled:focus span, body#addresses .addresses-footer a:disabled:focus span, body#history .orders .order .row .soy_actions_order a.soy_view_order:disabled:focus span, body#order-detail .order-message-form footer.form-footer button.btn:disabled:focus span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled:focus span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a:disabled:focus span, body#discount .cart-rules .cart-rule ul li a:disabled:focus span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:disabled:focus span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:disabled:focus span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:disabled:focus span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart:disabled:focus span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new:disabled:focus span, .soy_boton_primario:disabled:active span, .form-footer .btn-primary:disabled:active span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input:disabled:active span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button:disabled:active span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input:disabled:active span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button:disabled:active span, #registration.page-registration #content-wrapper #content > section.singup-form footer input:disabled:active span, #registration.page-registration #content-wrapper #content > section.singup-form footer button:disabled:active span, #registration.page-registration #content-wrapper #content > section #login-form footer input:disabled:active span, #registration.page-registration #content-wrapper #content > section #login-form footer button:disabled:active span, body#addresses .page-header .addresses-button a:disabled:active span, body#addresses .addresses-footer a:disabled:active span, body#history .orders .order .row .soy_actions_order a.soy_view_order:disabled:active span, body#order-detail .order-message-form footer.form-footer button.btn:disabled:active span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled:active span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a:disabled:active span, body#discount .cart-rules .cart-rule ul li a:disabled:active span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:disabled:active span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:disabled:active span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:disabled:active span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart:disabled:active span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new:disabled:active span, .soy_boton_primario.disabled:hover span, .form-footer .disabled.btn-primary:hover span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.disabled:hover span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.disabled:hover span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.disabled:hover span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.disabled:hover span, #registration.page-registration #content-wrapper #content > section.singup-form footer input.disabled:hover span, #registration.page-registration #content-wrapper #content > section.singup-form footer button.disabled:hover span, #registration.page-registration #content-wrapper #content > section #login-form footer input.disabled:hover span, #registration.page-registration #content-wrapper #content > section #login-form footer button.disabled:hover span, body#addresses .page-header .addresses-button a.disabled:hover span, body#addresses .addresses-footer a.disabled:hover span, body#history .orders .order .row .soy_actions_order a.disabled.soy_view_order:hover span, body#order-detail .order-message-form footer.form-footer button.disabled.btn:hover span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .disabled.btn-primary:hover span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.disabled:hover span, body#discount .cart-rules .cart-rule ul li a.disabled:hover span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToCsv:hover span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToPdf:hover span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .disabled.wishlist-add-to-new:hover span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .disabled.wishlist-product-addtocart:hover span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:hover span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.disabled.wishlist-add-to-new:hover span, .soy_boton_primario.disabled:focus span, .form-footer .disabled.btn-primary:focus span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.disabled:focus span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.disabled:focus span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.disabled:focus span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.disabled:focus span, #registration.page-registration #content-wrapper #content > section.singup-form footer input.disabled:focus span, #registration.page-registration #content-wrapper #content > section.singup-form footer button.disabled:focus span, #registration.page-registration #content-wrapper #content > section #login-form footer input.disabled:focus span, #registration.page-registration #content-wrapper #content > section #login-form footer button.disabled:focus span, body#addresses .page-header .addresses-button a.disabled:focus span, body#addresses .addresses-footer a.disabled:focus span, body#history .orders .order .row .soy_actions_order a.disabled.soy_view_order:focus span, body#order-detail .order-message-form footer.form-footer button.disabled.btn:focus span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .disabled.btn-primary:focus span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.disabled:focus span, body#discount .cart-rules .cart-rule ul li a.disabled:focus span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToCsv:focus span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToPdf:focus span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .disabled.wishlist-add-to-new:focus span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .disabled.wishlist-product-addtocart:focus span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:focus span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.disabled.wishlist-add-to-new:focus span, .soy_boton_primario.disabled:active span, .form-footer .disabled.btn-primary:active span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.disabled:active span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.disabled:active span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.disabled:active span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.disabled:active span, #registration.page-registration #content-wrapper #content > section.singup-form footer input.disabled:active span, #registration.page-registration #content-wrapper #content > section.singup-form footer button.disabled:active span, #registration.page-registration #content-wrapper #content > section #login-form footer input.disabled:active span, #registration.page-registration #content-wrapper #content > section #login-form footer button.disabled:active span, body#addresses .page-header .addresses-button a.disabled:active span, body#addresses .addresses-footer a.disabled:active span, body#history .orders .order .row .soy_actions_order a.disabled.soy_view_order:active span, body#order-detail .order-message-form footer.form-footer button.disabled.btn:active span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .disabled.btn-primary:active span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.disabled:active span, body#discount .cart-rules .cart-rule ul li a.disabled:active span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToCsv:active span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .disabled#exportDataToPdf:active span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .disabled.wishlist-add-to-new:active span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .disabled.wishlist-product-addtocart:active span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-primary:active span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.disabled.wishlist-add-to-new:active span, .soy_boton_primario.btn_disabled:hover span, .form-footer .btn_disabled.btn-primary:hover span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn_disabled:hover span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn_disabled:hover span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn_disabled:hover span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn_disabled:hover span, #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn_disabled:hover span, #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn_disabled:hover span, #registration.page-registration #content-wrapper #content > section #login-form footer input.btn_disabled:hover span, #registration.page-registration #content-wrapper #content > section #login-form footer button.btn_disabled:hover span, body#addresses .page-header .addresses-button a.btn_disabled:hover span, body#addresses .addresses-footer a.btn_disabled:hover span, body#history .orders .order .row .soy_actions_order a.btn_disabled.soy_view_order:hover span, body#order-detail .order-message-form footer.form-footer button.btn_disabled.btn:hover span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn_disabled.btn-primary:hover span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn_disabled:hover span, body#discount .cart-rules .cart-rule ul li a.btn_disabled:hover span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToCsv:hover span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToPdf:hover span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn_disabled.wishlist-add-to-new:hover span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn_disabled.wishlist-product-addtocart:hover span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:hover span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn_disabled.wishlist-add-to-new:hover span, .soy_boton_primario.btn_disabled:focus span, .form-footer .btn_disabled.btn-primary:focus span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn_disabled:focus span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn_disabled:focus span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn_disabled:focus span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn_disabled:focus span, #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn_disabled:focus span, #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn_disabled:focus span, #registration.page-registration #content-wrapper #content > section #login-form footer input.btn_disabled:focus span, #registration.page-registration #content-wrapper #content > section #login-form footer button.btn_disabled:focus span, body#addresses .page-header .addresses-button a.btn_disabled:focus span, body#addresses .addresses-footer a.btn_disabled:focus span, body#history .orders .order .row .soy_actions_order a.btn_disabled.soy_view_order:focus span, body#order-detail .order-message-form footer.form-footer button.btn_disabled.btn:focus span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn_disabled.btn-primary:focus span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn_disabled:focus span, body#discount .cart-rules .cart-rule ul li a.btn_disabled:focus span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToCsv:focus span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToPdf:focus span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn_disabled.wishlist-add-to-new:focus span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn_disabled.wishlist-product-addtocart:focus span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:focus span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn_disabled.wishlist-add-to-new:focus span, .soy_boton_primario.btn_disabled:active span, .form-footer .btn_disabled.btn-primary:active span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn_disabled:active span, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn_disabled:active span, #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn_disabled:active span, #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn_disabled:active span, #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn_disabled:active span, #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn_disabled:active span, #registration.page-registration #content-wrapper #content > section #login-form footer input.btn_disabled:active span, #registration.page-registration #content-wrapper #content > section #login-form footer button.btn_disabled:active span, body#addresses .page-header .addresses-button a.btn_disabled:active span, body#addresses .addresses-footer a.btn_disabled:active span, body#history .orders .order .row .soy_actions_order a.btn_disabled.soy_view_order:active span, body#order-detail .order-message-form footer.form-footer button.btn_disabled.btn:active span, body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn_disabled.btn-primary:active span, body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn_disabled:active span, body#discount .cart-rules .cart-rule ul li a.btn_disabled:active span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToCsv:active span, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn_disabled#exportDataToPdf:active span, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn_disabled.wishlist-add-to-new:active span, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn_disabled.wishlist-product-addtocart:active span, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active span, footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active span, footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active span, footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active span, footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active span, footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active span, #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active span, #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active span, #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active span, #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active span, #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-primary:active span, .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn_disabled.wishlist-add-to-new:active span,
      .btn-primary.soy_boton_primario:disabled:hover span,
      .form-footer .btn-primary:disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary:disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary:disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary:disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary:disabled:hover span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary:disabled:hover span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary:disabled:hover span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary:disabled:hover span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary:disabled:hover span,
      body#addresses .page-header .addresses-button a.btn-primary:disabled:hover span,
      body#addresses .addresses-footer a.btn-primary:disabled:hover span,
      body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order:disabled:hover span,
      body#order-detail .order-message-form footer.form-footer button.btn-primary.btn:disabled:hover span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled:hover span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary:disabled:hover span,
      body#discount .cart-rules .cart-rule ul li a.btn-primary:disabled:hover span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv:disabled:hover span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf:disabled:hover span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new:disabled:hover span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart:disabled:hover span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:hover span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new:disabled:hover span,
      .btn-primary.soy_boton_primario:disabled:focus span,
      .form-footer .btn-primary:disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary:disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary:disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary:disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary:disabled:focus span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary:disabled:focus span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary:disabled:focus span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary:disabled:focus span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary:disabled:focus span,
      body#addresses .page-header .addresses-button a.btn-primary:disabled:focus span,
      body#addresses .addresses-footer a.btn-primary:disabled:focus span,
      body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order:disabled:focus span,
      body#order-detail .order-message-form footer.form-footer button.btn-primary.btn:disabled:focus span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled:focus span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary:disabled:focus span,
      body#discount .cart-rules .cart-rule ul li a.btn-primary:disabled:focus span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv:disabled:focus span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf:disabled:focus span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new:disabled:focus span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart:disabled:focus span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:focus span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new:disabled:focus span,
      .btn-primary.soy_boton_primario:disabled:active span,
      .form-footer .btn-primary:disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary:disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary:disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary:disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary:disabled:active span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary:disabled:active span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary:disabled:active span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary:disabled:active span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary:disabled:active span,
      body#addresses .page-header .addresses-button a.btn-primary:disabled:active span,
      body#addresses .addresses-footer a.btn-primary:disabled:active span,
      body#history .orders .order .row .soy_actions_order a.btn-primary.soy_view_order:disabled:active span,
      body#order-detail .order-message-form footer.form-footer button.btn-primary.btn:disabled:active span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary:disabled:active span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary:disabled:active span,
      body#discount .cart-rules .cart-rule ul li a.btn-primary:disabled:active span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToCsv:disabled:active span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary#exportDataToPdf:disabled:active span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.wishlist-add-to-new:disabled:active span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.wishlist-product-addtocart:disabled:active span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:disabled:active span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.wishlist-add-to-new:disabled:active span,
      .btn-primary.soy_boton_primario.disabled:hover span,
      .form-footer .btn-primary.disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.disabled:hover span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.disabled:hover span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.disabled:hover span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.disabled:hover span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.disabled:hover span,
      body#addresses .page-header .addresses-button a.btn-primary.disabled:hover span,
      body#addresses .addresses-footer a.btn-primary.disabled:hover span,
      body#history .orders .order .row .soy_actions_order a.btn-primary.disabled.soy_view_order:hover span,
      body#order-detail .order-message-form footer.form-footer button.btn-primary.disabled.btn:hover span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.disabled:hover span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.disabled:hover span,
      body#discount .cart-rules .cart-rule ul li a.btn-primary.disabled:hover span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToCsv:hover span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToPdf:hover span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.disabled.wishlist-add-to-new:hover span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.disabled.wishlist-product-addtocart:hover span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:hover span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.disabled.wishlist-add-to-new:hover span,
      .btn-primary.soy_boton_primario.disabled:focus span,
      .form-footer .btn-primary.disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.disabled:focus span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.disabled:focus span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.disabled:focus span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.disabled:focus span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.disabled:focus span,
      body#addresses .page-header .addresses-button a.btn-primary.disabled:focus span,
      body#addresses .addresses-footer a.btn-primary.disabled:focus span,
      body#history .orders .order .row .soy_actions_order a.btn-primary.disabled.soy_view_order:focus span,
      body#order-detail .order-message-form footer.form-footer button.btn-primary.disabled.btn:focus span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.disabled:focus span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.disabled:focus span,
      body#discount .cart-rules .cart-rule ul li a.btn-primary.disabled:focus span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToCsv:focus span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToPdf:focus span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.disabled.wishlist-add-to-new:focus span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.disabled.wishlist-product-addtocart:focus span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:focus span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.disabled.wishlist-add-to-new:focus span,
      .btn-primary.soy_boton_primario.disabled:active span,
      .form-footer .btn-primary.disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.disabled:active span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.disabled:active span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.disabled:active span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.disabled:active span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.disabled:active span,
      body#addresses .page-header .addresses-button a.btn-primary.disabled:active span,
      body#addresses .addresses-footer a.btn-primary.disabled:active span,
      body#history .orders .order .row .soy_actions_order a.btn-primary.disabled.soy_view_order:active span,
      body#order-detail .order-message-form footer.form-footer button.btn-primary.disabled.btn:active span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.disabled:active span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.disabled:active span,
      body#discount .cart-rules .cart-rule ul li a.btn-primary.disabled:active span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToCsv:active span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.disabled#exportDataToPdf:active span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.disabled.wishlist-add-to-new:active span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.disabled.wishlist-product-addtocart:active span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.disabled:active span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.disabled.wishlist-add-to-new:active span,
      .btn-primary.soy_boton_primario.btn_disabled:hover span,
      .form-footer .btn-primary.btn_disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled:hover span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled:hover span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled:hover span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled:hover span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled:hover span,
      body#addresses .page-header .addresses-button a.btn-primary.btn_disabled:hover span,
      body#addresses .addresses-footer a.btn-primary.btn_disabled:hover span,
      body#history .orders .order .row .soy_actions_order a.btn-primary.btn_disabled.soy_view_order:hover span,
      body#order-detail .order-message-form footer.form-footer button.btn-primary.btn_disabled.btn:hover span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.btn_disabled:hover span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.btn_disabled:hover span,
      body#discount .cart-rules .cart-rule ul li a.btn-primary.btn_disabled:hover span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToCsv:hover span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToPdf:hover span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.btn_disabled.wishlist-add-to-new:hover span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.btn_disabled.wishlist-product-addtocart:hover span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:hover span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.btn_disabled.wishlist-add-to-new:hover span,
      .btn-primary.soy_boton_primario.btn_disabled:focus span,
      .form-footer .btn-primary.btn_disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled:focus span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled:focus span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled:focus span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled:focus span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled:focus span,
      body#addresses .page-header .addresses-button a.btn-primary.btn_disabled:focus span,
      body#addresses .addresses-footer a.btn-primary.btn_disabled:focus span,
      body#history .orders .order .row .soy_actions_order a.btn-primary.btn_disabled.soy_view_order:focus span,
      body#order-detail .order-message-form footer.form-footer button.btn-primary.btn_disabled.btn:focus span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.btn_disabled:focus span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.btn_disabled:focus span,
      body#discount .cart-rules .cart-rule ul li a.btn-primary.btn_disabled:focus span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToCsv:focus span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToPdf:focus span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.btn_disabled.wishlist-add-to-new:focus span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.btn_disabled.wishlist-product-addtocart:focus span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:focus span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.btn_disabled.wishlist-add-to-new:focus span,
      .btn-primary.soy_boton_primario.btn_disabled:active span,
      .form-footer .btn-primary.btn_disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled:active span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn-primary.btn_disabled:active span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn-primary.btn_disabled:active span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn-primary.btn_disabled:active span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn-primary.btn_disabled:active span,
      body#addresses .page-header .addresses-button a.btn-primary.btn_disabled:active span,
      body#addresses .addresses-footer a.btn-primary.btn_disabled:active span,
      body#history .orders .order .row .soy_actions_order a.btn-primary.btn_disabled.soy_view_order:active span,
      body#order-detail .order-message-form footer.form-footer button.btn-primary.btn_disabled.btn:active span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn-primary.btn_disabled:active span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn-primary.btn_disabled:active span,
      body#discount .cart-rules .cart-rule ul li a.btn-primary.btn_disabled:active span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToCsv:active span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn-primary.btn_disabled#exportDataToPdf:active span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn-primary.btn_disabled.wishlist-add-to-new:active span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-primary.btn_disabled.wishlist-product-addtocart:active span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary.btn_disabled:active span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn-primary.btn_disabled.wishlist-add-to-new:active span,
      .btn.soy_boton_primario:disabled:hover span,
      .form-footer .btn.btn-primary:disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn:disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn:disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn:disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn:disabled:hover span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn:disabled:hover span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn:disabled:hover span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn:disabled:hover span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn:disabled:hover span,
      body#addresses .page-header .addresses-button a.btn:disabled:hover span,
      body#addresses .addresses-footer a.btn:disabled:hover span,
      body#history .orders .order .row .soy_actions_order a.btn.soy_view_order:disabled:hover span,
      body#order-detail .order-message-form footer.form-footer button.btn:disabled:hover span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary:disabled:hover span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn:disabled:hover span,
      body#discount .cart-rules .cart-rule ul li a.btn:disabled:hover span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv:disabled:hover span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf:disabled:hover span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new:disabled:hover span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart:disabled:hover span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:hover span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new:disabled:hover span,
      .btn.soy_boton_primario:disabled:focus span,
      .form-footer .btn.btn-primary:disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn:disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn:disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn:disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn:disabled:focus span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn:disabled:focus span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn:disabled:focus span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn:disabled:focus span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn:disabled:focus span,
      body#addresses .page-header .addresses-button a.btn:disabled:focus span,
      body#addresses .addresses-footer a.btn:disabled:focus span,
      body#history .orders .order .row .soy_actions_order a.btn.soy_view_order:disabled:focus span,
      body#order-detail .order-message-form footer.form-footer button.btn:disabled:focus span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary:disabled:focus span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn:disabled:focus span,
      body#discount .cart-rules .cart-rule ul li a.btn:disabled:focus span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv:disabled:focus span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf:disabled:focus span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new:disabled:focus span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart:disabled:focus span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:focus span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new:disabled:focus span,
      .btn.soy_boton_primario:disabled:active span,
      .form-footer .btn.btn-primary:disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn:disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn:disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn:disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn:disabled:active span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn:disabled:active span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn:disabled:active span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn:disabled:active span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn:disabled:active span,
      body#addresses .page-header .addresses-button a.btn:disabled:active span,
      body#addresses .addresses-footer a.btn:disabled:active span,
      body#history .orders .order .row .soy_actions_order a.btn.soy_view_order:disabled:active span,
      body#order-detail .order-message-form footer.form-footer button.btn:disabled:active span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn-primary:disabled:active span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn:disabled:active span,
      body#discount .cart-rules .cart-rule ul li a.btn:disabled:active span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToCsv:disabled:active span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn#exportDataToPdf:disabled:active span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.wishlist-add-to-new:disabled:active span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.wishlist-product-addtocart:disabled:active span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:disabled:active span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.wishlist-add-to-new:disabled:active span,
      .btn.soy_boton_primario.disabled:hover span,
      .form-footer .btn.disabled.btn-primary:hover span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.disabled:hover span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.disabled:hover span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.disabled:hover span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.disabled:hover span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.disabled:hover span,
      body#addresses .page-header .addresses-button a.btn.disabled:hover span,
      body#addresses .addresses-footer a.btn.disabled:hover span,
      body#history .orders .order .row .soy_actions_order a.btn.disabled.soy_view_order:hover span,
      body#order-detail .order-message-form footer.form-footer button.btn.disabled:hover span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.disabled.btn-primary:hover span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.disabled:hover span,
      body#discount .cart-rules .cart-rule ul li a.btn.disabled:hover span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToCsv:hover span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToPdf:hover span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.disabled.wishlist-add-to-new:hover span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.disabled.wishlist-product-addtocart:hover span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:hover span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.disabled.wishlist-add-to-new:hover span,
      .btn.soy_boton_primario.disabled:focus span,
      .form-footer .btn.disabled.btn-primary:focus span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.disabled:focus span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.disabled:focus span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.disabled:focus span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.disabled:focus span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.disabled:focus span,
      body#addresses .page-header .addresses-button a.btn.disabled:focus span,
      body#addresses .addresses-footer a.btn.disabled:focus span,
      body#history .orders .order .row .soy_actions_order a.btn.disabled.soy_view_order:focus span,
      body#order-detail .order-message-form footer.form-footer button.btn.disabled:focus span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.disabled.btn-primary:focus span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.disabled:focus span,
      body#discount .cart-rules .cart-rule ul li a.btn.disabled:focus span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToCsv:focus span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToPdf:focus span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.disabled.wishlist-add-to-new:focus span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.disabled.wishlist-product-addtocart:focus span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:focus span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.disabled.wishlist-add-to-new:focus span,
      .btn.soy_boton_primario.disabled:active span,
      .form-footer .btn.disabled.btn-primary:active span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.disabled:active span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.disabled:active span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.disabled:active span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.disabled:active span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.disabled:active span,
      body#addresses .page-header .addresses-button a.btn.disabled:active span,
      body#addresses .addresses-footer a.btn.disabled:active span,
      body#history .orders .order .row .soy_actions_order a.btn.disabled.soy_view_order:active span,
      body#order-detail .order-message-form footer.form-footer button.btn.disabled:active span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.disabled.btn-primary:active span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.disabled:active span,
      body#discount .cart-rules .cart-rule ul li a.btn.disabled:active span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToCsv:active span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.disabled#exportDataToPdf:active span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.disabled.wishlist-add-to-new:active span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.disabled.wishlist-product-addtocart:active span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.disabled.btn-primary:active span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.disabled.wishlist-add-to-new:active span,
      .btn.soy_boton_primario.btn_disabled:hover span,
      .form-footer .btn.btn_disabled.btn-primary:hover span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.btn_disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.btn_disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.btn_disabled:hover span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.btn_disabled:hover span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.btn_disabled:hover span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.btn_disabled:hover span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.btn_disabled:hover span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.btn_disabled:hover span,
      body#addresses .page-header .addresses-button a.btn.btn_disabled:hover span,
      body#addresses .addresses-footer a.btn.btn_disabled:hover span,
      body#history .orders .order .row .soy_actions_order a.btn.btn_disabled.soy_view_order:hover span,
      body#order-detail .order-message-form footer.form-footer button.btn.btn_disabled:hover span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn_disabled.btn-primary:hover span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.btn_disabled:hover span,
      body#discount .cart-rules .cart-rule ul li a.btn.btn_disabled:hover span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToCsv:hover span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToPdf:hover span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.btn_disabled.wishlist-add-to-new:hover span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.btn_disabled.wishlist-product-addtocart:hover span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:hover span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.btn_disabled.wishlist-add-to-new:hover span,
      .btn.soy_boton_primario.btn_disabled:focus span,
      .form-footer .btn.btn_disabled.btn-primary:focus span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.btn_disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.btn_disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.btn_disabled:focus span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.btn_disabled:focus span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.btn_disabled:focus span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.btn_disabled:focus span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.btn_disabled:focus span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.btn_disabled:focus span,
      body#addresses .page-header .addresses-button a.btn.btn_disabled:focus span,
      body#addresses .addresses-footer a.btn.btn_disabled:focus span,
      body#history .orders .order .row .soy_actions_order a.btn.btn_disabled.soy_view_order:focus span,
      body#order-detail .order-message-form footer.form-footer button.btn.btn_disabled:focus span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn_disabled.btn-primary:focus span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.btn_disabled:focus span,
      body#discount .cart-rules .cart-rule ul li a.btn.btn_disabled:focus span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToCsv:focus span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToPdf:focus span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.btn_disabled.wishlist-add-to-new:focus span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.btn_disabled.wishlist-product-addtocart:focus span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:focus span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.btn_disabled.wishlist-add-to-new:focus span,
      .btn.soy_boton_primario.btn_disabled:active span,
      .form-footer .btn.btn_disabled.btn-primary:active span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer input.btn.btn_disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section.singup-form footer button.btn.btn_disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer input.btn.btn_disabled:active span,
      #authentication.page-authentication #content-wrapper #content > section #login-form footer button.btn.btn_disabled:active span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer input.btn.btn_disabled:active span,
      #registration.page-registration #content-wrapper #content > section.singup-form footer button.btn.btn_disabled:active span,
      #registration.page-registration #content-wrapper #content > section #login-form footer input.btn.btn_disabled:active span,
      #registration.page-registration #content-wrapper #content > section #login-form footer button.btn.btn_disabled:active span,
      body#addresses .page-header .addresses-button a.btn.btn_disabled:active span,
      body#addresses .addresses-footer a.btn.btn_disabled:active span,
      body#history .orders .order .row .soy_actions_order a.btn.btn_disabled.soy_view_order:active span,
      body#order-detail .order-message-form footer.form-footer button.btn.btn_disabled:active span,
      body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer .btn.btn_disabled.btn-primary:active span,
      body#order-slip .credit-slips .credit-slip ul li:last-of-type a.btn.btn_disabled:active span,
      body#discount .cart-rules .cart-rule ul li a.btn.btn_disabled:active span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToCsv:active span,
      body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .btn.btn_disabled#exportDataToPdf:active span,
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .btn.btn_disabled.wishlist-add-to-new:active span,
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn.btn_disabled.wishlist-product-addtocart:active span,
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active span,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active span,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active span,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active span,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active span,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active span,
      #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active span,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active span,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active span,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active span,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active span,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn.btn_disabled.btn-primary:active span,
      .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.btn.btn_disabled.wishlist-add-to-new:active span {
        color: #002D74; }

.soy_boton_filtro, body#category .filter-button #search_filter_toggler,
body#search .filter-button #search_filter_toggler,
body#manufacturer .filter-button #search_filter_toggler,
body#new-products .filter-button #search_filter_toggler,
body#prices-drop .filter-button #search_filter_toggler,
body#supplier .filter-button #search_filter_toggler,
body#best-sales .filter-button #search_filter_toggler, body#category #products #soy_bloque_filtros #search_filter_controls .ok,
body#search #products #soy_bloque_filtros #search_filter_controls .ok,
body#manufacturer #products #soy_bloque_filtros #search_filter_controls .ok,
body#new-products #products #soy_bloque_filtros #search_filter_controls .ok,
body#prices-drop #products #soy_bloque_filtros #search_filter_controls .ok,
body#supplier #products #soy_bloque_filtros #search_filter_controls .ok,
body#best-sales #products #soy_bloque_filtros #search_filter_controls .ok,
.btn-secondary.soy_boton_filtro,
body#category .filter-button .btn-secondary#search_filter_toggler,
body#search .filter-button .btn-secondary#search_filter_toggler,
body#manufacturer .filter-button .btn-secondary#search_filter_toggler,
body#new-products .filter-button .btn-secondary#search_filter_toggler,
body#prices-drop .filter-button .btn-secondary#search_filter_toggler,
body#supplier .filter-button .btn-secondary#search_filter_toggler,
body#best-sales .filter-button .btn-secondary#search_filter_toggler,
body#category #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok,
body#search #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok,
body#manufacturer #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok,
body#new-products #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok,
body#prices-drop #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok,
body#supplier #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok,
body#best-sales #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok,
.btn-tertiary.soy_boton_filtro,
body#category .filter-button .btn-tertiary#search_filter_toggler,
body#search .filter-button .btn-tertiary#search_filter_toggler,
body#manufacturer .filter-button .btn-tertiary#search_filter_toggler,
body#new-products .filter-button .btn-tertiary#search_filter_toggler,
body#prices-drop .filter-button .btn-tertiary#search_filter_toggler,
body#supplier .filter-button .btn-tertiary#search_filter_toggler,
body#best-sales .filter-button .btn-tertiary#search_filter_toggler,
body#category #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok,
body#search #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok,
body#manufacturer #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok,
body#new-products #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok,
body#prices-drop #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok,
body#supplier #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok,
body#best-sales #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok {
  background: #EAEAEA 0% 0% no-repeat padding-box;
  text-align: center;
  font: normal normal 500 1rem/1.188rem Roboto;
  letter-spacing: 0px;
  color: #4A4A4A;
  padding: 0.813rem;
  width: 10.438rem;
  border: none;
  box-shadow: none;
  cursor: pointer;
  text-transform: capitalize;
  -moz-border-radius: 23px;
  /* Mozilla */
  -webkit-border-radius: 23px;
  /* Safari */
  border-radius: 23px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center; }
  .soy_boton_filtro:hover, body#category .filter-button #search_filter_toggler:hover,
  body#search .filter-button #search_filter_toggler:hover,
  body#manufacturer .filter-button #search_filter_toggler:hover,
  body#new-products .filter-button #search_filter_toggler:hover,
  body#prices-drop .filter-button #search_filter_toggler:hover,
  body#supplier .filter-button #search_filter_toggler:hover,
  body#best-sales .filter-button #search_filter_toggler:hover, body#category #products #soy_bloque_filtros #search_filter_controls .ok:hover,
  body#search #products #soy_bloque_filtros #search_filter_controls .ok:hover,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .ok:hover,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .ok:hover,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .ok:hover,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .ok:hover,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .ok:hover,
  .btn-secondary.soy_boton_filtro:hover,
  body#category .filter-button .btn-secondary#search_filter_toggler:hover,
  body#search .filter-button .btn-secondary#search_filter_toggler:hover,
  body#manufacturer .filter-button .btn-secondary#search_filter_toggler:hover,
  body#new-products .filter-button .btn-secondary#search_filter_toggler:hover,
  body#prices-drop .filter-button .btn-secondary#search_filter_toggler:hover,
  body#supplier .filter-button .btn-secondary#search_filter_toggler:hover,
  body#best-sales .filter-button .btn-secondary#search_filter_toggler:hover,
  body#category #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:hover,
  body#search #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:hover,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:hover,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:hover,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:hover,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:hover,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:hover,
  .btn-tertiary.soy_boton_filtro:hover,
  body#category .filter-button .btn-tertiary#search_filter_toggler:hover,
  body#search .filter-button .btn-tertiary#search_filter_toggler:hover,
  body#manufacturer .filter-button .btn-tertiary#search_filter_toggler:hover,
  body#new-products .filter-button .btn-tertiary#search_filter_toggler:hover,
  body#prices-drop .filter-button .btn-tertiary#search_filter_toggler:hover,
  body#supplier .filter-button .btn-tertiary#search_filter_toggler:hover,
  body#best-sales .filter-button .btn-tertiary#search_filter_toggler:hover,
  body#category #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:hover,
  body#search #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:hover,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:hover,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:hover,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:hover,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:hover,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:hover {
    opacity: 0.6; }
  .soy_boton_filtro:focus, body#category .filter-button #search_filter_toggler:focus,
  body#search .filter-button #search_filter_toggler:focus,
  body#manufacturer .filter-button #search_filter_toggler:focus,
  body#new-products .filter-button #search_filter_toggler:focus,
  body#prices-drop .filter-button #search_filter_toggler:focus,
  body#supplier .filter-button #search_filter_toggler:focus,
  body#best-sales .filter-button #search_filter_toggler:focus, body#category #products #soy_bloque_filtros #search_filter_controls .ok:focus,
  body#search #products #soy_bloque_filtros #search_filter_controls .ok:focus,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .ok:focus,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .ok:focus,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .ok:focus,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .ok:focus,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .ok:focus, .soy_boton_filtro:active, body#category .filter-button #search_filter_toggler:active,
  body#search .filter-button #search_filter_toggler:active,
  body#manufacturer .filter-button #search_filter_toggler:active,
  body#new-products .filter-button #search_filter_toggler:active,
  body#prices-drop .filter-button #search_filter_toggler:active,
  body#supplier .filter-button #search_filter_toggler:active,
  body#best-sales .filter-button #search_filter_toggler:active, body#category #products #soy_bloque_filtros #search_filter_controls .ok:active,
  body#search #products #soy_bloque_filtros #search_filter_controls .ok:active,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .ok:active,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .ok:active,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .ok:active,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .ok:active,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .ok:active,
  .btn-secondary.soy_boton_filtro:focus,
  body#category .filter-button .btn-secondary#search_filter_toggler:focus,
  body#search .filter-button .btn-secondary#search_filter_toggler:focus,
  body#manufacturer .filter-button .btn-secondary#search_filter_toggler:focus,
  body#new-products .filter-button .btn-secondary#search_filter_toggler:focus,
  body#prices-drop .filter-button .btn-secondary#search_filter_toggler:focus,
  body#supplier .filter-button .btn-secondary#search_filter_toggler:focus,
  body#best-sales .filter-button .btn-secondary#search_filter_toggler:focus,
  body#category #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:focus,
  body#search #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:focus,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:focus,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:focus,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:focus,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:focus,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:focus,
  .btn-secondary.soy_boton_filtro:active,
  body#category .filter-button .btn-secondary#search_filter_toggler:active,
  body#search .filter-button .btn-secondary#search_filter_toggler:active,
  body#manufacturer .filter-button .btn-secondary#search_filter_toggler:active,
  body#new-products .filter-button .btn-secondary#search_filter_toggler:active,
  body#prices-drop .filter-button .btn-secondary#search_filter_toggler:active,
  body#supplier .filter-button .btn-secondary#search_filter_toggler:active,
  body#best-sales .filter-button .btn-secondary#search_filter_toggler:active,
  body#category #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:active,
  body#search #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:active,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:active,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:active,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:active,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:active,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:active,
  .btn-tertiary.soy_boton_filtro:focus,
  body#category .filter-button .btn-tertiary#search_filter_toggler:focus,
  body#search .filter-button .btn-tertiary#search_filter_toggler:focus,
  body#manufacturer .filter-button .btn-tertiary#search_filter_toggler:focus,
  body#new-products .filter-button .btn-tertiary#search_filter_toggler:focus,
  body#prices-drop .filter-button .btn-tertiary#search_filter_toggler:focus,
  body#supplier .filter-button .btn-tertiary#search_filter_toggler:focus,
  body#best-sales .filter-button .btn-tertiary#search_filter_toggler:focus,
  body#category #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:focus,
  body#search #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:focus,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:focus,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:focus,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:focus,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:focus,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:focus,
  .btn-tertiary.soy_boton_filtro:active,
  body#category .filter-button .btn-tertiary#search_filter_toggler:active,
  body#search .filter-button .btn-tertiary#search_filter_toggler:active,
  body#manufacturer .filter-button .btn-tertiary#search_filter_toggler:active,
  body#new-products .filter-button .btn-tertiary#search_filter_toggler:active,
  body#prices-drop .filter-button .btn-tertiary#search_filter_toggler:active,
  body#supplier .filter-button .btn-tertiary#search_filter_toggler:active,
  body#best-sales .filter-button .btn-tertiary#search_filter_toggler:active,
  body#category #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:active,
  body#search #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:active,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:active,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:active,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:active,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:active,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:active {
    outline: none;
    text-decoration: none; }
  .soy_boton_filtro:disabled, body#category .filter-button #search_filter_toggler:disabled,
  body#search .filter-button #search_filter_toggler:disabled,
  body#manufacturer .filter-button #search_filter_toggler:disabled,
  body#new-products .filter-button #search_filter_toggler:disabled,
  body#prices-drop .filter-button #search_filter_toggler:disabled,
  body#supplier .filter-button #search_filter_toggler:disabled,
  body#best-sales .filter-button #search_filter_toggler:disabled, body#category #products #soy_bloque_filtros #search_filter_controls .ok:disabled,
  body#search #products #soy_bloque_filtros #search_filter_controls .ok:disabled,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .ok:disabled,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .ok:disabled,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .ok:disabled,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .ok:disabled,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .ok:disabled, .soy_boton_filtro.disabled, body#category .filter-button .disabled#search_filter_toggler,
  body#search .filter-button .disabled#search_filter_toggler,
  body#manufacturer .filter-button .disabled#search_filter_toggler,
  body#new-products .filter-button .disabled#search_filter_toggler,
  body#prices-drop .filter-button .disabled#search_filter_toggler,
  body#supplier .filter-button .disabled#search_filter_toggler,
  body#best-sales .filter-button .disabled#search_filter_toggler, body#category #products #soy_bloque_filtros #search_filter_controls .disabled.ok,
  body#search #products #soy_bloque_filtros #search_filter_controls .disabled.ok,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .disabled.ok,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .disabled.ok,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .disabled.ok,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .disabled.ok,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .disabled.ok, .soy_boton_filtro.btn_disabled, body#category .filter-button .btn_disabled#search_filter_toggler,
  body#search .filter-button .btn_disabled#search_filter_toggler,
  body#manufacturer .filter-button .btn_disabled#search_filter_toggler,
  body#new-products .filter-button .btn_disabled#search_filter_toggler,
  body#prices-drop .filter-button .btn_disabled#search_filter_toggler,
  body#supplier .filter-button .btn_disabled#search_filter_toggler,
  body#best-sales .filter-button .btn_disabled#search_filter_toggler, body#category #products #soy_bloque_filtros #search_filter_controls .btn_disabled.ok,
  body#search #products #soy_bloque_filtros #search_filter_controls .btn_disabled.ok,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .btn_disabled.ok,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .btn_disabled.ok,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .btn_disabled.ok,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .btn_disabled.ok,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .btn_disabled.ok,
  .btn-secondary.soy_boton_filtro:disabled,
  body#category .filter-button .btn-secondary#search_filter_toggler:disabled,
  body#search .filter-button .btn-secondary#search_filter_toggler:disabled,
  body#manufacturer .filter-button .btn-secondary#search_filter_toggler:disabled,
  body#new-products .filter-button .btn-secondary#search_filter_toggler:disabled,
  body#prices-drop .filter-button .btn-secondary#search_filter_toggler:disabled,
  body#supplier .filter-button .btn-secondary#search_filter_toggler:disabled,
  body#best-sales .filter-button .btn-secondary#search_filter_toggler:disabled,
  body#category #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:disabled,
  body#search #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:disabled,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:disabled,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:disabled,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:disabled,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:disabled,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .btn-secondary.ok:disabled,
  .btn-secondary.soy_boton_filtro.disabled,
  body#category .filter-button .btn-secondary.disabled#search_filter_toggler,
  body#search .filter-button .btn-secondary.disabled#search_filter_toggler,
  body#manufacturer .filter-button .btn-secondary.disabled#search_filter_toggler,
  body#new-products .filter-button .btn-secondary.disabled#search_filter_toggler,
  body#prices-drop .filter-button .btn-secondary.disabled#search_filter_toggler,
  body#supplier .filter-button .btn-secondary.disabled#search_filter_toggler,
  body#best-sales .filter-button .btn-secondary.disabled#search_filter_toggler,
  body#category #products #soy_bloque_filtros #search_filter_controls .btn-secondary.disabled.ok,
  body#search #products #soy_bloque_filtros #search_filter_controls .btn-secondary.disabled.ok,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .btn-secondary.disabled.ok,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .btn-secondary.disabled.ok,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .btn-secondary.disabled.ok,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .btn-secondary.disabled.ok,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .btn-secondary.disabled.ok,
  .btn-secondary.soy_boton_filtro.btn_disabled,
  body#category .filter-button .btn-secondary.btn_disabled#search_filter_toggler,
  body#search .filter-button .btn-secondary.btn_disabled#search_filter_toggler,
  body#manufacturer .filter-button .btn-secondary.btn_disabled#search_filter_toggler,
  body#new-products .filter-button .btn-secondary.btn_disabled#search_filter_toggler,
  body#prices-drop .filter-button .btn-secondary.btn_disabled#search_filter_toggler,
  body#supplier .filter-button .btn-secondary.btn_disabled#search_filter_toggler,
  body#best-sales .filter-button .btn-secondary.btn_disabled#search_filter_toggler,
  body#category #products #soy_bloque_filtros #search_filter_controls .btn-secondary.btn_disabled.ok,
  body#search #products #soy_bloque_filtros #search_filter_controls .btn-secondary.btn_disabled.ok,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .btn-secondary.btn_disabled.ok,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .btn-secondary.btn_disabled.ok,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .btn-secondary.btn_disabled.ok,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .btn-secondary.btn_disabled.ok,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .btn-secondary.btn_disabled.ok,
  .btn-tertiary.soy_boton_filtro:disabled,
  body#category .filter-button .btn-tertiary#search_filter_toggler:disabled,
  body#search .filter-button .btn-tertiary#search_filter_toggler:disabled,
  body#manufacturer .filter-button .btn-tertiary#search_filter_toggler:disabled,
  body#new-products .filter-button .btn-tertiary#search_filter_toggler:disabled,
  body#prices-drop .filter-button .btn-tertiary#search_filter_toggler:disabled,
  body#supplier .filter-button .btn-tertiary#search_filter_toggler:disabled,
  body#best-sales .filter-button .btn-tertiary#search_filter_toggler:disabled,
  body#category #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:disabled,
  body#search #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:disabled,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:disabled,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:disabled,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:disabled,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:disabled,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.ok:disabled,
  .btn-tertiary.soy_boton_filtro.disabled,
  body#category .filter-button .btn-tertiary.disabled#search_filter_toggler,
  body#search .filter-button .btn-tertiary.disabled#search_filter_toggler,
  body#manufacturer .filter-button .btn-tertiary.disabled#search_filter_toggler,
  body#new-products .filter-button .btn-tertiary.disabled#search_filter_toggler,
  body#prices-drop .filter-button .btn-tertiary.disabled#search_filter_toggler,
  body#supplier .filter-button .btn-tertiary.disabled#search_filter_toggler,
  body#best-sales .filter-button .btn-tertiary.disabled#search_filter_toggler,
  body#category #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.disabled.ok,
  body#search #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.disabled.ok,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.disabled.ok,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.disabled.ok,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.disabled.ok,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.disabled.ok,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.disabled.ok,
  .btn-tertiary.soy_boton_filtro.btn_disabled,
  body#category .filter-button .btn-tertiary.btn_disabled#search_filter_toggler,
  body#search .filter-button .btn-tertiary.btn_disabled#search_filter_toggler,
  body#manufacturer .filter-button .btn-tertiary.btn_disabled#search_filter_toggler,
  body#new-products .filter-button .btn-tertiary.btn_disabled#search_filter_toggler,
  body#prices-drop .filter-button .btn-tertiary.btn_disabled#search_filter_toggler,
  body#supplier .filter-button .btn-tertiary.btn_disabled#search_filter_toggler,
  body#best-sales .filter-button .btn-tertiary.btn_disabled#search_filter_toggler,
  body#category #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.btn_disabled.ok,
  body#search #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.btn_disabled.ok,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.btn_disabled.ok,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.btn_disabled.ok,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.btn_disabled.ok,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.btn_disabled.ok,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .btn-tertiary.btn_disabled.ok {
    cursor: not-allowed; }

.soy_boton_terciario, body#category #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary, body#category #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary,
body#search #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary,
body#search #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary,
body#manufacturer #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary,
body#manufacturer #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary,
body#new-products #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary,
body#new-products #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary,
body#prices-drop #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary,
body#prices-drop #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary,
body#supplier #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary,
body#supplier #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary,
body#best-sales #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary,
body#best-sales #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary, body#history .orders .order .row .soy_actions_order a.soy_reorder, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-button-add, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
#main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
#main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
#main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
#main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
#main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
.btn-tertiary.soy_boton_terciario,
body#category #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary,
body#category #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary,
body#search #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary,
body#search #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary,
body#manufacturer #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary,
body#manufacturer #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary,
body#new-products #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary,
body#new-products #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary,
body#prices-drop #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary,
body#prices-drop #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary,
body#supplier #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary,
body#supplier #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary,
body#best-sales #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary,
body#best-sales #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary,
body#history .orders .order .row .soy_actions_order a.btn-tertiary.soy_reorder,
body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-tertiary.wishlist-button-add,
footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary,
footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary,
footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary,
footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary,
footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary,
footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary,
#main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary,
#main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary,
#main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary,
#main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary,
#main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary,
#main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary {
  background: #EAEAEA 0% 0% no-repeat padding-box;
  color: #4A4A4A;
  font: normal normal 500 1rem/1.188rem Roboto;
  padding: 0.438rem;
  border: none;
  box-shadow: none;
  cursor: pointer;
  text-transform: uppercase;
  -moz-border-radius: 23px;
  /* Mozilla */
  -webkit-border-radius: 23px;
  /* Safari */
  border-radius: 23px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center; }
  .soy_boton_terciario:hover, body#category #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:hover, body#category #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:hover,
  body#search #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:hover,
  body#search #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:hover,
  body#manufacturer #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:hover,
  body#manufacturer #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:hover,
  body#new-products #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:hover,
  body#new-products #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:hover,
  body#prices-drop #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:hover,
  body#prices-drop #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:hover,
  body#supplier #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:hover,
  body#supplier #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:hover,
  body#best-sales #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:hover,
  body#best-sales #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:hover, body#history .orders .order .row .soy_actions_order a.soy_reorder:hover, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-button-add:hover, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:hover,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:hover,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:hover,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:hover,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:hover,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:hover, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:hover,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:hover,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:hover,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:hover,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:hover,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:hover, .soy_boton_terciario:focus, body#category #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:focus, body#category #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:focus,
  body#search #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:focus,
  body#search #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:focus,
  body#manufacturer #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:focus,
  body#manufacturer #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:focus,
  body#new-products #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:focus,
  body#new-products #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:focus,
  body#prices-drop #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:focus,
  body#prices-drop #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:focus,
  body#supplier #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:focus,
  body#supplier #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:focus,
  body#best-sales #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:focus,
  body#best-sales #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:focus, body#history .orders .order .row .soy_actions_order a.soy_reorder:focus, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-button-add:focus, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:focus,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:focus,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:focus,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:focus,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:focus,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:focus, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:focus,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:focus,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:focus,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:focus,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:focus,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:focus, .soy_boton_terciario:active, body#category #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:active, body#category #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:active,
  body#search #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:active,
  body#search #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:active,
  body#manufacturer #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:active,
  body#manufacturer #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:active,
  body#new-products #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:active,
  body#new-products #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:active,
  body#prices-drop #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:active,
  body#prices-drop #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:active,
  body#supplier #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:active,
  body#supplier #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:active,
  body#best-sales #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:active,
  body#best-sales #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:active, body#history .orders .order .row .soy_actions_order a.soy_reorder:active, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-button-add:active, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:active,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:active,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:active,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:active,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:active,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:active, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:active,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:active,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:active,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:active,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:active,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:active,
  .btn-tertiary.soy_boton_terciario:hover,
  body#category #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:hover,
  body#category #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:hover,
  body#search #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:hover,
  body#search #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:hover,
  body#manufacturer #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:hover,
  body#manufacturer #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:hover,
  body#new-products #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:hover,
  body#new-products #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:hover,
  body#prices-drop #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:hover,
  body#prices-drop #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:hover,
  body#supplier #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:hover,
  body#supplier #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:hover,
  body#best-sales #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:hover,
  body#best-sales #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:hover,
  body#history .orders .order .row .soy_actions_order a.btn-tertiary.soy_reorder:hover,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-tertiary.wishlist-button-add:hover,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:hover,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:hover,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:hover,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:hover,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:hover,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:hover,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:hover,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:hover,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:hover,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:hover,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:hover,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:hover,
  .btn-tertiary.soy_boton_terciario:focus,
  body#category #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:focus,
  body#category #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:focus,
  body#search #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:focus,
  body#search #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:focus,
  body#manufacturer #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:focus,
  body#manufacturer #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:focus,
  body#new-products #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:focus,
  body#new-products #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:focus,
  body#prices-drop #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:focus,
  body#prices-drop #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:focus,
  body#supplier #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:focus,
  body#supplier #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:focus,
  body#best-sales #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:focus,
  body#best-sales #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:focus,
  body#history .orders .order .row .soy_actions_order a.btn-tertiary.soy_reorder:focus,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-tertiary.wishlist-button-add:focus,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:focus,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:focus,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:focus,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:focus,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:focus,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:focus,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:focus,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:focus,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:focus,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:focus,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:focus,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:focus,
  .btn-tertiary.soy_boton_terciario:active,
  body#category #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:active,
  body#category #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:active,
  body#search #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:active,
  body#search #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:active,
  body#manufacturer #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:active,
  body#manufacturer #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:active,
  body#new-products #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:active,
  body#new-products #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:active,
  body#prices-drop #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:active,
  body#prices-drop #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:active,
  body#supplier #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:active,
  body#supplier #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:active,
  body#best-sales #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:active,
  body#best-sales #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:active,
  body#history .orders .order .row .soy_actions_order a.btn-tertiary.soy_reorder:active,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-tertiary.wishlist-button-add:active,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:active,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:active,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:active,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:active,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:active,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:active,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:active,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:active,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:active,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:active,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:active,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:active {
    text-decoration: none;
    outline: none;
    border: none;
    opacity: 0.6; }
  .soy_boton_terciario:disabled, body#category #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:disabled, body#category #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:disabled,
  body#search #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:disabled,
  body#search #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:disabled,
  body#manufacturer #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:disabled,
  body#manufacturer #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:disabled,
  body#new-products #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:disabled,
  body#new-products #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:disabled,
  body#prices-drop #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:disabled,
  body#prices-drop #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:disabled,
  body#supplier #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:disabled,
  body#supplier #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:disabled,
  body#best-sales #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:disabled,
  body#best-sales #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:disabled, body#history .orders .order .row .soy_actions_order a.soy_reorder:disabled, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-button-add:disabled, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:disabled,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:disabled,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:disabled,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:disabled,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:disabled,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:disabled, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:disabled,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:disabled,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:disabled,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:disabled,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:disabled,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary:disabled, .soy_boton_terciario.disabled, body#category #products #soy_bloque_filtros #_desktop_search_filters_clear_all .disabled.btn-tertiary, body#category #products #soy_bloque_filtros #_mobile_search_filters_clear_all .disabled.btn-tertiary,
  body#search #products #soy_bloque_filtros #_desktop_search_filters_clear_all .disabled.btn-tertiary,
  body#search #products #soy_bloque_filtros #_mobile_search_filters_clear_all .disabled.btn-tertiary,
  body#manufacturer #products #soy_bloque_filtros #_desktop_search_filters_clear_all .disabled.btn-tertiary,
  body#manufacturer #products #soy_bloque_filtros #_mobile_search_filters_clear_all .disabled.btn-tertiary,
  body#new-products #products #soy_bloque_filtros #_desktop_search_filters_clear_all .disabled.btn-tertiary,
  body#new-products #products #soy_bloque_filtros #_mobile_search_filters_clear_all .disabled.btn-tertiary,
  body#prices-drop #products #soy_bloque_filtros #_desktop_search_filters_clear_all .disabled.btn-tertiary,
  body#prices-drop #products #soy_bloque_filtros #_mobile_search_filters_clear_all .disabled.btn-tertiary,
  body#supplier #products #soy_bloque_filtros #_desktop_search_filters_clear_all .disabled.btn-tertiary,
  body#supplier #products #soy_bloque_filtros #_mobile_search_filters_clear_all .disabled.btn-tertiary,
  body#best-sales #products #soy_bloque_filtros #_desktop_search_filters_clear_all .disabled.btn-tertiary,
  body#best-sales #products #soy_bloque_filtros #_mobile_search_filters_clear_all .disabled.btn-tertiary, body#history .orders .order .row .soy_actions_order a.disabled.soy_reorder, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .disabled.wishlist-button-add, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-secondary,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-secondary,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-secondary,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-secondary,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-secondary,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-secondary, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-secondary,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-secondary,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-secondary,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-secondary,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-secondary,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .disabled.btn-secondary, .soy_boton_terciario.btn_disabled, body#category #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn_disabled.btn-tertiary, body#category #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn_disabled.btn-tertiary,
  body#search #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn_disabled.btn-tertiary,
  body#search #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn_disabled.btn-tertiary,
  body#manufacturer #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn_disabled.btn-tertiary,
  body#manufacturer #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn_disabled.btn-tertiary,
  body#new-products #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn_disabled.btn-tertiary,
  body#new-products #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn_disabled.btn-tertiary,
  body#prices-drop #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn_disabled.btn-tertiary,
  body#prices-drop #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn_disabled.btn-tertiary,
  body#supplier #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn_disabled.btn-tertiary,
  body#supplier #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn_disabled.btn-tertiary,
  body#best-sales #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn_disabled.btn-tertiary,
  body#best-sales #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn_disabled.btn-tertiary, body#history .orders .order .row .soy_actions_order a.btn_disabled.soy_reorder, body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn_disabled.wishlist-button-add, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-secondary,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-secondary,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-secondary,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-secondary,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-secondary,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-secondary, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-secondary,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-secondary,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-secondary,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-secondary,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-secondary,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn_disabled.btn-secondary,
  .btn-tertiary.soy_boton_terciario:disabled,
  body#category #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:disabled,
  body#category #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:disabled,
  body#search #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:disabled,
  body#search #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:disabled,
  body#manufacturer #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:disabled,
  body#manufacturer #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:disabled,
  body#new-products #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:disabled,
  body#new-products #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:disabled,
  body#prices-drop #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:disabled,
  body#prices-drop #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:disabled,
  body#supplier #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:disabled,
  body#supplier #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:disabled,
  body#best-sales #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary:disabled,
  body#best-sales #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary:disabled,
  body#history .orders .order .row .soy_actions_order a.btn-tertiary.soy_reorder:disabled,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-tertiary.wishlist-button-add:disabled,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:disabled,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:disabled,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:disabled,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:disabled,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:disabled,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:disabled,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:disabled,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:disabled,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:disabled,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:disabled,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:disabled,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn-secondary:disabled,
  .btn-tertiary.soy_boton_terciario.disabled,
  body#category #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary.disabled,
  body#category #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary.disabled,
  body#search #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary.disabled,
  body#search #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary.disabled,
  body#manufacturer #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary.disabled,
  body#manufacturer #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary.disabled,
  body#new-products #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary.disabled,
  body#new-products #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary.disabled,
  body#prices-drop #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary.disabled,
  body#prices-drop #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary.disabled,
  body#supplier #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary.disabled,
  body#supplier #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary.disabled,
  body#best-sales #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary.disabled,
  body#best-sales #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary.disabled,
  body#history .orders .order .row .soy_actions_order a.btn-tertiary.disabled.soy_reorder,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-tertiary.disabled.wishlist-button-add,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.disabled.btn-secondary,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.disabled.btn-secondary,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.disabled.btn-secondary,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.disabled.btn-secondary,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.disabled.btn-secondary,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.disabled.btn-secondary,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.disabled.btn-secondary,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.disabled.btn-secondary,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.disabled.btn-secondary,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.disabled.btn-secondary,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.disabled.btn-secondary,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.disabled.btn-secondary,
  .btn-tertiary.soy_boton_terciario.btn_disabled,
  body#category #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary.btn_disabled,
  body#category #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary.btn_disabled,
  body#search #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary.btn_disabled,
  body#search #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary.btn_disabled,
  body#manufacturer #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary.btn_disabled,
  body#manufacturer #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary.btn_disabled,
  body#new-products #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary.btn_disabled,
  body#new-products #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary.btn_disabled,
  body#prices-drop #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary.btn_disabled,
  body#prices-drop #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary.btn_disabled,
  body#supplier #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary.btn_disabled,
  body#supplier #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary.btn_disabled,
  body#best-sales #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary.btn_disabled,
  body#best-sales #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary.btn_disabled,
  body#history .orders .order .row .soy_actions_order a.btn-tertiary.btn_disabled.soy_reorder,
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .btn-tertiary.btn_disabled.wishlist-button-add,
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn_disabled.btn-secondary,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn_disabled.btn-secondary,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn_disabled.btn-secondary,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn_disabled.btn-secondary,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn_disabled.btn-secondary,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn_disabled.btn-secondary,
  #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn_disabled.btn-secondary,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn_disabled.btn-secondary,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn_disabled.btn-secondary,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn_disabled.btn-secondary,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn_disabled.btn-secondary,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-tertiary.btn_disabled.btn-secondary {
    cursor: not-allowed; }

/*-------------------------------------------------------------
# CUSTOM RADIO 
--------------------------------------------------------------*/
.custom-radio {
  border: 1px solid black; }
  .custom-radio > input[type=radio]:checked + span {
    background-color: #002D74;
    width: 14px;
    height: 14px; }

/*-------------------------------------------------------------
# BREADCRUMBS 
--------------------------------------------------------------*/
#wrapper .breadcrumb {
  margin: 18px 0; }
  #wrapper .breadcrumb li a {
    color: #808080; }
    #wrapper .breadcrumb li a span {
      text-align: left;
      font: normal normal 500 0.8rem Roboto;
      letter-spacing: 0px;
      color: #808080; }
    #wrapper .breadcrumb li a .active {
      text-align: left;
      font: normal normal 500 0.8rem Roboto;
      letter-spacing: 0px;
      color: #4A4A4A; }
  #wrapper .breadcrumb li:after {
    content: "/";
    color: #808080;
    margin-left: 0;
    margin-right: 0; }
  #wrapper .breadcrumb li .fa-home {
    font-style: normal;
    text-align: left;
    font: normal normal 500 0.8rem Roboto;
    letter-spacing: 0px; }

@media all and (min-width: 992px) {
  #wrapper .breadcrumb li a span {
    font: normal normal 500 0.8rem Roboto; }
  #wrapper .breadcrumb li a .active {
    font: normal normal 500 0.8rem Roboto; }
  #wrapper .breadcrumb li .fa-home {
    font: normal normal 500 0.8rem Roboto;}
  #wrapper .breadcrumb li .fa-home::before {
      display: none; } 
  }

/*-------------------------------------------------------------
# PAGINATION
--------------------------------------------------------------*/
nav.pagination {
  margin-top: 0;
  margin-bottom: 52px; }
  nav.pagination .col-12 {
    max-width: 17.375rem;
    margin: 0 auto; }
    nav.pagination .col-12:first-of-type {
      display: none; }
    nav.pagination .col-12 .page-list {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-pack: space-between;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center;
      padding: 0; }
      nav.pagination .col-12 .page-list li a, nav.pagination .col-12 .page-list li a.js-search-link {
        display: block;
        padding: 4px 10px;
        font: normal normal 500 1.125rem/1.313rem Roboto;
        letter-spacing: 0px;
        color: #444645; }
        nav.pagination .col-12 .page-list li a.soy-icon-page, nav.pagination .col-12 .page-list li a.js-search-link.soy-icon-page {
          background: #D8D8D8 0% 0% no-repeat padding-box;
          -moz-border-radius: 50%;
          /* Mozilla */
          -webkit-border-radius: 50%;
          /* Safari */
          border-radius: 50%;
          padding: 6px;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -ms-justify-content: center;
          justify-content: center;
          -ms-flex-pack: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          align-items: center; }
          nav.pagination .col-12 .page-list li a.soy-icon-page i, nav.pagination .col-12 .page-list li a.js-search-link.soy-icon-page i {
            font-weight: 500;
            font-size: 1rem;
            line-height: 1rem;
            color: #ffffff;
            margin-right: -1px; }
      nav.pagination .col-12 .page-list li.current {
        background: #CBE6EE 0% 0% no-repeat padding-box;
        -moz-border-radius: 50%;
        /* Mozilla */
        -webkit-border-radius: 50%;
        /* Safari */
        border-radius: 50%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center; }
      nav.pagination .col-12 .page-list::after {
        display: none; }

@media all and (min-width: 992px) {
  nav.pagination {
    margin-top: 11px;
    margin-bottom: 45px; } }

/*-------------------------------------------------------------
# AUTOCOMPLETE 
--------------------------------------------------------------*/
ul.ui-autocomplete {
  -webkit-transition: opacity 0.3s ease-in;
  /* Safari */
  -moz-transition: opacity 0.3s ease-in;
  /* Mozilla */
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  background: white;
  border-top: none;
  border-bottom: 1px solid #eee;
  -moz-border-radius: 0px;
  /* Mozilla */
  -webkit-border-radius: 0px;
  /* Safari */
  border-radius: 0px;
  padding-bottom: 0px; }
  ul.ui-autocomplete > li.ui-menu-item > a {
    padding: .625rem;
    border-bottom: 1px solid #f6f6f6;
    -moz-border-radius: 0px;
    /* Mozilla */
    -webkit-border-radius: 0px;
    /* Safari */
    border-radius: 0px;
    cursor: pointer; }
    ul.ui-autocomplete > li.ui-menu-item > a.ui-state-focus {
      color: #60B3CC;
      background: white;
      border: 0px;
      border-bottom: 1px solid #002D74;
      margin: 0px; }
    ul.ui-autocomplete > li.ui-menu-item > a > span:nth-child(2) {
      display: none; }

/*-------------------------------------------------------------
# CUSTOM CLASSES 
--------------------------------------------------------------*/
.soy_title_l,
.soy_title_m,
.soy_title_s {
  color: black;
  text-transform: uppercase;
  font-weight: 400; }

.soy_title_l {
  font-size: 3rem;
  font-weight: 900; }

.soy_title_m {
  font-size: 2.2rem;
  font-weight: 600; }

.soy_title_s {
  font-weight: 500;
  font-size: 1.2rem; }

.soy_hidden {
  display: none !important; }

/*-------------------------------------------------------------
# FORMULARIOS 
--------------------------------------------------------------*/
.form-fields .form-group .form-control-label, .form-fields .form-group .f-label {
  text-align: left;
  font: normal normal bold 0.875rem/1.25rem Roboto;
  letter-spacing: 0px;
  color: #444645; }

.form-fields .form-group .form-control-comment {
  text-align: left;
  font: normal normal normal 0.875rem/1.25rem Roboto;
  letter-spacing: 0px;
  color: #444645; }

.form-fields .form-group .radio-inline {
  text-align: left;
  font: normal normal normal 0.875rem/1.25rem Roboto;
  letter-spacing: 0px;
  color: #444645;
  margin-right: 1rem; }

.form-fields .form-group .form-control, .form-fields .form-group input, .form-fields .form-group input.form-control, .form-fields .form-group select.form-control:not([size]):not([multiple]) {
  text-align: left;
  font: normal normal normal 0.875rem/1.25rem Roboto;
  letter-spacing: 0px;
  color: #444645;
  background-color: #ffffff;
  border: 1px solid #9D9D9D;
  height: 3rem; }
  .form-fields .form-group .form-control::placeholder, .form-fields .form-group input::placeholder, .form-fields .form-group input.form-control::placeholder, .form-fields .form-group select.form-control:not([size]):not([multiple])::placeholder {
    text-align: left;
    font: normal normal normal 0.875rem/1.25rem Roboto;
    letter-spacing: 0px;
    color: #9D9D9D; }
  .form-fields .form-group .form-control:focus, .form-fields .form-group input:focus, .form-fields .form-group input.form-control:focus, .form-fields .form-group select.form-control:not([size]):not([multiple]):focus {
    outline: none;
    border: solid 1px #60B3CC; }

.form-fields .form-group input[type="email"] {
  text-align: left;
  font: normal normal normal 0.875rem/1.25rem Roboto;
  letter-spacing: 0px;
  color: #444645;
  background-color: #ffffff;
  border: 1px solid #9D9D9D;
  height: 3rem; }
  .form-fields .form-group input[type="email"]::placeholder {
    text-align: left;
    font: normal normal normal 0.875rem/1.25rem Roboto;
    letter-spacing: 0px;
    color: #9D9D9D; }
  .form-fields .form-group input[type="email"]:focus {
    outline: none;
    border: solid 1px #60B3CC; }

.form-fields .form-group input[type="password"], .form-fields .form-group .form-control.js-visible-password {
  text-align: left;
  font: normal normal normal 0.875rem/1.25rem Roboto;
  letter-spacing: 0px;
  color: #444645;
  background-color: #ffffff;
  border: 1px solid #9D9D9D;
  height: 3rem; }
  .form-fields .form-group input[type="password"]:focus, .form-fields .form-group .form-control.js-visible-password:focus {
    outline: none;
    border: solid 1px #60B3CC; }

.form-fields .form-group .input-group-btn > .btn[data-action="show-password"] {
  background-color: #4A4A4A;
  font-size: 0.875rem;
  opacity: 1; }
  .form-fields .form-group .input-group-btn > .btn[data-action="show-password"]:hover, .form-fields .form-group .input-group-btn > .btn[data-action="show-password"]:active, .form-fields .form-group .input-group-btn > .btn[data-action="show-password"]:focus {
    background-color: #4A4A4A;
    font-size: 0.875rem;
    opacity: 0.6; }

.form-fields .form-group input[type="file"] {
  text-align: left;
  font: normal normal normal 0.875rem/1.25rem Roboto;
  letter-spacing: 0px;
  color: #444645;
  background-color: #ffffff;
  border: 1px solid #9D9D9D;
  height: 3rem; }
  .form-fields .form-group input[type="file"]::placeholder {
    text-align: left;
    font: normal normal normal 0.875rem/1.25rem Roboto;
    letter-spacing: 0px;
    color: #9D9D9D; }
  .form-fields .form-group input[type="file"]:focus {
    outline: none;
    border: solid 1px #60B3CC; }

.form-fields .form-group textarea {
  text-align: left;
  font: normal normal normal 0.875rem/1.25rem Roboto;
  letter-spacing: 0px;
  color: #444645;
  background-color: #ffffff;
  border: 1px solid #9D9D9D;
  min-height: 6rem; }
  .form-fields .form-group textarea::placeholder {
    text-align: left;
    font: normal normal normal 0.875rem/1.25rem Roboto;
    letter-spacing: 0px;
    color: #9D9D9D; }
  .form-fields .form-group textarea:focus {
    outline: none;
    border: solid 1px #60B3CC; }

.form-fields .form-group span {
  text-align: left;
  font: normal normal normal 0.875rem/1.25rem Roboto;
  letter-spacing: 0px;
  color: #444645; }

.form-fields .form-group .focus {
  outline: none;
  border-color: #60B3CC; }

.form-fields .form-group span.custom-checkbox {
  display: block; }
  .form-fields .form-group span.custom-checkbox label span {
    margin-top: 2px; }

.form-footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center; }
  .form-footer .btn-primary {
    width: 100%;
    max-width: 576px; }

@media all and (min-width: 992px) {
  .form-fields .form-group .form-control-label {
    font: normal normal bold 1rem/1.375rem Roboto; }
  .form-fields .form-group .form-control-comment {
    font: normal normal normal 1rem/1.375rem Roboto; }
  .form-fields .form-group .radio-inline {
    font: normal normal normal 1rem/1.375rem Roboto; }
  .form-fields .form-group .form-control, .form-fields .form-group input, .form-fields .form-group input.form-control, .form-fields .form-group select.form-control:not([size]):not([multiple]) {
    font: normal normal normal 1rem/1.375rem Roboto; }
    .form-fields .form-group .form-control::placeholder, .form-fields .form-group input::placeholder, .form-fields .form-group input.form-control::placeholder, .form-fields .form-group select.form-control:not([size]):not([multiple])::placeholder {
      font: normal normal normal 1rem/1.375rem Roboto; }
  .form-fields .form-group input[type="email"] {
    font: normal normal normal 1rem/1.375rem Roboto; }
    .form-fields .form-group input[type="email"]::placeholder {
      font: normal normal normal 1rem/1.375rem Roboto; }
  .form-fields .form-group input[type="password"], .form-fields .form-group .form-control.js-visible-password {
    font: normal normal normal 1rem/1.375rem Roboto; }
  .form-fields .form-group input[type="file"] {
    font: normal normal normal 1rem/1.375rem Roboto; }
    .form-fields .form-group input[type="file"]::placeholder {
      font: normal normal normal 1rem/1.375rem Roboto; }
  .form-fields .form-group textarea {
    font: normal normal normal 1rem/1.375rem Roboto; }
    .form-fields .form-group textarea::placeholder {
      font: normal normal normal 1rem/1.375rem Roboto; }
  .form-fields .form-group span {
    font: normal normal normal 1rem/1.375rem Roboto; } }

/*-------------------------------------------------------------
# OTROS 
--------------------------------------------------------------*/
.form-control:focus {
  outline: 1px solid #60B3CC; }

.input-group .input-group-btn > .btn {
  background: #515352; }

.card {
  -webkit-box-shadow: 2px 5px 8px 0 rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 2px 5px 8px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 2px 5px 8px 0 rgba(0, 0, 0, 0.09);
  border: none; }

#wrapper {
  background: white;
  box-shadow: none; }

#index #wrapper .container .row {
  margin-left: 0px;
  margin-right: 0px; }

.btn:focus,
button:focus {
  outline: none; }

/*-------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/*-------------------------------------------------------------
	## HEADER
--------------------------------------------------------------*/
/* Llevarnos el comportamiento de collapse en mobile */
#soy_mobile_top_menu_wrapper .top-menu .collapse,
#soy_mobile_top_menu_wrapper .top-menu .sub-menu.collapse {
  display: none; }

#soy_mobile_top_menu_wrapper .top-menu .collapse.in {
  display: block; }

.searchbar-autocomplete li span {
  color: black; }

#header #_desktop_top_menu.menu.js-top-menu {
  margin-bottom: 0px; }

@media (max-width: 767px) {
  body .searchbar-autocomplete {
    top: 140px !important;
    left: 0px !important; }
  #search_widget form i.clear {
    right: 50px;
    cursor: pointer; } }

ul.ui-autocomplete > li.ui-menu-item > a > span:nth-child(2) {
  display: block; }

#header {
  width: 100%;
  background-color: #002D74;
  position: relative;
  margin-bottom: 55px;
  border-bottom: 1px solid #eee;
  border-bottom: none;
  /*-------------------------------------------------------------
    # BLOQUE LOGO, CARRITO E ICONO MENÚ 
    --------------------------------------------------------------*/
  /*-------------------------------------------------------------
    # BLOQUE BUSCADOR 
    --------------------------------------------------------------*/
  /*-------------------------------------------------------------
    # BLOQUE TOP NAV
    --------------------------------------------------------------*/ }
  #header.is-open {
    background-color: #002D74; }
  #header .header-top {
    display: none; }
  #header a:focus {
    text-decoration: none; }
  #header .soy_mensaje_top {
    padding: 0px; }
  #header .cart-products-count {
    background: #60B3CC;
    border-radius: 15px;
    width: 20px;
    display: inline-block;
    height: 20px;
    position: absolute;
    font-size: 12px;
    right: 8px;
    font-weight: 700;
    margin-top: 9px;
    text-align: center; }
  #header .header-nav {
    display: block;
    width: 100%;
    margin: 0;
    border: none;
    background: transparent;
    max-width: unset;
    max-height: 3.688rem;
    clear: both; }
    #header .header-nav .soy_content_nav {
      background: #002D74; }
    #header .header-nav #soy_mobile_top_menu_wrapper {
      margin-top: 0;
      position: absolute;
      left: -100%;
      top: 100%;
      width: 90%;
      max-width: 500px;
      z-index: 999;
      transition: all ease 1s;
      background: #FFF;
      padding: 20px;
      overflow: auto;
      -webkit-box-shadow: 8px 10px 14px -9px #515151;
      -moz-box-shadow: 8px 10px 14px -9px #515151;
      box-shadow: 8px 10px 14px -9px #515151; }
      #header .header-nav #soy_mobile_top_menu_wrapper.opened {
        display: block;
        left: 0; }
      #header .header-nav #soy_mobile_top_menu_wrapper ul.top-menu li a {
        text-transform: uppercase;
        padding: .825rem;
        padding-left: 1.5rem; }
        #header .header-nav #soy_mobile_top_menu_wrapper ul.top-menu li a:hover {
          color: #002D74; }
      #header .header-nav #soy_mobile_top_menu_wrapper #_mobile_user_info .logout {
        display: none; }
      #header .header-nav #soy_mobile_top_menu_wrapper #_mobile_user_info .account,
      #header .header-nav #soy_mobile_top_menu_wrapper #_mobile_user_info .user-info {
        font-size: 1.3rem;
        display: block;
        overflow-x: hidden;
        color: #002D74;
        margin: 0;
        text-align: left; }
        #header .header-nav #soy_mobile_top_menu_wrapper #_mobile_user_info .account i,
        #header .header-nav #soy_mobile_top_menu_wrapper #_mobile_user_info .user-info i {
          vertical-align: top; }
        #header .header-nav #soy_mobile_top_menu_wrapper #_mobile_user_info .account h5,
        #header .header-nav #soy_mobile_top_menu_wrapper #_mobile_user_info .user-info h5 {
          display: inline-block;
          margin-left: .4rem;
          font-size: 1.2rem;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; }
    #header .header-nav #soy_menu_icon {
      width: 45px;
      height: 45px;
      padding: 10px;
      margin: 0;
      text-align: center;
      cursor: pointer;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center; }
      #header .header-nav #soy_menu_icon i {
        color: #ffffff;
        line-height: inherit;
        width: fit-content;
        height: fit-content; }
      #header .header-nav #soy_menu_icon:hover {
        opacity: 0.6; }
    #header .header-nav .soy_header_logo_menu {
      float: left;
      padding: 10px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center; }
      #header .header-nav .soy_header_logo_menu {
        margin-top: 0px; }
    #header .header-nav .soy_header_icons {
      float: right;
      padding: 10px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: row-reverse;
      -moz-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center; }
      #header .header-nav .soy_header_icons .blockcart,
      #header .header-nav .soy_header_icons .user-info .account,
      #header .header-nav .soy_header_icons a {
        width: 45px;
        height: 45px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center; }
    #header .header-nav #_mobile_logo {
      width: inherit;
      text-align: center;
      padding: 8px 0px;
      display: inline-block;
      vertical-align: middle;
      line-height: 24px;
      margin-left: 14px; }
      #header .header-nav #_mobile_logo a {
        display: block;
        margin: 0 auto;
        width: inherit;
        height: fit-content;
        line-height: 18px; }
        #header .header-nav #_mobile_logo a img {
          max-width: 4rem;
          height: auto; 
          margin-bottom: -16px;}
    #header .header-nav #_mobile_cart,
    #header .header-nav #_mobile_user_logo,
    #header .header-nav #_mobile_wishlist {
      float: none;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center;
      padding: 0;
      margin: 0px;
      width: fit-content;
      height: fit-content; }
      #header .header-nav #_mobile_cart a, #header .header-nav #_mobile_cart span,
      #header .header-nav #_mobile_user_logo a,
      #header .header-nav #_mobile_user_logo span,
      #header .header-nav #_mobile_wishlist a,
      #header .header-nav #_mobile_wishlist span {
        color: white; }
      #header .header-nav #_mobile_cart .user-info,
      #header .header-nav #_mobile_user_logo .user-info,
      #header .header-nav #_mobile_wishlist .user-info {
        margin-left: 0px;
        margin-top: 0; }
    #header .header-nav #_mobile_user_logo .account {
      margin-left: 0px;
      margin-top: 0; }
    #header .header-nav #_mobile_wishlist a {
      margin-top: 0; }
      #header .header-nav #_mobile_wishlist a .soy-fav-relleno {
        font-size: 20px; }
    #header .header-nav #_mobile_cart {
      float: none;
      display: inline-block;
      width: fit-content;
      text-align: center;
      padding: 0;
      background-color: #002D74;
      color: white;
      margin-right: 0; }
      #header .header-nav #_mobile_cart:hover .blockcart.active p {
        color: #747474; }
      #header .header-nav #_mobile_cart:hover .blockcart.active h5 {
        color: #747474; }
      #header .header-nav #_mobile_cart .cart-preview.active {
        background: none; }
      #header .header-nav #_mobile_cart .blockcart {
        background: transparent;
        padding: 0px;
        margin: 0;
        display: flex;
        align-items: center; }
        #header .header-nav #_mobile_cart .blockcart .header {
          margin-top: 0; }
        #header .header-nav #_mobile_cart .blockcart p {
          color: white; }
        #header .header-nav #_mobile_cart .blockcart .cart-description-mobile {
          text-transform: uppercase;
          font-size: .8rem; }
        #header .header-nav #_mobile_cart .blockcart .cart-description-desktop {
          display: none; }
      #header .header-nav #_mobile_cart i {
        color: white; }
  #header .menu.js-top-menu {
    display: none; }
  #header > #search_widget {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 99;
    overflow: hidden;
    padding: 6px 18px;
    background-color: #002D74;
    margin-top: 0;
    margin-bottom: 0; }
    #header > #search_widget form {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center; }
      #header > #search_widget form button:nth-child(1) {
        right: 10px;
        top: 10%;
        font-size: 20px;
        vertical-align: top;
        cursor: pointer; }
      #header > #search_widget form i.search {
        padding: 0;
        right: 15px;
        color: #002D74; }
      #header > #search_widget form i.clear {
        padding: 0;
        display: none; }
      #header > #search_widget form .mobile-icon-search {
        left: 5px;
        font-size: 30px;
        cursor: pointer; }
      #header > #search_widget form input[type="text"] {
        border: none;
        width: 100%;
        background-color: white;
        padding: 13px 20px;
        border-radius: 50px;
        text-align: left;
        font: normal normal bold 0.875rem/1rem Roboto;
        letter-spacing: 0px;
        color: #002D74; }
        #header > #search_widget form input[type="text"]::placeholder {
          color: rgba(0, 45, 116, 0.22); }
        #header > #search_widget form input[type="text"]:focus {
          outline: 1px solid #002D74; }
          #header > #search_widget form input[type="text"]:focus + button .search {
            color: white; }
      #header > #search_widget form button {
        color: white; }
  #header #topNavHeader {
    height: 20px;
    background-color: #60B3CC;
    color: #000000;
    padding: 5px;
    padding-left: 1rem;
    display: table;
    width: 100%;
    text-align: right; }
    #header #topNavHeader #soy_banner_top {
      padding: 0; }
      #header #topNavHeader #soy_banner_top .soy_icono_banner {
        display: none; }
      #header #topNavHeader #soy_banner_top .soy_mensaje_top span {
        text-align: center;
        font: normal normal bold 0.875rem/1rem Roboto;
        letter-spacing: 0px;
        color: #ffffff;
        text-transform: uppercase;
        font-size: 14px; }
    #header #topNavHeader #contact_link {
      margin-right: 1.5rem;
      display: none; }
      #header #topNavHeader #contact_link .atCliente-icon img {
        width: .9rem;
        vertical-align: top;
        margin-top: .1rem; }
      #header #topNavHeader #contact_link h5 {
        margin-left: .4rem;
        display: inline-block;
        margin-bottom: 0;
        font-size: .7rem;
        font-weight: 200;
        text-transform: uppercase;
        vertical-align: top;
        margin-top: .3rem; }
      #header #topNavHeader #contact_link a {
        color: #000000; }
    #header #topNavHeader .block-contact {
      font-size: .8rem;
      border: none; }
      #header #topNavHeader .block-contact > .row > div, #header #topNavHeader .block-contact > .row > a {
        padding: 0;
        text-align: left;
        color: #000000; }
      #header #topNavHeader .block-contact > .row > a > i {
        display: none;
        margin-right: .5rem;
        color: #000000; }
      #header #topNavHeader .block-contact > .row > div {
        display: none; }
  #header .soy-cart, #header .soy-user {
    font-size: 20px; }
  #header .clearfix {
    clear: both; }

/** 
 * Responsive a partir de 575px
**/
@media screen and (min-width: 576px) {
  #header {
    /*-------------------------------------------------------------
        # BLOQUE TOP NAV
        --------------------------------------------------------------*/ }
    #header #topNavHeader #contact_link {
      display: inline-block; } }

/** 
 * Responsive a partir de 768px
**/
@media screen and (min-width: 768px) {
  #header {
    /*-------------------------------------------------------------
        # BLOQUE TOP NAV
        --------------------------------------------------------------*/
    /*-------------------------------------------------------------
        # BLOQUE LOGO, CARRITO E ICONO MENÚ 
        --------------------------------------------------------------*/ }
    #header #topNavHeader #contact_link {
      display: inline-block; }
    #header .header-nav .top-logo a .logo {
      max-width: 6.875rem; } }

/** 
 * Responsive a partir de 992px
**/
@media screen and (min-width: 992px) {
  #header {
    margin-bottom: 0px;
    /*-------------------------------------------------------------
        # BLOQUE TOP NAV
        --------------------------------------------------------------*/
    /*-------------------------------------------------------------
        # BLOQUE LOGO, CARRITO E ICONO MENÚ 
        --------------------------------------------------------------*/
    /*-------------------------------------------------------------
        # BLOQUE BUSCADOR
        --------------------------------------------------------------*/ }
    #header #topNavHeader {
      padding: 5px; }
      #header #topNavHeader #soy_banner_top {
        padding: 0; }
        #header #topNavHeader #soy_banner_top .soy_mensaje_top span {
          font: normal normal bold 1rem/1.188rem Roboto; }
      #header #topNavHeader .block-contact {
        font-size: 0.8rem; }
        #header #topNavHeader .block-contact > .row > a.block-contact-item {
          width: auto;
          margin-right: 1rem; }
          #header #topNavHeader .block-contact > .row > a.block-contact-item > i {
            display: inline-block; }
          #header #topNavHeader .block-contact > .row > a.block-contact-item > b {
            display: none; }
        #header #topNavHeader .block-contact > .row > div.block-contact-item {
          display: inline-block; }
          #header #topNavHeader .block-contact > .row > div.block-contact-item > i {
            font-weight: 500;
            margin-right: 0.4rem; }
    #header #soymenu_main_ul {
      max-width: 1400px;
      margin: 0 auto; }
    #header .header-top {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-pack: space-between;
      -webkit-align-items: flex-end;
      -moz-align-items: flex-end;
      -ms-align-items: flex-end;
      align-items: flex-end;
      padding-bottom: 0;
      padding-top: 0;
      width: 100%;
      margin: 0 auto;
      text-align: center;
      height: 3.5rem;
      background-color: #002D74;
      position: relative;
      max-width: 1400px; }
      #header .header-top > .clearfix {
        display: none; }
      #header .header-top #_desktop_logo {
        padding: 3.5rem 1rem 0rem 1rem;
        padding-left: 0px;
        padding-top: 0px;
        float: left;
        width: 25%;
        text-align: left; }
        #header .header-top #_desktop_logo h1 {
          line-height: inherit; }
        #header .header-top #_desktop_logo a {
          display: block;
          opacity: 1; }
          #header .header-top #_desktop_logo a img {
            width: 115px;
            height: auto;
            max-width: 115px;
            margin-bottom: -8px; }
      #header .header-top .header-top-middle {
        display: none; }
        #header .header-top .header-top-middle #soymenu_main_ul {
          text-align: center; }
          #header .header-top .header-top-middle #soymenu_main_ul a {
            color: #fff; }
      #header .header-top .right-nav {
        float: right;
        width: 17%;
        padding: 0px;
        padding-right: 15px;
        margin-top: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: flex-end;
        -moz-justify-content: flex-end;
        -ms-justify-content: flex-end;
        justify-content: flex-end;
        -ms-flex-pack: flex-end;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        line-height: 40px; }
        #header .header-top .right-nav > * {
          margin-left: 19px; }
        #header .header-top .right-nav .corazon_header_desktop {
          font-size: 20px;
          margin-right: 0;
          margin-bottom: 5px; }
        #header .header-top .right-nav #_desktop_cart,
        #header .header-top .right-nav #_desktop_language_selector,
        #header .header-top .right-nav .user-info {
          display: inline-block !important; }
          #header .header-top .right-nav #_desktop_cart span, #header .header-top .right-nav #_desktop_cart i,
          #header .header-top .right-nav #_desktop_language_selector span,
          #header .header-top .right-nav #_desktop_language_selector i,
          #header .header-top .right-nav .user-info span,
          #header .header-top .right-nav .user-info i {
            color: #ffffff; }
            #header .header-top .right-nav #_desktop_cart span:hover, #header .header-top .right-nav #_desktop_cart i:hover,
            #header .header-top .right-nav #_desktop_language_selector span:hover,
            #header .header-top .right-nav #_desktop_language_selector i:hover,
            #header .header-top .right-nav .user-info span:hover,
            #header .header-top .right-nav .user-info i:hover {
              color: #60B3CC; }
        #header .header-top .right-nav #_desktop_cart .blockcart:hover {
          color: #60B3CC; }
        #header .header-top .right-nav #_desktop_cart .blockcart .cart-products-count {
          color: #ffffff;
          right: inherit;
          margin-left: -7px; }
          #header .header-top .right-nav #_desktop_cart .blockcart .cart-products-count:hover {
            color: #ffffff; }
        #header .header-top .right-nav #_desktop_cart .blockcart.inactive span:hover {
          color: #ffffff; }
        #header .header-top .right-nav #_desktop_cart .blockcart.inactive:hover {
          color: #ffffff; }
        #header .header-top .right-nav #_desktop_language_selector .expand-more {
          text-transform: uppercase; }
        #header .header-top .right-nav #_desktop_language_selector:hover span, #header .header-top .right-nav #_desktop_language_selector:hover i {
          color: #60B3CC; }
        #header .header-top .right-nav #_desktop_language_selector .btn-unstyle {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -ms-justify-content: center;
          justify-content: center;
          -ms-flex-pack: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          align-items: center; }
        #header .header-top .right-nav #_desktop_language_selector .soy_language_wrapper {
          display: none; }
        #header .header-top .right-nav #_desktop_language_selector .dropdown-menu {
          min-width: 4rem;
          left: -15px; }
          #header .header-top .right-nav #_desktop_language_selector .dropdown-menu li:hover {
            background-color: #60B3CC;
            opacity: 0.6; }
            #header .header-top .right-nav #_desktop_language_selector .dropdown-menu li:hover .dropdown-item {
              color: #ffffff;
              opacity: 1; }
              #header .header-top .right-nav #_desktop_language_selector .dropdown-menu li:hover .dropdown-item:hover {
                opacity: 1; }
          #header .header-top .right-nav #_desktop_language_selector .dropdown-menu .dropdown-item {
            color: #444645;
            text-transform: uppercase; }
        #header .header-top .right-nav > div.sales-item-nav {
          padding: 0px 7px;
          width: 120px;
          display: inline-block; }
          #header .header-top .right-nav > div.sales-item-nav .logout {
            display: none; }
          #header .header-top .right-nav > div.sales-item-nav:hover * {
            color: #7e7e7e; }
          #header .header-top .right-nav > div.sales-item-nav > div {
            margin: 0;
            margin-top: 0.9375rem;
            padding: 0;
            text-align: center; }
            #header .header-top .right-nav > div.sales-item-nav > div .header {
              margin-top: 0; }
            #header .header-top .right-nav > div.sales-item-nav > div i {
              width: 20px;
              margin: 0 auto;
              font-size: 25px;
              color: #000; }
            #header .header-top .right-nav > div.sales-item-nav > div h5 {
              font-size: .65rem;
              margin-top: 10px;
              font-weight: 300;
              text-transform: uppercase;
              color: #000; }
            #header .header-top .right-nav > div.sales-item-nav > div img {
              vertical-align: top; }
            #header .header-top .right-nav > div.sales-item-nav > div .cart-description-mobile {
              display: none; }
            #header .header-top .right-nav > div.sales-item-nav > div .cart-description-dektop {
              display: block; }
          #header .header-top .right-nav > div.sales-item-nav .blockcart {
            background: transparent; }
            #header .header-top .right-nav > div.sales-item-nav .blockcart .cart-products-count {
              margin: 0 auto;
              background-color: #002D74;
              color: #ffffff;
              padding: 2px;
              font-weight: 600;
              font-size: 15px;
              width: 25px;
              height: 25px;
              -moz-border-radius: 30px;
              /* Mozilla */
              -webkit-border-radius: 30px;
              /* Safari */
              border-radius: 30px; }
            #header .header-top .right-nav > div.sales-item-nav .blockcart h5, #header .header-top .right-nav > div.sales-item-nav .blockcart a {
              color: black; }
    #header > #search_widget {
      left: 38%;
      top: 32%;
      width: 25%;
      height: auto;
      overflow: visible;
      padding: 1rem;
      padding-top: 0px;
      margin-bottom: 0px; }
      #header > #search_widget form button:nth-child(1) {
        left: 10px;
        top: 10%;
        padding: 0px;
        color: #D9DADA; }
        #header > #search_widget form button:nth-child(1):hover {
          color: #bbb; }
      #header > #search_widget form .mobile-icon-search {
        right: -2.5rem;
        font-size: 3rem;
        left: unset;
        bottom: -.5rem; }
        #header > #search_widget form .mobile-icon-search i {
          color: #bbb; }
          #header > #search_widget form .mobile-icon-search i:hover {
            color: #aaa; }
      #header > #search_widget form input[type="text"] {
        color: #272727;
        background-color: white;
        border-bottom: 1px solid #cbcdcc;
        border-radius: 30px;
        -moz-border-radius: 30px;
        -webkit-border-radius: 30px; }
        #header > #search_widget form input[type="text"]::-webkit-input-placeholder {
          /* Edge */
          color: #959797; }
        #header > #search_widget form input[type="text"]:-ms-input-placeholder {
          /* Internet Explorer 10-11 */
          color: #959797; }
        #header > #search_widget form input[type="text"]::placeholder {
          color: #959797; }
        #header > #search_widget form input[type="text"]:focus {
          outline: #D9DADA; }
          #header > #search_widget form input[type="text"]:focus + button .search {
            color: #D9DADA; }
      #header > #search_widget form button {
        color: white; }
      #header > #search_widget form .material-icons {
        right: 1rem;
        color: black; }
    #header .header-nav {
      display: none; }
    #header #_desktop_top_menu.menu.js-top-menu {
      font-size: 1rem;
      text-align: center;
      display: block;
      padding: 1.8rem 0rem .2rem 0rem;
      width: 100%;
      text-transform: uppercase;
      padding-top: 10px; }
      #header #_desktop_top_menu.menu.js-top-menu #top-menu {
        margin: 0;
        text-align: left;
        text-align: center;
        margin-bottom: 0px; }
        #header #_desktop_top_menu.menu.js-top-menu #top-menu .sub-menu {
          display: none !important; }
        #header #_desktop_top_menu.menu.js-top-menu #top-menu > li > a {
          color: #002D74;
          font-weight: 300;
          -webkit-transition: all 0.4s ease-out;
          /* Safari */
          -moz-transition: all 0.4s ease-out;
          /* Mozilla */
          -o-transition: all 0.4s ease-out;
          transition: all 0.4s ease-out; }
          #header #_desktop_top_menu.menu.js-top-menu #top-menu > li > a:hover {
            color: #60B3CC;
            -webkit-transition: all 0.2s ease-in;
            /* Safari */
            -moz-transition: all 0.2s ease-in;
            /* Mozilla */
            -o-transition: all 0.2s ease-in;
            transition: all 0.2s ease-in; }
    #header a {
      color: white; }
  #header div.header-top {
    padding: 0 15px; } }

/** 
 * Responsive a partir de 1200px
**/
@media screen and (min-width: 1200px) {
  #header .header-nav {
    padding: 0% 2%;
    padding-top: 2rem; }
    #header .header-nav .right-nav > div.sales-item-nav > div h5 {
      font-size: .7rem; } }

/** 
 * Responsive a partir de 1500px
**/
@media screen and (min-width: 1500px) {
  #header .header-nav {
    width: 25%; } }

/*----------------------
	MENU HEADER ABIERTO
----------------------*/
@media all and (max-width: 767px) {
  #header #soy_mobile_top_menu_wrapper.opened .js-top-menu mobile {
    clear: both; }
  #header #soy_mobile_top_menu_wrapper.opened #soymenu a {
    clear: both;
    float: none;
    padding: 1rem 1rem 1rem 0; }
  #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul {
    padding-left: 15px; }
    #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul li.soymenu_category {
      height: fit-content;
      border-bottom: 1px solid #FFFFFF; }
      #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul li.soymenu_category:first-of-type {
        border-top: 1px solid #FFFFFF; }
      #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul li.soymenu_category .soymm_content_link {
        height: fit-content; }
      #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul li.soymenu_category.has_submenu .soymm_content_link {
        height: fit-content;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        justify-content: space-between;
        -ms-flex-pack: space-between;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center; }
        #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul li.soymenu_category.has_submenu .soymm_content_link .dropdown-item, #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul li.soymenu_category.has_submenu .soymm_content_link a {
          float: none;
          clear: both; }
        #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul li.soymenu_category.has_submenu .soymm_content_link .soymenu_dropdown .soymenu_collapse .soymm_down, #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul li.soymenu_category.has_submenu .soymm_content_link .soymenu_dropdown .soymenu_collapse .soymm_up {
          position: static;
          margin-bottom: -3px; }
      #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul li.soymenu_category.has_submenu .soy-content-submenu .soymenu_subcategories.collapsing, #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul li.soymenu_category.has_submenu .soy-content-submenu .soymenu_subcategories.collapse.in {
        margin: 0 -19px;
        margin-bottom: -1px; }
      #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul li.soymenu_category.has_submenu .soy-content-submenu .soymenu_subcategories .row {
        background-color: #ffffff;
        padding-bottom: 22px;
        padding-top: 22px;
        margin: 0; }
        #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul li.soymenu_category.has_submenu .soy-content-submenu .soymenu_subcategories .row ul li a {
          text-align: left;
          font: normal normal bold 1rem/1.188rem Roboto;
          letter-spacing: 0px;
          color: #002D74;
          text-transform: capitalize;
          padding: 0;
          margin-bottom: 11px; }
  #header #soy_mobile_top_menu_wrapper.opened .js-top-menu-bottom {
    clear: both; }
    #header #soy_mobile_top_menu_wrapper.opened .js-top-menu-bottom .language-selector-wrapper #language-selector-label {
      display: none; }
    #header #soy_mobile_top_menu_wrapper.opened .js-top-menu-bottom .language-selector-wrapper .language-selector .soy_language_wrapper {
      max-width: 3.75rem;
      margin-left: 14px; }
      #header #soy_mobile_top_menu_wrapper.opened .js-top-menu-bottom .language-selector-wrapper .language-selector .soy_language_wrapper:hover {
        cursor: pointer; }
    #header #soy_mobile_top_menu_wrapper.opened .js-top-menu-bottom .language-selector-wrapper .language-selector select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none; }
      #header #soy_mobile_top_menu_wrapper.opened .js-top-menu-bottom .language-selector-wrapper .language-selector select.link {
        text-align: left;
        font: normal normal bold 1rem/1.188rem Roboto;
        letter-spacing: 0px;
        color: #ffffff;
        background-color: transparent;
        text-transform: uppercase;
        position: relative;
        z-index: 10;
        width: 3.75rem;
        cursor: pointer; }
    #header #soy_mobile_top_menu_wrapper.opened .js-top-menu-bottom .language-selector-wrapper .language-selector .expand-more {
      color: #ffffff;
      position: relative;
      right: 2.125rem;
      top: 2px; } }

@media all and (min-width: 768px) and (max-width: 991px) {
  #header #soy_mobile_top_menu_wrapper.opened {
    background-color: #002D74; }
    #header #soy_mobile_top_menu_wrapper.opened #soymenu a {
      text-align: left;
      font: normal normal bold 1rem/1.188rem Roboto;
      letter-spacing: 0px;
      color: #ffffff;
      text-transform: uppercase;
      clear: both;
      float: none;
      padding: 1rem 1rem 1rem 0; }
    #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      -ms-flex-pack: flex-start;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start;
      padding-left: 15px; }
      #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul li.soymenu_category {
        border-bottom: 1px solid #ffffff;
        width: 100%; }
        #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul li.soymenu_category:first-of-type {
          border-top: 1px solid #ffffff; }
        #header #soy_mobile_top_menu_wrapper.opened #soymenu #soymenu_main_ul li.soymenu_category.has_submenu .soy-content-submenu .soymenu_subcategories .row ul li a {
          text-align: left;
          font: normal normal bold 1rem/1.188rem Roboto;
          letter-spacing: 0px;
          color: #002D74;
          text-transform: capitalize; }
    #header #soy_mobile_top_menu_wrapper.opened .js-top-menu-bottom .language-selector-wrapper {
      margin-left: 15px; }
      #header #soy_mobile_top_menu_wrapper.opened .js-top-menu-bottom .language-selector-wrapper .language-selector span.expand-more {
        text-align: left;
        font: normal normal bold 1rem/1.188rem Roboto;
        letter-spacing: 0px;
        color: #ffffff;
        text-transform: uppercase; }
      #header #soy_mobile_top_menu_wrapper.opened .js-top-menu-bottom .language-selector-wrapper .language-selector i.expand-more {
        margin-bottom: -3px;
        color: #ffffff; }
      #header #soy_mobile_top_menu_wrapper.opened .js-top-menu-bottom .language-selector-wrapper .dropdown-menu {
        padding: 0; }
        #header #soy_mobile_top_menu_wrapper.opened .js-top-menu-bottom .language-selector-wrapper .dropdown-menu li a {
          text-align: left;
          font: normal normal normal 1rem/1.188rem Roboto;
          letter-spacing: 0px;
          color: #444645;
          text-transform: uppercase; }
        #header #soy_mobile_top_menu_wrapper.opened .js-top-menu-bottom .language-selector-wrapper .dropdown-menu li:hover {
          opacity: 1;
          background-color: #60B3CC; }
          #header #soy_mobile_top_menu_wrapper.opened .js-top-menu-bottom .language-selector-wrapper .dropdown-menu li:hover a {
            opacity: 1;
            color: #ffffff;
            background-color: #60B3CC; }
    #header #soy_mobile_top_menu_wrapper.opened .js-top-menu-bottom .soy_language_wrapper {
      display: none; } }

@media all and (min-width: 992px) {
  body#header #_desktop_top_menu #soy_menu #soymenu_main_ul .soymenu_category.has_submenu:hover .soymenu_subcategories .soymenu-spe-dropdown > .row {
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start; }
  #soymenu_main_ul {
    margin-bottom: 0px; } }

@media screen and (min-width: 992px) {
  .fixed-desktop {
    position: sticky !important; } }

/*-------------------------------------------------------------
# Home
--------------------------------------------------------------*/
body#index section#wrapper {
  padding-top: 0px; }
  body#index section#wrapper > .container {
    width: 100%;
    padding: 0; }

body#index #carousel {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }
  body#index #carousel .carousel-inner {
    height: auto; }
  body#index #carousel .carousel-control .icon-next {
    right: 2.5rem; }

body#index .featured-products {
  margin: 0 auto; }
  body#index .featured-products .products article.product-miniature {
    width: inherit;
    max-width: inherit; }
  body#index .featured-products .products article:nth-of-type(7) {
    display: none; }
  body#index .featured-products .products article:nth-of-type(8) {
    display: none; }
  body#index .featured-products .all-product-link {
    display: none; }

body#index #marcas_home {
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 0px;
  background-color: #D8D8D8; }
  body#index #marcas_home .owl-wrapper {
    mix-blend-mode: multiply; }
  body#index #marcas_home .marcarsina {
    padding: 50px 20px; }
    body#index #marcas_home .marcarsina a {
      background-color: #D8D8D8;
      mix-blend-mode: multiply; }
    body#index #marcas_home .marcarsina .title-bg {
      text-align: center; }
      body#index #marcas_home .marcarsina .title-bg .h1 {
        font-weight: 400;
        margin-bottom: 35px;
        font-size: 1.8rem; }
    body#index #marcas_home .marcarsina .owl-buttons .owl-prev,
    body#index #marcas_home .marcarsina .owl-buttons .owl-next {
      display: inline-block;
      margin-top: 40px;
      box-shadow: none; }
    body#index #marcas_home .marcarsina .h1 {
      text-align: center; }

body#index .owl-buttons {
  position: inherit;
  width: inherit;
  height: inherit;
  right: inherit;
  background-color: transparent;
  top: 0px; }
  body#index .owl-buttons .owl-prev,
  body#index .owl-buttons .owl-next {
    display: inline-block;
    right: -20px;
    margin-top: 100px;
    background-color: transparent;
    border: 0px;
    color: transparent;
    width: 20px; }
    body#index .owl-buttons .owl-prev::before,
    body#index .owl-buttons .owl-next::before {
      font-family: "grupoerik";
      content: "";
      font-weight: 700;
      font-size: 24px;
      color: #9b9b9b; }
    body#index .owl-buttons .owl-prev:hover,
    body#index .owl-buttons .owl-next:hover {
      cursor: pointer; }
  body#index .owl-buttons .owl-prev {
    right: inherit;
    left: -20px;
    width: 20px; }

body#index .products-section-title {
  border-bottom: 1px solid #D8D8D8;
  text-align: left;
  padding-bottom: 3px;
  display: flex;
  justify-content: space-between; }
  body#index .products-section-title a {
    color: black;
    text-transform: initial;
    display: flex;
    line-height: initial;
    align-items: end;
    margin-bottom: 0px; }

body#index .container-home {
  max-width: 100%; }

body#index .featured-products .owl-prev,
body#index .featured-products .owl-next {
  top: 55px; }

/**
 * Rensponsive a partir de 410px
**/
@media screen and (min-width: 410px) {
  body#index .featured-products {
    /*max-width: 1140px;*/ }
    body#index .featured-products .products {
      text-align: left; } }

/**
 * Rensponsive a partir de 575px
**/
@media screen and (min-width: 576px) {
  body#index .featured-products {
    /*width: 540px;*/ }
    body#index .featured-products .products {
      text-align: left; } }

/**
 * Rensponsive a partir de 768px
**/
@media screen and (min-width: 768px) {
  body#index .featured-products {
    /* width: 720px;*/ } }

/**
 * Rensponsive a partir de 992px
**/
@media screen and (min-width: 992px) {
  body#index #marcas_home {
    margin-left: 0px;
    margin-right: 0px; }
    body#index #marcas_home .marcarsina {
      padding: 50px 0; }
  body#index .featured-products {
    /*width: 960px;*/ }
    body#index .featured-products .products-section-title {
      display: flex;
      justify-content: space-between; }
      body#index .featured-products .products-section-title a {
        color: black;
        text-transform: initial;
        margin-bottom: 8px; }
    body#index .featured-products .products article.product-miniature > div .product-description .product-price-and-shipping .price {
      font-size: 1.25rem;
      font-weight: 700; }
    body#index .featured-products .products article.product-miniature > div .product-description .product-price-and-shipping .regular-price {
      font-size: 1rem; }
    body#index .featured-products .products article:nth-of-type(7) {
      display: block; }
    body#index .featured-products .products article:nth-of-type(8) {
      display: block; }
  body#index #content .container {
    /*overflow: hidden;*/
    /*width: 96%;
			padding: 0 2%;*/ }
  body#index .featured-products .owl-prev,
  body#index .featured-products .owl-next {
    top: 120px; } }

/**
 * Rensponsive a partir de 1200px
**/
@media screen and (min-width: 1200px) {
  body#index #carousel .carousel-inner {
    height: 550px; }
  body#index .featured-products {
    /*width: $soy_max_width;*/ } }

@media (min-width: 1600px) {
  #index > .container-home > .container {
    max-width: 1300px; } }

@media (min-width: 1300px) and (max-width: 1599px) {
  #index > .container-home > .container {
    max-width: 1200px; } }

@media (min-width: 992px) and (max-width: 1299px) {
  #index > .container-home > .container {
    max-width: 1000px; } }

#index .soybanners-container .slick-dots {
  bottom: 20px; }
  #index .soybanners-container .slick-dots li {
    margin: 0px; }
    #index .soybanners-container .slick-dots li button::before {
      background-color: black;
      border-radius: 30px;
      width: 10px;
      height: 10px;
      top: 5px;
      left: 5px;
      content: " "; }

/*-------------------------------------------------------------
# Listing
--------------------------------------------------------------*/
/*-------------
	# LISTING
-------------*/
#category #wrapper,
#manufacturer #wrapper,
#prices-drop #wrapper,
#new-products #wrapper,
#best-sales #wrapper,
#search #wrapper {
  position: relative;
  padding-top: 0; }
  #category #wrapper > div,
  #manufacturer #wrapper > div,
  #prices-drop #wrapper > div,
  #new-products #wrapper > div,
  #best-sales #wrapper > div,
  #search #wrapper > div {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
  #category #wrapper #content-wrapper,
  #manufacturer #wrapper #content-wrapper,
  #prices-drop #wrapper #content-wrapper,
  #new-products #wrapper #content-wrapper,
  #best-sales #wrapper #content-wrapper,
  #search #wrapper #content-wrapper {
    position: initial;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    order: 1;
    /*----------
				TÍTULO
			----------*/
    /*--------------------------
				CABECERO DE LA LISTA
			--------------------------*/ }
    #category #wrapper #content-wrapper #js-product-list-header,
    #manufacturer #wrapper #content-wrapper #js-product-list-header,
    #prices-drop #wrapper #content-wrapper #js-product-list-header,
    #new-products #wrapper #content-wrapper #js-product-list-header,
    #best-sales #wrapper #content-wrapper #js-product-list-header,
    #search #wrapper #content-wrapper #js-product-list-header {
      margin-bottom: 0; }
      #category #wrapper #content-wrapper #js-product-list-header .h1,
      #manufacturer #wrapper #content-wrapper #js-product-list-header .h1,
      #prices-drop #wrapper #content-wrapper #js-product-list-header .h1,
      #new-products #wrapper #content-wrapper #js-product-list-header .h1,
      #best-sales #wrapper #content-wrapper #js-product-list-header .h1,
      #search #wrapper #content-wrapper #js-product-list-header .h1 {
        text-align: left;
        font: normal normal 500 1.125rem/1.625rem Oswald;
        letter-spacing: 0px;
        margin-bottom: 0; }
    #category #wrapper #content-wrapper .top_list_products,
    #manufacturer #wrapper #content-wrapper .top_list_products,
    #prices-drop #wrapper #content-wrapper .top_list_products,
    #new-products #wrapper #content-wrapper .top_list_products,
    #best-sales #wrapper #content-wrapper .top_list_products,
    #search #wrapper #content-wrapper .top_list_products {
      display: none; }
    #category #wrapper #content-wrapper .products-selection,
    #manufacturer #wrapper #content-wrapper .products-selection,
    #prices-drop #wrapper #content-wrapper .products-selection,
    #new-products #wrapper #content-wrapper .products-selection,
    #best-sales #wrapper #content-wrapper .products-selection,
    #search #wrapper #content-wrapper .products-selection {
      padding: 0 15px;
      margin-bottom: 20px; }
      #category #wrapper #content-wrapper .products-selection:hover,
      #manufacturer #wrapper #content-wrapper .products-selection:hover,
      #prices-drop #wrapper #content-wrapper .products-selection:hover,
      #new-products #wrapper #content-wrapper .products-selection:hover,
      #best-sales #wrapper #content-wrapper .products-selection:hover,
      #search #wrapper #content-wrapper .products-selection:hover {
        cursor: pointer; }
      #category #wrapper #content-wrapper .products-selection .sort-by-container,
      #manufacturer #wrapper #content-wrapper .products-selection .sort-by-container,
      #prices-drop #wrapper #content-wrapper .products-selection .sort-by-container,
      #new-products #wrapper #content-wrapper .products-selection .sort-by-container,
      #best-sales #wrapper #content-wrapper .products-selection .sort-by-container,
      #search #wrapper #content-wrapper .products-selection .sort-by-container {
        margin-top: 0; }
        #category #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row,
        #manufacturer #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row,
        #prices-drop #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row,
        #new-products #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row,
        #best-sales #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row,
        #search #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: flex-start;
          -moz-justify-content: flex-start;
          -ms-justify-content: flex-start;
          justify-content: flex-start;
          -ms-flex-pack: flex-start;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          align-items: center; }
          #category #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .sort-by,
          #manufacturer #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .sort-by,
          #prices-drop #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .sort-by,
          #new-products #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .sort-by,
          #best-sales #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .sort-by,
          #search #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .sort-by {
            padding: 0;
            margin: 0 11px 0 0;
            text-align: left;
            font: normal normal 500 0.875rem/1rem Roboto;
            letter-spacing: 0px;
            color: #4A4A4A;
            text-transform: uppercase;
            width: fit-content;
            word-break: normal; }
          #category #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button,
          #manufacturer #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button,
          #prices-drop #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button,
          #new-products #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button,
          #best-sales #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button,
          #search #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button {
            padding: 0;
            box-shadow: none;
            border: none;
            color: #4A4A4A; }
            #category #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button > span,
            #manufacturer #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button > span,
            #prices-drop #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button > span,
            #new-products #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button > span,
            #best-sales #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button > span,
            #search #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button > span {
              width: auto;
              text-align: left;
              font: normal normal normal 1rem/1rem Roboto;
              letter-spacing: 0px;
              color: #4A4A4A !important; }
            #category #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button i,
            #manufacturer #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button i,
            #prices-drop #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button i,
            #new-products #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button i,
            #best-sales #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button i,
            #search #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order > button i {
              font-size: 0.875rem;
              line-height: 1rem;
              color: #4A4A4A !important;
              margin-left: 11px;
              margin-bottom: -2px; }
          #category #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu,
          #manufacturer #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu,
          #prices-drop #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu,
          #new-products #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu,
          #best-sales #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu,
          #search #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu {
            right: 0;
            left: 0;
            background-color: #ffffff; }
            #category #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a, #category #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list,
            #manufacturer #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a,
            #manufacturer #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list,
            #prices-drop #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a,
            #prices-drop #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list,
            #new-products #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a,
            #new-products #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list,
            #best-sales #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a,
            #best-sales #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list,
            #search #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a,
            #search #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list {
              background-color: #ffffff;
              color: #444645;
              text-align: left;
              font: normal normal normal 0.875rem/1rem Roboto;
              letter-spacing: 0px; }
              #category #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a:hover, #category #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list:hover,
              #manufacturer #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a:hover,
              #manufacturer #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list:hover,
              #prices-drop #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a:hover,
              #prices-drop #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list:hover,
              #new-products #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a:hover,
              #new-products #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list:hover,
              #best-sales #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a:hover,
              #best-sales #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list:hover,
              #search #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a:hover,
              #search #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list:hover {
                background-color: #60B3CC;
                opacity: 1;
                color: #ffffff; }
    #category #wrapper #content-wrapper #products,
    #manufacturer #wrapper #content-wrapper #products,
    #prices-drop #wrapper #content-wrapper #products,
    #new-products #wrapper #content-wrapper #products,
    #best-sales #wrapper #content-wrapper #products,
    #search #wrapper #content-wrapper #products {
      margin-top: 0rem; }
      #category #wrapper #content-wrapper #products .products,
      #manufacturer #wrapper #content-wrapper #products .products,
      #prices-drop #wrapper #content-wrapper #products .products,
      #new-products #wrapper #content-wrapper #products .products,
      #best-sales #wrapper #content-wrapper #products .products,
      #search #wrapper #content-wrapper #products .products {
        margin: 0 -5px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
        justify-content: flex-start;
        -ms-flex-pack: flex-start;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-align-items: flex-start;
        -moz-align-items: flex-start;
        -ms-align-items: flex-start;
        align-items: flex-start; }
      #category #wrapper #content-wrapper #products .products article.product-miniature,
      #category #wrapper #content-wrapper #products #products .products article.product-miniature,
      #manufacturer #wrapper #content-wrapper #products .products article.product-miniature,
      #manufacturer #wrapper #content-wrapper #products #products .products article.product-miniature,
      #prices-drop #wrapper #content-wrapper #products .products article.product-miniature,
      #prices-drop #wrapper #content-wrapper #products #products .products article.product-miniature,
      #new-products #wrapper #content-wrapper #products .products article.product-miniature,
      #new-products #wrapper #content-wrapper #products #products .products article.product-miniature,
      #best-sales #wrapper #content-wrapper #products .products article.product-miniature,
      #best-sales #wrapper #content-wrapper #products #products .products article.product-miniature,
      #search #wrapper #content-wrapper #products .products article.product-miniature,
      #search #wrapper #content-wrapper #products #products .products article.product-miniature {
        -webkit-transition: all 0.5s;
        /* Safari */
        -moz-transition: all 0.5s;
        /* Mozilla */
        -o-transition: all 0.5s;
        transition: all 0.5s;
        -webkit-box-flex: 0 0 50%;
        -moz-box-flex: 0 0 50%;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        -webkit-align-items: flex-start;
        -moz-align-items: flex-start;
        -ms-align-items: flex-start;
        align-items: flex-start;
        margin: 0 0 30px 0; }
        #category #wrapper #content-wrapper #products .products article.product-miniature > div.thumbnail-container,
        #category #wrapper #content-wrapper #products #products .products article.product-miniature > div.thumbnail-container,
        #manufacturer #wrapper #content-wrapper #products .products article.product-miniature > div.thumbnail-container,
        #manufacturer #wrapper #content-wrapper #products #products .products article.product-miniature > div.thumbnail-container,
        #prices-drop #wrapper #content-wrapper #products .products article.product-miniature > div.thumbnail-container,
        #prices-drop #wrapper #content-wrapper #products #products .products article.product-miniature > div.thumbnail-container,
        #new-products #wrapper #content-wrapper #products .products article.product-miniature > div.thumbnail-container,
        #new-products #wrapper #content-wrapper #products #products .products article.product-miniature > div.thumbnail-container,
        #best-sales #wrapper #content-wrapper #products .products article.product-miniature > div.thumbnail-container,
        #best-sales #wrapper #content-wrapper #products #products .products article.product-miniature > div.thumbnail-container,
        #search #wrapper #content-wrapper #products .products article.product-miniature > div.thumbnail-container,
        #search #wrapper #content-wrapper #products #products .products article.product-miniature > div.thumbnail-container {
          margin-bottom: 0; }
      #category #wrapper #content-wrapper #products .page-not-found,
      #manufacturer #wrapper #content-wrapper #products .page-not-found,
      #prices-drop #wrapper #content-wrapper #products .page-not-found,
      #new-products #wrapper #content-wrapper #products .page-not-found,
      #best-sales #wrapper #content-wrapper #products .page-not-found,
      #search #wrapper #content-wrapper #products .page-not-found {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        max-width: 100%; }
        #category #wrapper #content-wrapper #products .page-not-found #search_widget .mobile-icon-search,
        #manufacturer #wrapper #content-wrapper #products .page-not-found #search_widget .mobile-icon-search,
        #prices-drop #wrapper #content-wrapper #products .page-not-found #search_widget .mobile-icon-search,
        #new-products #wrapper #content-wrapper #products .page-not-found #search_widget .mobile-icon-search,
        #best-sales #wrapper #content-wrapper #products .page-not-found #search_widget .mobile-icon-search,
        #search #wrapper #content-wrapper #products .page-not-found #search_widget .mobile-icon-search {
          display: none; }
        #category #wrapper #content-wrapper #products .page-not-found #search_widget button[type=submit],
        #manufacturer #wrapper #content-wrapper #products .page-not-found #search_widget button[type=submit],
        #prices-drop #wrapper #content-wrapper #products .page-not-found #search_widget button[type=submit],
        #new-products #wrapper #content-wrapper #products .page-not-found #search_widget button[type=submit],
        #best-sales #wrapper #content-wrapper #products .page-not-found #search_widget button[type=submit],
        #search #wrapper #content-wrapper #products .page-not-found #search_widget button[type=submit] {
          top: .4rem;
          right: .3rem; }
      #category #wrapper #content-wrapper #products .up,
      #manufacturer #wrapper #content-wrapper #products .up,
      #prices-drop #wrapper #content-wrapper #products .up,
      #new-products #wrapper #content-wrapper #products .up,
      #best-sales #wrapper #content-wrapper #products .up,
      #search #wrapper #content-wrapper #products .up {
        display: none; }

#category #wrapper #content-wrapper .products-selection,
#manufacturer #wrapper #content-wrapper .products-selection,
#prices-drop #wrapper #content-wrapper .products-selection,
#new-products #wrapper #content-wrapper .products-selection,
#best-sales #wrapper #content-wrapper .products-selection,
#search #wrapper #content-wrapper .products-selection {
  margin-right: 6px; }

/**
 * Rensponsive a partir de 768px
**/
@media all and (min-width: 768px) {
  #category #wrapper #content-wrapper .products-selection .sort-by-container,
  #manufacturer #wrapper #content-wrapper .products-selection .sort-by-container,
  #search #wrapper #content-wrapper .products-selection .sort-by-container {
    margin-top: -2px; }
  #category #wrapper #content-wrapper .products article.product-miniature,
  #category #wrapper #content-wrapper #products .products article.product-miniature,
  #manufacturer #wrapper #content-wrapper .products article.product-miniature,
  #manufacturer #wrapper #content-wrapper #products .products article.product-miniature,
  #search #wrapper #content-wrapper .products article.product-miniature,
  #search #wrapper #content-wrapper #products .products article.product-miniature {
    -webkit-box-flex: 0 0 33%;
    -moz-box-flex: 0 0 33%;
    -webkit-flex: 0 0 33%;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    max-width: 33%; } }

/**
 * Responsive a partir de 992px 
**/
@media all and (min-width: 992px) {
  #category #wrapper .breadcrumb,
  #manufacturer #wrapper .breadcrumb,
  #prices-drop #wrapper .breadcrumb,
  #new-products #wrapper .breadcrumb,
  #best-sales #wrapper .breadcrumb,
  #search #wrapper .breadcrumb {
    display: block; }
    #category #wrapper .breadcrumb h1,
    #manufacturer #wrapper .breadcrumb h1,
    #prices-drop #wrapper .breadcrumb h1,
    #new-products #wrapper .breadcrumb h1,
    #best-sales #wrapper .breadcrumb h1,
    #search #wrapper .breadcrumb h1 {
      display: inline-block; }
  #category #wrapper > div,
  #manufacturer #wrapper > div,
  #prices-drop #wrapper > div,
  #new-products #wrapper > div,
  #best-sales #wrapper > div,
  #search #wrapper > div {
    display: block;
    -webkit-flex-direction: none;
    -moz-flex-direction: none;
    -ms-flex-direction: none;
    flex-direction: none; }
  #category #wrapper #content-wrapper,
  #manufacturer #wrapper #content-wrapper,
  #prices-drop #wrapper #content-wrapper,
  #new-products #wrapper #content-wrapper,
  #best-sales #wrapper #content-wrapper,
  #search #wrapper #content-wrapper {
    order: 2;
    -webkit-box-flex: 0 0 74%;
    -moz-box-flex: 0 0 74%;
    -webkit-flex: 0 0 74%;
    -ms-flex: 0 0 74%;
    flex: 0 0 74%; }
    #category #wrapper #content-wrapper .products-selection,
    #manufacturer #wrapper #content-wrapper .products-selection,
    #prices-drop #wrapper #content-wrapper .products-selection,
    #new-products #wrapper #content-wrapper .products-selection,
    #best-sales #wrapper #content-wrapper .products-selection,
    #search #wrapper #content-wrapper .products-selection {
      background: #EAEAEA 0% 0% no-repeat padding-box;
      -moz-border-radius: 23px;
      /* Mozilla */
      -webkit-border-radius: 23px;
      /* Safari */
      border-radius: 23px;
      padding: 14px 20px;
      height: 49px; }
      #category #wrapper #content-wrapper .products-selection .sort-by-row,
      #manufacturer #wrapper #content-wrapper .products-selection .sort-by-row,
      #prices-drop #wrapper #content-wrapper .products-selection .sort-by-row,
      #new-products #wrapper #content-wrapper .products-selection .sort-by-row,
      #best-sales #wrapper #content-wrapper .products-selection .sort-by-row,
      #search #wrapper #content-wrapper .products-selection .sort-by-row {
        height: 27px !important; }
      #category #wrapper #content-wrapper .products-selection .material-icons,
      #category #wrapper #content-wrapper .products-selection .select-title,
      #manufacturer #wrapper #content-wrapper .products-selection .material-icons,
      #manufacturer #wrapper #content-wrapper .products-selection .select-title,
      #prices-drop #wrapper #content-wrapper .products-selection .material-icons,
      #prices-drop #wrapper #content-wrapper .products-selection .select-title,
      #new-products #wrapper #content-wrapper .products-selection .material-icons,
      #new-products #wrapper #content-wrapper .products-selection .select-title,
      #best-sales #wrapper #content-wrapper .products-selection .material-icons,
      #best-sales #wrapper #content-wrapper .products-selection .select-title,
      #search #wrapper #content-wrapper .products-selection .material-icons,
      #search #wrapper #content-wrapper .products-selection .select-title {
        background: #EAEAEA 0% 0% no-repeat padding-box; }
    #category #wrapper #content-wrapper #js-product-list-header .h1,
    #manufacturer #wrapper #content-wrapper #js-product-list-header .h1,
    #prices-drop #wrapper #content-wrapper #js-product-list-header .h1,
    #new-products #wrapper #content-wrapper #js-product-list-header .h1,
    #best-sales #wrapper #content-wrapper #js-product-list-header .h1,
    #search #wrapper #content-wrapper #js-product-list-header .h1 {
      font: normal normal 500 2.625rem/3.875rem Oswald; }
    #category #wrapper #content-wrapper .top_list_products .products-selection,
    #manufacturer #wrapper #content-wrapper .top_list_products .products-selection,
    #prices-drop #wrapper #content-wrapper .top_list_products .products-selection,
    #new-products #wrapper #content-wrapper .top_list_products .products-selection,
    #best-sales #wrapper #content-wrapper .top_list_products .products-selection,
    #search #wrapper #content-wrapper .top_list_products .products-selection {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-pack: space-between;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start;
      margin-bottom: 52px; }
      #category #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container,
      #manufacturer #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container,
      #prices-drop #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container,
      #new-products #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container,
      #best-sales #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container,
      #search #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container {
        height: fit-content;
        width: 50%; }
        #category #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row,
        #manufacturer #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row,
        #prices-drop #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row,
        #new-products #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row,
        #best-sales #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row,
        #search #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row {
          -webkit-justify-content: flex-start;
          -moz-justify-content: flex-start;
          -ms-justify-content: flex-start;
          justify-content: flex-start;
          -ms-flex-pack: flex-start; }
          #category #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .sort-by,
          #manufacturer #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .sort-by,
          #prices-drop #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .sort-by,
          #new-products #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .sort-by,
          #best-sales #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .sort-by,
          #search #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .sort-by {
            font: normal normal 500 1rem/1.188rem Roboto; }
          #category #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order > button,
          #manufacturer #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order > button,
          #prices-drop #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order > button,
          #new-products #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order > button,
          #best-sales #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order > button,
          #search #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order > button {
            max-width: 250px;
            float: right; }
            #category #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order > button > span,
            #manufacturer #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order > button > span,
            #prices-drop #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order > button > span,
            #new-products #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order > button > span,
            #best-sales #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order > button > span,
            #search #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order > button > span {
              font: normal normal normal 1rem/1.188rem Roboto; }
          #category #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu,
          #manufacturer #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu,
          #prices-drop #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu,
          #new-products #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu,
          #best-sales #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu,
          #search #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu {
            left: auto; }
            #category #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list,
            #manufacturer #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list,
            #prices-drop #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list,
            #new-products #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list,
            #best-sales #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list,
            #search #wrapper #content-wrapper .top_list_products .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list {
              font: normal normal normal 1rem/1.188rem Roboto; }
      #category #wrapper #content-wrapper .top_list_products .products-selection::after,
      #manufacturer #wrapper #content-wrapper .top_list_products .products-selection::after,
      #prices-drop #wrapper #content-wrapper .top_list_products .products-selection::after,
      #new-products #wrapper #content-wrapper .top_list_products .products-selection::after,
      #best-sales #wrapper #content-wrapper .top_list_products .products-selection::after,
      #search #wrapper #content-wrapper .top_list_products .products-selection::after {
        display: none; }
    #category #wrapper #content-wrapper #products,
    #manufacturer #wrapper #content-wrapper #products,
    #prices-drop #wrapper #content-wrapper #products,
    #new-products #wrapper #content-wrapper #products,
    #best-sales #wrapper #content-wrapper #products,
    #search #wrapper #content-wrapper #products {
      margin-top: 0rem; }
      #category #wrapper #content-wrapper #products .page-not-found,
      #manufacturer #wrapper #content-wrapper #products .page-not-found,
      #prices-drop #wrapper #content-wrapper #products .page-not-found,
      #new-products #wrapper #content-wrapper #products .page-not-found,
      #best-sales #wrapper #content-wrapper #products .page-not-found,
      #search #wrapper #content-wrapper #products .page-not-found {
        padding-left: 4rem;
        margin-bottom: 5rem;
        margin-top: 2rem; }
        #category #wrapper #content-wrapper #products .page-not-found h4,
        #manufacturer #wrapper #content-wrapper #products .page-not-found h4,
        #prices-drop #wrapper #content-wrapper #products .page-not-found h4,
        #new-products #wrapper #content-wrapper #products .page-not-found h4,
        #best-sales #wrapper #content-wrapper #products .page-not-found h4,
        #search #wrapper #content-wrapper #products .page-not-found h4 {
          font-size: 1.8rem;
          margin-bottom: 1.4rem; }
        #category #wrapper #content-wrapper #products .page-not-found p,
        #manufacturer #wrapper #content-wrapper #products .page-not-found p,
        #prices-drop #wrapper #content-wrapper #products .page-not-found p,
        #new-products #wrapper #content-wrapper #products .page-not-found p,
        #best-sales #wrapper #content-wrapper #products .page-not-found p,
        #search #wrapper #content-wrapper #products .page-not-found p {
          font-size: 1.4rem;
          margin-bottom: 2rem; } }

/**
 * Responsive a partir de 1200px 
**/
@media screen and (min-width: 1200px) {
  #category #wrapper #content-wrapper .products article.product-miniature,
  #category #wrapper #content-wrapper #products .products article.product-miniature,
  #manufacturer #wrapper #content-wrapper .products article.product-miniature,
  #manufacturer #wrapper #content-wrapper #products .products article.product-miniature,
  #prices-drop #wrapper #content-wrapper .products article.product-miniature,
  #prices-drop #wrapper #content-wrapper #products .products article.product-miniature,
  #new-products #wrapper #content-wrapper .products article.product-miniature,
  #new-products #wrapper #content-wrapper #products .products article.product-miniature,
  #best-sales #wrapper #content-wrapper .products article.product-miniature,
  #best-sales #wrapper #content-wrapper #products .products article.product-miniature,
  #search #wrapper #content-wrapper .products article.product-miniature,
  #search #wrapper #content-wrapper #products .products article.product-miniature {
    -webkit-box-flex: 0 0 25%;
    -moz-box-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; } }

/*Filtro ordenación escritorio*/
@media all and (min-width: 992px) {
  #category #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu,
  #manufacturer #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu,
  #prices-drop #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu,
  #new-products #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu,
  #best-sales #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu,
  #search #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu {
    -moz-border-radius: 23px;
    /* Mozilla */
    -webkit-border-radius: 23px;
    /* Safari */
    border-radius: 23px;
    background-color: #EAEAEA;
    padding-left: 7px;
    padding-right: 7px;
    margin-right: -25px;
    margin-top: 15px;
    transition: all 1s ease; }
    #category #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a, #category #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list,
    #manufacturer #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a,
    #manufacturer #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list,
    #prices-drop #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a,
    #prices-drop #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list,
    #new-products #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a,
    #new-products #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list,
    #best-sales #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a,
    #best-sales #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list,
    #search #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a,
    #search #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list {
      background-color: #EAEAEA; } }

/*----------------------------------
	FILTROS DE CATEGORÍA y SORT-BY
----------------------------------*/
body#category .filter-button,
body#search .filter-button,
body#manufacturer .filter-button,
body#new-products .filter-button,
body#prices-drop .filter-button,
body#supplier .filter-button,
body#best-sales .filter-button {
  position: fixed;
  bottom: 20px;
  z-index: 10;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%; }
  body#category .filter-button #search_filter_toggler i,
  body#search .filter-button #search_filter_toggler i,
  body#manufacturer .filter-button #search_filter_toggler i,
  body#new-products .filter-button #search_filter_toggler i,
  body#prices-drop .filter-button #search_filter_toggler i,
  body#supplier .filter-button #search_filter_toggler i,
  body#best-sales .filter-button #search_filter_toggler i {
    display: none; }

body#category #products #soy_bloque_filtros #search_filters_wrapper,
body#search #products #soy_bloque_filtros #search_filters_wrapper,
body#manufacturer #products #soy_bloque_filtros #search_filters_wrapper,
body#new-products #products #soy_bloque_filtros #search_filters_wrapper,
body#prices-drop #products #soy_bloque_filtros #search_filters_wrapper,
body#supplier #products #soy_bloque_filtros #search_filters_wrapper,
body#best-sales #products #soy_bloque_filtros #search_filters_wrapper {
  position: fixed;
  left: 0;
  z-index: 10;
  top: 90px;
  width: 100% !important;
  height: 100%;
  background-color: #ffffff;
  padding: 0 15px;
  overflow-y: scroll;
  max-height: 90vh; }

body#category #products #soy_bloque_filtros #search_filters,
body#search #products #soy_bloque_filtros #search_filters,
body#manufacturer #products #soy_bloque_filtros #search_filters,
body#new-products #products #soy_bloque_filtros #search_filters,
body#prices-drop #products #soy_bloque_filtros #search_filters,
body#supplier #products #soy_bloque_filtros #search_filters,
body#best-sales #products #soy_bloque_filtros #search_filters {
  padding: 0;
  margin: 0; }
  body#category #products #soy_bloque_filtros #search_filters .facet:hover,
  body#search #products #soy_bloque_filtros #search_filters .facet:hover,
  body#manufacturer #products #soy_bloque_filtros #search_filters .facet:hover,
  body#new-products #products #soy_bloque_filtros #search_filters .facet:hover,
  body#prices-drop #products #soy_bloque_filtros #search_filters .facet:hover,
  body#supplier #products #soy_bloque_filtros #search_filters .facet:hover,
  body#best-sales #products #soy_bloque_filtros #search_filters .facet:hover {
    cursor: pointer; }
  body#category #products #soy_bloque_filtros #search_filters .facet .title,
  body#search #products #soy_bloque_filtros #search_filters .facet .title,
  body#manufacturer #products #soy_bloque_filtros #search_filters .facet .title,
  body#new-products #products #soy_bloque_filtros #search_filters .facet .title,
  body#prices-drop #products #soy_bloque_filtros #search_filters .facet .title,
  body#supplier #products #soy_bloque_filtros #search_filters .facet .title,
  body#best-sales #products #soy_bloque_filtros #search_filters .facet .title {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    margin-bottom: 9px; }
    body#category #products #soy_bloque_filtros #search_filters .facet .title.collapsed,
    body#search #products #soy_bloque_filtros #search_filters .facet .title.collapsed,
    body#manufacturer #products #soy_bloque_filtros #search_filters .facet .title.collapsed,
    body#new-products #products #soy_bloque_filtros #search_filters .facet .title.collapsed,
    body#prices-drop #products #soy_bloque_filtros #search_filters .facet .title.collapsed,
    body#supplier #products #soy_bloque_filtros #search_filters .facet .title.collapsed,
    body#best-sales #products #soy_bloque_filtros #search_filters .facet .title.collapsed {
      margin-bottom: 0; }
      body#category #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .add, body#category #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .soy-up,
      body#search #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .add,
      body#search #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .soy-up,
      body#manufacturer #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .add,
      body#manufacturer #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .soy-up,
      body#new-products #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .add,
      body#new-products #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .soy-up,
      body#prices-drop #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .add,
      body#prices-drop #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .soy-up,
      body#supplier #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .add,
      body#supplier #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .soy-up,
      body#best-sales #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .add,
      body#best-sales #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .soy-up {
        display: none; }
      body#category #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .remove, body#category #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .soy-down,
      body#search #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .remove,
      body#search #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .soy-down,
      body#manufacturer #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .remove,
      body#manufacturer #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .soy-down,
      body#new-products #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .remove,
      body#new-products #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .soy-down,
      body#prices-drop #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .remove,
      body#prices-drop #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .soy-down,
      body#supplier #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .remove,
      body#supplier #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .soy-down,
      body#best-sales #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .remove,
      body#best-sales #products #soy_bloque_filtros #search_filters .facet .title.collapsed .navbar-toggler .soy-down {
        display: block; }
    body#category #products #soy_bloque_filtros #search_filters .facet .title .h6,
    body#search #products #soy_bloque_filtros #search_filters .facet .title .h6,
    body#manufacturer #products #soy_bloque_filtros #search_filters .facet .title .h6,
    body#new-products #products #soy_bloque_filtros #search_filters .facet .title .h6,
    body#prices-drop #products #soy_bloque_filtros #search_filters .facet .title .h6,
    body#supplier #products #soy_bloque_filtros #search_filters .facet .title .h6,
    body#best-sales #products #soy_bloque_filtros #search_filters .facet .title .h6 {
      text-align: left;
      font: normal normal 500 1rem/1.188rem Roboto;
      letter-spacing: 0px;
      color: #4A4A4A;
      margin-bottom: 0; }
    body#category #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler,
    body#search #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler,
    body#manufacturer #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler,
    body#new-products #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler,
    body#prices-drop #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler,
    body#supplier #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler,
    body#best-sales #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler {
      width: unset;
      height: unset;
      padding: 0;
      margin-left: 0; }
      body#category #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .add, body#category #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .soy-up,
      body#search #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .add,
      body#search #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .soy-up,
      body#manufacturer #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .add,
      body#manufacturer #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .soy-up,
      body#new-products #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .add,
      body#new-products #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .soy-up,
      body#prices-drop #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .add,
      body#prices-drop #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .soy-up,
      body#supplier #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .add,
      body#supplier #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .soy-up,
      body#best-sales #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .add,
      body#best-sales #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .soy-up {
        font-size: 14px;
        line-height: 14px;
        display: block; }
      body#category #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .remove, body#category #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .soy-down,
      body#search #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .remove,
      body#search #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .soy-down,
      body#manufacturer #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .remove,
      body#manufacturer #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .soy-down,
      body#new-products #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .remove,
      body#new-products #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .soy-down,
      body#prices-drop #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .remove,
      body#prices-drop #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .soy-down,
      body#supplier #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .remove,
      body#supplier #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .soy-down,
      body#best-sales #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .remove,
      body#best-sales #products #soy_bloque_filtros #search_filters .facet .title .navbar-toggler .soy-down {
        font-size: 14px;
        line-height: 14px;
        display: none; }
  body#category #products #soy_bloque_filtros #search_filters .facet ul.collapse,
  body#search #products #soy_bloque_filtros #search_filters .facet ul.collapse,
  body#manufacturer #products #soy_bloque_filtros #search_filters .facet ul.collapse,
  body#new-products #products #soy_bloque_filtros #search_filters .facet ul.collapse,
  body#prices-drop #products #soy_bloque_filtros #search_filters .facet ul.collapse,
  body#supplier #products #soy_bloque_filtros #search_filters .facet ul.collapse,
  body#best-sales #products #soy_bloque_filtros #search_filters .facet ul.collapse {
    display: none; }
  body#category #products #soy_bloque_filtros #search_filters .facet ul.collapsing,
  body#search #products #soy_bloque_filtros #search_filters .facet ul.collapsing,
  body#manufacturer #products #soy_bloque_filtros #search_filters .facet ul.collapsing,
  body#new-products #products #soy_bloque_filtros #search_filters .facet ul.collapsing,
  body#prices-drop #products #soy_bloque_filtros #search_filters .facet ul.collapsing,
  body#supplier #products #soy_bloque_filtros #search_filters .facet ul.collapsing,
  body#best-sales #products #soy_bloque_filtros #search_filters .facet ul.collapsing {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    /*overflow-y: scroll;
							max-height: 45vh;*/ }
  body#category #products #soy_bloque_filtros #search_filters .facet ul.collapse.in,
  body#search #products #soy_bloque_filtros #search_filters .facet ul.collapse.in,
  body#manufacturer #products #soy_bloque_filtros #search_filters .facet ul.collapse.in,
  body#new-products #products #soy_bloque_filtros #search_filters .facet ul.collapse.in,
  body#prices-drop #products #soy_bloque_filtros #search_filters .facet ul.collapse.in,
  body#supplier #products #soy_bloque_filtros #search_filters .facet ul.collapse.in,
  body#best-sales #products #soy_bloque_filtros #search_filters .facet ul.collapse.in {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    /*overflow-y: scroll;
							max-height: 45vh;*/ }
  body#category #products #soy_bloque_filtros #search_filters .facet ul li,
  body#search #products #soy_bloque_filtros #search_filters .facet ul li,
  body#manufacturer #products #soy_bloque_filtros #search_filters .facet ul li,
  body#new-products #products #soy_bloque_filtros #search_filters .facet ul li,
  body#prices-drop #products #soy_bloque_filtros #search_filters .facet ul li,
  body#supplier #products #soy_bloque_filtros #search_filters .facet ul li,
  body#best-sales #products #soy_bloque_filtros #search_filters .facet ul li {
    width: 49%; }
    body#category #products #soy_bloque_filtros #search_filters .facet ul li .facet-label,
    body#search #products #soy_bloque_filtros #search_filters .facet ul li .facet-label,
    body#manufacturer #products #soy_bloque_filtros #search_filters .facet ul li .facet-label,
    body#new-products #products #soy_bloque_filtros #search_filters .facet ul li .facet-label,
    body#prices-drop #products #soy_bloque_filtros #search_filters .facet ul li .facet-label,
    body#supplier #products #soy_bloque_filtros #search_filters .facet ul li .facet-label,
    body#best-sales #products #soy_bloque_filtros #search_filters .facet ul li .facet-label {
      display: flex;
      height: 35px;
      align-items: center; }
      body#category #products #soy_bloque_filtros #search_filters .facet ul li .facet-label .custom-checkbox,
      body#search #products #soy_bloque_filtros #search_filters .facet ul li .facet-label .custom-checkbox,
      body#manufacturer #products #soy_bloque_filtros #search_filters .facet ul li .facet-label .custom-checkbox,
      body#new-products #products #soy_bloque_filtros #search_filters .facet ul li .facet-label .custom-checkbox,
      body#prices-drop #products #soy_bloque_filtros #search_filters .facet ul li .facet-label .custom-checkbox,
      body#supplier #products #soy_bloque_filtros #search_filters .facet ul li .facet-label .custom-checkbox,
      body#best-sales #products #soy_bloque_filtros #search_filters .facet ul li .facet-label .custom-checkbox {
        top: inherit; }
      body#category #products #soy_bloque_filtros #search_filters .facet ul li .facet-label a,
      body#search #products #soy_bloque_filtros #search_filters .facet ul li .facet-label a,
      body#manufacturer #products #soy_bloque_filtros #search_filters .facet ul li .facet-label a,
      body#new-products #products #soy_bloque_filtros #search_filters .facet ul li .facet-label a,
      body#prices-drop #products #soy_bloque_filtros #search_filters .facet ul li .facet-label a,
      body#supplier #products #soy_bloque_filtros #search_filters .facet ul li .facet-label a,
      body#best-sales #products #soy_bloque_filtros #search_filters .facet ul li .facet-label a {
        margin-top: 3px;
        text-align: left;
        font: normal normal normal 0.875rem/1rem Roboto;
        letter-spacing: 0px;
        color: #4A4A4A;
        width: inherit; }
        body#category #products #soy_bloque_filtros #search_filters .facet ul li .facet-label a .magnitude,
        body#search #products #soy_bloque_filtros #search_filters .facet ul li .facet-label a .magnitude,
        body#manufacturer #products #soy_bloque_filtros #search_filters .facet ul li .facet-label a .magnitude,
        body#new-products #products #soy_bloque_filtros #search_filters .facet ul li .facet-label a .magnitude,
        body#prices-drop #products #soy_bloque_filtros #search_filters .facet ul li .facet-label a .magnitude,
        body#supplier #products #soy_bloque_filtros #search_filters .facet ul li .facet-label a .magnitude,
        body#best-sales #products #soy_bloque_filtros #search_filters .facet ul li .facet-label a .magnitude {
          display: none; }
  body#category #products #soy_bloque_filtros #search_filters .sort-by-row,
  body#search #products #soy_bloque_filtros #search_filters .sort-by-row,
  body#manufacturer #products #soy_bloque_filtros #search_filters .sort-by-row,
  body#new-products #products #soy_bloque_filtros #search_filters .sort-by-row,
  body#prices-drop #products #soy_bloque_filtros #search_filters .sort-by-row,
  body#supplier #products #soy_bloque_filtros #search_filters .sort-by-row,
  body#best-sales #products #soy_bloque_filtros #search_filters .sort-by-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0; }
    body#category #products #soy_bloque_filtros #search_filters .sort-by-row .sort-by,
    body#search #products #soy_bloque_filtros #search_filters .sort-by-row .sort-by,
    body#manufacturer #products #soy_bloque_filtros #search_filters .sort-by-row .sort-by,
    body#new-products #products #soy_bloque_filtros #search_filters .sort-by-row .sort-by,
    body#prices-drop #products #soy_bloque_filtros #search_filters .sort-by-row .sort-by,
    body#supplier #products #soy_bloque_filtros #search_filters .sort-by-row .sort-by,
    body#best-sales #products #soy_bloque_filtros #search_filters .sort-by-row .sort-by {
      text-align: left;
      font: normal normal 500 0.875rem/1rem Roboto;
      letter-spacing: 0px;
      color: #4A4A4A;
      text-transform: uppercase;
      padding-left: 0;
      padding-right: 11px;
      width: fit-content; }
    body#category #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown,
    body#search #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown,
    body#manufacturer #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown,
    body#new-products #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown,
    body#prices-drop #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown,
    body#supplier #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown,
    body#best-sales #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown {
      clear: both; }
      body#category #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title,
      body#search #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title,
      body#manufacturer #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title,
      body#new-products #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title,
      body#prices-drop #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title,
      body#supplier #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title,
      body#best-sales #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        justify-content: space-between;
        -ms-flex-pack: space-between;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        border: none;
        padding: 0; }
        body#category #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title span,
        body#search #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title span,
        body#manufacturer #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title span,
        body#new-products #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title span,
        body#prices-drop #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title span,
        body#supplier #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title span,
        body#best-sales #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title span {
          text-align: left;
          font: normal normal normal 0.875rem/1rem Roboto;
          letter-spacing: 0px;
          color: #9D9D9D; }
        body#category #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title .soy-down,
        body#search #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title .soy-down,
        body#manufacturer #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title .soy-down,
        body#new-products #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title .soy-down,
        body#prices-drop #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title .soy-down,
        body#supplier #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title .soy-down,
        body#best-sales #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .select-title .soy-down {
          font-size: 0.875rem;
          line-height: 1rem;
          font-weight: 500;
          letter-spacing: 0px;
          color: #9D9D9D;
          min-width: 45px;
          min-height: 45px;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -ms-justify-content: center;
          justify-content: center;
          -ms-flex-pack: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          align-items: center; }
      body#category #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu,
      body#search #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu,
      body#manufacturer #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu,
      body#new-products #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu,
      body#prices-drop #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu,
      body#supplier #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu,
      body#best-sales #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu {
        padding: 0;
        background-color: #ffffff; }
        body#category #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu a,
        body#search #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu a,
        body#manufacturer #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu a,
        body#new-products #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu a,
        body#prices-drop #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu a,
        body#supplier #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu a,
        body#best-sales #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu a {
          text-align: left;
          font: normal normal normal 0.875rem/1rem Roboto;
          letter-spacing: 0px;
          color: #4A4A4A; }
          body#category #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu a:hover,
          body#search #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu a:hover,
          body#manufacturer #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu a:hover,
          body#new-products #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu a:hover,
          body#prices-drop #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu a:hover,
          body#supplier #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu a:hover,
          body#best-sales #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown .dropdown-menu a:hover {
            color: #ffffff;
            background-color: #60B3CC;
            opacity: 1; }
      body#category #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown.open .select-title .soy-down,
      body#search #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown.open .select-title .soy-down,
      body#manufacturer #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown.open .select-title .soy-down,
      body#new-products #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown.open .select-title .soy-down,
      body#prices-drop #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown.open .select-title .soy-down,
      body#supplier #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown.open .select-title .soy-down,
      body#best-sales #products #soy_bloque_filtros #search_filters .sort-by-row .dropdown.open .select-title .soy-down {
        transform: rotate(180deg); }

body#category #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary i, body#category #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary i,
body#search #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary i,
body#search #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary i,
body#manufacturer #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary i,
body#manufacturer #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary i,
body#new-products #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary i,
body#new-products #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary i,
body#prices-drop #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary i,
body#prices-drop #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary i,
body#supplier #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary i,
body#supplier #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary i,
body#best-sales #products #soy_bloque_filtros #_desktop_search_filters_clear_all .btn-tertiary i,
body#best-sales #products #soy_bloque_filtros #_mobile_search_filters_clear_all .btn-tertiary i {
  display: none; }

body#category #products #soy_bloque_filtros #search_filter_controls .soy_button_wrapper,
body#search #products #soy_bloque_filtros #search_filter_controls .soy_button_wrapper,
body#manufacturer #products #soy_bloque_filtros #search_filter_controls .soy_button_wrapper,
body#new-products #products #soy_bloque_filtros #search_filter_controls .soy_button_wrapper,
body#prices-drop #products #soy_bloque_filtros #search_filter_controls .soy_button_wrapper,
body#supplier #products #soy_bloque_filtros #search_filter_controls .soy_button_wrapper,
body#best-sales #products #soy_bloque_filtros #search_filter_controls .soy_button_wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background-color: transparent;
  width: 100%;
  position: fixed;
  bottom: 20px;
  z-index: 20;
  left: 0; }

body#category #products #soy_bloque_filtros #search_filter_controls .active_filters,
body#search #products #soy_bloque_filtros #search_filter_controls .active_filters,
body#manufacturer #products #soy_bloque_filtros #search_filter_controls .active_filters,
body#new-products #products #soy_bloque_filtros #search_filter_controls .active_filters,
body#prices-drop #products #soy_bloque_filtros #search_filter_controls .active_filters,
body#supplier #products #soy_bloque_filtros #search_filter_controls .active_filters,
body#best-sales #products #soy_bloque_filtros #search_filter_controls .active_filters {
  padding: 0.625rem;
  background: #60B3CC;
  margin-bottom: 0;
  margin: 0 -15px; }
  body#category #products #soy_bloque_filtros #search_filter_controls .active_filters .active-filter-title,
  body#search #products #soy_bloque_filtros #search_filter_controls .active_filters .active-filter-title,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .active_filters .active-filter-title,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .active_filters .active-filter-title,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .active_filters .active-filter-title,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .active_filters .active-filter-title,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .active_filters .active-filter-title {
    color: #ffffff;
    margin-bottom: .625rem;
    display: block; }
  body#category #products #soy_bloque_filtros #search_filter_controls .active_filters ul,
  body#search #products #soy_bloque_filtros #search_filter_controls .active_filters ul,
  body#manufacturer #products #soy_bloque_filtros #search_filter_controls .active_filters ul,
  body#new-products #products #soy_bloque_filtros #search_filter_controls .active_filters ul,
  body#prices-drop #products #soy_bloque_filtros #search_filter_controls .active_filters ul,
  body#supplier #products #soy_bloque_filtros #search_filter_controls .active_filters ul,
  body#best-sales #products #soy_bloque_filtros #search_filter_controls .active_filters ul {
    margin-bottom: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    body#category #products #soy_bloque_filtros #search_filter_controls .active_filters ul .filter-block,
    body#search #products #soy_bloque_filtros #search_filter_controls .active_filters ul .filter-block,
    body#manufacturer #products #soy_bloque_filtros #search_filter_controls .active_filters ul .filter-block,
    body#new-products #products #soy_bloque_filtros #search_filter_controls .active_filters ul .filter-block,
    body#prices-drop #products #soy_bloque_filtros #search_filter_controls .active_filters ul .filter-block,
    body#supplier #products #soy_bloque_filtros #search_filter_controls .active_filters ul .filter-block,
    body#best-sales #products #soy_bloque_filtros #search_filter_controls .active_filters ul .filter-block {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-pack: space-between;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center;
      width: 49%;
      margin-left: 0;
      margin-right: 0; }
      body#category #products #soy_bloque_filtros #search_filter_controls .active_filters ul .filter-block a .close,
      body#search #products #soy_bloque_filtros #search_filter_controls .active_filters ul .filter-block a .close,
      body#manufacturer #products #soy_bloque_filtros #search_filter_controls .active_filters ul .filter-block a .close,
      body#new-products #products #soy_bloque_filtros #search_filter_controls .active_filters ul .filter-block a .close,
      body#prices-drop #products #soy_bloque_filtros #search_filter_controls .active_filters ul .filter-block a .close,
      body#supplier #products #soy_bloque_filtros #search_filter_controls .active_filters ul .filter-block a .close,
      body#best-sales #products #soy_bloque_filtros #search_filter_controls .active_filters ul .filter-block a .close {
        margin: 0; }

body#category #products #soy_bloque_filtros .soy_stick_wrapper,
body#search #products #soy_bloque_filtros .soy_stick_wrapper,
body#manufacturer #products #soy_bloque_filtros .soy_stick_wrapper,
body#new-products #products #soy_bloque_filtros .soy_stick_wrapper,
body#prices-drop #products #soy_bloque_filtros .soy_stick_wrapper,
body#supplier #products #soy_bloque_filtros .soy_stick_wrapper,
body#best-sales #products #soy_bloque_filtros .soy_stick_wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding-top: 20px;
  background-color: #ffffff; }
  body#category #products #soy_bloque_filtros .soy_stick_wrapper .soy_stick_decoration,
  body#search #products #soy_bloque_filtros .soy_stick_wrapper .soy_stick_decoration,
  body#manufacturer #products #soy_bloque_filtros .soy_stick_wrapper .soy_stick_decoration,
  body#new-products #products #soy_bloque_filtros .soy_stick_wrapper .soy_stick_decoration,
  body#prices-drop #products #soy_bloque_filtros .soy_stick_wrapper .soy_stick_decoration,
  body#supplier #products #soy_bloque_filtros .soy_stick_wrapper .soy_stick_decoration,
  body#best-sales #products #soy_bloque_filtros .soy_stick_wrapper .soy_stick_decoration {
    height: 3px;
    width: 51px;
    background-color: #4A4A4A; }

@media all and (min-width: 992px) {
  body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar,
  body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar,
  body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar,
  body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar,
  body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar,
  body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar,
  body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start; }
    body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper,
    body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper,
    body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper,
    body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper,
    body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper,
    body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper,
    body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper {
      height: unset;
      width: 70% !important;
      position: static;
      padding-left: 0; }
      body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper .soy_stick_wrapper,
      body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper .soy_stick_wrapper,
      body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper .soy_stick_wrapper,
      body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper .soy_stick_wrapper,
      body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper .soy_stick_wrapper,
      body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper .soy_stick_wrapper,
      body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper .soy_stick_wrapper {
        display: none; }
      body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters,
      body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters,
      body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters,
      body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters,
      body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters,
      body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters,
      body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters {
        padding: 0;
        margin: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
        justify-content: flex-start;
        -ms-flex-pack: flex-start;
        -webkit-align-items: flex-start;
        -moz-align-items: flex-start;
        -ms-align-items: flex-start;
        align-items: flex-start; }
        body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters #_desktop_search_filters_clear_all,
        body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters #_desktop_search_filters_clear_all,
        body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters #_desktop_search_filters_clear_all,
        body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters #_desktop_search_filters_clear_all,
        body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters #_desktop_search_filters_clear_all,
        body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters #_desktop_search_filters_clear_all,
        body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters #_desktop_search_filters_clear_all {
          display: none; }
        body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters > .h6,
        body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters > .h6,
        body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters > .h6,
        body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters > .h6,
        body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters > .h6,
        body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters > .h6,
        body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters > .h6 {
          display: none; }
        body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet,
        body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet,
        body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet,
        body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet,
        body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet,
        body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet,
        body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet {
          width: 100%;
          max-width: 25%;
          padding: 0;
          margin-right: 1.5%;
          /*.filter-doble-width {
										//toDo
										width: 450px;
										flex-direction: inherit;
										li {
											width: 50%;
										}
									}*/ }
          body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet:last-of-type,
          body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet:last-of-type,
          body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet:last-of-type,
          body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet:last-of-type,
          body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet:last-of-type,
          body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet:last-of-type,
          body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet:last-of-type {
            margin-right: 0; }
          body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet .title,
          body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet .title,
          body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet .title,
          body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet .title,
          body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet .title,
          body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet .title,
          body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet .title {
            background: #EAEAEA 0% 0% no-repeat padding-box;
            -moz-border-radius: 23px;
            /* Mozilla */
            -webkit-border-radius: 23px;
            /* Safari */
            border-radius: 23px;
            padding: 14px 20px; }
            body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet .title .facet-title,
            body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet .title .facet-title,
            body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet .title .facet-title,
            body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet .title .facet-title,
            body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet .title .facet-title,
            body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet .title .facet-title,
            body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet .title .facet-title {
              text-align: left;
              font: normal normal 500 1rem/1.188rem Roboto;
              letter-spacing: 0px;
              color: #4A4A4A; }
          body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul,
          body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul,
          body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul,
          body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul,
          body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul,
          body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul,
          body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul {
            border: 1px solid #dfdfdf;
            background-color: white;
            box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1); }
            body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapse,
            body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapse,
            body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapse,
            body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapse,
            body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapse,
            body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapse,
            body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapse {
              transition-property: height;
              transition-duration: 0.5s;
              transition-timing-function: linear; }
            body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing,
            body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing,
            body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing,
            body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing,
            body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing,
            body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing,
            body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing {
              margin-top: 10px;
              background: #EAEAEA 0% 0% no-repeat padding-box;
              display: block;
              -moz-border-radius: 19px;
              /* Mozilla */
              -webkit-border-radius: 19px;
              /* Safari */
              border-radius: 19px;
              padding: 19px;
              overflow-y: unset;
              overflow: hidden;
              max-height: unset;
              transition-property: height;
              transition-duration: 0.5s;
              transition-timing-function: linear; }
              body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing.filter-doble-width,
              body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing.filter-doble-width,
              body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing.filter-doble-width,
              body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing.filter-doble-width,
              body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing.filter-doble-width,
              body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing.filter-doble-width,
              body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing.filter-doble-width {
                width: 450px;
                display: flex;
                flex-direction: inherit !important; }
                body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing.filter-doble-width li,
                body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing.filter-doble-width li,
                body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing.filter-doble-width li,
                body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing.filter-doble-width li,
                body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing.filter-doble-width li,
                body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing.filter-doble-width li,
                body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapsing.filter-doble-width li {
                  width: 50% !important; }
            body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapse.in,
            body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapse.in,
            body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapse.in,
            body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapse.in,
            body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapse.in,
            body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapse.in,
            body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.collapse.in {
              margin-top: 10px;
              background: #EAEAEA 0% 0% no-repeat padding-box;
              -moz-border-radius: 19px;
              /* Mozilla */
              -webkit-border-radius: 19px;
              /* Safari */
              border-radius: 19px;
              display: -webkit-box;
              display: -moz-box;
              display: -ms-flexbox;
              display: -webkit-flex;
              display: flex;
              -webkit-flex-direction: column;
              -moz-flex-direction: column;
              -ms-flex-direction: column;
              flex-direction: column;
              -webkit-justify-content: flex-start;
              -moz-justify-content: flex-start;
              -ms-justify-content: flex-start;
              justify-content: flex-start;
              -ms-flex-pack: flex-start;
              -webkit-align-items: flex-start;
              -moz-align-items: flex-start;
              -ms-align-items: flex-start;
              align-items: flex-start;
              padding: 19px;
              overflow-y: auto;
              height: unset;
              max-height: unset;
              transition-property: height;
              transition-duration: 0.5s;
              transition-timing-function: linear; }
            body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li,
            body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li,
            body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li,
            body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li,
            body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li,
            body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li,
            body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li {
              width: 100%; }
              body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label,
              body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label,
              body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label,
              body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label,
              body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label,
              body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label,
              body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label {
                display: flex;
                align-items: center;
                height: 40px; }
                body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label a,
                body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label a,
                body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label a,
                body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label a,
                body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label a,
                body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label a,
                body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label a {
                  margin-top: 3px; }
                body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label .custom-checkbox,
                body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label .custom-checkbox,
                body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label .custom-checkbox,
                body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label .custom-checkbox,
                body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label .custom-checkbox,
                body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label .custom-checkbox,
                body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label .custom-checkbox {
                  top: inherit; }
                body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label .search-link,
                body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label .search-link,
                body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label .search-link,
                body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label .search-link,
                body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label .search-link,
                body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label .search-link,
                body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul li .facet-label .search-link {
                  text-align: left;
                  font: normal normal normal 0.875rem/1rem Roboto;
                  letter-spacing: 0px;
                  color: #4A4A4A; }
            body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.filter-doble-width,
            body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.filter-doble-width,
            body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.filter-doble-width,
            body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.filter-doble-width,
            body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.filter-doble-width,
            body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.filter-doble-width,
            body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.filter-doble-width {
              width: 450px;
              flex-direction: inherit !important; }
              body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.filter-doble-width li,
              body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.filter-doble-width li,
              body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.filter-doble-width li,
              body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.filter-doble-width li,
              body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.filter-doble-width li,
              body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.filter-doble-width li,
              body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul.filter-doble-width li {
                width: 50%; }
    body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container,
    body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container,
    body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container,
    body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container,
    body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container,
    body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container,
    body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container {
      width: 100%; }
      body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row,
      body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row,
      body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row,
      body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row,
      body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row,
      body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row,
      body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
        body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown,
        body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown,
        body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown,
        body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown,
        body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown,
        body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown,
        body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown {
          margin-top: 5px; }
          body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown .select-title .soy-down,
          body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown .select-title .soy-down,
          body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown .select-title .soy-down,
          body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown .select-title .soy-down,
          body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown .select-title .soy-down,
          body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown .select-title .soy-down,
          body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown .select-title .soy-down {
            min-height: unset; }
          body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown .dropdown-menu,
          body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown .dropdown-menu,
          body#manufacturer #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown .dropdown-menu,
          body#new-products #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown .dropdown-menu,
          body#prices-drop #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown .dropdown-menu,
          body#supplier #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown .dropdown-menu,
          body#best-sales #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-container .sort-by-row .dropdown .dropdown-menu {
            right: 0;
            left: auto; }
  body#category #products #soyContainerActiveFilters,
  body#search #products #soyContainerActiveFilters,
  body#manufacturer #products #soyContainerActiveFilters,
  body#new-products #products #soyContainerActiveFilters,
  body#prices-drop #products #soyContainerActiveFilters,
  body#supplier #products #soyContainerActiveFilters,
  body#best-sales #products #soyContainerActiveFilters {
    width: 70%;
    margin-bottom: 0px; }
  body#category #products .active_filters,
  body#search #products .active_filters,
  body#manufacturer #products .active_filters,
  body#new-products #products .active_filters,
  body#prices-drop #products .active_filters,
  body#supplier #products .active_filters,
  body#best-sales #products .active_filters {
    padding: 0.625rem;
    background: #60B3CC;
    margin-bottom: 0;
    margin: 0; }
    body#category #products .active_filters .active-filter-title,
    body#search #products .active_filters .active-filter-title,
    body#manufacturer #products .active_filters .active-filter-title,
    body#new-products #products .active_filters .active-filter-title,
    body#prices-drop #products .active_filters .active-filter-title,
    body#supplier #products .active_filters .active-filter-title,
    body#best-sales #products .active_filters .active-filter-title {
      color: #ffffff;
      margin-bottom: .625rem;
      display: block; }
    body#category #products .active_filters ul,
    body#search #products .active_filters ul,
    body#manufacturer #products .active_filters ul,
    body#new-products #products .active_filters ul,
    body#prices-drop #products .active_filters ul,
    body#supplier #products .active_filters ul,
    body#best-sales #products .active_filters ul {
      margin-bottom: 0;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      -ms-flex-pack: flex-start;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      body#category #products .active_filters ul .filter-block,
      body#search #products .active_filters ul .filter-block,
      body#manufacturer #products .active_filters ul .filter-block,
      body#new-products #products .active_filters ul .filter-block,
      body#prices-drop #products .active_filters ul .filter-block,
      body#supplier #products .active_filters ul .filter-block,
      body#best-sales #products .active_filters ul .filter-block {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        justify-content: space-between;
        -ms-flex-pack: space-between;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        width: fit-content;
        margin-left: 0.625rem;
        margin-right: 0; }
        body#category #products .active_filters ul .filter-block:first-of-type,
        body#search #products .active_filters ul .filter-block:first-of-type,
        body#manufacturer #products .active_filters ul .filter-block:first-of-type,
        body#new-products #products .active_filters ul .filter-block:first-of-type,
        body#prices-drop #products .active_filters ul .filter-block:first-of-type,
        body#supplier #products .active_filters ul .filter-block:first-of-type,
        body#best-sales #products .active_filters ul .filter-block:first-of-type {
          margin-left: 0; }
        body#category #products .active_filters ul .filter-block a .close,
        body#search #products .active_filters ul .filter-block a .close,
        body#manufacturer #products .active_filters ul .filter-block a .close,
        body#new-products #products .active_filters ul .filter-block a .close,
        body#prices-drop #products .active_filters ul .filter-block a .close,
        body#supplier #products .active_filters ul .filter-block a .close,
        body#best-sales #products .active_filters ul .filter-block a .close {
          margin: 0; }
  body#category .soy_bloque_filtros_ordenar,
  body#search .soy_bloque_filtros_ordenar,
  body#manufacturer .soy_bloque_filtros_ordenar,
  body#new-products .soy_bloque_filtros_ordenar,
  body#prices-drop .soy_bloque_filtros_ordenar,
  body#supplier .soy_bloque_filtros_ordenar,
  body#best-sales .soy_bloque_filtros_ordenar {
    height: 50px;
    margin-bottom: 6px; } }

@media all and (min-width: 1200px) {
  body#category #products #soy_bloque_filtros #search_filters .soy_bloque_filtros_ordenar .sort-by-row .dropdown,
  body#search #products #soy_bloque_filtros #search_filters .soy_bloque_filtros_ordenar .sort-by-row .dropdown,
  body#manufacturer #products #soy_bloque_filtros #search_filters .soy_bloque_filtros_ordenar .sort-by-row .dropdown,
  body#new-products #products #soy_bloque_filtros #search_filters .soy_bloque_filtros_ordenar .sort-by-row .dropdown,
  body#prices-drop #products #soy_bloque_filtros #search_filters .soy_bloque_filtros_ordenar .sort-by-row .dropdown,
  body#supplier #products #soy_bloque_filtros #search_filters .soy_bloque_filtros_ordenar .sort-by-row .dropdown,
  body#best-sales #products #soy_bloque_filtros #search_filters .soy_bloque_filtros_ordenar .sort-by-row .dropdown {
    margin-top: 0; }
    body#category #products #soy_bloque_filtros #search_filters .soy_bloque_filtros_ordenar .sort-by-row .dropdown .select-title .soy-down,
    body#search #products #soy_bloque_filtros #search_filters .soy_bloque_filtros_ordenar .sort-by-row .dropdown .select-title .soy-down,
    body#manufacturer #products #soy_bloque_filtros #search_filters .soy_bloque_filtros_ordenar .sort-by-row .dropdown .select-title .soy-down,
    body#new-products #products #soy_bloque_filtros #search_filters .soy_bloque_filtros_ordenar .sort-by-row .dropdown .select-title .soy-down,
    body#prices-drop #products #soy_bloque_filtros #search_filters .soy_bloque_filtros_ordenar .sort-by-row .dropdown .select-title .soy-down,
    body#supplier #products #soy_bloque_filtros #search_filters .soy_bloque_filtros_ordenar .sort-by-row .dropdown .select-title .soy-down,
    body#best-sales #products #soy_bloque_filtros #search_filters .soy_bloque_filtros_ordenar .sort-by-row .dropdown .select-title .soy-down {
      min-height: 45px; } }

body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-row {
  width: 100%; }
  body#search #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-row .products-sort-order {
    margin-top: 0px; }

#new-products #js-product-list-top {
  display: none; }

@media all and (min-width: 992px) {
  body#category #products #soy_bloque_filtros #search_filters_wrapper {
    overflow-y: unset; } }

/*------------------
	##CATEGORÍAS
------------------*/
body#category {
  /*------------------
		SUBCATEGORÍAS
	------------------*/
  /*----------------------
		DESCRIPCIÓN ABAJO
	----------------------*/
  /*-----------------
		ORDENACIÓN
    ------------------*/ }
  body#category #wrapper #content-wrapper .top_list_products {
    display: inline-block; }
  body#category #products #soy_bloque_filtros #search_filters_wrapper {
    z-index: 999;
    top: 70px; }
  body#category .block-category {
    min-height: inherit; }
  body#category #products #soy_bloque_filtros #search_filters .facet ul.faceted-slider li {
    min-width: 150px; }
    body#category #products #soy_bloque_filtros #search_filters .facet ul.faceted-slider li .ui-slider-handle {
      width: 15px;
      height: 15px;
      border-radius: 15px; }
  body#category #soy_subcategories_block {
    margin-top: 0;
    margin-bottom: 15px; }
    body#category #soy_subcategories_block #soy_subcategories_block_slick {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center;
      opacity: 0; }
      body#category #soy_subcategories_block #soy_subcategories_block_slick .soy_subcat-item {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center; }
        body#category #soy_subcategories_block #soy_subcategories_block_slick .soy_subcat-item .soy_subcat-img {
          margin-bottom: 9px;
          width: 100%; }
          body#category #soy_subcategories_block #soy_subcategories_block_slick .soy_subcat-item .soy_subcat-img.replace-2x {
            font: normal normal 500 0.813rem/0.938rem Roboto;
            letter-spacing: 0px;
            color: #4A4A4A; }
        body#category #soy_subcategories_block #soy_subcategories_block_slick .soy_subcat-item .soy_subcat-name {
          font: normal normal 500 0.813rem/0.938rem Roboto;
          letter-spacing: 0px;
          text-transform: uppercase;
          color: #4A4A4A;
          width: fit-content; }
      body#category #soy_subcategories_block #soy_subcategories_block_slick .slick-next, body#category #soy_subcategories_block #soy_subcategories_block_slick .slick-prev {
        background: none;
        border: none;
        color: #9B9B9B;
        width: 2.813rem;
        font-size: 1.125rem;
        height: 2.813rem;
        line-height: 1.5rem;
        cursor: pointer; }
  body#category .category-footer-block-info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    margin-bottom: 30px; }
    body#category .category-footer-block-info .category-description-txt-full-width {
      width: 100%; }
    body#category .category-footer-block-info .category-cover {
      display: unset;
      width: 100%; }
      body#category .category-footer-block-info .category-cover img {
        width: 100%;
        height: auto; }
    body#category .category-footer-block-info #category-description {
      display: none; }
  body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-row {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 47px; }
    body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-row .products-sort-order, body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-row .sort-by, body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar .sort-by-row .dropdown {
      margin-top: -2px;
      width: auto; }

/**
 * Responsive a partir de 768px 
**/
@media all and (min-width: 768px) {
  body#category {
    /*----------------------
			DESCRIPCIÓN ABAJO
		----------------------*/ }
    body#category .category-footer-block-info {
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-pack: space-between;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start;
      margin-bottom: 62px; }
      body#category .category-footer-block-info .category-cover {
        width: 51.4%; }
      body#category .category-footer-block-info #category-description {
        display: unset;
        width: 42%; }
        body#category .category-footer-block-info #category-description h2 {
          text-align: left;
          font: normal normal 500 1.563rem/1.5rem Oswald;
          letter-spacing: 0px;
          color: #444645;
          text-transform: capitalize;
          margin-bottom: 0.625rem; }
      body#category .category-footer-block-info .category-description-txt-full-width {
        width: 100% !important; } }

/**
 * Responsive a partir de 992px 
**/
@media all and (min-width: 992px) {
  body#category {
    /*------------------
			FILTROS
		------------------*/
    /*------------------
			SUBCATEGORÍAS
		------------------*/
    /*----------------------
			DESCRIPCIÓN ABAJO
		----------------------*/ }
    body#category #products #soy_bloque_filtros #search_filters_block .soy_bloque_filtros_ordenar #search_filters_wrapper #search_filters .facet ul {
      position: absolute; }
    body#category #products #soy_bloque_filtros #search_filters_wrapper {
      z-index: 9; }
    body#category .block-category {
      margin-bottom: 8px; }
    body#category #search_filters_wrapper {
      z-index: 99; }
      body#category #search_filters_wrapper .hidden-md-up {
        display: block !important; }
      body#category #search_filters_wrapper #search_filters {
        display: flex; }
        body#category #search_filters_wrapper #search_filters > .facet {
          max-width: 25%; }
    body#category #soy_subcategories_block {
      margin-top: 0rem;
      margin-bottom: 34px; }
      body#category #soy_subcategories_block #soy_subcategories_block_slick {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center; }
        body#category #soy_subcategories_block #soy_subcategories_block_slick .soy_subcat-item {
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          align-items: center; }
          body#category #soy_subcategories_block #soy_subcategories_block_slick .soy_subcat-item .soy_subcat-img {
            width: 100%;
            max-width: 232px; }
            body#category #soy_subcategories_block #soy_subcategories_block_slick .soy_subcat-item .soy_subcat-img.replace-2x {
              width: 100%;
              max-width: 232px; }
          body#category #soy_subcategories_block #soy_subcategories_block_slick .soy_subcat-item .soy_subcat-name {
            text-align: center;
            font: normal normal 500 1rem/1.188rem Roboto; } }

@media (min-width: 768px) and (max-width: 991px) {
  body#category #products #soy_bloque_filtros #search_filters_wrapper,
  body#manufacturer body#search #products #soy_bloque_filtros #search_filters_wrapper,
  body#new-products #products #soy_bloque_filtros #search_filters_wrapper,
  body#best-sales #products #soy_bloque_filtros #search_filters_wrapper {
    display: none; } }

@media (max-width: 991px) {
  body#category #products #soy_bloque_filtros #search_filters .facet ul.faceted-slider {
    display: block; }
    body#category #products #soy_bloque_filtros #search_filters .facet ul.faceted-slider .soy-down {
      display: none; }
    body#category #products #soy_bloque_filtros #search_filters .facet ul.faceted-slider li {
      width: 90%;
      max-width: 500px;
      min-height: 50px; }
  body#category #wrapper #content-wrapper #js-product-list-header .h1 {
    font-size: 2rem; } }

body#category #products .active_filters,
body#search #products .active_filters,
body#manufacturer #products .active_filters,
body#new-products #products .active_filters,
body#prices-drop #products .active_filters,
body#supplier #products .active_filters,
body#best-sales #products .active_filters {
  padding: 0.625rem;
  background: #fff; }

#category #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu a:hover, #category #wrapper #content-wrapper .products-selection .sort-by-container .sort-by-row .products-sort-order .dropdown-menu .select-list:hover {
  background-color: #EAEAEA;
  opacity: 0.6;
  color: #7a7a7a; }

nav.pagination .col-12 .page-list li.current {
  height: 28px;
  width: 28px; }

/*-------------------------------------------------------------
# Producto
--------------------------------------------------------------*/
/*-------------------------------------------------------------
## Detalle
--------------------------------------------------------------*/
body#product {
  position: relative;
  overflow-x: hidden; }
  body#product p {
    color: #444645; }
  body#product .tabs {
    padding: 0;
    margin-top: 0;
    background-color: none; }
  body#product #soy_precio_pvp label {
    color: #9d9d9d; }
  body#product .blockreassurance_product {
    display: none; }
  body#product .product-features {
    margin-top: 0; }
    body#product .product-features dl {
      border-top: 1px solid #D8D8D8; }
    body#product .product-features dt, body#product .product-features dd {
      background-color: white;
      margin: 0px;
      border-bottom: 1px solid #D8D8D8;
      color: #444645; }
  body#product #wrapper {
    padding-top: 0px; }
    body#product #wrapper .breadcrumb {
      display: block !important; }
  body#product #wrapper .breadcrumb,
  body#product #wrapper .breadcrumb li a {
    font-size: 13px; }
  body#product .photo-zoomIn-bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: -2;
    background-color: black;
    opacity: 0;
    display: none; }
  body#product .soy_dot_stock {
    background: #D8D8D8 0% 0% no-repeat padding-box;
    display: inline-block;
    margin-right: 9px;
    width: 15px;
    height: 15px;
    -moz-border-radius: 50%;
    /* Mozilla */
    -webkit-border-radius: 50%;
    /* Safari */
    border-radius: 50%; }
  body#product .soy_green_stock {
    background: #269670 0% 0% no-repeat padding-box; }
  body#product .soy_orange_stock {
    background: #f59848 0% 0% no-repeat padding-box; }
  body#product .soy_red_stock {
    background: #e05f55 0% 0% no-repeat padding-box; }
  body#product .product-name h1 {
    font-weight: 600;
    color: #444645; }
  body#product .images-block li.product-flag {
    right: 0; }
  body#product .images-block .images-container img {
    box-shadow: none;
    max-width: 100%;
    width: 100%;
    height: auto; }
  body#product .images-block .images-container .js-qv-mask {
    overflow: visible;
    width: 100%;
    margin: 0 auto; }
  body#product .images-block .images-container .product-cover {
    display: none;
    cursor: pointer; }
  body#product .images-block .images-container .product-images {
    position: relative; }
    body#product .images-block .images-container .product-images li img.selected, body#product .images-block .images-container .product-images li img.hover {
      border: none; }
    body#product .images-block .images-container .product-images .owl-wrapper-outer {
      overflow: hidden; }
    body#product .images-block .images-container .product-images .owl-wrapper {
      display: flex !important; }
    body#product .images-block .images-container .product-images .owl-pagination {
      justify-content: center;
      gap: 6px;
      display: flex; }
      body#product .images-block .images-container .product-images .owl-pagination .owl-page {
        cursor: pointer; }
        body#product .images-block .images-container .product-images .owl-pagination .owl-page > span {
          font-size: 22px;
          color: #D8D8D8; }
        body#product .images-block .images-container .product-images .owl-pagination .owl-page.active > span {
          color: #707070; }
        body#product .images-block .images-container .product-images .owl-pagination .owl-page > span:before {
          font-family: "grupoerik";
          content: ""; }
    body#product .images-block .images-container .product-images .owl-buttons {
      display: none; }
      body#product .images-block .images-container .product-images .owl-buttons .owl-next,
      body#product .images-block .images-container .product-images .owl-buttons .owl-prev {
        color: transparent;
        position: absolute;
        top: 48%; }
      body#product .images-block .images-container .product-images .owl-buttons .owl-prev {
        transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        left: -60px; }
      body#product .images-block .images-container .product-images .owl-buttons .owl-next {
        right: -60px; }
    body#product .images-block .images-container .product-images .owl-buttons .owl-prev::before,
    body#product .images-block .images-container .product-images .owl-buttons .owl-next::before {
      font-family: "grupoerik";
      content: "";
      font-weight: 700;
      font-size: 24px;
      color: #9b9b9b; }
    body#product .images-block .images-container .product-images .owl-controls {
      margin-top: 18px; }
  body#product .images-block #photo-zoom-wrapper {
    position: fixed;
    opacity: 0;
    z-index: -3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.25s ease-out;
    display: none;
    max-width: 600px; }
    body#product .images-block #photo-zoom-wrapper .photo-zoom-container {
      position: relative; }
      body#product .images-block #photo-zoom-wrapper .photo-zoom-container img {
        width: 600px;
        max-width: unset; }
  body#product .images-block .close-zoom-in {
    cursor: pointer;
    position: absolute;
    top: 6px;
    right: 4px;
    padding: 1rem;
    color: #444645;
    font-weight: 900;
    font-size: 1.463rem;
    border-radius: 50%; }
  body#product .images-block .zoom-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    opacity: 0.29;
    font-size: 24px;
    display: none; }
  body#product .images-block .noSlider {
    bottom: 44px; }
  body#product .product-content > .product-information > section {
    padding: 0 0 15px 0; }
  body#product .grupoErikFont {
    font-family: "grupoerik";
    font-style: normal; }
  body#product .product-buy-block {
    width: 100%;
    text-align: left;
    margin-bottom: 10px; }
    body#product .product-buy-block .product-actions .product-availability-date.desktop {
      display: none;
      margin-top: 10px; }
    body#product .product-buy-block .product-actions .product-availability-date.mobile {
      display: block; }
    body#product .product-buy-block .product-actions .control-label {
      float: left;
      margin: 0px 10px 0 0;
      font-weight: bold;
      width: unset;
      font-size: 16px; }
    body#product .product-buy-block .product-actions .soy_combination {
      display: none; }
    body#product .product-buy-block .product-actions .product-discounts {
      margin: 0; }
    body#product .product-buy-block .product-actions .product-variants .product-variants-item {
      margin-top: 0;
      margin-bottom: 10px; }
      body#product .product-buy-block .product-actions .product-variants .product-variants-item ul {
        margin: 0; }
        body#product .product-buy-block .product-actions .product-variants .product-variants-item ul li {
          margin: 0px 8px 20px 0px; }
      body#product .product-buy-block .product-actions .product-variants .product-variants-item label {
        margin: 0; }
        body#product .product-buy-block .product-actions .product-variants .product-variants-item label .input-radio + span {
          background: #D8D8D8 0% 0% no-repeat padding-box;
          padding: 5px 17px;
          border-radius: 15px;
          cursor: pointer;
          font-weight: bold;
          font-size: 16px;
          color: #444645; }
        body#product .product-buy-block .product-actions .product-variants .product-variants-item label .input-radio:checked + span,
        body#product .product-buy-block .product-actions .product-variants .product-variants-item label .input-radio:hover + span {
          border: none;
          background: #002D74 0% 0% no-repeat padding-box;
          color: white; }
        body#product .product-buy-block .product-actions .product-variants .product-variants-item label .input-color {
          z-index: 10; }
        body#product .product-buy-block .product-actions .product-variants .product-variants-item label .color {
          border-radius: 50%;
          position: relative;
          margin: 0;
          border: none;
          position: relative;
          display: inline-block;
          border-radius: 50%;
          background-color: #ff0000; }
        body#product .product-buy-block .product-actions .product-variants .product-variants-item label .input-color:checked + span,
        body#product .product-buy-block .product-actions .product-variants .product-variants-item label .input-color:hover + span {
          border: none; }
        body#product .product-buy-block .product-actions .product-variants .product-variants-item label .input-color + span::before {
          border: solid 1px rgba(0, 0, 0, 0);
          transition: all 0.2s ease-out;
          content: "";
          position: absolute;
          top: -4px;
          left: -4px;
          right: -4px;
          bottom: -4px;
          border-radius: 50%;
          box-shadow: 0 0 0 1px rgba(0, 0, 0, 0); }
        body#product .product-buy-block .product-actions .product-variants .product-variants-item label .input-color:hover + span::before,
        body#product .product-buy-block .product-actions .product-variants .product-variants-item label .input-color:checked + span::before {
          box-shadow: 0 0 0 1px #9d9d9d; }
        body#product .product-buy-block .product-actions .product-variants .product-variants-item label .input-color:hover + span::before {
          box-shadow: 0 0 0 1px #d8d8d8; }
    body#product .product-buy-block .product-actions .product-variants .collapse-icons {
      display: none; }
    body#product .product-buy-block .product-actions .product-variants ul li {
      display: inline-block; }
    body#product .product-buy-block .product-actions .product-variants .see_options,
    body#product .product-buy-block .product-actions .product-variants .close_variants_wrapper {
      display: none; }
    body#product .product-buy-block .product-actions #product-availability {
      display: inline-block;
      margin-top: 0.8rem;
      min-width: 72px;
      position: absolute;
      right: 0;
      top: -36px;
      margin-left: 10px; }
    body#product .product-buy-block .product-actions .alert.alert-danger.ajax-error {
      display: inline-block;
      margin: 6px 0rem 0rem;
      white-space: nowrap;
      width: 100%; }
    body#product .product-buy-block .product-actions .product-add-to-cart {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      position: relative; }
      body#product .product-buy-block .product-actions .product-add-to-cart .control-label {
        display: none; }
      body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity {
        display: block;
        width: 100%; }
        body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity .input-group-btn-vertical {
          width: 22px; }
          body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity .input-group-btn-vertical .btn i {
            font-size: 1.25rem; }
            body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity .input-group-btn-vertical .btn i.touchspin-up::after {
              content: "+"; }
            body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity .input-group-btn-vertical .btn i.touchspin-down::after {
              content: "-"; }
        body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity .input-group,
        body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity #quantity_wanted {
          text-align: center;
          position: relative; }
          body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity .input-group .btn-touchspin,
          body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity #quantity_wanted .btn-touchspin {
            position: absolute;
            top: -37px;
            background-color: unset;
            color: #444645; }
            body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity .input-group .btn-touchspin:hover,
            body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity #quantity_wanted .btn-touchspin:hover {
              box-shadow: none; }
          body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity .input-group .bootstrap-touchspin-up,
          body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity #quantity_wanted .bootstrap-touchspin-up {
            right: -50px; }
          body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity .input-group .bootstrap-touchspin-down,
          body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity #quantity_wanted .bootstrap-touchspin-down {
            left: -28px;
            top: -36px; }
        body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity .bootstrap-touchspin {
          -webkit-box-shadow: none;
          -moz-box-shadow: none;
          box-shadow: none; }
        body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity .add-to-cart.btn_disabled > span {
          font-size: 1rem;
          color: #4A4A4A; }
      body#product .product-buy-block .product-actions .product-add-to-cart .qty {
        display: block;
        margin: 0;
        width: 50px;
        border: 1px solid #eee; }
        body#product .product-buy-block .product-actions .product-add-to-cart .qty > input {
          font-weight: 700;
          font-size: 1.48rem;
          padding-left: 0.34rem;
          height: 100%;
          border: none; }
        body#product .product-buy-block .product-actions .product-add-to-cart .qty button {
          overflow: visible; }
      body#product .product-buy-block .product-actions .product-add-to-cart button {
        padding: 12px 0 11px;
        width: 100%;
        text-align: center;
        white-space: normal;
        color: white;
        background: #002D74 0% 0% no-repeat padding-box;
        border-radius: 21px;
        border: none;
        position: relative;
        overflow: hidden;
        box-shadow: none; }
        body#product .product-buy-block .product-actions .product-add-to-cart button > span {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          transition: all 0.2s ease-out;
          font-size: 1rem;
          white-space: nowrap; }
        body#product .product-buy-block .product-actions .product-add-to-cart button > span.grupoErikFont {
          top: 60px; }
        body#product .product-buy-block .product-actions .product-add-to-cart button .btnClicked {
          top: -30px; }
        body#product .product-buy-block .product-actions .product-add-to-cart button > span.btnClickedCheck {
          top: 50%;
          display: block; }
        body#product .product-buy-block .product-actions .product-add-to-cart button.wishlist-button-add {
          width: 50px;
          min-width: 50px;
          height: 50px;
          padding: 0;
          -webkit-align-self: center;
          -moz-align-self: center;
          -ms-align-self: center;
          align-self: center;
          margin: 0;
          background: none;
          box-shadow: none;
          display: inline-block; }
          body#product .product-buy-block .product-actions .product-add-to-cart button.wishlist-button-add i.material-icons {
            color: #002D74;
            margin: 0; }
          body#product .product-buy-block .product-actions .product-add-to-cart button.wishlist-button-add:hover {
            opacity: 1; }
        body#product .product-buy-block .product-actions .product-add-to-cart button:hover:not(.wishlist-button-add) {
          background-color: #60B3CC;
          color: #002D74;
          -webkit-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
          -moz-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1); }
        body#product .product-buy-block .product-actions .product-add-to-cart button:disabled {
          opacity: 1;
          background-color: #D8D8D8;
          color: #002D74; }
          body#product .product-buy-block .product-actions .product-add-to-cart button:disabled:focus {
            background-color: #60B3CC;
            color: #002D74; }
        body#product .product-buy-block .product-actions .product-add-to-cart button.added-to-cart {
          background-color: #60B3CC;
          color: #002D74; }
      body#product .product-buy-block .product-actions .product-add-to-cart .add {
        margin: 0;
        width: 70%;
        margin-left: 12.705%; }
      body#product .product-buy-block .product-actions .product-add-to-cart label {
        display: none; }
    body#product .product-buy-block .product-actions form#add-to-cart-or-refresh {
      position: relative; }
    body#product .product-buy-block .product-actions .product-additional-info {
      width: 100%;
      margin-left: 0;
      padding-left: 0; }
      body#product .product-buy-block .product-actions .product-additional-info .btn-primary.js-mailalert-add {
        height: 44px;
        width: 100%;
        margin: 55px 0 0 0 !important;
        /* Para quitar el margin de bootstrap que tiene !important*/
        font-size: 0.9rem;
        padding: 12px 0 11px;
        text-align: center;
        white-space: normal;
        color: white;
        background: #002d74 0% 0% no-repeat padding-box;
        border-radius: 21px;
        border: none;
        display: block !important;
        /* Para evitar que se quite el boton con js y display: none */ }
        body#product .product-buy-block .product-actions .product-additional-info .btn-primary.js-mailalert-add:hover {
          background-color: #60B3CC;
          color: #002D74; }
      body#product .product-buy-block .product-actions .product-additional-info .alert.alert-success {
        margin: 0; }
    body#product .product-buy-block .second-fav-button {
      display: flex;
      justify-content: center;
      align-items: center;
      border-bottom: 2px solid #d8d8d8;
      border-top: 2px solid #d8d8d8;
      padding: 10px 0; }
      body#product .product-buy-block .second-fav-button label {
        margin: 0;
        color: #002D74;
        font-size: 16px;
        padding-right: 21px; }
        body#product .product-buy-block .second-fav-button label:hover {
          cursor: pointer; }
      body#product .product-buy-block .second-fav-button .wishlist-button-add {
        width: 50px;
        min-width: 50px;
        height: 50px;
        padding: 0;
        -webkit-align-self: center;
        -moz-align-self: center;
        -ms-align-self: center;
        align-self: center;
        margin: 0;
        background: none;
        box-shadow: none;
        display: inline-block; }
        body#product .product-buy-block .second-fav-button .wishlist-button-add i.material-icons {
          color: #002D74;
          margin: 0; }
        body#product .product-buy-block .second-fav-button .wishlist-button-add:hover {
          opacity: 1; }
    body#product .product-buy-block .product-description-short {
      border-bottom: 2px solid #D8D8D8;
      padding: 15px 0 15px 0; }
      body#product .product-buy-block .product-description-short p {
        margin: 0; }
    body#product .product-buy-block .product-prices {
      width: 100%; }
      body#product .product-buy-block .product-prices .product-price .current-price span {
        font-size: 22px;
        font-weight: 600; }
  body#product .product-details {
    clear: both;
    margin-top: 20px; }
    body#product .product-details #product-details label {
      font-size: 14px; }
  body#product .product-information > section {
    vertical-align: top; }
  body#product .product-information #block-reassurance {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }
  body#product .product-information .product-description-short,
  body#product .product-information .product-description {
    margin: 0.5rem 0rem; }
    body#product .product-information .product-description-short h4,
    body#product .product-information .product-description h4 {
      font-weight: 500;
      text-transform: uppercase;
      color: black; }
    body#product .product-information .product-description-short > div p,
    body#product .product-information .product-description > div p {
      color: #444645; }
  body#product .product-information .social-sharing li {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }
    body#product .product-information .social-sharing li a:hover {
      color: #60B3CC; }
  body#product .product-information .product-all-references {
    position: relative;
    display: flex;
    color: #9d9d9d; }
    body#product .product-information .product-all-references .product-reference {
      order: 1;
      margin-right: 1rem; }
    body#product .product-information .product-all-references .product-features {
      order: 2; }
    body#product .product-information .product-all-references label {
      color: inherit;
      text-transform: uppercase; }
  body#product .product-information .product-manufacturer {
    position: absolute;
    top: 45px;
    right: 0;
    z-index: 2;
    width: 66px; }
  body#product .product-information .product-manufacturer-notRegistered {
    position: absolute;
    top: -20px;
    right: 0;
    z-index: 2;
    width: 98px;
    height: 76px; }
  body#product .product-information .manufacturer-logo {
    border: none;
    margin: 0; }
  body#product .product-accessories,
  body#product .blockcategoryproducts {
    max-width: 1542px;
    margin: 0 auto; }
    body#product .product-accessories > h2,
    body#product .product-accessories > h3,
    body#product .product-accessories > span,
    body#product .product-accessories > .soyBigTittle,
    body#product .blockcategoryproducts > h2,
    body#product .blockcategoryproducts > h3,
    body#product .blockcategoryproducts > span,
    body#product .blockcategoryproducts > .soyBigTittle {
      font-weight: 500;
      text-transform: uppercase;
      color: #444645;
      text-align: center;
      display: block; }
    body#product .product-accessories > h3,
    body#product .product-accessories > span,
    body#product .blockcategoryproducts > h3,
    body#product .blockcategoryproducts > span {
      color: #a5a8a8;
      font-size: 1.3rem;
      margin-bottom: 1.5rem; }
    body#product .product-accessories > h2,
    body#product .product-accessories > .soyBigTittle,
    body#product .blockcategoryproducts > h2,
    body#product .blockcategoryproducts > .soyBigTittle {
      font-size: 1.9rem;
      color: #444645;
      margin-bottom: 2rem; }
    body#product .product-accessories > div > article.product-miniature,
    body#product .blockcategoryproducts > div > article.product-miniature {
      margin: 0; }
  body#product .featured-products {
    margin: 0 auto 30px auto; }
    body#product .featured-products > h2 {
      font-size: 18px;
      font-family: "Oswald", sans-serif;
      padding: 0 5px 12px;
      font-weight: 600;
      text-align: left;
      text-transform: capitalize;
      margin-bottom: 0;
      color: #444645; }
    body#product .featured-products .owl-carousel {
      position: relative;
      width: 100%;
      -ms-touch-action: pan-y; }
      body#product .featured-products .owl-carousel .owl-wrapper-outer {
        overflow: hidden;
        position: relative;
        width: 100%; }
      body#product .featured-products .owl-carousel .owl-wrapper {
        position: relative; }
      body#product .featured-products .owl-carousel .owl-item {
        float: left; }
      body#product .featured-products .owl-carousel .owl-buttons {
        position: inherit;
        width: inherit;
        height: inherit;
        right: inherit;
        background-color: transparent;
        top: 0px;
        padding-left: 17px;
        display: none; }
      body#product .featured-products .owl-carousel .owl-pagination {
        justify-content: center;
        gap: 6px;
        display: flex; }
        body#product .featured-products .owl-carousel .owl-pagination .owl-page {
          cursor: pointer; }
          body#product .featured-products .owl-carousel .owl-pagination .owl-page > span {
            font-size: 22px;
            color: #D8D8D8; }
          body#product .featured-products .owl-carousel .owl-pagination .owl-page.active > span {
            color: #707070; }
          body#product .featured-products .owl-carousel .owl-pagination .owl-page > span:before {
            font-family: "grupoerik";
            content: ""; }
      body#product .featured-products .owl-carousel .owl-controls .owl-prev {
        right: 57px !important;
        transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        width: 56px;
        height: 41px;
        border: 1px solid #e0e0e0;
        cursor: pointer;
        z-index: 9;
        font-size: 15px;
        color: #9f9f9f;
        line-height: 41px;
        display: inline-block;
        margin: 0;
        margin-top: 0px;
        text-align: center;
        text-decoration: none;
        position: absolute;
        top: 0px;
        right: 0px;
        background-color: #fafafa;
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
        border-radius: 3px;
        transition: background-color 0.3s, color 0.4s;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none; }
      body#product .featured-products .owl-carousel .owl-controls .owl-next {
        width: 56px;
        height: 41px;
        border: 1px solid #e0e0e0;
        cursor: pointer;
        z-index: 9;
        font-size: 15px;
        color: #9f9f9f;
        line-height: 41px;
        display: inline-block;
        margin: 0;
        margin-top: 0px;
        text-align: center;
        text-decoration: none;
        position: absolute;
        top: 0px;
        right: 0px;
        background-color: #fafafa;
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
        border-radius: 3px;
        transition: background-color 0.3s, color 0.4s;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none; }
      body#product .featured-products .owl-carousel .owl-buttons .owl-prev,
      body#product .featured-products .owl-carousel .owl-buttons .owl-next {
        display: inline-block;
        right: -20px;
        margin-top: 190px;
        background-color: transparent;
        border: 0px;
        color: transparent; }
      body#product .featured-products .owl-carousel .owl-buttons .owl-prev {
        right: inherit;
        left: -20px; }
      body#product .featured-products .owl-carousel .owl-controls .owl-next::before {
        content: "B";
        font-family: venedor;
        font-size: 13px;
        line-height: 41px;
        display: block;
        height: 41px; }
      body#product .featured-products .owl-carousel .owl-controls .owl-prev::before {
        content: "B";
        font-family: venedor;
        font-size: 13px;
        line-height: 41px;
        display: block;
        height: 41px; }
      body#product .featured-products .owl-carousel .owl-buttons .owl-prev::before,
      body#product .featured-products .owl-carousel .owl-buttons .owl-next::before {
        font-family: "grupoerik";
        content: "";
        font-weight: 700;
        font-size: 24px;
        color: #9b9b9b; }
    body#product .featured-products .owl-carousel .owl-wrapper,
    body#product .featured-products .owl-carousel .owl-item {
      -webkit-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      -ms-backface-visibility: hidden;
      -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0); }
  body#product .product-manufacturer {
    float: right; }
    body#product .product-manufacturer .manufacturer-logo {
      max-width: 100px;
      height: auto; }
  body#product .product-buy-block > .product-prices .tax-shipping-delivery-label {
    font-size: 1rem !important; }
  body#product .tax-shipping-delivery-label-desktop {
    display: inline-block !important; }
  body#product .tax-shipping-delivery-label-mobile {
    display: none !important; }

/**
 * Rensponsive a partir de 768px
**/
@media screen and (min-width: 768px) {
  body#product #wrapper .breadcrumb,
  body#product #wrapper .breadcrumb li a {
    font-size: 1.3rem; }
  body#product .product-name {
    float: left; }
    body#product .product-name h1 {
      margin-top: 0rem; }
  body#product .product-details {
    clear: both;
    margin-top: 20px; }
    body#product .product-details #product-details label,
    body#product .product-details #product-details span {
      font-size: .8rem; }
  body#product .product-buy-block {
    position: relative;
    bottom: 0;
    z-index: 0;
    width: 100%;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-align: left;
    z-index: 1; }
    body#product .product-buy-block > *:not(.product-prices):not(.product-additional-info) {
      border-top: 2px solid #D8D8D8; }
    body#product .product-buy-block .product-actions {
      float: none;
      width: 100%;
      display: block !important;
      padding: 30px 0px 10px; }
      body#product .product-buy-block .product-actions .product-add-to-cart {
        margin-top: 20px; }
        body#product .product-buy-block .product-actions .product-add-to-cart button {
          padding: 12px 0 11px; }
        body#product .product-buy-block .product-actions .product-add-to-cart .product-quantity label {
          color: #002D74;
          display: inline-block;
          margin: 0;
          width: 100%;
          text-align: center; }
      body#product .product-buy-block .product-actions .product-availability-date.desktop {
        display: block; }
      body#product .product-buy-block .product-actions .product-availability-date.mobile {
        display: none; }
      body#product .product-buy-block .product-actions .alert.alert-danger.ajax-error {
        display: inline-block;
        margin: 0;
        white-space: nowrap;
        width: 100%;
        padding: .75rem 0.625rem; }
    body#product .product-buy-block .second-fav-button {
      display: none; }
  body#product .product-information .soy_blockadditionaltext {
    margin-bottom: 2rem; }
  body#product .product-information .product-features {
    margin: 0; }
  body#product .product-information .product-description,
  body#product .product-information .product-description-short {
    margin: 0; }
  body#product .featured-products .owl-carousel {
    padding: 0 1.5rem; }
    body#product .featured-products .owl-carousel .owl-buttons {
      display: inline-block; }
    body#product .featured-products .owl-carousel .owl-pagination {
      display: none; }
  body#product .featured-products > h2 {
    font-size: 25px;
    padding: 0 1.5rem 25px; }
  body#product .images-block #photo-zoom-wrapper {
    display: block; }
  body#product .images-block .zoom-btn {
    display: inline; }
  body#product .images-block .images-container .js-qv-mask {
    width: 87.5%; }
  body#product .images-block .images-container .product-images .owl-pagination {
    display: none; }
  body#product .images-block .images-container .product-images .owl-buttons {
    display: block; }
  body#product .images-block .images-container .product-images .owl-controls {
    margin-top: 0; }
  body#product .images-block .images-container .product-cover {
    display: block; }
  body#product .photo-zoomIn-bg {
    display: block; } }

/**
 * Rensponsive a partir de 992px
**/
@media screen and (min-width: 992px) {
  body#product label .color {
    width: 1.5625rem;
    height: 1.5625rem; }
  body#product section#main.msgAlert .product-additional-info {
    width: 100%; }
  body#product .product-details {
    margin-top: 0; }
    body#product .product-details #product-details label,
    body#product .product-details #product-details span {
      font-size: 1rem; }
  body#product .images-block {
    padding-right: 45px; }
    body#product .images-block #content {
      margin-left: 0;
      max-width: 1000px; }
      body#product .images-block #content .images-container:after {
        display: table;
        content: "";
        clear: both; }
  body#product .product-name h1 {
    margin-top: 0;
    line-height: 1.1428;
    margin-bottom: 1rem; }
  body#product .product-buy-block {
    margin-bottom: 30px; }
    body#product .product-buy-block .product-actions {
      padding: 30px 30px 10px; }
      body#product .product-buy-block .product-actions #product-availability {
        position: static; }
      body#product .product-buy-block .product-actions .alert.alert-danger.ajax-error {
        position: static; }
      body#product .product-buy-block .product-actions .product-availability-date {
        margin-left: -30px; }
      body#product .product-buy-block .product-actions .product-additional-info {
        width: 125%; }
      body#product .product-buy-block .product-actions .product-add-to-cart {
        margin-top: 0; }
        body#product .product-buy-block .product-actions .product-add-to-cart button.wishlist-button-add {
          margin-left: 50px; }
      body#product .product-buy-block .product-actions .alert.alert-danger.ajax-error {
        padding: .75rem 1.25rem; }
    body#product .product-buy-block .product-prices .product-price .current-price span {
      font-size: 2.625rem;
      font-family: "Oswald", sans-serif;
      font-weight: 600; }
    body#product .product-buy-block .product-description-short {
      padding: 30px 0 30px 0; }
  body#product .featured-products > h3,
  body#product .featured-products > span,
  body#product .product-accessories > h3,
  body#product .product-accessories > span,
  body#product .blockcategoryproducts > h3,
  body#product .blockcategoryproducts > span {
    font-size: 1.4rem;
    margin-top: 3rem; }
  body#product .featured-products > .soyBigTittle,
  body#product .product-accessories > .soyBigTittle,
  body#product .blockcategoryproducts > .soyBigTittle {
    margin-bottom: 3.5rem;
    font-size: 2.5rem; }
  body#product .featured-products > h2,
  body#product .product-accessories > h2,
  body#product .blockcategoryproducts > h2 {
    font-size: 25px;
    margin-bottom: 25px;
    line-height: 1;
    font-family: "Oswald", sans-serif;
    text-transform: capitalize;
    width: fit-content;
    padding: 0 15px; }
  body#product .featured-products .products,
  body#product .product-accessories .products,
  body#product .blockcategoryproducts .products {
    -webkit-justify-content: left;
    -moz-justify-content: left;
    -ms-justify-content: left;
    justify-content: left;
    -ms-flex-pack: left; }
    body#product .featured-products .products article.product-miniature,
    body#product .product-accessories .products article.product-miniature,
    body#product .blockcategoryproducts .products article.product-miniature {
      max-width: 100%; }
  body#product .product-information .product-manufacturer {
    width: 98px; }
  body#product .featured-products {
    margin: 0 auto 78px auto; }
    body#product .featured-products > h2 {
      padding: 0 1.5rem; }
  body#product .product-buy-block > .product-prices .tax-shipping-delivery-label {
    font-size: 1.25rem !important; } }

/**
 *	Responsive a partir de 1200px
 */
@media screen and (min-width: 1200px) {
  body#product .images-block #photo-zoom-wrapper {
    max-width: 800px; }
    body#product .images-block #photo-zoom-wrapper .photo-zoom-container img {
      width: 800px;
      max-width: unset; }
  body#product section#main.msgAlert .product-additional-info {
    width: 87.3%; }
  body#product .product-buy-block .product-actions .product-additional-info {
    width: 87.3%;
    margin-left: 50px;
    padding-left: 7.405%; }
  body#product .product-buy-block .product-actions .product-add-to-cart .add {
    margin: 0;
    width: 80%;
    margin-left: 7.405%; } }

/**
 * Rensponsive a partir de 1500px
**/
@media screen and (min-width: 1500px) {
  body#product .product-buy-block .product-actions .product-add-to-cart .add {
    margin-left: 7.405%; } }

@media (max-width: 500px) {
  body#product .tax-shipping-delivery-label-desktop {
    display: none !important; }
  body#product .tax-shipping-delivery-label-mobile {
    display: inline-block !important; } }

body#product {
  /*.collapse{
	    display: none !important;
    }*/ }
  body#product.modal-open main.fixed_addCart .product-actions.fixed {
    z-index: 100; }
  body#product .SoyaddCart.fixed {
    display: none; }
  body#product main.fixed_addCart .soy_dot_stock {
    width: 11px;
    height: 11px; }
  body#product main.fixed_addCart .product-buy-block .product-actions.fixed {
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    -webkit-box-shadow: 1px 7px 9px 8px #eaeaea;
    -moz-box-shadow: 1px 7px 9px 8px #eaeaea;
    box-shadow: 1px 7px 9px 8px #eaeaea;
    background-color: #ffffff;
    width: 100%;
    display: block;
    min-width: 375px; }
    body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-add-to-cart {
      width: 100%;
      float: right;
      padding: 1rem;
      padding-top: 2.5rem;
      position: relative;
      background-color: #ffffff;
      z-index: 12; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-add-to-cart #product-availability {
        position: absolute;
        top: 4px;
        right: 16px; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-add-to-cart .product-quantity {
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: wrap; }
        body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-add-to-cart .product-quantity .qty {
          display: block;
          margin: 0;
          width: 50px;
          margin-right: 1.3rem; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-add-to-cart .add {
        flex: 1 1 auto;
        margin-right: 40px;
        margin-left: 0;
        position: relative;
        width: 65%; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-add-to-cart button > span {
        white-space: nowrap; }
    body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-prices {
      width: auto; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-prices .product-discount .regular-price {
        font-size: 1rem;
        line-height: 1.2;
        display: inline;
        margin: 0; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-prices .product-price .current-price span {
        font-size: 1.6rem;
        line-height: 1; }
    body#product main.fixed_addCart .product-buy-block .product-actions.fixed .soy_combination {
      width: 100%;
      padding: .6rem 0;
      padding-top: 0rem;
      margin-bottom: .75rem;
      border-bottom: 1px solid #e4e4e4;
      display: block; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .soy_combination .soy_info_combination {
        width: 60%;
        display: inline-block;
        padding-left: .2rem; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .soy_combination .soy_close_variants {
        display: none; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .soy_combination .soy_cambiar_combinacion,
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .soy_combination .soy_close_variants {
        float: right;
        color: black;
        padding: .25rem 1rem;
        text-decoration: underline;
        font-size: .88rem;
        line-height: 1; }
    body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-variants {
      padding: 0 1rem;
      position: relative;
      margin-top: 1rem; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-variants .see_options {
        display: inline-block;
        position: absolute;
        left: 20px;
        font-size: 1rem;
        font-weight: 600;
        color: #444645; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-variants .close_variants_wrapper {
        display: block; }
    body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper {
      background-color: #D8D8D8;
      border-radius: 21px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .close_variants_wrapper {
        text-align: center;
        margin-top: -30px; }
        body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .close_variants_wrapper .close_variants_fixed {
          font-size: 20px;
          display: inline-block;
          transform: scaleX(2.8);
          color: #444645;
          margin-bottom: 10px;
          cursor: grab; }
          body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .close_variants_wrapper .close_variants_fixed:active {
            cursor: grabbing; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .variants_wrapper {
        position: absolute;
        bottom: 58px;
        left: -1rem;
        background-color: #ffffff;
        width: 100vw;
        padding: 32px 1rem 0px;
        transition: bottom .1s ease-out;
        z-index: 11;
        box-shadow: 0px -10px 10px -10px #eaeaea; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .collapse_menu {
        bottom: -600px; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .navbar-toggler {
        float: right;
        padding: 0;
        cursor: pointer;
        margin-top: -5px;
        display: block;
        order: 3;
        width: 100%;
        height: 42px;
        z-index: 10; }
        body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .navbar-toggler .add,
        body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .navbar-toggler .remove {
          margin-top: 13px;
          padding-right: 15px;
          text-align: right;
          color: #444645; }
        body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .navbar-toggler .add {
          display: none; }
        body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .navbar-toggler .remove {
          display: block; }
        body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .navbar-toggler.collapsed .add {
          display: block; }
        body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .navbar-toggler.collapsed .remove {
          display: none; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .product-variants-item {
        /*width: 50%;
                            padding: 1.4rem .8rem 1.4rem 1.4rem;
                            border-radius: 21px;
                            height: 45px;*/
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
        /*align-items: center;
                            justify-content: space-between;
                            position: relative;*/ }
        body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .product-variants-item:last-child {
          border-bottom: 2px solid #D8D8D8; }
          body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .product-variants-item:last-child ul {
            margin-bottom: -5px; }
        body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .product-variants-item label .input-radio + span {
          padding: 13px 23px;
          border-radius: 26px;
          cursor: pointer;
          font-weight: bold;
          font-size: 16px; }
        body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .product-variants-item label .color {
          width: 2.625rem;
          height: 2.625rem; }
        body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .product-variants-item .control-label {
          margin-bottom: 30px;
          color: #444645;
          /*&:not(.color) + ul{
	                                margin-bottom: 15px;
                                }*/ }
          body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .product-variants-item .control-label.color {
            margin-bottom: 15px; }
            body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .product-variants-item .control-label.color + ul li {
              margin-right: 20px; }
        body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .product-variants-item ul {
          /*height: 80px;
								position: absolute;
								top: -92px;
								left: -1rem;
								width: 225%;
								background-color: #FFF;*/
          /*display: flex;
								align-items: center;
								justify-content: flex-start;*/
          /*padding-bottom: .8rem;
								padding-left: 1rem;
								border-top: 2px solid $gris-1;*/ }
          body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .product-variants-item ul li {
            margin-bottom: 15px;
            margin-right: 10px; }
            body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .product-variants-item ul li label {
              height: 45px; }
        body#product main.fixed_addCart .product-buy-block .product-actions.fixed .all_variants_wrapper .product-variants-item select {
          float: right;
          line-height: 1rem;
          margin-top: -.5rem;
          box-shadow: none;
          background-color: #f6f6f7;
          border: none; }
    body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-availability-date.mobile {
      margin: 0;
      position: absolute;
      top: -28px;
      left: 0;
      width: 100%;
      text-align: center; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-availability-date.mobile > label,
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-availability-date.mobile > span {
        color: #444645; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-availability-date.mobile > label {
        display: inline-block; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-availability-date.mobile > span {
        font-weight: bold; }
  body#product main.fixed_addCart .product-buy-block .product-actions.soy_variants_opened .soy_combination .soy_close_variants {
    display: inline-block; }
  body#product main.fixed_addCart .product-buy-block .product-actions.soy_variants_opened .soy_combination .soy_cambiar_combinacion {
    display: none; }
  body#product main.fixed_addCart .product-buy-block .product-actions .product-additional-info {
    width: 100%;
    margin-top: 10px;
    padding-left: 0;
    margin-left: 0; }
    body#product main.fixed_addCart .product-buy-block .product-actions .product-additional-info .btn-primary.js-mailalert-add {
      margin: 0 !important;
      /* Para sobrescribir el bootstrap */
      width: 100%; }

/**
 * Rensponsive a partir de 375px
**/
@media screen and (min-width: 375px) {
  body#product .product-buy-block .product-actions {
    float: none;
    width: 100%;
    display: none; }
  body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-add-to-cart {
    width: 100%; }
  body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-prices {
    display: block; } }

/**
 * Responsive a partir de 768px
 */
@media screen and (min-width: 768px) {
  body#product main.fixed_addCart .soy_dot_stock {
    width: 15px;
    height: 15px; } }

body#product {
  /* Cuando es flotante la compra */ }
  body#product .product-buy-block > .product-prices {
    display: inline-block;
    margin: 0;
    margin-bottom: 5px; }
    body#product .product-buy-block > .product-prices > div {
      display: inline-block;
      margin: 0; }
    body#product .product-buy-block > .product-prices .product-price {
      font-size: 2rem;
      font-weight: 700;
      color: #444645; }
      body#product .product-buy-block > .product-prices .product-price .current-price {
        margin: 0;
        line-height: 4.5rem;
        margin-right: .6rem; }
        body#product .product-buy-block > .product-prices .product-price .current-price span {
          letter-spacing: 0px; }
      body#product .product-buy-block > .product-prices .product-price.has-discount .current-price {
        line-height: 2.5rem; }
    body#product .product-buy-block > .product-prices .product-discount {
      color: #a5a8a8;
      color: #444645;
      margin-left: .4rem;
      font-size: .9rem; }
      body#product .product-buy-block > .product-prices .product-discount .regular-price {
        font-size: 16px; }
    body#product .product-buy-block > .product-prices .tax-shipping-delivery-label {
      color: #444645;
      font-size: 1.125rem;
      line-height: 1.33333; }
  body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-prices {
    float: left;
    margin-top: 0; }
    body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-prices .current-price,
    body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-prices .product-price {
      margin-bottom: 0;
      line-height: 1; }
    body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-prices .current-price {
      font-size: 1.6rem; }
    body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-prices .product-discount {
      display: inline-block;
      margin-left: .5rem;
      margin-bottom: 0;
      color: #C5C6C6; }
      body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-prices .product-discount .regular-price {
        font-weight: 700; }

/**
 * Rensponsive a partir de 375px
**/
@media screen and (min-width: 375px) {
  body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-prices .product-discount {
    margin-left: 0rem;
    display: block;
    margin-left: 0rem;
    line-height: 1.2; }
  body#product main.fixed_addCart .product-buy-block .product-actions.fixed .product-prices .tax-shipping-delivery-label {
    display: none; } }

/**
 * Rensponsive a partir de 390px
**/
@media screen and (min-width: 390px) {
  body#product .product-buy-block .product-prices {
    line-height: .5rem; }
    body#product .product-buy-block .product-prices .product-price .current-price {
      line-height: 3.5rem;
      margin-right: .6rem; } }

/**
 * Rensponsive a partir de 768px
**/
@media screen and (min-width: 768px) {
  body#product .product-buy-block > .product-prices {
    width: 100%; }
    body#product .product-buy-block > .product-prices .product-price .current-price {
      line-height: 2rem; }
    body#product .product-buy-block > .product-prices .product-discount {
      text-align: left; }
  body#product .product-buy-block .product-actions .product-prices {
    display: none; } }

/** Responsive 992px and up **/
@media screen and (min-width: 992px) {
  body#product .product-buy-block .product-prices {
    margin-bottom: 15px; }
    body#product .product-buy-block .product-prices .product-discount .regular-price {
      font-size: 1.25rem;
      line-height: 1.1;
      margin: 1rem 0;
      display: block; } }

/** Responsive 1200px and up **/
@media screen and (min-width: 1200px) {
  body#product .product-buy-block .product-prices .product-price .current-price span {
    font-size: 2.625rem;
    line-height: 1.47619; }
  body#product .product-buy-block .product-prices .product-discount .regular-price {
    letter-spacing: -1px;
    font-weight: 400;
    margin-left: .8rem; } }

/*-------------------------------------------------------------
## Miniature
--------------------------------------------------------------*/
/*------------------
	##MINIATURA
------------------*/
.products, #products .products {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .products .grupoErikFont, #products .products .grupoErikFont {
    font-family: "grupoerik";
    font-style: normal; }
  .products article.product-miniature, #products .products article.product-miniature {
    -webkit-box-flex: 0 1 auto;
    -moz-box-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 100%;
    height: auto;
    padding: 0 5px;
    margin: 0;
    position: relative; }
    .products article.product-miniature > div, #products .products article.product-miniature > div {
      width: 100%;
      height: auto;
      box-shadow: none; }
      .products article.product-miniature > div.thumbnail-container, #products .products article.product-miniature > div.thumbnail-container {
        border: 1px solid #D8D8D8; }
        .products article.product-miniature > div.thumbnail-container > .product-thumbnail, #products .products article.product-miniature > div.thumbnail-container > .product-thumbnail {
          height: inherit; }
          .products article.product-miniature > div.thumbnail-container > .product-thumbnail > img, #products .products article.product-miniature > div.thumbnail-container > .product-thumbnail > img {
            width: 100%;
            margin: 0;
            position: relative;
            padding: 4px; }
      .products article.product-miniature > div .product-description, #products .products article.product-miniature > div .product-description {
        position: relative;
        width: auto;
        box-shadow: none;
        min-height: unset;
        padding: 0 8px;
        margin-bottom: 3px; }
        .products article.product-miniature > div .product-description .product-title, #products .products article.product-miniature > div .product-description .product-title {
          margin-bottom: 20px;
          margin-top: 10px; }
          .products article.product-miniature > div .product-description .product-title a, #products .products article.product-miniature > div .product-description .product-title a {
            height: 36px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: left;
            font: normal normal 500 0.875rem/1.25rem Roboto;
            letter-spacing: 0px;
            color: #444645;
            text-transform: capitalize; }
        .products article.product-miniature > div .product-description .product-list-reviews, #products .products article.product-miniature > div .product-description .product-list-reviews {
          display: none; }
        .products article.product-miniature > div .product-description .product-price-min-block, #products .products article.product-miniature > div .product-description .product-price-min-block {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: space-between;
          -moz-justify-content: space-between;
          -ms-justify-content: space-between;
          justify-content: space-between;
          -ms-flex-pack: space-between;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          align-items: center;
          height: 4.125rem; }
          .products article.product-miniature > div .product-description .product-price-min-block .product-price-and-shipping, #products .products article.product-miniature > div .product-description .product-price-min-block .product-price-and-shipping {
            text-align: left;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-flex-direction: column;
            -moz-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column; }
            .products article.product-miniature > div .product-description .product-price-min-block .product-price-and-shipping .price, #products .products article.product-miniature > div .product-description .product-price-min-block .product-price-and-shipping .price {
              text-align: left;
              font: normal normal bold 1rem/1.188rem Roboto;
              letter-spacing: 0px;
              color: #444645; }
            .products article.product-miniature > div .product-description .product-price-min-block .product-price-and-shipping .regular-price, #products .products article.product-miniature > div .product-description .product-price-min-block .product-price-and-shipping .regular-price {
              text-align: left;
              text-decoration: line-through;
              font: normal normal 300 0.875rem/1rem Roboto;
              letter-spacing: 0px;
              color: #444645; }
          .products article.product-miniature > div .product-description .product-price-min-block .soy_logo_marca_product_min, #products .products article.product-miniature > div .product-description .product-price-min-block .soy_logo_marca_product_min {
            width: 4.125rem;
            height: auto;
            display: block;
            text-align: right; }
            .products article.product-miniature > div .product-description .product-price-min-block .soy_logo_marca_product_min img, #products .products article.product-miniature > div .product-description .product-price-min-block .soy_logo_marca_product_min img {
              max-width: 70px;
              max-height: 40px;
              width: auto; }
        .products article.product-miniature > div .product-description::after, #products .products article.product-miniature > div .product-description::after {
          display: none; }
      .products article.product-miniature > div .product-add-to-cart, .products article.product-miniature > div .product-miniature-add-to-cart, #products .products article.product-miniature > div .product-add-to-cart, #products .products article.product-miniature > div .product-miniature-add-to-cart {
        padding: 0 9px;
        /*height: 70px;*/
        margin-bottom: .5rem; }
        .products article.product-miniature > div .product-add-to-cart .product-quantity, .products article.product-miniature > div .product-miniature-add-to-cart .product-quantity, #products .products article.product-miniature > div .product-add-to-cart .product-quantity, #products .products article.product-miniature > div .product-miniature-add-to-cart .product-quantity {
          display: flex;
          justify-content: center; }
          .products article.product-miniature > div .product-add-to-cart .product-quantity > label, .products article.product-miniature > div .product-miniature-add-to-cart .product-quantity > label, #products .products article.product-miniature > div .product-add-to-cart .product-quantity > label, #products .products article.product-miniature > div .product-miniature-add-to-cart .product-quantity > label {
            display: none; }
          .products article.product-miniature > div .product-add-to-cart .product-quantity .add, .products article.product-miniature > div .product-miniature-add-to-cart .product-quantity .add, #products .products article.product-miniature > div .product-add-to-cart .product-quantity .add, #products .products article.product-miniature > div .product-miniature-add-to-cart .product-quantity .add {
            margin-bottom: 1rem;
            width: 100%; }
          .products article.product-miniature > div .product-add-to-cart .product-quantity .product-additional-info > .tabs, .products article.product-miniature > div .product-miniature-add-to-cart .product-quantity .product-additional-info > .tabs, #products .products article.product-miniature > div .product-add-to-cart .product-quantity .product-additional-info > .tabs, #products .products article.product-miniature > div .product-miniature-add-to-cart .product-quantity .product-additional-info > .tabs {
            display: none; }
          .products article.product-miniature > div .product-add-to-cart .product-quantity .product-availability-date.mobile, .products article.product-miniature > div .product-miniature-add-to-cart .product-quantity .product-availability-date.mobile, #products .products article.product-miniature > div .product-add-to-cart .product-quantity .product-availability-date.mobile, #products .products article.product-miniature > div .product-miniature-add-to-cart .product-quantity .product-availability-date.mobile {
            display: none; }
        .products article.product-miniature > div .product-add-to-cart input#quantity_wanted,
        .products article.product-miniature > div .product-add-to-cart .input-group-btn-vertical,
        .products article.product-miniature > div .product-add-to-cart .control-label, .products article.product-miniature > div .product-add-to-cart .qty, .products article.product-miniature > div .product-miniature-add-to-cart input#quantity_wanted,
        .products article.product-miniature > div .product-miniature-add-to-cart .input-group-btn-vertical,
        .products article.product-miniature > div .product-miniature-add-to-cart .control-label, .products article.product-miniature > div .product-miniature-add-to-cart .qty, #products .products article.product-miniature > div .product-add-to-cart input#quantity_wanted,
        #products .products article.product-miniature > div .product-add-to-cart .input-group-btn-vertical,
        #products .products article.product-miniature > div .product-add-to-cart .control-label, #products .products article.product-miniature > div .product-add-to-cart .qty, #products .products article.product-miniature > div .product-miniature-add-to-cart input#quantity_wanted,
        #products .products article.product-miniature > div .product-miniature-add-to-cart .input-group-btn-vertical,
        #products .products article.product-miniature > div .product-miniature-add-to-cart .control-label, #products .products article.product-miniature > div .product-miniature-add-to-cart .qty {
          display: none !important; }
        .products article.product-miniature > div .product-add-to-cart .add-to-cart, .products article.product-miniature > div .product-miniature-add-to-cart .add-to-cart, #products .products article.product-miniature > div .product-add-to-cart .add-to-cart, #products .products article.product-miniature > div .product-miniature-add-to-cart .add-to-cart {
          width: 100%; }
    .products article.product-miniature .wishlist-button-add, #products .products article.product-miniature .wishlist-button-add {
      display: none; }
  .products #product-availability, #products .products #product-availability {
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%; }
    .products #product-availability .soy_dot_stock, #products .products #product-availability .soy_dot_stock {
      width: 11px;
      height: 11px;
      border-radius: 8px;
      background-color: #D8D8D8;
      display: inline-block;
      margin-right: 6px; }
    .products #product-availability .soy_green_stock, #products .products #product-availability .soy_green_stock {
      background-color: #269670; }
    .products #product-availability .soy_red_stock, #products .products #product-availability .soy_red_stock {
      background-color: #E05F55; }
    .products #product-availability .soy_orange_stock, #products .products #product-availability .soy_orange_stock {
      background-color: #F59848; }

/**
 * Responsive a partir de 768px
**/
@media screen and (min-width: 768px) {
  .products article.product-miniature > div .product-description, #products .products article.product-miniature > div .product-description {
    padding: 0 18px; }
  .products article.product-miniature > div .product-add-to-cart, .products article.product-miniature > div .product-miniature-add-to-cart, #products .products article.product-miniature > div .product-add-to-cart, #products .products article.product-miniature > div .product-miniature-add-to-cart {
    margin-bottom: 1;
    padding: 0 18px; }
  .products article.product-miniature .highlighted-informations, #products .products article.product-miniature .highlighted-informations {
    padding: 0; }
    .products article.product-miniature .highlighted-informations .product-quantity .qty, #products .products article.product-miniature .highlighted-informations .product-quantity .qty {
      margin: 0; }
    .products article.product-miniature .highlighted-informations .product-quantity .add, #products .products article.product-miniature .highlighted-informations .product-quantity .add {
      margin-bottom: 0.5rem; }
  .products article.product-miniature .thumbnail-container ul.product-flags + div, #products .products article.product-miniature .thumbnail-container ul.product-flags + div {
    margin-bottom: 15px; }
  .products #product-availability .soy_dot_stock, #products .products #product-availability .soy_dot_stock {
    width: 15px;
    height: 15px; } }

/**
 * Responsive a partir de 992px
**/
@media all and (min-width: 992px) {
  .products article.product-miniature > div .product-description .product-title, #products .products article.product-miniature > div .product-description .product-title {
    margin-bottom: 12px;
    margin-top: 15px; }
    .products article.product-miniature > div .product-description .product-title a, #products .products article.product-miniature > div .product-description .product-title a {
      font: normal normal 500 1.125rem/1.313rem Roboto;
      height: 63px;
      -webkit-line-clamp: 3; }
  .products article.product-miniature > div .product-description .product-price-min-block, #products .products article.product-miniature > div .product-description .product-price-min-block {
    height: 50px; }
    .products article.product-miniature > div .product-description .product-price-min-block .product-price-and-shipping, #products .products article.product-miniature > div .product-description .product-price-min-block .product-price-and-shipping {
      -webkit-flex-direction: row-reverse;
      -moz-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
      -webkit-align-items: baseline;
      -moz-align-items: baseline;
      -ms-align-items: baseline;
      align-items: baseline; }
      .products article.product-miniature > div .product-description .product-price-min-block .product-price-and-shipping .price, #products .products article.product-miniature > div .product-description .product-price-min-block .product-price-and-shipping .price {
        font: normal normal 500 1.25rem/1.5rem Roboto;
        letter-spacing: 0px; }
      .products article.product-miniature > div .product-description .product-price-min-block .product-price-and-shipping .regular-price, #products .products article.product-miniature > div .product-description .product-price-min-block .product-price-and-shipping .regular-price {
        font: normal normal 300 1rem/1.5rem Roboto;
        margin-left: 11px; }
    .products article.product-miniature > div .product-description .product-price-min-block .soy_logo_marca_product_min, #products .products article.product-miniature > div .product-description .product-price-min-block .soy_logo_marca_product_min {
      width: 6.125rem; }
  .products article.product-miniature > div .product-add-to-cart .product-quantity .add, .products article.product-miniature > div .product-miniature-add-to-cart .product-quantity .add, #products .products article.product-miniature > div .product-add-to-cart .product-quantity .add, #products .products article.product-miniature > div .product-miniature-add-to-cart .product-quantity .add {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center; }
  .products article.product-miniature > div .product-add-to-cart .add-to-cart, .products article.product-miniature > div .product-miniature-add-to-cart .add-to-cart, #products .products article.product-miniature > div .product-add-to-cart .add-to-cart, #products .products article.product-miniature > div .product-miniature-add-to-cart .add-to-cart {
    max-width: 14.5rem; } }

/**
 * Responsive a partir de 1200px
**/
@media screen and (min-width: 1200px) {
  .products article.product-miniature, #products .products article.product-miniature {
    -webkit-box-flex: 1 0 22%;
    -moz-box-flex: 1 0 22%;
    -webkit-flex: 1 0 22%;
    -ms-flex: 1 0 22%;
    flex: 1 0 22%;
    max-width: 25%; }
    .products article.product-miniature > div .add, #products .products article.product-miniature > div .add {
      width: 232px; } }

@media (max-width: 991px) {
  .products article.product-miniature > div .product-description .product-title a, #products .products article.product-miniature > div .product-description .product-title a {
    height: 56px;
    -webkit-line-clamp: 3; } }

/*-------------------------------------------------------------
# FLAGS
--------------------------------------------------------------*/
#products .product-flags, .products .product-flags, #product .product-flags {
  width: auto;
  max-width: 46%;
  right: 0;
  left: unset;
  align-items: flex-end;
  margin: 0; }
  #products .product-flags li, .products .product-flags li, #product .product-flags li {
    background-color: #60B3CC;
    color: #ffffff;
    text-align: right;
    font: normal normal bold 0.75rem/0.875rem Roboto;
    width: 100%;
    min-height: 18px;
    margin: 0;
    margin-top: 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    #products .product-flags li.new, #products .product-flags li.product-flag.pack, .products .product-flags li.new, .products .product-flags li.product-flag.pack, #product .product-flags li.new, #product .product-flags li.product-flag.pack {
      background-color: #60B3CC; }
    #products .product-flags li.product-flag.discount, #products .product-flags li.product-flag.discount-amount, #products .product-flags li.product-flag.discount-percentage, #products .product-flags li.product-flag.on-sale, .products .product-flags li.product-flag.discount, .products .product-flags li.product-flag.discount-amount, .products .product-flags li.product-flag.discount-percentage, .products .product-flags li.product-flag.on-sale, #product .product-flags li.product-flag.discount, #product .product-flags li.product-flag.discount-amount, #product .product-flags li.product-flag.discount-percentage, #product .product-flags li.product-flag.on-sale {
      background-color: #60B3CC; }
    #products .product-flags li.product-flag.out_of_stock, .products .product-flags li.product-flag.out_of_stock, #product .product-flags li.product-flag.out_of_stock {
      background-color: #444645;
      color: #ffffff;
      text-align: right;
      font: normal normal bold 0.75rem/0.875rem Roboto; }
    #products .product-flags li.product-flag.on-sale, .products .product-flags li.product-flag.on-sale, #product .product-flags li.product-flag.on-sale {
      margin-top: 15px !important; }

#products .product-miniature .product-flags li, .products .product-miniature .product-flags li, #product .product-miniature .product-flags li {
  padding: 3px 6px 3px 9px; }

/**
 * Responsive a partir de 768px 
**/
@media screen and (min-width: 992px) {
  #products .product-flags li, .products .product-flags li, #product .product-flags li {
    font: normal normal bold 1rem/1.188rem Roboto; }
    #products .product-flags li.product-flag.out_of_stock, .products .product-flags li.product-flag.out_of_stock, #product .product-flags li.product-flag.out_of_stock {
      font: normal normal bold 1rem/1.188rem Roboto; } }

/*-------------------------------------------------------------
# Carrito
--------------------------------------------------------------*/
body#cart #content-wrapper {
  margin-bottom: 60px; }
  body#cart #content-wrapper .btn-primary {
    border-radius: 32px;
    background-color: #002D74; }
  body#cart #content-wrapper .btn-secondary {
    border-radius: 32px;
    background-color: #60B3CC; }
  body#cart #content-wrapper .soy_title_cart {
    border-bottom: 1px solid #eeeeee;
    padding: 15px; }
    body#cart #content-wrapper .soy_title_cart h1 {
      margin: 0; }
  body#cart #content-wrapper .card {
    box-shadow: none; }
  body#cart #content-wrapper .cart-grid-body .cart-overview {
    padding: 0; }
    body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item {
      border: 0; }
      body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item:before {
        content: "";
        height: 1px;
        width: 80%;
        background: #eee;
        top: -15px;
        margin: 0 auto;
        display: block;
        position: relative; }
      body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item:first-child:before {
        display: none; }
      body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid {
        display: block;
        align-items: center; }
        body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-left {
          width: 100px;
          padding: 0; }
        body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-body {
          width: calc(100% - 100px);
          margin: 0; }
          body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-body a {
            color: #000; }
            body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-body a:hover {
              color: #002D74; }
          body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-body .product-price {
            margin: 5px 0 3px;
            color: #232323; }
            body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-body .product-price .current-price {
              display: inline-block;
              font-size: 17px;
              margin-right: 6px; }
            body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-body .product-price .product-discount {
              display: inline-block; }
              body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-body .product-price .product-discount .regular-price {
                font-size: 15px;
                margin-right: 10px; }
              body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-body .product-price .product-discount .discount {
                margin: 0;
                font-size: 14px;
                padding: 3px 6px;
                background: #60B3CC; }
          body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-body .soy_attribute_combination span.label {
            color: #232323;
            font-size: 16px;
            font-weight: bold; }
        body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-right {
          float: right;
          width: auto;
          display: flex;
          align-items: center;
          margin-top: 25px; }
          body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-right .qty {
            width: 70px;
            padding: 0; }
            body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-right .qty .input-group {
              box-shadow: none; }
              body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-right .qty .input-group input {
                text-align: center; }
          body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-right .price {
            width: 115px;
            text-align: center;
            padding: 0; }
            body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-right .price .product-price {
              color: #002D74;
              font-size: 17px; }
          body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-right .soy_cart_delete {
            width: 24px;
            padding: 0;
            display: flex;
            align-items: center; }
            body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-right .soy_cart_delete .cart-line-product-actions {
              line-height: 1; }
              body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-right .soy_cart_delete .cart-line-product-actions a {
                margin: 0; }
  body#cart #content-wrapper .cart-grid-right {
    padding-top: 30px;
    background: #eee; }
    body#cart #content-wrapper .cart-grid-right .cart-summary {
      background: none; }
      body#cart #content-wrapper .cart-grid-right .cart-summary .cart-summary-line > span {
        font-size: 16px; }
      body#cart #content-wrapper .cart-grid-right .cart-summary .cart-summary-line .code {
        color: #60B3CC; }
      body#cart #content-wrapper .cart-grid-right .cart-summary .soy_totales {
        padding-top: 8px; }
        body#cart #content-wrapper .cart-grid-right .cart-summary .soy_totales span.value {
          font-size: 17px;
          font-weight: bold; }
      body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher {
        margin-bottom: 15px; }
        body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher > p > a {
          margin: 0; }
        body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher .promo-name .cart-summary-line span {
          color: #60B3CC; }
        body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher #promo-code {
          padding: 0px 20px 0;
          background: rgba(0, 0, 0, 0) none repeat scroll 0px center; }
          body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher #promo-code .promo-input {
            width: 100%;
            margin-bottom: 10px;
            margin: 0; }
          body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher #promo-code button {
            border: 0;
            width: 100%;
            padding: 10px 25px;
            margin: 0; }
          body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher #promo-code a.promo-code-button {
            color: #000; }
            body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher #promo-code a.promo-code-button:hover {
              color: #002D74; }
          body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher #promo-code .btn-primary {
            margin-top: 15px;
            margin-left: 5px; }
            body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher #promo-code .btn-primary span {
              color: white; }
          body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher #promo-code .alert-danger {
            background: #60B3CC; }
            body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher #promo-code .alert-danger::after {
              border-bottom-color: #60B3CC; }
            body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher #promo-code .alert-danger span {
              color: white; }
      body#cart #content-wrapper .cart-grid-right .cart-summary .cart-detailed-actions {
        margin-top: 15px; }
  body#cart #content-wrapper .soy_seguir_comprando {
    margin-top: 25px;
    font-size: 17px;
    line-height: 21px;
    float: left;
    clear: left;
    display: flex;
    align-items: center;
    margin-left: 15px; }

@media (min-width: 480px) {
  body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher #promo-code .promo-input {
    width: 50%; }
  body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher #promo-code button {
    width: auto;
    margin: -4px 0 0 -5px; }
  body#cart #content-wrapper .cart-grid-right .cart-summary .cart-voucher #promo-code .btn-primary {
    margin-top: 0px; } }

@media (min-width: 768px) {
  body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid {
    display: flex; }
    body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-body {
      width: calc(100% - 209px); }
    body#cart #content-wrapper .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-line-grid-right {
      margin-top: 0; } }

/*-------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
#blockcart-modal .row {
  margin-left: 0;
  margin-right: 0; }

#blockcart-modal .modal-content {
  border: 1px solid #5b5b5b42;
  border-radius: 0; }
  #blockcart-modal .modal-content .modal-header {
    background: #002D74;
    padding: 10px; }
    #blockcart-modal .modal-content .modal-header .modal-title,
    #blockcart-modal .modal-content .modal-header .close .material-icons {
      color: #ffffff; }
      #blockcart-modal .modal-content .modal-header .modal-title i,
      #blockcart-modal .modal-content .modal-header .close .material-icons i {
        margin-right: 5px; }
  #blockcart-modal .modal-content .modal-body {
    padding: 0;
    margin: 30px 0px; }
    #blockcart-modal .modal-content .modal-body .soy_modal_left {
      padding: 15px;
      border-bottom: 1px solid #efefef; }
      #blockcart-modal .modal-content .modal-body .soy_modal_left > .row {
        display: flex; }
        #blockcart-modal .modal-content .modal-body .soy_modal_left > .row .soy_img_product {
          width: 30%;
          padding: 0;
          max-width: 150px;
          min-width: 80px; }
        #blockcart-modal .modal-content .modal-body .soy_modal_left > .row .soy_info_product {
          width: 100%;
          float: left;
          padding: 0 0 0 10px; }
          #blockcart-modal .modal-content .modal-body .soy_modal_left > .row .soy_info_product .product-name {
            color: #5B5B5B;
            margin: 0;
            padding: 0;
            margin-bottom: 8px;
            float: left;
            width: 100%; }
          #blockcart-modal .modal-content .modal-body .soy_modal_left > .row .soy_info_product .product-price {
            padding: 0;
            font-size: 18px;
            font-weight: 700;
            color: #002D74;
            margin-bottom: 8px; }
          #blockcart-modal .modal-content .modal-body .soy_modal_left > .row .soy_info_product .soy_product_qty {
            padding: 0;
            color: #5B5B5B; }
    #blockcart-modal .modal-content .modal-body .soy_modal_right {
      padding: 15px; }
      #blockcart-modal .modal-content .modal-body .soy_modal_right .cart-content .cart-products-count {
        color: #5B5B5B;
        font-weight: 500;
        margin-bottom: 10px; }
      #blockcart-modal .modal-content .modal-body .soy_modal_right .cart-content > p {
        margin-bottom: 6px;
        padding: 0;
        background: none; }
      #blockcart-modal .modal-content .modal-body .soy_modal_right .cart-content .cart-content-btn {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%; }
        #blockcart-modal .modal-content .modal-body .soy_modal_right .cart-content .cart-content-btn button, #blockcart-modal .modal-content .modal-body .soy_modal_right .cart-content .cart-content-btn a {
          margin: 10px 0 0 0;
          padding: 10px;
          line-height: 20px;
          text-transform: uppercase;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: 500;
          border-radius: 20px; }
  #blockcart-modal .modal-content .modal-block-product-info {
    display: flex;
    flex-direction: column; }

@media screen and (min-width: 768px) {
  #blockcart-modal .modal-content .modal-body .soy_modal_left {
    float: left;
    width: 60%;
    border-bottom: 0; }
  #blockcart-modal .modal-content .modal-body .soy_modal_right {
    float: left;
    width: 40%;
    border-left: 1px solid #efefef; } }

@media screen and (min-width: 992px) {
  /* --------------------------------------------------------------*/
  #blockcart-modal .modal-content .modal-body .cart-content .cart-content-btn {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%; }
    #blockcart-modal .modal-content .modal-body .cart-content .cart-content-btn button {
      margin-right: 1rem; } }

@media (max-width: 991px) {
  #blockcart-modal .modal-content .modal-header .modal-title {
    font-size: 0.8rem; } }

/*-------------------------------------------------------------
# Customer
--------------------------------------------------------------*/
/*---------------------
	MI CUENTA: GENERAL
---------------------*/
body#my-account #wrapper .container,
body#identity #wrapper .container,
body#addresses #wrapper .container,
body#address #wrapper .container,
body#history #wrapper .container,
body#order-detail #wrapper .container,
body#order-slip #wrapper .container,
body#discount #wrapper .container,
body#module-psgdpr-gdpr #wrapper .container,
body#module-ps_emailalerts-account #wrapper .container,
body#module-blockwishlist-lists #wrapper .container {
  max-width: 96.375rem;
  margin: 0 auto; }

body#my-account #content-wrapper.soy_page_account #soy_account_menu #soy_account_desplega a i {
  display: none; }

body#my-account #content-wrapper.soy_page_account #soy_account_menu #soy_links_account {
  height: auto !important; }

body #content-wrapper.soy_page_account {
  margin-top: 0; }
  body #content-wrapper.soy_page_account #content {
    padding: 0;
    box-shadow: none; }
    body #content-wrapper.soy_page_account #content .row {
      margin-left: 0;
      margin-right: 0; }
  body #content-wrapper.soy_page_account .soy_content_account {
    margin-top: 20px; }
    body #content-wrapper.soy_page_account .soy_content_account .page-header {
      padding: 0;
      margin-bottom: 15px; }
      body #content-wrapper.soy_page_account .soy_content_account .page-header h1 {
        color: #000; }
    body #content-wrapper.soy_page_account .soy_content_account #notifications {
      margin: 0; }
    body #content-wrapper.soy_page_account .soy_content_account .form-fields {
      overflow: hidden; }
      body #content-wrapper.soy_page_account .soy_content_account .form-fields .form-group, body #content-wrapper.soy_page_account .soy_content_account .form-fields .form-field-item {
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
        padding: 0; }
        body #content-wrapper.soy_page_account .soy_content_account .form-fields .form-group > label,
        body #content-wrapper.soy_page_account .soy_content_account .form-fields .form-group > div, body #content-wrapper.soy_page_account .soy_content_account .form-fields .form-field-item > label,
        body #content-wrapper.soy_page_account .soy_content_account .form-fields .form-field-item > div {
          width: 100%;
          text-align: left;
          padding: 0; }
      body #content-wrapper.soy_page_account .soy_content_account .form-fields .form-group.soy_checkbox, body #content-wrapper.soy_page_account .soy_content_account .form-fields .form-field-item.soy_checkbox {
        margin-bottom: 5px; }
        body #content-wrapper.soy_page_account .soy_content_account .form-fields .form-group.soy_checkbox .form-control-label, body #content-wrapper.soy_page_account .soy_content_account .form-fields .form-field-item.soy_checkbox .form-control-label {
          margin: 0;
          display: block; }
      body #content-wrapper.soy_page_account .soy_content_account .form-fields .form-footer {
        padding: 0 10px; }
    body #content-wrapper.soy_page_account .soy_content_account .form-footer {
      margin-top: 15px;
      padding: 0 10px; }
    body #content-wrapper.soy_page_account .soy_content_account .custom-radio input[type="radio"]:checked + span {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }

@media all and (min-width: 1200px) {
  .soy-left-column-row {
    margin: 0; } }

/*-----------------
	MENÚ MI CUENTA
-----------------*/
body#my-account #wrapper,
body#identity #wrapper,
body#addresses #wrapper,
body#address #wrapper,
body#history #wrapper,
body#order-detail #wrapper,
body#order-slip #wrapper,
body#discount #wrapper,
body#module-psgdpr-gdpr #wrapper,
body#module-ps_emailalerts-account #wrapper,
body#module-blockwishlist-lists #wrapper {
  padding: 0; }
  body#my-account #wrapper .container,
  body#identity #wrapper .container,
  body#addresses #wrapper .container,
  body#address #wrapper .container,
  body#history #wrapper .container,
  body#order-detail #wrapper .container,
  body#order-slip #wrapper .container,
  body#discount #wrapper .container,
  body#module-psgdpr-gdpr #wrapper .container,
  body#module-ps_emailalerts-account #wrapper .container,
  body#module-blockwishlist-lists #wrapper .container {
    width: 100%; }

body#my-account #soy_account_menu,
body#identity #soy_account_menu,
body#addresses #soy_account_menu,
body#address #soy_account_menu,
body#history #soy_account_menu,
body#order-detail #soy_account_menu,
body#order-slip #soy_account_menu,
body#discount #soy_account_menu,
body#module-psgdpr-gdpr #soy_account_menu,
body#module-ps_emailalerts-account #soy_account_menu,
body#module-blockwishlist-lists #soy_account_menu {
  padding: 0;
  background: #002D74; }
  body#my-account #soy_account_menu #soy_account_desplega a, body#my-account #soy_account_menu #soy_account_desplega li,
  body#identity #soy_account_menu #soy_account_desplega a,
  body#identity #soy_account_menu #soy_account_desplega li,
  body#addresses #soy_account_menu #soy_account_desplega a,
  body#addresses #soy_account_menu #soy_account_desplega li,
  body#address #soy_account_menu #soy_account_desplega a,
  body#address #soy_account_menu #soy_account_desplega li,
  body#history #soy_account_menu #soy_account_desplega a,
  body#history #soy_account_menu #soy_account_desplega li,
  body#order-detail #soy_account_menu #soy_account_desplega a,
  body#order-detail #soy_account_menu #soy_account_desplega li,
  body#order-slip #soy_account_menu #soy_account_desplega a,
  body#order-slip #soy_account_menu #soy_account_desplega li,
  body#discount #soy_account_menu #soy_account_desplega a,
  body#discount #soy_account_menu #soy_account_desplega li,
  body#module-psgdpr-gdpr #soy_account_menu #soy_account_desplega a,
  body#module-psgdpr-gdpr #soy_account_menu #soy_account_desplega li,
  body#module-ps_emailalerts-account #soy_account_menu #soy_account_desplega a,
  body#module-ps_emailalerts-account #soy_account_menu #soy_account_desplega li,
  body#module-blockwishlist-lists #soy_account_menu #soy_account_desplega a,
  body#module-blockwishlist-lists #soy_account_menu #soy_account_desplega li {
    display: block;
    color: #FFF;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 16px; }
    body#my-account #soy_account_menu #soy_account_desplega a i, body#my-account #soy_account_menu #soy_account_desplega li i,
    body#identity #soy_account_menu #soy_account_desplega a i,
    body#identity #soy_account_menu #soy_account_desplega li i,
    body#addresses #soy_account_menu #soy_account_desplega a i,
    body#addresses #soy_account_menu #soy_account_desplega li i,
    body#address #soy_account_menu #soy_account_desplega a i,
    body#address #soy_account_menu #soy_account_desplega li i,
    body#history #soy_account_menu #soy_account_desplega a i,
    body#history #soy_account_menu #soy_account_desplega li i,
    body#order-detail #soy_account_menu #soy_account_desplega a i,
    body#order-detail #soy_account_menu #soy_account_desplega li i,
    body#order-slip #soy_account_menu #soy_account_desplega a i,
    body#order-slip #soy_account_menu #soy_account_desplega li i,
    body#discount #soy_account_menu #soy_account_desplega a i,
    body#discount #soy_account_menu #soy_account_desplega li i,
    body#module-psgdpr-gdpr #soy_account_menu #soy_account_desplega a i,
    body#module-psgdpr-gdpr #soy_account_menu #soy_account_desplega li i,
    body#module-ps_emailalerts-account #soy_account_menu #soy_account_desplega a i,
    body#module-ps_emailalerts-account #soy_account_menu #soy_account_desplega li i,
    body#module-blockwishlist-lists #soy_account_menu #soy_account_desplega a i,
    body#module-blockwishlist-lists #soy_account_menu #soy_account_desplega li i {
      float: right;
      -webkit-transition: all 0.5s ease-out;
      /* Safari */
      -moz-transition: all 0.5s ease-out;
      /* Mozilla */
      -o-transition: all 0.5s ease-out;
      transition: all 0.5s ease-out; }
    body#my-account #soy_account_menu #soy_account_desplega a[aria-expanded="true"] i, body#my-account #soy_account_menu #soy_account_desplega li[aria-expanded="true"] i,
    body#identity #soy_account_menu #soy_account_desplega a[aria-expanded="true"] i,
    body#identity #soy_account_menu #soy_account_desplega li[aria-expanded="true"] i,
    body#addresses #soy_account_menu #soy_account_desplega a[aria-expanded="true"] i,
    body#addresses #soy_account_menu #soy_account_desplega li[aria-expanded="true"] i,
    body#address #soy_account_menu #soy_account_desplega a[aria-expanded="true"] i,
    body#address #soy_account_menu #soy_account_desplega li[aria-expanded="true"] i,
    body#history #soy_account_menu #soy_account_desplega a[aria-expanded="true"] i,
    body#history #soy_account_menu #soy_account_desplega li[aria-expanded="true"] i,
    body#order-detail #soy_account_menu #soy_account_desplega a[aria-expanded="true"] i,
    body#order-detail #soy_account_menu #soy_account_desplega li[aria-expanded="true"] i,
    body#order-slip #soy_account_menu #soy_account_desplega a[aria-expanded="true"] i,
    body#order-slip #soy_account_menu #soy_account_desplega li[aria-expanded="true"] i,
    body#discount #soy_account_menu #soy_account_desplega a[aria-expanded="true"] i,
    body#discount #soy_account_menu #soy_account_desplega li[aria-expanded="true"] i,
    body#module-psgdpr-gdpr #soy_account_menu #soy_account_desplega a[aria-expanded="true"] i,
    body#module-psgdpr-gdpr #soy_account_menu #soy_account_desplega li[aria-expanded="true"] i,
    body#module-ps_emailalerts-account #soy_account_menu #soy_account_desplega a[aria-expanded="true"] i,
    body#module-ps_emailalerts-account #soy_account_menu #soy_account_desplega li[aria-expanded="true"] i,
    body#module-blockwishlist-lists #soy_account_menu #soy_account_desplega a[aria-expanded="true"] i,
    body#module-blockwishlist-lists #soy_account_menu #soy_account_desplega li[aria-expanded="true"] i {
      -ms-transform: rotate(180deg);
      /* IE 9 */
      -webkit-transform: rotate(180deg);
      /* Safari */
      transform: rotate(180deg); }
  body#my-account #soy_account_menu #soy_links_account,
  body#identity #soy_account_menu #soy_links_account,
  body#addresses #soy_account_menu #soy_links_account,
  body#address #soy_account_menu #soy_links_account,
  body#history #soy_account_menu #soy_links_account,
  body#order-detail #soy_account_menu #soy_links_account,
  body#order-slip #soy_account_menu #soy_links_account,
  body#discount #soy_account_menu #soy_links_account,
  body#module-psgdpr-gdpr #soy_account_menu #soy_links_account,
  body#module-ps_emailalerts-account #soy_account_menu #soy_links_account,
  body#module-blockwishlist-lists #soy_account_menu #soy_links_account {
    overflow: hidden; }
    body#my-account #soy_account_menu #soy_links_account #soy-menu-account,
    body#identity #soy_account_menu #soy_links_account #soy-menu-account,
    body#addresses #soy_account_menu #soy_links_account #soy-menu-account,
    body#address #soy_account_menu #soy_links_account #soy-menu-account,
    body#history #soy_account_menu #soy_links_account #soy-menu-account,
    body#order-detail #soy_account_menu #soy_links_account #soy-menu-account,
    body#order-slip #soy_account_menu #soy_links_account #soy-menu-account,
    body#discount #soy_account_menu #soy_links_account #soy-menu-account,
    body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account,
    body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account,
    body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account {
      display: block;
      width: 100%; }
      body#my-account #soy_account_menu #soy_links_account #soy-menu-account li, body#my-account #soy_account_menu #soy_links_account #soy-menu-account a,
      body#identity #soy_account_menu #soy_links_account #soy-menu-account li,
      body#identity #soy_account_menu #soy_links_account #soy-menu-account a,
      body#addresses #soy_account_menu #soy_links_account #soy-menu-account li,
      body#addresses #soy_account_menu #soy_links_account #soy-menu-account a,
      body#address #soy_account_menu #soy_links_account #soy-menu-account li,
      body#address #soy_account_menu #soy_links_account #soy-menu-account a,
      body#history #soy_account_menu #soy_links_account #soy-menu-account li,
      body#history #soy_account_menu #soy_links_account #soy-menu-account a,
      body#order-detail #soy_account_menu #soy_links_account #soy-menu-account li,
      body#order-detail #soy_account_menu #soy_links_account #soy-menu-account a,
      body#order-slip #soy_account_menu #soy_links_account #soy-menu-account li,
      body#order-slip #soy_account_menu #soy_links_account #soy-menu-account a,
      body#discount #soy_account_menu #soy_links_account #soy-menu-account li,
      body#discount #soy_account_menu #soy_links_account #soy-menu-account a,
      body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account li,
      body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account a,
      body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account li,
      body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account a,
      body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account li,
      body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account a {
        width: 100%;
        display: block; }
        body#my-account #soy_account_menu #soy_links_account #soy-menu-account li a, body#my-account #soy_account_menu #soy_links_account #soy-menu-account a a,
        body#identity #soy_account_menu #soy_links_account #soy-menu-account li a,
        body#identity #soy_account_menu #soy_links_account #soy-menu-account a a,
        body#addresses #soy_account_menu #soy_links_account #soy-menu-account li a,
        body#addresses #soy_account_menu #soy_links_account #soy-menu-account a a,
        body#address #soy_account_menu #soy_links_account #soy-menu-account li a,
        body#address #soy_account_menu #soy_links_account #soy-menu-account a a,
        body#history #soy_account_menu #soy_links_account #soy-menu-account li a,
        body#history #soy_account_menu #soy_links_account #soy-menu-account a a,
        body#order-detail #soy_account_menu #soy_links_account #soy-menu-account li a,
        body#order-detail #soy_account_menu #soy_links_account #soy-menu-account a a,
        body#order-slip #soy_account_menu #soy_links_account #soy-menu-account li a,
        body#order-slip #soy_account_menu #soy_links_account #soy-menu-account a a,
        body#discount #soy_account_menu #soy_links_account #soy-menu-account li a,
        body#discount #soy_account_menu #soy_links_account #soy-menu-account a a,
        body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account li a,
        body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account a a,
        body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account li a,
        body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account a a,
        body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account li a,
        body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account a a {
          display: block;
          text-align: left;
          margin: 0;
          padding: 10px 15px 10px 20px;
          float: none;
          width: 100%; }
        body#my-account #soy_account_menu #soy_links_account #soy-menu-account li .link-item, body#my-account #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
        body#identity #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
        body#identity #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
        body#addresses #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
        body#addresses #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
        body#address #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
        body#address #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
        body#history #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
        body#history #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
        body#order-detail #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
        body#order-detail #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
        body#order-slip #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
        body#order-slip #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
        body#discount #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
        body#discount #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
        body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
        body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
        body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
        body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
        body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
        body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account a .link-item {
          box-shadow: none;
          position: relative;
          font-size: 15px;
          text-transform: uppercase;
          font-weight: normal;
          background: none;
          color: #FFF;
          padding: 0px 0 0 31px;
          line-height: 24px;
          display: block;
          text-align: left; }
          body#my-account #soy_account_menu #soy_links_account #soy-menu-account li .link-item i, body#my-account #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
          body#identity #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
          body#identity #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
          body#addresses #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
          body#addresses #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
          body#address #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
          body#address #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
          body#history #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
          body#history #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
          body#order-detail #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
          body#order-detail #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
          body#order-slip #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
          body#order-slip #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
          body#discount #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
          body#discount #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
          body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
          body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
          body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
          body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
          body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
          body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account a .link-item i {
            position: absolute;
            left: 0;
            top: 0;
            padding: 0;
            font-size: 25px;
            color: #FFF;
            width: auto; }
      body#my-account #soy_account_menu #soy_links_account #soy-menu-account .sign-out .link-item,
      body#identity #soy_account_menu #soy_links_account #soy-menu-account .sign-out .link-item,
      body#addresses #soy_account_menu #soy_links_account #soy-menu-account .sign-out .link-item,
      body#address #soy_account_menu #soy_links_account #soy-menu-account .sign-out .link-item,
      body#history #soy_account_menu #soy_links_account #soy-menu-account .sign-out .link-item,
      body#order-detail #soy_account_menu #soy_links_account #soy-menu-account .sign-out .link-item,
      body#order-slip #soy_account_menu #soy_links_account #soy-menu-account .sign-out .link-item,
      body#discount #soy_account_menu #soy_links_account #soy-menu-account .sign-out .link-item,
      body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account .sign-out .link-item,
      body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account .sign-out .link-item,
      body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account .sign-out .link-item {
        display: inline; }

@media all and (min-width: 576px) {
  body#my-account #wrapper,
  body#identity #wrapper,
  body#addresses #wrapper,
  body#address #wrapper,
  body#history #wrapper,
  body#order-detail #wrapper,
  body#order-slip #wrapper,
  body#discount #wrapper,
  body#module-psgdpr-gdpr #wrapper,
  body#module-ps_emailalerts-account #wrapper,
  body#module-blockwishlist-lists #wrapper {
    padding: 0; }
    body#my-account #wrapper .container,
    body#identity #wrapper .container,
    body#addresses #wrapper .container,
    body#address #wrapper .container,
    body#history #wrapper .container,
    body#order-detail #wrapper .container,
    body#order-slip #wrapper .container,
    body#discount #wrapper .container,
    body#module-psgdpr-gdpr #wrapper .container,
    body#module-ps_emailalerts-account #wrapper .container,
    body#module-blockwishlist-lists #wrapper .container {
      width: 100%; } }

@media all and (min-width: 768px) {
  body#my-account #wrapper,
  body#identity #wrapper,
  body#addresses #wrapper,
  body#address #wrapper,
  body#history #wrapper,
  body#order-detail #wrapper,
  body#order-slip #wrapper,
  body#discount #wrapper,
  body#module-psgdpr-gdpr #wrapper,
  body#module-ps_emailalerts-account #wrapper,
  body#module-blockwishlist-lists #wrapper {
    padding: 0; }
    body#my-account #wrapper .container,
    body#identity #wrapper .container,
    body#addresses #wrapper .container,
    body#address #wrapper .container,
    body#history #wrapper .container,
    body#order-detail #wrapper .container,
    body#order-slip #wrapper .container,
    body#discount #wrapper .container,
    body#module-psgdpr-gdpr #wrapper .container,
    body#module-ps_emailalerts-account #wrapper .container,
    body#module-blockwishlist-lists #wrapper .container {
      width: 100%; } }

@media all and (min-width: 992px) {
  body#my-account #soy_account_menu,
  body#identity #soy_account_menu,
  body#addresses #soy_account_menu,
  body#address #soy_account_menu,
  body#history #soy_account_menu,
  body#order-detail #soy_account_menu,
  body#order-slip #soy_account_menu,
  body#discount #soy_account_menu,
  body#module-psgdpr-gdpr #soy_account_menu,
  body#module-ps_emailalerts-account #soy_account_menu,
  body#module-blockwishlist-lists #soy_account_menu {
    margin-top: 35px;
    padding: 0 15px;
    background: none;
    border-right: 1px solid #D8D8D8; }
    body#my-account #soy_account_menu #soy_account_desplega a,
    body#identity #soy_account_menu #soy_account_desplega a,
    body#addresses #soy_account_menu #soy_account_desplega a,
    body#address #soy_account_menu #soy_account_desplega a,
    body#history #soy_account_menu #soy_account_desplega a,
    body#order-detail #soy_account_menu #soy_account_desplega a,
    body#order-slip #soy_account_menu #soy_account_desplega a,
    body#discount #soy_account_menu #soy_account_desplega a,
    body#module-psgdpr-gdpr #soy_account_menu #soy_account_desplega a,
    body#module-ps_emailalerts-account #soy_account_menu #soy_account_desplega a,
    body#module-blockwishlist-lists #soy_account_menu #soy_account_desplega a {
      padding: 2px 0;
      color: #444645; }
      body#my-account #soy_account_menu #soy_account_desplega a i,
      body#identity #soy_account_menu #soy_account_desplega a i,
      body#addresses #soy_account_menu #soy_account_desplega a i,
      body#address #soy_account_menu #soy_account_desplega a i,
      body#history #soy_account_menu #soy_account_desplega a i,
      body#order-detail #soy_account_menu #soy_account_desplega a i,
      body#order-slip #soy_account_menu #soy_account_desplega a i,
      body#discount #soy_account_menu #soy_account_desplega a i,
      body#module-psgdpr-gdpr #soy_account_menu #soy_account_desplega a i,
      body#module-ps_emailalerts-account #soy_account_menu #soy_account_desplega a i,
      body#module-blockwishlist-lists #soy_account_menu #soy_account_desplega a i {
        display: none; }
    body#my-account #soy_account_menu #soy_links_account,
    body#identity #soy_account_menu #soy_links_account,
    body#addresses #soy_account_menu #soy_links_account,
    body#address #soy_account_menu #soy_links_account,
    body#history #soy_account_menu #soy_links_account,
    body#order-detail #soy_account_menu #soy_links_account,
    body#order-slip #soy_account_menu #soy_links_account,
    body#discount #soy_account_menu #soy_links_account,
    body#module-psgdpr-gdpr #soy_account_menu #soy_links_account,
    body#module-ps_emailalerts-account #soy_account_menu #soy_links_account,
    body#module-blockwishlist-lists #soy_account_menu #soy_links_account {
      height: auto !important;
      display: block !important; }
      body#my-account #soy_account_menu #soy_links_account #soy-menu-account li a, body#my-account #soy_account_menu #soy_links_account #soy-menu-account a a,
      body#identity #soy_account_menu #soy_links_account #soy-menu-account li a,
      body#identity #soy_account_menu #soy_links_account #soy-menu-account a a,
      body#addresses #soy_account_menu #soy_links_account #soy-menu-account li a,
      body#addresses #soy_account_menu #soy_links_account #soy-menu-account a a,
      body#address #soy_account_menu #soy_links_account #soy-menu-account li a,
      body#address #soy_account_menu #soy_links_account #soy-menu-account a a,
      body#history #soy_account_menu #soy_links_account #soy-menu-account li a,
      body#history #soy_account_menu #soy_links_account #soy-menu-account a a,
      body#order-detail #soy_account_menu #soy_links_account #soy-menu-account li a,
      body#order-detail #soy_account_menu #soy_links_account #soy-menu-account a a,
      body#order-slip #soy_account_menu #soy_links_account #soy-menu-account li a,
      body#order-slip #soy_account_menu #soy_links_account #soy-menu-account a a,
      body#discount #soy_account_menu #soy_links_account #soy-menu-account li a,
      body#discount #soy_account_menu #soy_links_account #soy-menu-account a a,
      body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account li a,
      body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account a a,
      body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account li a,
      body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account a a,
      body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account li a,
      body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account a a {
        padding: 10px 0 10px 5px; }
      body#my-account #soy_account_menu #soy_links_account #soy-menu-account li .link-item, body#my-account #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
      body#identity #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
      body#identity #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
      body#addresses #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
      body#addresses #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
      body#address #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
      body#address #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
      body#history #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
      body#history #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
      body#order-detail #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
      body#order-detail #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
      body#order-slip #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
      body#order-slip #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
      body#discount #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
      body#discount #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
      body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
      body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
      body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
      body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account a .link-item,
      body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account li .link-item,
      body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account a .link-item {
        color: #444645; }
        body#my-account #soy_account_menu #soy_links_account #soy-menu-account li .link-item i, body#my-account #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
        body#identity #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
        body#identity #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
        body#addresses #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
        body#addresses #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
        body#address #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
        body#address #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
        body#history #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
        body#history #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
        body#order-detail #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
        body#order-detail #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
        body#order-slip #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
        body#order-slip #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
        body#discount #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
        body#discount #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
        body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
        body#module-psgdpr-gdpr #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
        body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
        body#module-ps_emailalerts-account #soy_account_menu #soy_links_account #soy-menu-account a .link-item i,
        body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account li .link-item i,
        body#module-blockwishlist-lists #soy_account_menu #soy_links_account #soy-menu-account a .link-item i {
          color: #444645; } }

/*-------------------------------------------------------------
## Authentification
--------------------------------------------------------------*/
#authentication #header, #registration #header {
  margin-bottom: 0px; }

#authentication.page-authentication .alert, #registration.page-registration .alert {
  font-family: "Roboto"; }

#authentication.page-authentication #content-wrapper .page-header, #registration.page-registration #content-wrapper .page-header {
  margin: 0 auto;
  padding: 0; }
  #authentication.page-authentication #content-wrapper .page-header h1, #registration.page-registration #content-wrapper .page-header h1 {
    text-transform: uppercase; }

#authentication.page-authentication #content-wrapper #content, #registration.page-registration #content-wrapper #content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }
  #authentication.page-authentication #content-wrapper #content.card, #registration.page-registration #content-wrapper #content.card {
    border: 0px;
    padding: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }
  #authentication.page-authentication #content-wrapper #content > section, #registration.page-registration #content-wrapper #content > section {
    margin-bottom: 3rem;
    padding: 0; }
    #authentication.page-authentication #content-wrapper #content > section .form-group, #registration.page-registration #content-wrapper #content > section .form-group {
      margin-bottom: 0px; }
      #authentication.page-authentication #content-wrapper #content > section .form-group .form-control-label, #authentication.page-authentication #content-wrapper #content > section .form-group .f-label, #registration.page-registration #content-wrapper #content > section .form-group .form-control-label, #registration.page-registration #content-wrapper #content > section .form-group .f-label {
        text-align: left;
        font: normal normal bold 0.875rem/1.25rem Roboto;
        letter-spacing: 0px;
        color: #444645; }
      #authentication.page-authentication #content-wrapper #content > section .form-group .form-control-comment, #registration.page-registration #content-wrapper #content > section .form-group .form-control-comment {
        text-align: left;
        font: normal normal normal 0.875rem/1.25rem Roboto;
        letter-spacing: 0px;
        color: #444645; }
      #authentication.page-authentication #content-wrapper #content > section .form-group input[type="email"], #registration.page-registration #content-wrapper #content > section .form-group input[type="email"] {
        text-align: left;
        font: normal normal normal 0.875rem/1.25rem Roboto;
        letter-spacing: 0px;
        color: #444645;
        background-color: #ffffff;
        border: 1px solid #9D9D9D;
        height: 3rem; }
        #authentication.page-authentication #content-wrapper #content > section .form-group input[type="email"]::placeholder, #registration.page-registration #content-wrapper #content > section .form-group input[type="email"]::placeholder {
          text-align: left;
          font: normal normal normal 0.875rem/1.25rem Roboto;
          letter-spacing: 0px;
          color: #9D9D9D; }
        #authentication.page-authentication #content-wrapper #content > section .form-group input[type="email"]:focus, #registration.page-registration #content-wrapper #content > section .form-group input[type="email"]:focus {
          outline: none;
          border: solid 1px #60B3CC; }
      #authentication.page-authentication #content-wrapper #content > section .form-group input[type="password"], #authentication.page-authentication #content-wrapper #content > section .form-group .form-control.js-visible-password, #registration.page-registration #content-wrapper #content > section .form-group input[type="password"], #registration.page-registration #content-wrapper #content > section .form-group .form-control.js-visible-password {
        text-align: left;
        font: normal normal normal 0.875rem/1.25rem Roboto;
        letter-spacing: 0px;
        color: #444645;
        background-color: #ffffff;
        border: 1px solid #9D9D9D;
        height: 3rem; }
        #authentication.page-authentication #content-wrapper #content > section .form-group input[type="password"]:focus, #authentication.page-authentication #content-wrapper #content > section .form-group .form-control.js-visible-password:focus, #registration.page-registration #content-wrapper #content > section .form-group input[type="password"]:focus, #registration.page-registration #content-wrapper #content > section .form-group .form-control.js-visible-password:focus {
          outline: none;
          border: solid 1px #60B3CC; }
      #authentication.page-authentication #content-wrapper #content > section .form-group .input-group.focus, #registration.page-registration #content-wrapper #content > section .form-group .input-group.focus {
        outline: none; }
      #authentication.page-authentication #content-wrapper #content > section .form-group .input-group-btn > .btn[data-action="show-password"], #registration.page-registration #content-wrapper #content > section .form-group .input-group-btn > .btn[data-action="show-password"] {
        background-color: #4A4A4A;
        font-size: 0.875rem;
        opacity: 1; }
        #authentication.page-authentication #content-wrapper #content > section .form-group .input-group-btn > .btn[data-action="show-password"]:hover, #authentication.page-authentication #content-wrapper #content > section .form-group .input-group-btn > .btn[data-action="show-password"]:active, #authentication.page-authentication #content-wrapper #content > section .form-group .input-group-btn > .btn[data-action="show-password"]:focus, #registration.page-registration #content-wrapper #content > section .form-group .input-group-btn > .btn[data-action="show-password"]:hover, #registration.page-registration #content-wrapper #content > section .form-group .input-group-btn > .btn[data-action="show-password"]:active, #registration.page-registration #content-wrapper #content > section .form-group .input-group-btn > .btn[data-action="show-password"]:focus {
          background-color: #4A4A4A;
          font-size: 0.875rem;
          opacity: 0.6; }
    #authentication.page-authentication #content-wrapper #content > section .soy_titulo_form, #registration.page-registration #content-wrapper #content > section .soy_titulo_form {
      margin-top: 1rem;
      display: block; }
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer, #authentication.page-authentication #content-wrapper #content > section #login-form footer, #registration.page-registration #content-wrapper #content > section.singup-form footer, #registration.page-registration #content-wrapper #content > section #login-form footer {
      text-align: right;
      margin-top: 1rem; }
    #authentication.page-authentication #content-wrapper #content > section #login-form .forgot-password, #registration.page-registration #content-wrapper #content > section #login-form .forgot-password {
      text-align: left;
      margin-top: 0;
      padding-bottom: 1rem; }
      #authentication.page-authentication #content-wrapper #content > section #login-form .forgot-password a, #registration.page-registration #content-wrapper #content > section #login-form .forgot-password a {
        color: #002D74; }
        #authentication.page-authentication #content-wrapper #content > section #login-form .forgot-password a:hover, #authentication.page-authentication #content-wrapper #content > section #login-form .forgot-password a:focus, #authentication.page-authentication #content-wrapper #content > section #login-form .forgot-password a:active, #registration.page-registration #content-wrapper #content > section #login-form .forgot-password a:hover, #registration.page-registration #content-wrapper #content > section #login-form .forgot-password a:focus, #registration.page-registration #content-wrapper #content > section #login-form .forgot-password a:active {
          color: #002D74;
          opacity: 0.6; }
    #authentication.page-authentication #content-wrapper #content > section #login-form footer, #registration.page-registration #content-wrapper #content > section #login-form footer {
      margin-top: 0; }

/**
  * Rensponsive a partir de 768px
 **/
@media screen and (min-width: 768px) {
  #authentication.page-authentication #content-wrapper #content, #registration.page-registration #content-wrapper #content {
    max-width: 100%; }
    #authentication.page-authentication #content-wrapper #content > section.singup-form footer input, #authentication.page-authentication #content-wrapper #content > section.singup-form footer button, #authentication.page-authentication #content-wrapper #content > section #login-form footer input, #authentication.page-authentication #content-wrapper #content > section #login-form footer button, #registration.page-registration #content-wrapper #content > section.singup-form footer input, #registration.page-registration #content-wrapper #content > section.singup-form footer button, #registration.page-registration #content-wrapper #content > section #login-form footer input, #registration.page-registration #content-wrapper #content > section #login-form footer button {
      width: 100%; }
    #authentication.page-authentication #content-wrapper #content > section #login-form label, #authentication.page-authentication #content-wrapper #content > section.register-form label, #registration.page-registration #content-wrapper #content > section #login-form label, #registration.page-registration #content-wrapper #content > section.register-form label {
      float: none;
      display: block;
      width: 100%;
      text-align: left; }
    #authentication.page-authentication #content-wrapper #content > section #login-form div.col-md-6, #authentication.page-authentication #content-wrapper #content > section.register-form div.col-md-6, #registration.page-registration #content-wrapper #content > section #login-form div.col-md-6, #registration.page-registration #content-wrapper #content > section.register-form div.col-md-6 {
      width: 100%; }
    #authentication.page-authentication #content-wrapper #content > section.register-form, #registration.page-registration #content-wrapper #content > section.register-form {
      padding-right: 0; }
      #authentication.page-authentication #content-wrapper #content > section.register-form div.form-group, #registration.page-registration #content-wrapper #content > section.register-form div.form-group {
        width: 48%;
        display: inline-block;
        vertical-align: top;
        margin-right: 1rem; }
        #authentication.page-authentication #content-wrapper #content > section.register-form div.form-group:nth-of-type(2), #authentication.page-authentication #content-wrapper #content > section.register-form div.form-group:nth-of-type(4), #registration.page-registration #content-wrapper #content > section.register-form div.form-group:nth-of-type(2), #registration.page-registration #content-wrapper #content > section.register-form div.form-group:nth-of-type(4) {
          margin-right: 0rem;
          margin-left: 1rem; }
        #authentication.page-authentication #content-wrapper #content > section.register-form div.form-group:nth-of-type(5), #authentication.page-authentication #content-wrapper #content > section.register-form div.form-group:nth-of-type(6), #registration.page-registration #content-wrapper #content > section.register-form div.form-group:nth-of-type(5), #registration.page-registration #content-wrapper #content > section.register-form div.form-group:nth-of-type(6) {
          display: block;
          width: 100%; } }

/**
  * Rensponsive a partir de 992
 **/
@media screen and (min-width: 992px) {
  #authentication.page-authentication #content-wrapper #content > section .form-group, #registration.page-registration #content-wrapper #content > section .form-group {
    margin-bottom: 0px; }
    #authentication.page-authentication #content-wrapper #content > section .form-group .form-control-label, #authentication.page-authentication #content-wrapper #content > section .form-group .f-label, #registration.page-registration #content-wrapper #content > section .form-group .form-control-label, #registration.page-registration #content-wrapper #content > section .form-group .f-label {
      font: normal normal bold 1rem/1.375rem Roboto; }
    #authentication.page-authentication #content-wrapper #content > section .form-group .form-control-comment, #registration.page-registration #content-wrapper #content > section .form-group .form-control-comment {
      font: normal normal normal 1rem/1.375rem Roboto; }
    #authentication.page-authentication #content-wrapper #content > section .form-group input[type="email"], #registration.page-registration #content-wrapper #content > section .form-group input[type="email"] {
      font: normal normal normal 1rem/1.375rem Roboto; }
      #authentication.page-authentication #content-wrapper #content > section .form-group input[type="email"]::placeholder, #registration.page-registration #content-wrapper #content > section .form-group input[type="email"]::placeholder {
        font: normal normal normal 1rem/1.375rem Roboto; }
    #authentication.page-authentication #content-wrapper #content > section .form-group input[type="password"], #authentication.page-authentication #content-wrapper #content > section .form-group .form-control.js-visible-password, #registration.page-registration #content-wrapper #content > section .form-group input[type="password"], #registration.page-registration #content-wrapper #content > section .form-group .form-control.js-visible-password {
      font: normal normal normal 1rem/1.375rem Roboto; }
  #authentication.page-authentication #content-wrapper #content > section.singup-form, #registration.page-registration #content-wrapper #content > section.singup-form {
    padding-right: 6rem; }
  #authentication.page-authentication #content-wrapper #content > section:nth-of-type(2), #registration.page-registration #content-wrapper #content > section:nth-of-type(2) {
    padding-left: 6rem; }
  #authentication.page-authentication #content-wrapper #content > section #login-form footer, #registration.page-registration #content-wrapper #content > section #login-form footer {
    text-align: left; } }

/*-------------------------------------------------------------
## Registration (correcciones)
--------------------------------------------------------------*/
#registration.page-registration .custom-radio > input[type="radio"]:checked + span {
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px; }

#registration.page-registration .account_creation {
  margin-top: 0.5rem; }
  #registration.page-registration .account_creation h3 {
    text-align: left;
    font: normal normal bold 0.875rem/1.25rem Roboto;
    letter-spacing: 0px;
    color: #444645; }
  #registration.page-registration .account_creation #equivalencetax {
    text-align: left;
    font: normal normal normal 0.875rem/1.25rem Roboto;
    letter-spacing: 0px;
    color: #444645;
    background-color: #ffffff;
    border: 1px solid #9D9D9D;
    height: auto; }
    #registration.page-registration .account_creation #equivalencetax::placeholder {
      text-align: left;
      font: normal normal normal 0.875rem/1.25rem Roboto;
      letter-spacing: 0px;
      color: #9D9D9D; }
    #registration.page-registration .account_creation #equivalencetax:focus {
      outline: none;
      border: solid 1px #60B3CC; }

#registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_id_gender {
  display: none; }

@media all and (min-width: 768px) {
  #registration.page-registration #content-wrapper #content > section.register-form .form-fields {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem; }
  #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_id_gender, #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_newsletter, #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_password {
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
    #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_id_gender > *, #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_newsletter > *, #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_password > * {
      padding-left: 0;
      padding-right: 0; }
  #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_birthday, #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_firstname, #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_lastname, #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_email, #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_custom_field {
    width: 48%;
    margin-left: 0;
    margin-right: 0; }
    #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_birthday > *, #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_firstname > *, #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_lastname > *, #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_email > *, #registration.page-registration #content-wrapper #content > section.register-form div.form-group.soy_custom_field > * {
      padding-left: 0;
      padding-right: 0; }
  #registration.page-registration #content-wrapper #content > section.register-form .field-password-policy {
    width: 48%;
    margin-left: 0;
    margin-right: 0; }
  #registration.page-registration #content-wrapper #content > section.register-form .account_creation {
    margin-top: 0;
    width: 48%;
    margin-left: 0;
    margin-right: 0; } }

@media all and (min-width: 992px) {
  #registration.page-registration #content-wrapper #content > section.register-form .account_creation h3 {
    font: normal normal bold 1rem/1.375rem Roboto; }
  #registration.page-registration #content-wrapper #content > section.register-form .account_creation p.text {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start; }
    #registration.page-registration #content-wrapper #content > section.register-form .account_creation p.text label {
      width: fit-content; }
  #registration.page-registration #content-wrapper #content > section.register-form .account_creation #equivalencetax {
    font: normal normal normal 1rem/1.375rem Roboto;
    margin-left: 0.5rem; }
    #registration.page-registration #content-wrapper #content > section.register-form .account_creation #equivalencetax::placeholder {
      font: normal normal normal 1rem/1.375rem Roboto; } }

/*-------------------------------------------------------------
## Adresses
--------------------------------------------------------------*/
body#addresses .page-header {
  border-bottom: 1px solid #002D74;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  body#addresses .page-header > div {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
  body#addresses .page-header .addresses-button {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    width: 100%;
    margin-top: 10px; }
    body#addresses .page-header .addresses-button a {
      width: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center;
      max-width: 23.438rem; }
      body#addresses .page-header .addresses-button a i {
        display: none !important; }

body#addresses .soy_addresses {
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-border-radius: 0;
  /* Mozilla */
  -webkit-border-radius: 0;
  /* Safari */
  border-radius: 0;
  width: 100%;
  border: 1px solid #D8D8D8;
  padding: 10px 15px;
  margin-bottom: 10px; }
  body#addresses .soy_addresses .address {
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 15px;
    margin: 0; }
    body#addresses .soy_addresses .address .address-body {
      padding: 0;
      border-bottom: 0; }
      body#addresses .soy_addresses .address .address-body h4 {
        text-align: left;
        font: normal normal 500 1.125rem/1.625rem Oswald;
        letter-spacing: 0px;
        color: #444645;
        text-transform: uppercase; }
      body#addresses .soy_addresses .address .address-body > div {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        color: #444645; }
        body#addresses .soy_addresses .address .address-body > div i {
          font-size: 15px;
          line-height: 18px;
          padding-right: 5px; }
        body#addresses .soy_addresses .address .address-body > div p {
          color: #444645;
          font-size: 15px;
          margin-bottom: 0; }
      body#addresses .soy_addresses .address .address-body address {
        margin-bottom: 0;
        min-height: inherit;
        padding-top: 10px;
        font: normal normal normal 0.875rem/1.25rem Roboto;
        letter-spacing: 0px;
        color: #444645; }
      body#addresses .soy_addresses .address .address-body .soy_close {
        display: none; }
    body#addresses .soy_addresses .address .address-footer {
      padding: 10px 0 0 0;
      overflow: hidden;
      border-top: 0;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center; }
      body#addresses .soy_addresses .address .address-footer a, body#addresses .soy_addresses .address .address-footer button {
        width: 48px;
        height: 48px;
        text-align: center;
        line-height: 15px;
        border: 1px solid #D8D8D8;
        -moz-border-radius: 0;
        /* Mozilla */
        -webkit-border-radius: 0;
        /* Safari */
        border-radius: 0;
        margin: 0 5px;
        cursor: pointer;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center; }
        body#addresses .soy_addresses .address .address-footer a.edit_address, body#addresses .soy_addresses .address .address-footer button.edit_address {
          color: #444645;
          background: #ffffff; }
        body#addresses .soy_addresses .address .address-footer a.delete_address, body#addresses .soy_addresses .address .address-footer button.delete_address {
          color: #444645;
          background: #ffffff; }
        body#addresses .soy_addresses .address .address-footer a.detail_address, body#addresses .soy_addresses .address .address-footer button.detail_address {
          color: #002D74;
          background: #ffffff; }
        body#addresses .soy_addresses .address .address-footer a i, body#addresses .soy_addresses .address .address-footer button i {
          font-size: 20px; }
        body#addresses .soy_addresses .address .address-footer a span, body#addresses .soy_addresses .address .address-footer button span {
          display: none; }
      body#addresses .soy_addresses .address .address-footer span {
        font-size: 9px;
        text-transform: uppercase; }

body#addresses .addresses-footer {
  margin: 15px auto 0 auto;
  max-width: 36rem; }
  body#addresses .addresses-footer a span {
    margin-top: 0; }
  body#addresses .addresses-footer a:hover i, body#addresses .addresses-footer a:focus i, body#addresses .addresses-footer a:active i {
    color: #002D74; }

/**
  * Responsive a partir de 992px
 **/
@media screen and (min-width: 992px) {
  body#addresses .page-header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    border-bottom: none; }
    body#addresses .page-header .addresses-button {
      width: inherit;
      margin: 0; }
      body#addresses .page-header .addresses-button a {
        margin-top: 0.5rem;
        margin-left: 0; }
  body#addresses #wrapper .container p {
    text-align: left;
    font: normal normal normal 1rem/1.375rem Roboto;
    letter-spacing: 0px;
    color: #444645; }
  body#addresses .soy_addresses .address {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between; }
    body#addresses .soy_addresses .address .address-body h4 {
      font: normal normal 500 1.125rem/1.375rem Oswald; }
    body#addresses .soy_addresses .address .address-footer {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-evenly;
      -moz-justify-content: space-evenly;
      -ms-justify-content: space-evenly;
      justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
      padding: 0; }
      body#addresses .soy_addresses .address .address-footer a {
        margin: 0 5px; }
  body#addresses .addresses-footer {
    margin: 0;
    position: absolute;
    top: 15px;
    right: 15px; } }

@media all and (min-width: 1200px) {
  body#addresses .page-header .addresses-button a {
    margin-top: 0;
    margin-left: 0; } }

/* ADDRESS */
body#address #wrapper {
  padding: 0; }
  body#address #wrapper .container {
    width: 100%; }

@media (min-width: 600px) {
  body#address #content-wrapper.soy_page_account .soy_content_account .form-fields {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start; }
  body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_text,
  body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_firstname,
  body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_lastname,
  body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_id_country,
  body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_id_state,
  body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_city,
  body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_postcode,
  body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_phone,
  body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_id_customer {
    float: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start; }
    body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_text > *,
    body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_firstname > *,
    body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_lastname > *,
    body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_id_country > *,
    body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_id_state > *,
    body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_city > *,
    body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_postcode > *,
    body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_phone > *,
    body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_id_customer > * {
      width: 100%; }
  body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_firstname, body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_company, body#address #content-wrapper.soy_page_account .soy_content_account .address-form .soy_select {
    clear: both; }
  body#addresses .soy_addresses .address {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between; }
    body#addresses .soy_addresses .address .address-footer {
      padding: 0; } }

/**
  * Responsive a partir de 992px
 **/
@media screen and (min-width: 992px) {
  body#address .soy_content_account .address-form .form-fields {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start; }
    body#address .soy_content_account .address-form .form-fields .soy_firstname > *,
    body#address .soy_content_account .address-form .form-fields .soy_lastname > *,
    body#address .soy_content_account .address-form .form-fields .soy_id_country > *,
    body#address .soy_content_account .address-form .form-fields .soy_id_state > *,
    body#address .soy_content_account .address-form .form-fields .soy_city > *,
    body#address .soy_content_account .address-form .form-fields .soy_postcode > *,
    body#address .soy_content_account .address-form .form-fields .soy_phone > *,
    body#address .soy_content_account .address-form .form-fields .soy_phone_mobile > *,
    body#address .soy_content_account .address-form .form-fields .soy_dni > * {
      width: 100%; }
    body#address .soy_content_account .address-form .form-fields .form-field-item {
      width: 48%; }
  body#address footer#footer .container {
    width: 100%;
    max-width: unset; } }

@media screen and (min-width: 1200px) {
  body#addresses .soy_addresses {
    width: 30%;
    margin: 1%;
    min-height: 280px; } }

/*-------------------------------------------------------------
## History
--------------------------------------------------------------*/
body#history .orders {
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  width: 100%;
  margin: 0; }
  body#history .orders .order {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 15px;
    margin: 0 0 20px 0;
    background: #ffffff;
    -moz-border-radius: 5px;
    /* Mozilla */
    -webkit-border-radius: 5px;
    /* Safari */
    border-radius: 5px;
    border: 1px solid #002D74;
    -moz-border-radius: 0px;
    /* Mozilla */
    -webkit-border-radius: 0px;
    /* Safari */
    border-radius: 0px;
    width: 100%; }
    body#history .orders .order:last-child {
      border-bottom: 1px solid #002D74; }
    body#history .orders .order .row .soy_info_order {
      padding: 10px 0; }
      body#history .orders .order .row .soy_info_order a {
        margin-bottom: 10px;
        display: block;
        text-align: center; }
        body#history .orders .order .row .soy_info_order a h3 {
          margin: 0;
          font: normal normal 500 1rem/1.25rem Roboto;
          letter-spacing: 0px;
          color: #444645; }
      body#history .orders .order .row .soy_info_order .date {
        text-align: left;
        font: normal normal normal 1rem/1.25rem Roboto;
        letter-spacing: 0px;
        color: #444645; }
    body#history .orders .order .row .status {
      text-align: right; }
      body#history .orders .order .row .status span {
        border: none !important;
        font: normal normal normal 1rem/1.375rem Roboto;
        letter-spacing: 0px; }
    body#history .orders .order .row .soy_factura {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: flex-end;
      -moz-justify-content: flex-end;
      -ms-justify-content: flex-end;
      justify-content: flex-end;
      -ms-flex-pack: flex-end;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center;
      margin-bottom: 0.5rem; }
      body#history .orders .order .row .soy_factura a {
        color: #002D74;
        opacity: 1; }
        body#history .orders .order .row .soy_factura a:hover, body#history .orders .order .row .soy_factura a:focus, body#history .orders .order .row .soy_factura a:active {
          color: #002D74;
          opacity: 0.6; }
    body#history .orders .order .row .soy_actions_order {
      padding: 0;
      overflow: hidden;
      padding-bottom: 15px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      body#history .orders .order .row .soy_actions_order a {
        width: 100%;
        margin: 0;
        float: left;
        padding: 0.625rem;
        text-align: center;
        line-height: 1.375rem;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: 3;
        color: #ffffff;
        -moz-border-radius: 0;
        /* Mozilla */
        -webkit-border-radius: 0;
        /* Safari */
        border-radius: 0; }
        body#history .orders .order .row .soy_actions_order a.soy_view_order, body#history .orders .order .row .soy_actions_order a.soy_reorder, body#history .orders .order .row .soy_actions_order a.soy_follow_order {
          text-transform: uppercase;
          -webkit-align-content: center;
          -moz-align-content: center;
          -ms-align-content: center;
          align-content: center;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -ms-justify-content: center;
          justify-content: center;
          -ms-flex-pack: center; }
        body#history .orders .order .row .soy_actions_order a.soy_view_order {
          width: 49%;
          margin-bottom: 5px;
          margin-right: 2px; }
          body#history .orders .order .row .soy_actions_order a.soy_view_order i {
            display: none; }
        body#history .orders .order .row .soy_actions_order a.soy_reorder {
          width: 49%;
          margin-bottom: 5px;
          margin-left: 2px; }
        body#history .orders .order .row .soy_actions_order a.soy_follow_order {
          display: none; }
    body#history .orders .order .row .total {
      text-transform: uppercase;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: flex-end;
      -moz-justify-content: flex-end;
      -ms-justify-content: flex-end;
      justify-content: flex-end;
      -ms-flex-pack: flex-end;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center;
      padding: 0.75rem 0.75rem 0 0.75rem;
      border-top: 1px solid #D9DADA;
      color: #444645;
      text-align: left;
      font: normal normal 500 1rem/1.375rem Roboto;
      letter-spacing: 0px;
      color: #002D74; }
      body#history .orders .order .row .total strong {
        font: normal normal normal 1rem/1.375rem Roboto;
        letter-spacing: 0px;
        padding-right: 20px;
        color: #444645; }

body#history .addresses-footer {
  margin: 15px 0 0 0; }
  body#history .addresses-footer a {
    background: #444645;
    color: #ffffff;
    padding: 15px 20px;
    display: inline-block; }

/**
  * Responsive a partir de 992px
 **/
@media screen and (min-width: 992px) {
  body#history #wrapper .container {
    padding: 0 15px; }
  body#history .orders .order {
    border: none;
    border-bottom: 1px solid #002D74; }
  body#history .soy_orders_titles {
    padding-left: 15px;
    border-bottom: 1px solid #D9DADA; }
    body#history .soy_orders_titles .soy_orders_title {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-pack: space-between;
      text-align: left;
      padding: 0.313rem 0;
      margin-bottom: 0.313rem; }
      body#history .soy_orders_titles .soy_orders_title li {
        text-transform: uppercase;
        font-size: 0.875rem;
        color: #444645;
        width: fit-content;
        margin-right: 0;
        font-family: "Montserrat";
        font-weight: 600;
        letter-spacing: 0px;
        text-align: center; }
        body#history .soy_orders_titles .soy_orders_title li.soy_order_id {
          width: 9%; }
        body#history .soy_orders_titles .soy_orders_title li.soy_order_fecha {
          width: 12%; }
        body#history .soy_orders_titles .soy_orders_title li.soy_order_estado {
          width: 19%; }
        body#history .soy_orders_titles .soy_orders_title li.soy_order_importe {
          width: 15%; }
        body#history .soy_orders_titles .soy_orders_title li.soy_order_factura {
          width: 15%; }
        body#history .soy_orders_titles .soy_orders_title li.soy_order_acciones {
          width: 18%; }
  body#history .orders .order {
    margin: 0;
    background: none;
    padding: 0.313rem;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%; }
    body#history .orders .order .row {
      -webkit-align-content: center;
      -moz-align-content: center;
      -ms-align-content: center;
      align-content: center;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-pack: space-between;
      padding: 0; }
      body#history .orders .order .row::after {
        display: none; }
      body#history .orders .order .row .soy_info_order {
        -webkit-box-ordinal-group: 1;
        -moz-box-ordinal-group: 1;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1;
        padding: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        justify-content: space-between;
        -ms-flex-pack: space-between;
        width: 80%; }
        body#history .orders .order .row .soy_info_order .date {
          padding-left: 0.7rem;
          font: normal normal normal 0.875rem/1.25rem Roboto;
          width: 25%;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          align-items: center;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -ms-justify-content: center;
          justify-content: center;
          -ms-flex-pack: center; }
        body#history .orders .order .row .soy_info_order a {
          text-align: left;
          margin: 0;
          width: 25%;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          align-items: center;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -ms-justify-content: center;
          justify-content: center;
          -ms-flex-pack: center; }
          body#history .orders .order .row .soy_info_order a h3 {
            font-size: 0.875rem; }
        body#history .orders .order .row .soy_info_order .status {
          width: 25%;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          align-items: center;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -ms-justify-content: center;
          justify-content: center;
          -ms-flex-pack: center; }
          body#history .orders .order .row .soy_info_order .status span.label {
            padding: 0.2rem;
            text-transform: uppercase;
            font-size: 0.563rem;
            font-weight: 600;
            line-height: 0.75rem;
            -moz-border-radius: 0;
            /* Mozilla */
            -webkit-border-radius: 0;
            /* Safari */
            border-radius: 0;
            border-width: 1px !important;
            border-style: solid !important;
            width: fit-content;
            text-align: center;
            min-height: 1.563rem;
            -webkit-line-clamp: 2;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-box-orient: vertical;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: center;
            -moz-align-items: center;
            -ms-align-items: center;
            align-items: center;
            -webkit-justify-content: center;
            -moz-justify-content: center;
            -ms-justify-content: center;
            justify-content: center;
            -ms-flex-pack: center; }
      body#history .orders .order .row .total {
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
        font-size: 0.875rem;
        line-height: inherit;
        border: none;
        padding: 0;
        margin-left: 0;
        width: 25%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center; }
      body#history .orders .order .row .soy_actions_order {
        -webkit-box-ordinal-group: 4;
        -moz-box-ordinal-group: 4;
        -ms-flex-order: 4;
        -webkit-order: 4;
        order: 4;
        padding: 0;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-align-content: center;
        -moz-align-content: center;
        -ms-align-content: center;
        align-content: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: flex-end;
        -moz-align-items: flex-end;
        -ms-align-items: flex-end;
        align-items: flex-end;
        width: 20%;
        -webkit-flex-wrap: nowrap;
        -moz-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
        body#history .orders .order .row .soy_actions_order a.soy_view_order, body#history .orders .order .row .soy_actions_order a.soy_follow_order, body#history .orders .order .row .soy_actions_order a.soy_reorder {
          width: 100%;
          height: 2.063rem;
          font-size: 0.625rem;
          line-height: 0.625rem;
          padding: 0.125rem;
          margin: 0 0 0 0;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -ms-justify-content: center;
          justify-content: center;
          -ms-flex-pack: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          align-items: center; }
          body#history .orders .order .row .soy_actions_order a.soy_view_order i, body#history .orders .order .row .soy_actions_order a.soy_follow_order i, body#history .orders .order .row .soy_actions_order a.soy_reorder i {
            display: none; }
        body#history .orders .order .row .soy_actions_order a.soy_view_order {
          margin-bottom: 3px; } }

/** 
  * Responsive a partir de 1200px
 **/
@media screen and (min-width: 1200px) {
  body#history #notifications .container {
    max-width: 100%; }
  body#history .orders .order .row .soy_info_order .date {
    font-size: 1rem; }
  body#history .orders .order .row .soy_info_order a h3 {
    font-size: 1rem; }
  body#history .orders .order .row .soy_info_order .status span.label {
    font-size: 0.75rem; }
  body#history .orders .order .row .total {
    font-size: 1rem; }
  body#history .orders .order .row .soy_actions_order a.soy_view_order, body#history .orders .order .row .soy_actions_order a.soy_follow_order, body#history .orders .order .row .soy_actions_order a.soy_reorder {
    font-size: 0.875rem; } }

/*-------------------------------------------------------------
## Order Detail
--------------------------------------------------------------*/
body#order-detail h1 {
  margin-bottom: 0; }
  body#order-detail h1 span {
    padding-left: 0.5rem;
    text-align: center;
    font: normal normal 500 1.125rem/1.625rem Oswald;
    letter-spacing: 0px;
    color: #002D74; }

body#order-detail .box {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding: 0; }
  body#order-detail .box table#order-products th {
    font-weight: normal;
    color: #444645;
    text-align: right; }
  body#order-detail .box table#order-products th:first-child, body#order-detail .box table#order-products th:nth-child(2) {
    text-align: left; }

body#order-detail .soy_title_orderdetail {
  padding: 15px;
  padding-left: 0;
  text-align: left;
  font: normal normal 600 1rem/1.188rem Roboto;
  letter-spacing: 0px;
  color: #444645;
  margin: 0;
  text-transform: uppercase;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center; }
  body#order-detail .soy_title_orderdetail i {
    display: none; }

body#order-detail #order-infos {
  padding: 0 15px 0 0; }
  body#order-detail #order-infos ul {
    margin-bottom: 15px; }
    body#order-detail #order-infos ul li {
      display: none; }
    body#order-detail #order-infos ul li:last-child {
      display: inherit;
      color: #444645;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      padding-bottom: 0;
      font-size: 0.875rem;
      line-height: 1.125rem;
      font-family: "Roboto"; }
      body#order-detail #order-infos ul li:last-child i {
        display: none; }
      body#order-detail #order-infos ul li:last-child strong {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        font-weight: normal;
        text-transform: uppercase;
        margin-bottom: 0.313rem;
        font-size: 0.875rem;
        line-height: 1.125rem;
        font-family: "Roboto"; }
  body#order-detail #order-infos .soy_buttons {
    display: none; }

body#order-detail .addresses {
  margin: 0;
  margin: 0 0 15px 0; }
  body#order-detail .addresses article {
    padding: 0; }

body#order-detail #order-history {
  padding: 0;
  margin-bottom: 20px; }
  body#order-detail #order-history .history-line-title {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 0 0.938rem 0.5rem 0.938rem;
    text-transform: uppercase;
    border-bottom: 1px solid #D9DADA;
    margin-bottom: 0;
    color: #444645;
    font-size: 0.875rem;
    font-family: "Roboto";
    font-weight: 600;
    letter-spacing: 0px; }
    body#order-detail #order-history .history-line-title span {
      width: 50%;
      font-size: 0.875rem;
      font-family: "Roboto";
      font-weight: 600;
      letter-spacing: 0px; }
  body#order-detail #order-history .history-line {
    padding: 0.313rem 0;
    margin-bottom: 0;
    border: none;
    border-bottom: solid 1px #D9DADA;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    background: #ffffff; }
    body#order-detail #order-history .history-line:last-child:after {
      display: none; }
    body#order-detail #order-history .history-line .date {
      font-size: 0.875rem;
      font-family: "Roboto"; }
    body#order-detail #order-history .history-line .label {
      text-align: center;
      text-transform: uppercase;
      font-size: 0.75rem;
      line-height: 0.875rem;
      font-weight: 600;
      color: #ffffff;
      padding: 0.313rem;
      width: 100%;
      font-family: "Roboto"; }
    body#order-detail #order-history .history-line div {
      max-width: 50%;
      width: 50%; }
      body#order-detail #order-history .history-line div span {
        -moz-border-radius: 0;
        /* Mozilla */
        -webkit-border-radius: 0;
        /* Safari */
        border-radius: 0; }

body#order-detail .addresses > div {
  border: 1px solid #D9DADA;
  padding: 1.563rem;
  margin-bottom: 0.625rem;
  -moz-border-radius: 0;
  /* Mozilla */
  -webkit-border-radius: 0;
  /* Safari */
  border-radius: 0;
  width: 100%; }
  body#order-detail .addresses > div #delivery-address h4, body#order-detail .addresses > div #invoice-address h4 {
    text-transform: uppercase;
    font-weight: 300;
    color: #444645;
    line-height: 1.188rem;
    font-size: 1rem;
    font-family: "Roboto";
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    body#order-detail .addresses > div #delivery-address h4 i, body#order-detail .addresses > div #invoice-address h4 i {
      display: none; }
  body#order-detail .addresses > div #delivery-address address, body#order-detail .addresses > div #invoice-address address {
    font-size: 0.875rem;
    font-family: "Roboto"; }

  #invoice-address footer.form-footer.clearfix {
    width: 100%;
  }

  #invoice-address .continue.btn.btn-primary {
    width: auto;
    padding-left: 25px;
    padding-right: 25px;
    font-weight: 600;
  }

body#order-detail .addresses .clearfix {
  border: none;
  padding: 0;
  margin: 0;
  font-family: "Roboto"; }

body#order-detail .order-items {
  margin: 0; }
  body#order-detail .order-items .order-item {
    padding: 0;
    border: 0;
    position: relative; }
    body#order-detail .order-items .order-item:after {
      content: "";
      height: 1px;
      width: 80%;
      left: 10%;
      background: #eee;
      bottom: 0px;
      position: absolute;
      display: block; }
    body#order-detail .order-items .order-item:last-child:after {
      display: none; }
    body#order-detail .order-items .order-item .desc {
      float: left;
      width: 100%;
      padding: 0; }
      body#order-detail .order-items .order-item .desc .ref, body#order-detail .order-items .order-item .desc .name {
        text-transform: uppercase;
        font-size: 0.875rem;
        font-weight: 400;
        font-family: "Roboto"; }
      body#order-detail .order-items .order-item .desc .name {
        color: #002D74;
        font-weight: 700; }
    body#order-detail .order-items .order-item .qty {
      width: 100%;
      margin-bottom: 15px;
      float: left;
      font-size: 0.875rem;
      text-transform: none;
      padding: 0; }
      body#order-detail .order-items .order-item .qty > div > div {
        width: 100%;
        padding: 0;
        font-family: "Roboto"; }
      body#order-detail .order-items .order-item .qty .row {
        margin: 0; }
        body#order-detail .order-items .order-item .qty .row span {
          font-weight: normal; }
      body#order-detail .order-items .order-item .qty .s {
        width: 25%; }
      body#order-detail .order-items .order-item .qty .text-xs-right {
        text-align: left !important;
        font: normal normal normal 0.875rem/1.25rem Roboto; }

body#order-detail .order-totals {
  margin-bottom: 30px; }
  body#order-detail .order-totals .order-total {
    margin-top: 10px; }
    body#order-detail .order-totals .order-total .col-xs-8 {
      padding-left: 0; }
      body#order-detail .order-totals .order-total .col-xs-8 strong {
        font-weight: 400;
        font-family: "Roboto"; }
    body#order-detail .order-totals .order-total .col-xs-4 {
      font-weight: bold;
      font-family: "Roboto"; }
    body#order-detail .order-totals .order-total:last-child .col-xs-8 strong {
      font-weight: 700; }

body#order-detail .shipping-lines .shipping-line ul li {
  color: #444645;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  font-family: "Roboto"; }
  body#order-detail .shipping-lines .shipping-line ul li strong {
    text-transform: none;
    color: #444645;
    font-size: 0.875rem;
    font-family: "Roboto"; }

body#order-detail .box.messages {
  padding-top: 1.25rem; }
  body#order-detail .box.messages .soy_title_listado {
    padding: 0 0.938rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    body#order-detail .box.messages .soy_title_listado p {
      text-transform: uppercase;
      color: #444645;
      font-size: 0.75rem;
      margin: 0;
      padding-bottom: 0.313rem;
      font-family: "Roboto"; }
  body#order-detail .box.messages .soy_title_orderdetail {
    padding: 0.938rem 0 1.875rem 0.938rem; }

body#order-detail .order-message-form {
  border: 1px solid #D9DADA;
  padding: 20px;
  margin-top: 30px;
  -moz-border-radius: 0;
  /* Mozilla */
  -webkit-border-radius: 0;
  /* Safari */
  border-radius: 0; }
  body#order-detail .order-message-form .soy_title_orderdetail {
    font-size: 15px;
    padding: 0; }
  body#order-detail .order-message-form .form-fields {
    padding: 0; }
  body#order-detail .order-message-form .form-footer {
    padding: 0 15px; }
  body#order-detail .order-message-form .form-group {
    margin-left: 0;
    margin-right: 0; }
    body#order-detail .order-message-form .form-group > label {
      font-size: 0.813rem;
      width: 100%;
      text-align: left;
      padding: 0;
      font-family: "Roboto"; }
    body#order-detail .order-message-form .form-group > div {
      width: 100%;
      text-align: left;
      padding: 0;
      font-family: "Roboto"; }
    body#order-detail .order-message-form .form-group.row {
      clear: both; }
      body#order-detail .order-message-form .form-group.row select {
        height: 3rem; }
      body#order-detail .order-message-form .form-group.row > * {
        float: none; }
  body#order-detail .order-message-form footer.form-footer {
    padding: 0 !important; }
    body#order-detail .order-message-form footer.form-footer .btn_send {
      padding: 0.5rem 0.625rem !important;
      width: 5.688rem !important; }

/**
  * Responsive a partir de 600px
 **/
@media screen and (min-width: 600px) {
  body#order-detail .addresses > div {
    width: 47%; }
  body#order-detail .addresses > div:first-of-type {
    margin-right: 5px; } }

/**
  * Responsive a partir de 768px
 **/
@media all and (min-width: 768px) {
  body#order-detail #order-return-form .box #order-products {
    border: none; }
    body#order-detail #order-return-form .box #order-products .thead-default {
      padding: 0 0.938rem 0.5rem 0.938rem;
      text-transform: uppercase;
      border-bottom: 1px solid #D9DADA;
      margin-bottom: 0.625rem; }
      body#order-detail #order-return-form .box #order-products .thead-default tr th {
        width: 50%;
        font-size: 0.75rem;
        font-family: "Roboto";
        font-weight: 600;
        letter-spacing: 0px;
        background-color: #ffffff;
        color: #444645;
        border: none; }
    body#order-detail #order-return-form .box #order-products tbody tr {
      padding: 0.313rem 0.938rem;
      margin-bottom: 0.313rem;
      border: none;
      border-bottom: solid 1px #D9DADA; }
      body#order-detail #order-return-form .box #order-products tbody tr td {
        font-size: 0.75rem;
        font-family: "Roboto";
        border: none; }
    body#order-detail #order-return-form .box #order-products tfoot .line-products {
      border: none;
      border-bottom: solid 1px #D9DADA; }
      body#order-detail #order-return-form .box #order-products tfoot .line-products td {
        font-size: 0.75rem;
        font-family: "Roboto";
        border: none; }
    body#order-detail #order-return-form .box #order-products tfoot .line-shipping {
      border: none;
      border-bottom: solid 1px #D9DADA; }
      body#order-detail #order-return-form .box #order-products tfoot .line-shipping td {
        font-size: 0.75rem;
        font-family: "Roboto";
        border: none; }
    body#order-detail #order-return-form .box #order-products tfoot .line-total {
      border: none;
      border-bottom: solid 1px #D9DADA; }
      body#order-detail #order-return-form .box #order-products tfoot .line-total td {
        font-size: 0.75rem;
        font-family: "Roboto";
        font-weight: 600;
        border: none; } }

/**
  * Responsive a partir de 992px
 **/
@media screen and (min-width: 992px) {
  body#order-detail #wrapper .container {
    padding: 0 1.875rem; }
  body#order-detail h1 span {
    font: normal normal bold 2.5rem/3.063rem Roboto; }
  body#order-detail .soy_title_orderdetail {
    font-size: 1.125rem; }
  body#order-detail #order-infos ul li:last-child {
    font-size: 1rem; }
    body#order-detail #order-infos ul li:last-child strong {
      font-size: 1rem; }
  body#order-detail .addresses > div #delivery-address address, body#order-detail .addresses > div #invoice-address address {
    font-size: 1rem;
    line-height: 1rem; }
  body#order-detail #order-history .history-line-title span {
    font-size: 1rem; }
  body#order-detail #order-history .history-line .date {
    font-size: 1rem; }
  body#order-detail #order-history .history-line .label {
    font-size: 0.875rem;
    line-height: 0.875rem; }
  body#order-detail .shipping-lines .shipping-line ul li {
    font-size: 1rem; }
    body#order-detail .shipping-lines .shipping-line ul li strong {
      font-size: 1rem; }
  body#order-detail .order-message-form header {
    margin-bottom: 1rem; }
  body#order-detail .order-message-form .soy_title_orderdetail {
    font-size: 1.125rem; } }

/*-----------------
	DEVOLUCIONES
-----------------*/
body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form {
  margin-top: -20px; }
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form header {
    clear: both; }
    body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form header h3 {
      margin: 0;
      padding: 15px;
      padding-left: 0;
      text-align: left;
      font: normal normal 600 1rem/1.188rem Roboto;
      letter-spacing: 0px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center; }
  body#order-detail.page-order-detail #content-wrapper.soy_page_account .soy_content_account #order-return-form .form-footer {
    padding: 0; }

@media all and (min-width: 992px) {
  body#order-detail .soy_content_account #order-return-form {
    margin-top: -11px; }
    body#order-detail .soy_content_account #order-return-form .box #order-products tbody tr td, body#order-detail .soy_content_account #order-return-form .box #order-products tfoot tr td {
      font-size: 0.875rem; }
    body#order-detail .soy_content_account #order-return-form .box #order-products tbody tr.line-tax td, body#order-detail .soy_content_account #order-return-form .box #order-products tfoot tr.line-tax td {
      border-right: none;
      border-left: none;
      border-top: 1px solid #D8D8D8;
      border-bottom: 1px solid #D8D8D8; }
    body#order-detail .soy_content_account #order-return-form table#order-products input[type="checkbox"] {
      height: fit-content; } }

/*-----------------------
	FACTURAS POR ABONO
-----------------------*/
body#order-slip h6 {
  font-weight: 400;
  color: #444645; }

body#order-slip .alert {
  font-family: "Roboto"; }

body#order-slip .credit-slips {
  width: 100%; }
  body#order-slip .credit-slips .credit-slip {
    width: 100%;
    max-width: 23.438rem;
    box-shadow: none;
    padding: 15px;
    margin: 0 auto;
    background: #ffffff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    body#order-slip .credit-slips .credit-slip ul {
      width: 100%;
      margin-bottom: 2rem;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start;
      -webkit-justify-content: space-evenly;
      -moz-justify-content: space-evenly;
      -ms-justify-content: space-evenly;
      justify-content: space-evenly;
      -ms-flex-pack: space-evenly; }
      body#order-slip .credit-slips .credit-slip ul li {
        text-align: left;
        font: normal normal normal 1rem/1.375rem Roboto;
        letter-spacing: 0px;
        color: #444645;
        margin-bottom: 0.5rem; }
        body#order-slip .credit-slips .credit-slip ul li:first-of-type strong {
          display: none; }
        body#order-slip .credit-slips .credit-slip ul li:first-of-type a {
          font-size: 1.688rem;
          font-weight: 700;
          font-family: "Roboto";
          color: #002D74; }
          body#order-slip .credit-slips .credit-slip ul li:first-of-type a:hover {
            color: #002D74;
            opacity: 0.6; }
        body#order-slip .credit-slips .credit-slip ul li:last-of-type {
          margin-top: 0.9rem; }
      body#order-slip .credit-slips .credit-slip ul:last-of-type {
        margin-bottom: 1rem; }

@media all and (min-width: 768px) {
  body#order-slip table.table {
    border: none; }
    body#order-slip table.table thead tr {
      text-align: left;
      padding: 0.313rem 0;
      margin-bottom: 0.313rem;
      background-color: #ffffff;
      border-bottom: 1px solid #D9DADA;
      border-top: none;
      border-left: none;
      border-right: none; }
      body#order-slip table.table thead tr th {
        text-transform: uppercase;
        font-size: 0.875rem;
        color: #444645;
        font-family: "Roboto";
        font-weight: 600;
        letter-spacing: 0px;
        border: none;
        background-color: transparent; }
        body#order-slip table.table thead tr th:last-of-type {
          text-align: center; }
    body#order-slip table.table tbody tr {
      text-align: left;
      padding: 0.313rem 0;
      margin-bottom: 0.313rem;
      background-color: #ffffff;
      border-bottom: 1px solid #D9DADA; }
      body#order-slip table.table tbody tr td {
        border: none;
        background-color: #ffffff;
        text-align: left;
        font: normal normal normal 1rem/1.375rem Roboto;
        letter-spacing: 0px;
        color: #444645;
        vertical-align: middle; }
        body#order-slip table.table tbody tr td:first-of-type a {
          margin: 0;
          font: normal normal 600 0.875rem/1.875rem Roboto;
          letter-spacing: 0px;
          color: #002D74; }
          body#order-slip table.table tbody tr td:first-of-type a:hover {
            color: #002D74;
            opacity: 0.6; }
        body#order-slip table.table tbody tr td:last-of-type {
          text-align: center !important; }
          body#order-slip table.table tbody tr td:last-of-type a {
            color: #ffffff;
            background-color: #002D74;
            opacity: 1;
            font: normal normal 600 1.125rem/1.375rem Roboto;
            letter-spacing: 0px;
            text-align: center;
            text-transform: uppercase;
            padding: 0.5rem; }
            body#order-slip table.table tbody tr td:last-of-type a:hover {
              opacity: 0.6;
              text-decoration: none;
              outline: none;
              background-color: #002D74;
              color: #ffffff;
              cursor: pointer; }
            body#order-slip table.table tbody tr td:last-of-type a:active {
              text-decoration: none; }
            body#order-slip table.table tbody tr td:last-of-type a:focus {
              outline: none; }
            body#order-slip table.table tbody tr td:last-of-type a:disabled, body#order-slip table.table tbody tr td:last-of-type a.disabled {
              background-color: #9D9D9D;
              cursor: not-allowed; }
              body#order-slip table.table tbody tr td:last-of-type a:disabled:hover, body#order-slip table.table tbody tr td:last-of-type a.disabled:hover {
                background-color: #9D9D9D;
                opacity: 1;
                cursor: not-allowed; }
              body#order-slip table.table tbody tr td:last-of-type a:disabled:active, body#order-slip table.table tbody tr td:last-of-type a.disabled:active {
                text-decoration: none; }
              body#order-slip table.table tbody tr td:last-of-type a:disabled:focus, body#order-slip table.table tbody tr td:last-of-type a.disabled:focus {
                outline: none; } }

/*-------------------------------------------------------------
## Identity
--------------------------------------------------------------*/
body#identity.page-customer-account #content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }
  body#identity.page-customer-account #content form .form-group {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
  body#identity.page-customer-account #content form > section > div.row {
    margin-left: 0; }
  body#identity.page-customer-account #content form > section > div > label {
    float: none;
    width: auto;
    text-align: left; }
  body#identity.page-customer-account #content form > section > div > div {
    width: 100%; }
  body#identity.page-customer-account #content form > section > div:nth-child(9) .custom-checkbox > span {
    vertical-align: top; }
  body#identity.page-customer-account #content form > section > div:nth-child(9) .custom-checkbox > label {
    width: 90%; }
  body#identity.page-customer-account #content form > section > div .custom-checkbox input[type=checkbox] + span {
    vertical-align: top;
    margin-top: 2px; }
  body#identity.page-customer-account #content form .account_creation, body#identity.page-customer-account #content form .soy_custom_field, body#identity.page-customer-account #content form .soy_id_gender {
    display: none; }

@media all and (min-width: 768px) {
  body#identity.page-customer-account #content #customer-form .form-fields {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  body#identity.page-customer-account #content #customer-form .form-group {
    width: 100%; }
  body#identity.page-customer-account #content #customer-form .soy_firstname,
  body#identity.page-customer-account #content #customer-form .soy_lastname,
  body#identity.page-customer-account #content #customer-form .field-password-policy {
    width: 48%; } }

@media all and (min-width: 992px) {
  #identity.page-customer-account #content form > section {
    overflow: hidden; } }

/*-----------------------
	FACTURAS POR ABONO
-----------------------*/
body#discount .alert {
  font-family: "Roboto"; }

body#discount .cart-rules {
  width: 100%; }
  body#discount .cart-rules .cart-rule {
    width: 100%;
    max-width: 23.438rem;
    box-shadow: none;
    padding: 15px;
    margin: 0 auto 20px auto;
    background: #ffffff;
    border: 1px solid #9D9D9D;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    body#discount .cart-rules .cart-rule ul {
      width: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start;
      -webkit-justify-content: space-evenly;
      -moz-justify-content: space-evenly;
      -ms-justify-content: space-evenly;
      justify-content: space-evenly;
      -ms-flex-pack: space-evenly; }
      body#discount .cart-rules .cart-rule ul li {
        text-align: left;
        font: normal normal normal 1rem/1.375rem Roboto;
        letter-spacing: 0px;
        color: #444645;
        margin-bottom: 0.5rem; }
        body#discount .cart-rules .cart-rule ul li strong {
          text-align: left;
          font: normal normal bold 1rem/1.375rem Roboto;
          letter-spacing: 0px;
          color: #444645;
          margin-bottom: 0.5rem; }
        body#discount .cart-rules .cart-rule ul li:first-of-type strong {
          display: none; }
        body#discount .cart-rules .cart-rule ul li:last-of-type a {
          text-align: center;
          font: normal normal 500 1rem/1.188rem Roboto;
          letter-spacing: 0px;
          width: 100%;
          background-color: #444645;
          color: #ffffff;
          opacity: 1;
          padding: 1rem 1.25rem;
          text-transform: uppercase;
          max-width: 23.438rem;
          display: block; }
          body#discount .cart-rules .cart-rule ul li:last-of-type a:hover, body#discount .cart-rules .cart-rule ul li:last-of-type a:focus, body#discount .cart-rules .cart-rule ul li:last-of-type a:active {
            opacity: 1;
            background-color: #002D74;
            text-decoration: none; }

@media all and (min-width: 768px) {
  body#discount table.table-bordered {
    border: none; }
    body#discount table.table-bordered thead tr {
      text-align: left;
      padding: 0.313rem 0;
      margin-bottom: 0.313rem;
      background-color: #ffffff;
      border-bottom: 1px solid #9D9D9D;
      border-top: none;
      border-left: none;
      border-right: none; }
      body#discount table.table-bordered thead tr th {
        text-transform: uppercase;
        font-size: 0.75rem;
        color: #444645;
        font-family: "Roboto";
        font-weight: 600;
        letter-spacing: 0px;
        border: none;
        background-color: transparent; }
    body#discount table.table-bordered tbody tr {
      text-align: left;
      padding: 0.313rem 0;
      margin-bottom: 0.313rem;
      background-color: #ffffff;
      border-bottom: 1px solid #9D9D9D; }
      body#discount table.table-bordered tbody tr th {
        margin: 0;
        font: normal normal 600 0.75rem/1.875rem Roboto;
        letter-spacing: 0px;
        color: #444645;
        vertical-align: middle;
        border: none;
        padding: 0.3rem; }
      body#discount table.table-bordered tbody tr td {
        border: none;
        background-color: #ffffff;
        text-align: left;
        font: normal normal normal 0.875rem/1.375rem Roboto;
        letter-spacing: 0px;
        color: #444645;
        vertical-align: middle;
        padding: 0.3rem; }
        body#discount table.table-bordered tbody tr td:last-of-type {
          text-align: left !important; } }

@media all and (min-width: 992px) {
  body#discount table.table-bordered {
    padding-left: 15px; }
    body#discount table.table-bordered thead tr th {
      padding: 0.75rem 0.7rem; }
    body#discount table.table-bordered tbody tr td {
      padding: 3px; } }

@media all and (min-width: 1200px) {
  body#discount table.table-bordered {
    border: none; }
    body#discount table.table-bordered thead tr th {
      font-size: 0.875rem;
      padding: 0.75rem; }
    body#discount table.table-bordered tbody tr th {
      font: normal normal 600 0.875rem/1.875rem Roboto; }
    body#discount table.table-bordered tbody tr td {
      font: normal normal normal 1rem/1.375rem Roboto;
      padding: 0.75rem; } }

/*GDPR*/
body#module-psgdpr-gdpr #wrapper .container .soy_content_account .container {
  padding: 0; }

body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 a {
  color: #002D74;
  opacity: 1; }
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 a:hover {
    color: #002D74;
    opacity: 0.6; }

body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .soy-wrapper-export {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center; }

body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf {
  margin-bottom: 8px; }
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:hover, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:focus, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToCsv:active, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:hover, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:focus, body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 #exportDataToPdf:active {
    color: #002D74; }

@media all and (min-width: 768px) {
  body#module-psgdpr-gdpr #wrapper .container .psgdprinfo17 .soy-wrapper-export {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center; } }

body#module-ps_emailalerts-account #wrapper .container {
  padding: 0 15px; }

body#module-ps_emailalerts-account .alert {
  font-family: "Roboto"; }

body#module-ps_emailalerts-account .soy_content_account ul .soy-alert {
  margin-bottom: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #D8D8D8; }
  body#module-ps_emailalerts-account .soy_content_account ul .soy-alert a, body#module-ps_emailalerts-account .soy_content_account ul .soy-alert .btn-link {
    color: #444645;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    body#module-ps_emailalerts-account .soy_content_account ul .soy-alert a div .soy-name-span, body#module-ps_emailalerts-account .soy_content_account ul .soy-alert .btn-link div .soy-name-span {
      display: block;
      padding: 0; }
    body#module-ps_emailalerts-account .soy_content_account ul .soy-alert a div .soy-attributes-span, body#module-ps_emailalerts-account .soy_content_account ul .soy-alert .btn-link div .soy-attributes-span {
      display: none; }
    body#module-ps_emailalerts-account .soy_content_account ul .soy-alert a i, body#module-ps_emailalerts-account .soy_content_account ul .soy-alert .btn-link i {
      color: #444645;
      padding: 0; }
      body#module-ps_emailalerts-account .soy_content_account ul .soy-alert a i:hover, body#module-ps_emailalerts-account .soy_content_account ul .soy-alert a i:focus, body#module-ps_emailalerts-account .soy_content_account ul .soy-alert a i:active, body#module-ps_emailalerts-account .soy_content_account ul .soy-alert .btn-link i:hover, body#module-ps_emailalerts-account .soy_content_account ul .soy-alert .btn-link i:focus, body#module-ps_emailalerts-account .soy_content_account ul .soy-alert .btn-link i:active {
        color: #444645;
        opacity: 0.6;
        text-decoration: none; }
    body#module-ps_emailalerts-account .soy_content_account ul .soy-alert a:hover, body#module-ps_emailalerts-account .soy_content_account ul .soy-alert a:focus, body#module-ps_emailalerts-account .soy_content_account ul .soy-alert a:active, body#module-ps_emailalerts-account .soy_content_account ul .soy-alert .btn-link:hover, body#module-ps_emailalerts-account .soy_content_account ul .soy-alert .btn-link:focus, body#module-ps_emailalerts-account .soy_content_account ul .soy-alert .btn-link:active {
      color: #444645;
      opacity: 0.6;
      text-decoration: none; }
  body#module-ps_emailalerts-account .soy_content_account ul .soy-alert:last-of-type {
    border-bottom: none; }

@media all and (min-width: 768px) {
  body#module-ps_emailalerts-account #content-wrapper {
    margin: 0; } }

/*-------------------------------------------------------------
## Password
--------------------------------------------------------------*/
body#password .forgotten-password .form-fields .center-email-fields {
  display: flex;
  flex-direction: column; }
  body#password .forgotten-password .form-fields .center-email-fields label {
    width: 100%; }
  body#password .forgotten-password .form-fields .center-email-fields input {
    margin-left: 15px; }
  body#password .forgotten-password .form-fields .center-email-fields button {
    border-radius: 30px;
    max-width: fit-content;
    margin-top: 15px;
    margin-left: 15px; }

body#module-blockwishlist-listst #wrapper .container {
  padding: 0 15px; }

body#module-blockwishlist-listst .alert {
  font-family: "Roboto"; }

body#module-blockwishlist-listst .soy_content_account ul .soy-alert {
  margin-bottom: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #D8D8D8; }
  body#module-blockwishlist-listst .soy_content_account ul .soy-alert a, body#module-blockwishlist-listst .soy_content_account ul .soy-alert .btn-link {
    color: #444645;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    body#module-blockwishlist-listst .soy_content_account ul .soy-alert a div .soy-name-span, body#module-blockwishlist-listst .soy_content_account ul .soy-alert .btn-link div .soy-name-span {
      display: block;
      padding: 0; }
    body#module-blockwishlist-listst .soy_content_account ul .soy-alert a div .soy-attributes-span, body#module-blockwishlist-listst .soy_content_account ul .soy-alert .btn-link div .soy-attributes-span {
      display: none; }
    body#module-blockwishlist-listst .soy_content_account ul .soy-alert a i, body#module-blockwishlist-listst .soy_content_account ul .soy-alert .btn-link i {
      color: #444645;
      padding: 0; }
      body#module-blockwishlist-listst .soy_content_account ul .soy-alert a i:hover, body#module-blockwishlist-listst .soy_content_account ul .soy-alert a i:focus, body#module-blockwishlist-listst .soy_content_account ul .soy-alert a i:active, body#module-blockwishlist-listst .soy_content_account ul .soy-alert .btn-link i:hover, body#module-blockwishlist-listst .soy_content_account ul .soy-alert .btn-link i:focus, body#module-blockwishlist-listst .soy_content_account ul .soy-alert .btn-link i:active {
        color: #444645;
        opacity: 0.6;
        text-decoration: none; }
    body#module-blockwishlist-listst .soy_content_account ul .soy-alert a:hover, body#module-blockwishlist-listst .soy_content_account ul .soy-alert a:focus, body#module-blockwishlist-listst .soy_content_account ul .soy-alert a:active, body#module-blockwishlist-listst .soy_content_account ul .soy-alert .btn-link:hover, body#module-blockwishlist-listst .soy_content_account ul .soy-alert .btn-link:focus, body#module-blockwishlist-listst .soy_content_account ul .soy-alert .btn-link:active {
      color: #444645;
      opacity: 0.6;
      text-decoration: none; }
  body#module-blockwishlist-listst .soy_content_account ul .soy-alert:last-of-type {
    border-bottom: none; }

@media all and (min-width: 768px) {
  body#module-blockwishlist-listst #content-wrapper {
    margin: 0; } }

/*-------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
body#checkout .btn-primary, body#checkout .btn-secondary {
  border-radius: 32px; }

body#checkout #header {
  overflow: hidden;
  margin-bottom: 0px; }
  body#checkout #header .header-nav {
    padding: 0; }
  body#checkout #header .header-top {
    display: flex;
    align-items: center;
    justify-content: center; }
    body#checkout #header .header-top #_desktop_logo {
      width: 100%;
      max-width: 143px;
      height: auto; }
      body#checkout #header .header-top #_desktop_logo a img {
        margin-bottom: 0px; }

body#checkout .custom-radio input[type="radio"]:checked + span {
  top: 1px;
  left: 1px; }

body#checkout .cart-grid-right .promo-discounts .cart-summary-line .label .code {
  color: #60B3CC; }

body#checkout section#content {
  max-width: 1440px;
  margin: 30px auto; }
  body#checkout section#content .cart-grid-body section.checkout-step {
    box-shadow: none;
    padding: 0;
    border: 0; }
    body#checkout section#content .cart-grid-body section.checkout-step .step-title {
      border-bottom: 1px solid #eeeeee;
      padding: 15px; }
      body#checkout section#content .cart-grid-body section.checkout-step .step-title .step-number {
        padding: 0;
        margin-right: 5px;
        margin-left: -7px;
        background-color: #60B3CC; }
      body#checkout section#content .cart-grid-body section.checkout-step .step-title .done {
        padding: 0;
        margin-right: 5px;
        margin-top: -4px;
        color: #60B3CC; }
      body#checkout section#content .cart-grid-body section.checkout-step .step-title .step-edit {
        margin-right: 0;
        margin-top: 2px; }
    body#checkout section#content .cart-grid-body section.checkout-step .content {
      padding: 10px 15px; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step .nav-inline .nav-item {
      width: 100%;
      margin: 0;
      text-align: center; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step .nav-inline .nav-item .nav-link {
        display: block;
        background: #FFF;
        color: #000;
        border: 1px solid #000;
        font-weight: normal;
        padding: 8px 10px;
        transition: all ease-in-out 0.3s; }
        body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step .nav-inline .nav-item .nav-link:hover {
          background: #000;
          color: #FFF; }
        body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step .nav-inline .nav-item .nav-link.active {
          background: #000;
          color: #FFF; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-guest-form {
      margin-top: 20px; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-guest-form #customer-form {
        margin: 0; }
        body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-guest-form #customer-form > section {
          overflow: hidden; }
          body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-guest-form #customer-form > section .form-group {
            float: left;
            width: 100%;
            margin-bottom: 15px; }
            body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-guest-form #customer-form > section .form-group > label {
              width: 100%;
              padding: 0; }
            body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-guest-form #customer-form > section .form-group > div {
              width: 100%;
              padding: 0; }
            body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-guest-form #customer-form > section .form-group.soy_checkbox {
              width: 100%; }
              body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-guest-form #customer-form > section .form-group.soy_checkbox label {
                margin: 0;
                padding: 0; }
              body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-guest-form #customer-form > section .form-group.soy_checkbox .custom-checkbox {
                display: block; }
                body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-guest-form #customer-form > section .form-group.soy_checkbox .custom-checkbox label span {
                  margin-top: -3px; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-login-form {
      margin-top: 20px; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-login-form #login-form {
        margin: 0; }
        body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-login-form #login-form > section {
          overflow: hidden; }
          body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-login-form #login-form > section .form-group {
            float: left;
            width: 100%;
            margin-bottom: 15px; }
            body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-login-form #login-form > section .form-group > label {
              width: 100%;
              padding: 0; }
            body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-login-form #login-form > section .form-group > div {
              width: 100%;
              padding: 0; }
            body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-login-form #login-form > section .form-group.soy_checkbox {
              width: 100%; }
              body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-login-form #login-form > section .form-group.soy_checkbox label {
                margin: 0;
                padding: 0; }
              body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-login-form #login-form > section .form-group.soy_checkbox .custom-checkbox {
                display: block; }
                body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-login-form #login-form > section .form-group.soy_checkbox .custom-checkbox label span {
                  margin-top: -3px; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-login-form .forgot-password {
        margin-left: 0;
        padding-left: 15px; }
        body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-login-form .forgot-password a {
          font-size: 15px; }
          body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-login-form .forgot-password a:hover {
            color: #002D74; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-login-form .form-footer {
        margin-top: 15px; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step p {
      color: #232323; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step p::last-child {
        margin: 0; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step .form-footer {
      display: flex;
      justify-content: end;
      align-items: center;
      flex-direction: row-reverse; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step .cancel-address {
      margin: 0 10px 0 0;
      display: block;
      color: #000;
      text-decoration: none;
      text-transform: uppercase; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #delivery-addresses .address-item,
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #invoice-addresses .address-item {
      border: 2px solid #f6f6f6;
      -ms-flex: 0 0 99%;
      flex: 0 0 99%; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #delivery-addresses .address-item.selected,
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #invoice-addresses .address-item.selected {
        border: 2px solid #565656;
        background: #f6f6f6; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #delivery-addresses .address-item::nth-child(odd),
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #invoice-addresses .address-item::nth-child(odd) {
        margin-right: 5px; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #delivery-addresses .address-item::nth-child(even),
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #invoice-addresses .address-item::nth-child(even) {
        margin-left: 5px; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #delivery-addresses .address-item header,
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #invoice-addresses .address-item header {
        min-height: 160px; }
        body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #delivery-addresses .address-item header .radio-block,
        body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #invoice-addresses .address-item header .radio-block {
          display: block; }
          body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #delivery-addresses .address-item header .radio-block .custom-radio,
          body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #invoice-addresses .address-item header .radio-block .custom-radio {
            margin-top: -5px; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step .add-address a {
      color: #FFF; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-delivery-step .delivery-options-list .delivery-options .delivery-option {
      display: flex;
      align-items: center;
      flex-wrap: nowrap; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-delivery-step .delivery-options-list .delivery-options .delivery-option > div {
        margin-right: 15%;
        margin-left: 5%; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-delivery-step .delivery-options-list .delivery-options .delivery-option .custom-radio {
        margin-top: 0; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-delivery-step .delivery-options-list .delivery-options .delivery-option .delivery-option-2 {
        margin: 0;
        padding-left: 0; }
        body#checkout section#content .cart-grid-body section.checkout-step#checkout-delivery-step .delivery-options-list .delivery-options .delivery-option .delivery-option-2 > div.row > div {
          margin-bottom: 10px; }
        body#checkout section#content .cart-grid-body section.checkout-step#checkout-delivery-step .delivery-options-list .delivery-options .delivery-option .delivery-option-2 > div.row > div:last-child {
          margin-bottom: 0; }
        body#checkout section#content .cart-grid-body section.checkout-step#checkout-delivery-step .delivery-options-list .delivery-options .delivery-option .delivery-option-2 .soy_img_carrier {
          width: 100%;
          padding: 0; }
          body#checkout section#content .cart-grid-body section.checkout-step#checkout-delivery-step .delivery-options-list .delivery-options .delivery-option .delivery-option-2 .soy_img_carrier img {
            max-width: 80px;
            width: 100%; }
        body#checkout section#content .cart-grid-body section.checkout-step#checkout-delivery-step .delivery-options-list .delivery-options .delivery-option .delivery-option-2 .carrier-name {
          display: block;
          font-weight: bold;
          margin-bottom: 0px; }
        body#checkout section#content .cart-grid-body section.checkout-step#checkout-delivery-step .delivery-options-list .delivery-options .delivery-option .delivery-option-2 .carrier-delay {
          display: block;
          font-weight: normal;
          font-size: 12px; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-delivery-step .delivery-options-list .order-options #delivery label {
      text-align: left; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-payment-step .payment-options .payment-option {
      -ms-display: flex;
      display: flex;
      align-items: center;
      background: #f6f6f6; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-payment-step .payment-options .payment-option span.custom-radio {
        margin-left: 15px;
        margin-right: 0;
        margin-top: 0; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-payment-step .payment-options label {
      display: flex;
      align-items: center;
      text-align: left;
      padding: 15px;
      margin: 0;
      width: 100%; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-payment-step .payment-options label img {
        margin-right: 10px;
        width: 75px; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-payment-step .payment-options label > span {
        width: 100%; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-payment-step #conditions-to-approve {
      margin-bottom: 30px; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-payment-step #conditions-to-approve .custom-checkbox span {
        flex: unset; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-payment-step #conditions-to-approve .condition-label {
        margin-left: 23px;
        margin-top: 0px; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-payment-step #payment-confirmation a {
      color: unset;
      font-weight: bold; }
    body#checkout section#content .cart-grid-body section.checkout-step .not-allowed .step-number {
      background-color: #fff; }
  body#checkout section#content .cart-grid-right #js-checkout-summary {
    box-shadow: none; }
    body#checkout section#content .cart-grid-right #js-checkout-summary > .card-block {
      padding: 15px; }
    body#checkout section#content .cart-grid-right #js-checkout-summary .step-title {
      border-bottom: 1px solid #eeeeee;
      padding: 15px;
      display: block;
      line-height: 23px;
      margin: 0; }
    body#checkout section#content .cart-grid-right #js-checkout-summary .cart-summary-products .media {
      display: flex;
      align-items: center;
      margin-top: 10px;
      padding-top: 10px;
      position: relative; }
      body#checkout section#content .cart-grid-right #js-checkout-summary .cart-summary-products .media:before {
        content: "";
        height: 1px;
        width: 80%;
        background: #eee;
        top: 0px;
        left: 10%;
        display: block;
        position: absolute; }
      body#checkout section#content .cart-grid-right #js-checkout-summary .cart-summary-products .media:first-child {
        margin: 0;
        padding: 0; }
      body#checkout section#content .cart-grid-right #js-checkout-summary .cart-summary-products .media:first-child:before {
        display: none; }
      body#checkout section#content .cart-grid-right #js-checkout-summary .cart-summary-products .media .product-name {
        float: left;
        width: 100%; }
      body#checkout section#content .cart-grid-right #js-checkout-summary .cart-summary-products .media .product-line-info {
        float: left;
        width: 100%; }
        body#checkout section#content .cart-grid-right #js-checkout-summary .cart-summary-products .media .product-line-info .label {
          font-weight: bold; }
        body#checkout section#content .cart-grid-right #js-checkout-summary .cart-summary-products .media .product-line-info .value {
          color: #232323; }
      body#checkout section#content .cart-grid-right #js-checkout-summary .cart-summary-products .media .product-quantity {
        float: left;
        line-height: 24px;
        font-weight: bold; }
      body#checkout section#content .cart-grid-right #js-checkout-summary .cart-summary-products .media .product-price {
        float: right;
        line-height: 24px;
        color: #000;
        font-weight: bold; }
    body#checkout section#content .cart-grid-right #js-checkout-summary .cart-summary-subtotals {
      margin-bottom: 3px; }
    body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher {
      margin-bottom: 15px; }
      body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-name .cart-summary-line span {
        color: #60B3CC; }
      body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher > p > a {
        margin: 0;
        padding: 0 15px;
        color: #000; }
        body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher > p > a:hover {
          color: #002D74; }
      body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher #promo-code {
        padding: 0px 20px 0;
        background: rgba(0, 0, 0, 0) none repeat scroll 0px center; }
        body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher #promo-code .promo-input {
          width: 100%;
          margin-bottom: 10px;
          margin: 0;
          margin-right: 10px; }
        body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher #promo-code button {
          border: 0;
          width: 100%;
          padding: 10px 25px;
          margin: 0;
          margin-left: 10px; }
          body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher #promo-code button span {
            color: white; }
        body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher #promo-code a.promo-code-button {
          color: #000; }
          body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher #promo-code a.promo-code-button:hover {
            color: #002D74; }
        body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher #promo-code .alert-danger {
          background: #60B3CC; }
          body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher #promo-code .alert-danger::after {
            border-bottom-color: #60B3CC; }
          body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher #promo-code .alert-danger span {
            color: white; }
    body#checkout section#content .cart-grid-right #js-checkout-summary .cart-summary-totals {
      font-weight: bold;
      font-size: 17px; }
      body#checkout section#content .cart-grid-right #js-checkout-summary .cart-summary-totals .cart-total {
        background: none;
        padding: 0; }
        body#checkout section#content .cart-grid-right #js-checkout-summary .cart-summary-totals .cart-total .value {
          color: #002D74; }
      body#checkout section#content .cart-grid-right #js-checkout-summary .cart-summary-totals .label {
        font-size: 17px; }

body#checkout .js-address-form form .form-field-item .form-group {
  min-height: 118px;
  display: flex;
  flex-direction: column; }
  body#checkout .js-address-form form .form-field-item .form-group .form-control-label,
  body#checkout .js-address-form form .form-field-item .form-group .js-input-column,
  body#checkout .js-address-form form .form-field-item .form-group .form-control-comment {
    width: 100%; }

body#checkout .js-address-form form .col-md-9 {
  display: flex;
  align-items: center; }
  body#checkout .js-address-form form .col-md-9 label {
    margin-bottom: 0px;
    margin-left: 15px; }

@media (min-width: 450px) {
  body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step .nav-inline .nav-item {
    width: auto; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step .nav-inline .nav-item:last-child {
      margin-left: 10px; }
  body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher #promo-code .promo-input {
    width: 50%; }
  body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher #promo-code button {
    width: auto;
    margin: -4px 0 0 -5px; } }

@media (min-width: 576px) {
  body#checkout section#content .cart-grid-body section.checkout-step#checkout-delivery-step .delivery-options-list .delivery-options .delivery-option .delivery-option-2 {
    padding: 0;
    margin: 0;
    width: 100%; }
    body#checkout section#content .cart-grid-body section.checkout-step#checkout-delivery-step .delivery-options-list .delivery-options .delivery-option .delivery-option-2 > div.row {
      display: flex;
      align-items: center; }
      body#checkout section#content .cart-grid-body section.checkout-step#checkout-delivery-step .delivery-options-list .delivery-options .delivery-option .delivery-option-2 > div.row > div {
        margin-bottom: 0; } }

/**
 *	Responsive a partir de 768px
 */
@media (min-width: 768px) {
  body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-guest-form #customer-form > section .form-group {
    width: 50%;
    padding: 0 15px; }
  body#checkout section#content .cart-grid-body section.checkout-step#checkout-personal-information-step #checkout-login-form #login-form > section .form-group {
    width: 50%;
    padding: 0 15px; }
  body#checkout section#content .cart-grid-body section.checkout-step#checkout-delivery-step .delivery-options-list .delivery-options .delivery-option > div {
    margin-right: 5%; }
  body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #delivery-addresses .address-item,
  body#checkout section#content .cart-grid-body section.checkout-step#checkout-addresses-step #invoice-addresses .address-item {
    -ms-flex: 0 0 49%;
    flex: 0 0 49%; } }

/**
 *	Responsive a partir de 992px
 */
@media (min-width: 992px) {
  body#checkout .js-address-form form .form-group {
    flex-grow: 50%; }
    body#checkout .js-address-form form .form-group .form-control-label,
    body#checkout .js-address-form form .form-group .js-input-column,
    body#checkout .js-address-form form .form-group .form-control-comment {
      width: 100%; } }

.product-line-info .prereserva-cart-tag,
.product-line-info .stock-cart-tag,
.product-line-info .reserva-cart-tag {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  margin-left: 15px;
  display: flex;
  align-items: center; }
  .product-line-info .prereserva-cart-tag::before,
  .product-line-info .stock-cart-tag::before,
  .product-line-info .reserva-cart-tag::before {
    content: "\A";
    border-style: solid;
    border-width: 5px 7px 5px 0;
    border-color: transparent black transparent transparent;
    margin-left: -12px;
    margin-right: 3px;
    rotate: 180deg; }

.product-line-info .prereserva-cart-tag,
.product-line-info .reserva-cart-tag {
  color: #60B3CC; }

.product-line-info .stock-cart-tag {
  color: #3BAA09; }

@media (max-width: 449px) {
  body#checkout section#content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher #promo-code button {
    margin-top: 10px;
    margin-left: 0px; } }

body#order-confirmation .card {
  box-shadow: none; }

body#order-confirmation .row {
  margin-left: 0;
  margin-right: 0; }

body#order-confirmation #content-hook_order_confirmation {
  margin: 20px auto; }
  body#order-confirmation #content-hook_order_confirmation .done {
    padding: 0;
    margin-right: 10px; }
  body#order-confirmation #content-hook_order_confirmation > .card-block {
    padding: 0; }
    body#order-confirmation #content-hook_order_confirmation > .card-block .card-title {
      border-bottom: 1px solid #eeeeee;
      padding: 15px;
      margin-bottom: 0; }
    body#order-confirmation #content-hook_order_confirmation > .card-block p {
      margin: 0; }

body#order-confirmation #content > .card-block {
  padding: 0; }
  body#order-confirmation #content > .card-block #order-items {
    padding: 0;
    border: 0; }
    body#order-confirmation #content > .card-block #order-items .order-confirmation-table .order-line {
      position: relative;
      padding-top: 15px; }
      body#order-confirmation #content > .card-block #order-items .order-confirmation-table .order-line:first-child {
        padding-top: 0; }

body#order-confirmation #order-items .order-confirmation-table .order-line:first-child:before {
  display: none; }

body#order-confirmation #order-items .order-confirmation-table .order-line:before {
  content: "";
  height: 1px;
  width: 80%;
  background: #eee;
  top: 0px;
  left: 10%;
  display: block;
  position: absolute; }

body#order-confirmation #order-items .order-confirmation-table .order-line .soy_img_order_confirmation {
  width: 150px; }

body#order-confirmation #order-items .order-confirmation-table .order-line .details,
body#order-confirmation #order-items .order-confirmation-table .order-line .qty {
  width: calc(100% - 150px);
  overflow: hidden; }

body#order-confirmation #order-items .order-confirmation-table .order-line .qty > div.soy_qty_price {
  float: left;
  width: auto;
  padding: 0; }

body#order-confirmation #order-items .order-confirmation-table .order-line .qty > div.soy_price {
  float: right;
  width: auto;
  padding: 0; }

body#order-confirmation #order-items .order-confirmation-table .order-line .image img {
  margin: 0; }

body#order-confirmation #order-items .soy_totals {
  display: block;
  padding: 15px;
  border-top: 1px solid #eee;
  margin-top: 15px; }

body#order-confirmation #order-items .soy_totals > span {
  display: block;
  overflow: hidden;
  margin-bottom: 4px; }

body#order-confirmation #order-items .soy_totals > span .label {
  float: left;
  font-size: 16px; }

body#order-confirmation #order-items .soy_totals > span .value {
  float: right;
  font-size: 16px; }

body#order-confirmation #order-details {
  padding: 0; }

body#order-confirmation #order-details > ul {
  padding: 15px;
  margin-bottom: 0px; }

body#order-confirmation #order-details > ul li .label {
  font-size: 16px;
  font-weight: bold; }

body#order-confirmation #order-details > ul li .value {
  font-size: 16px; }

body#order-confirmation #content-hook_payment_return .card-block {
  padding: 0; }

/*-------------------------------------------------------------
# CMS
--------------------------------------------------------------*/
body#cms section#content p > img {
  max-width: 100%; }

.page-content.page-cms ol {
    margin-bottom: 30px;
}
.page-content.page-cms ol li {
    padding: 5px;
}

.page-content.page-cms h2 {
  margin: 2em 0em 1em;
}

.page-content.page-cms table th, .page-cms table td {
  border: 1px solid gray;
  border-collapse: collapse;
  padding: 1em;
}

.page-content.page-cms ul {
  padding: 0;
  list-style: none;
  margin-left: 2em;
}

.page-content.page-cms ul li {
  position: relative;
  padding-left: 3px;
  margin-bottom: 0.6em;
  font-size: 16px;
  color: #444645;
}

.page-content.page-cms ul li::before {
  content: "-";
  position: absolute;
  left: -1em;
  color: #444645;
}

/*-------------------------------------------------------------
## CONTACT
--------------------------------------------------------------*/
body#contact #wrapper {
  padding-top: 0px; }
  body#contact #wrapper > .container {
    padding: 0;
    width: 100% !important;
    margin-left: 0; }
  body#contact #wrapper #main {
    width: 95%; }

body#contact .breadcrumb {
  margin-bottom: 1rem;
  padding: 0 1rem; }

body#contact #left-column {
  background-color: #002D74;
  margin-bottom: 1rem; }
  body#contact #left-column .contact-rich {
    padding: 1rem;
    padding-left: 2rem; }
    body#contact #left-column .contact-rich h4 {
      margin-bottom: 1rem;
      padding: 1.5rem 0rem;
      color: #ffffff; }
    body#contact #left-column .contact-rich div.email + a {
      margin-left: 3.5rem; }
    body#contact #left-column .contact-rich div > a {
      margin-top: .5rem;
      display: block;
      color: #ffffff; }
    body#contact #left-column .contact-rich .block,
    body#contact #left-column .contact-rich .block > .data {
      color: #ffffff; }

body#contact #content-wrapper #main #content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding: 0; }
  body#contact #content-wrapper #main #content .contact-form .form-fields > div label {
    display: block;
    width: 100%;
    text-align: left; }
    body#contact #content-wrapper #main #content .contact-form .form-fields > div label span {
      float: none;
      width: auto; }
  body#contact #content-wrapper #main #content .contact-form .form-fields > div:nth-child(1) {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem; }
  body#contact #content-wrapper #main #content .contact-form input[type=file] + div.input-group {
    display: block; }
    body#contact #content-wrapper #main #content .contact-form input[type=file] + div.input-group > input {
      float: none; }
    body#contact #content-wrapper #main #content .contact-form input[type=file] + div.input-group .group-span-filestyle {
      display: block;
      width: auto; }
      body#contact #content-wrapper #main #content .contact-form input[type=file] + div.input-group .group-span-filestyle label {
        width: 100%;
        height: auto; }
  body#contact #content-wrapper #main #content .contact-form input[name=submitMessage] {
    width: 100%; }

/**
 * Responsive para pantallas superiores a 575px 
**/
/**
 * Responsive para pantallas superiores a 992px 
**/
@media screen and (min-width: 992px) {
  body#contact #content-wrapper {
    width: 70%; }
    body#contact #content-wrapper #main #content .contact-form {
      margin-left: 2rem;
      padding: 2rem; }
      body#contact #content-wrapper #main #content .contact-form input[type=file] + div.input-group {
        display: table; }
        body#contact #content-wrapper #main #content .contact-form input[type=file] + div.input-group > input {
          float: left; }
        body#contact #content-wrapper #main #content .contact-form input[type=file] + div.input-group .group-span-filestyle {
          display: table-cell;
          width: 1%; }
          body#contact #content-wrapper #main #content .contact-form input[type=file] + div.input-group .group-span-filestyle label {
            width: 100%;
            height: auto; }
      body#contact #content-wrapper #main #content .contact-form input[name=submitMessage] {
        width: auto; }
      body#contact #content-wrapper #main #content .contact-form .form-group > .col-md-9 {
        width: 100%; }
  body#contact #left-column {
    width: 30%;
    border-bottom: 2px solid #002D74;
    padding-top: 1rem;
    margin-bottom: 0rem;
    min-height: 725px; } }

/*-------------------------------------------------------------
# Errors
--------------------------------------------------------------*/
/*-------------------------------------------------------------
## 404
--------------------------------------------------------------*/
/*-------------
	ERROR 404
-------------*/
body#pagenotfound section.page-not-found,
body#search section.page-not-found {
  margin-bottom: 6.25rem;
  margin-top: 3.938rem;
  padding: 0; }
  body#pagenotfound section.page-not-found .soy_img_404_wrapper,
  body#search section.page-not-found .soy_img_404_wrapper {
    width: 100%;
    text-align: center; }
    body#pagenotfound section.page-not-found .soy_img_404_wrapper > img,
    body#search section.page-not-found .soy_img_404_wrapper > img {
      width: 100%;
      height: auto;
      max-width: 600px; }
  body#pagenotfound section.page-not-found h4, body#pagenotfound section.page-not-found .h4,
  body#search section.page-not-found h4,
  body#search section.page-not-found .h4 {
    text-align: center;
    font: normal normal 500 1.125rem/1.625rem Oswald;
    letter-spacing: 0px;
    color: #444645;
    margin: 0; }
    body#pagenotfound section.page-not-found h4:last-of-type, body#pagenotfound section.page-not-found .h4:last-of-type,
    body#search section.page-not-found h4:last-of-type,
    body#search section.page-not-found .h4:last-of-type {
      margin-bottom: 60px; }
  body#pagenotfound section.page-not-found p,
  body#search section.page-not-found p {
    text-align: center;
    font: normal normal normal 0.875rem/1.25rem Roboto;
    letter-spacing: 0px;
    color: #444645;
    margin: 0;
    margin-bottom: 12px; }
  body#pagenotfound section.page-not-found #search_widget form .search,
  body#search section.page-not-found #search_widget form .search {
    color: #002D74;
    right: 16px;
    top: 4px; }
  body#pagenotfound section.page-not-found #search_widget form input,
  body#search section.page-not-found #search_widget form input {
    background: #EAEAEA 0% 0% no-repeat padding-box;
    -moz-border-radius: 23px;
    /* Mozilla */
    -webkit-border-radius: 23px;
    /* Safari */
    border-radius: 23px;
    text-align: left;
    font: normal normal bold 0.875rem/1rem Roboto;
    letter-spacing: 0px;
    color: #444645;
    opacity: 1;
    padding: 15px 22px; }
    body#pagenotfound section.page-not-found #search_widget form input::placeholder,
    body#search section.page-not-found #search_widget form input::placeholder {
      text-align: left;
      font: normal normal bold 0.875rem/1rem Roboto;
      letter-spacing: 0px;
      color: #444645;
      opacity: 0.58; }

@media all and (min-width: 992px) {
  body#pagenotfound #main section.page-not-found,
  body#search #main section.page-not-found {
    max-width: 100%;
    width: 100%;
    margin: 0;
    margin-bottom: 69px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    body#pagenotfound #main section.page-not-found .soy_img_404_wrapper,
    body#search #main section.page-not-found .soy_img_404_wrapper {
      width: 56.4%; }
    body#pagenotfound #main section.page-not-found .soy-content-404,
    body#search #main section.page-not-found .soy-content-404 {
      width: 31.5%; }
    body#pagenotfound #main section.page-not-found h4, body#pagenotfound #main section.page-not-found .h4,
    body#search #main section.page-not-found h4,
    body#search #main section.page-not-found .h4 {
      text-align: left;
      font: normal normal 500 2.625rem/3.875rem Oswald; }
      body#pagenotfound #main section.page-not-found h4:last-of-type, body#pagenotfound #main section.page-not-found .h4:last-of-type,
      body#search #main section.page-not-found h4:last-of-type,
      body#search #main section.page-not-found .h4:last-of-type {
        font: normal normal 500 2.188rem/3.25rem Oswald;
        margin-bottom: 81px; }
    body#pagenotfound #main section.page-not-found p,
    body#search #main section.page-not-found p {
      text-align: left;
      font: normal normal normal 1.563rem/1.563rem Roboto;
      margin-bottom: 9px; }
    body#pagenotfound #main section.page-not-found #search_widget form .search,
    body#search #main section.page-not-found #search_widget form .search {
      right: 21px;
      top: 5px;
      font-size: 27px; }
    body#pagenotfound #main section.page-not-found #search_widget form input,
    body#search #main section.page-not-found #search_widget form input {
      font: normal normal bold 1.125rem/1.313rem Roboto; }
      body#pagenotfound #main section.page-not-found #search_widget form input::placeholder,
      body#search #main section.page-not-found #search_widget form input::placeholder {
        font: normal normal bold 1.125rem/1.313rem Roboto; } }

/*-------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*----------
	FOOTER
----------*/
footer#footer {
  background-color: #444645;
  padding-top: 0px;
  /** ============== BLOQUE COPYRIGHT ================ **/ }
  footer#footer .soy_go_top {
    display: none;
    width: fit-content;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 5; }
    footer#footer .soy_go_top:hover {
      cursor: pointer; }
    footer#footer .soy_go_top img {
      width: 48px;
      height: auto; }
  footer#footer a, footer#footer p, footer#footer span, footer#footer div {
    color: #ffffff;
    font-size: 14px; }
  footer#footer .h1, footer#footer .h2, footer#footer .h3, footer#footer .h4, footer#footer .h5, footer#footer h3 {
    color: #ffffff; }
  footer#footer.container {
    position: relative; }
  footer#footer > div > .row {
    margin: 0; }
  footer#footer .footer-container {
    margin-top: 0;
    padding-top: 0;
    box-shadow: none;
    /** ============== BLOQUE ENLACES TIENDA ================ **/
    /** ============== BLOQUE CONTACTO ================ **/
    /** ============== BLOQUE SOCIAL ================ **/ }
    footer#footer .footer-container .footer_content_block {
      text-align: center; }
      footer#footer .footer-container .footer_content_block li {
        margin-bottom: 8px; }
    footer#footer .footer-container #contact-infos {
      line-height: 26px; }
    footer#footer .footer-container .links {
      border-bottom: 2px solid #9D9D9D;
      margin: 0 auto; }
      footer#footer .footer-container .links .col-md-3 {
        padding-left: 0px; }
      footer#footer .footer-container .links ul {
        background: none; }
      footer#footer .footer-container .links > div > div > .h3, footer#footer .footer-container .links > div > .h3, footer#footer .footer-container .links > .h3 {
        text-align: center;
        font: normal normal bold 1rem/1.188rem Roboto;
        letter-spacing: 0px;
        color: #ffffff;
        text-transform: uppercase;
        margin-bottom: 0; }
      footer#footer .footer-container .links > div > div .title, footer#footer .footer-container .links > div .title, footer#footer .footer-container .links .title {
        border: none;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        padding: 1rem; }
        footer#footer .footer-container .links > div > div .title > .h3, footer#footer .footer-container .links > div .title > .h3, footer#footer .footer-container .links .title > .h3 {
          text-align: center;
          font: normal normal bold 1rem/1.188rem Roboto;
          letter-spacing: 0px;
          color: #ffffff;
          text-transform: uppercase;
          margin-bottom: 0; }
        footer#footer .footer-container .links > div > div .title .navbar-toggler, footer#footer .footer-container .links > div .title .navbar-toggler, footer#footer .footer-container .links .title .navbar-toggler {
          width: fit-content; }
        footer#footer .footer-container .links > div > div .title .remove, footer#footer .footer-container .links > div > div .title .add, footer#footer .footer-container .links > div .title .remove, footer#footer .footer-container .links > div .title .add, footer#footer .footer-container .links .title .remove, footer#footer .footer-container .links .title .add {
          color: #ffffff;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -ms-justify-content: center;
          justify-content: center;
          -ms-flex-pack: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          align-items: center; }
          footer#footer .footer-container .links > div > div .title .remove > span, footer#footer .footer-container .links > div > div .title .add > span, footer#footer .footer-container .links > div .title .remove > span, footer#footer .footer-container .links > div .title .add > span, footer#footer .footer-container .links .title .remove > span, footer#footer .footer-container .links .title .add > span {
            font-size: 1.375rem;
            line-height: 0.938rem; }
        footer#footer .footer-container .links > div > div .title::after, footer#footer .footer-container .links > div .title::after, footer#footer .footer-container .links .title::after {
          display: none; }
        footer#footer .footer-container .links > div > div .title + ul, footer#footer .footer-container .links > div .title + ul, footer#footer .footer-container .links .title + ul {
          background: #444645; }
          footer#footer .footer-container .links > div > div .title + ul li, footer#footer .footer-container .links > div .title + ul li, footer#footer .footer-container .links .title + ul li {
            border: none;
            padding: 0;
            margin-bottom: 11px; }
            footer#footer .footer-container .links > div > div .title + ul li > a, footer#footer .footer-container .links > div .title + ul li > a, footer#footer .footer-container .links .title + ul li > a {
              text-align: center;
              font: normal normal 500 0.875rem/1rem Roboto;
              letter-spacing: 0px;
              color: #ffffff;
              opacity: 1; }
              footer#footer .footer-container .links > div > div .title + ul li > a:hover, footer#footer .footer-container .links > div .title + ul li > a:hover, footer#footer .footer-container .links .title + ul li > a:hover {
                color: #ffffff;
                opacity: 0.6; }
      footer#footer .footer-container .links .block-social h3 {
        padding-bottom: 1rem; }
    footer#footer .footer-container .block-contact {
      /* Lo tengo que hacer por un important en el tema padre*/
      padding-bottom: 0px !important;
      color: #ffffff; }
      footer#footer .footer-container .block-contact .block-contact-item {
        margin-bottom: .4rem; }
        footer#footer .footer-container .block-contact .block-contact-item i {
          padding-right: 12px; }
        footer#footer .footer-container .block-contact .block-contact-item p {
          color: #ffffff; }
      footer#footer .footer-container .block-contact .block-contact-title {
        color: #ffffff; }
      footer#footer .footer-container .block-contact #contact-infos.in, footer#footer .footer-container .block-contact #contact-infos.collapsing {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        text-align: center; }
        footer#footer .footer-container .block-contact #contact-infos.in > span, footer#footer .footer-container .block-contact #contact-infos.collapsing > span {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-direction: column;
          -moz-flex-direction: column;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -ms-justify-content: center;
          justify-content: center;
          -ms-flex-pack: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          align-items: center;
          text-align: center;
          width: 100%;
          margin-bottom: 11px; }
          footer#footer .footer-container .block-contact #contact-infos.in > span:first-of-type > *, footer#footer .footer-container .block-contact #contact-infos.collapsing > span:first-of-type > * {
            margin-bottom: 11px; }
    footer#footer .footer-container .block-social {
      text-align: center;
      color: #ffffff;
      margin-top: 13px;
      margin-bottom: 13px; }
      footer#footer .footer-container .block-social > .h3 {
        margin-bottom: 8px; }
      footer#footer .footer-container .block-social div {
        max-width: 170px;
        margin: 0 auto; }
        footer#footer .footer-container .block-social div ul {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          flex-flow: row-reverse;
          text-align: center;
          -webkit-flex-direction: row-reverse;
          -moz-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -ms-justify-content: center;
          justify-content: center;
          -ms-flex-pack: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          align-items: center; }
        footer#footer .footer-container .block-social div > ul > li {
          border-bottom: 0px;
          background: transparent;
          margin-bottom: 0;
          width: fit-content;
          padding: 0;
          margin: 0;
          margin-right: 24px;
          height: fit-content; }
          footer#footer .footer-container .block-social div > ul > li:first-of-type {
            margin-right: 0; }
          footer#footer .footer-container .block-social div > ul > li:nth-of-type(2) a {
            margin-bottom: -9px; }
          footer#footer .footer-container .block-social div > ul > li a {
            text-indent: 0;
            text-align: center;
            color: #ffffff;
            overflow: initial; }
            footer#footer .footer-container .block-social div > ul > li a:hover {
              color: #60B3CC; }
          footer#footer .footer-container .block-social div > ul > li i {
            color: #ffffff; }
            footer#footer .footer-container .block-social div > ul > li i:hover {
              color: #60B3CC; }
          footer#footer .footer-container .block-social div > ul > li .soy-facebook,
          footer#footer .footer-container .block-social div > ul > li .soy-linkedin {
            font-size: 2.188rem; }
          footer#footer .footer-container .block-social div > ul > li .soy-youtube {
            font-size: 2.188rem; }
          footer#footer .footer-container .block-social div > ul > li .soy-instagram {
            font-size: 2rem; }
          footer#footer .footer-container .block-social div > ul > li .soy_go_top {
            position: fixed;
            right: 30px;
            bottom: 18px;
            cursor: pointer;
            z-index: 99;
            display: none; }
          footer#footer .footer-container .block-social div > ul > li .link_logo_youtube {
            margin-top: 6px; }
  footer#footer .copyright_theme a {
    text-align: center; }
    footer#footer .copyright_theme a img {
      display: block;
      margin: 0 auto; }
    footer#footer .copyright_theme a .copyShopName {
      display: block;
      font-weight: 600; }
    footer#footer .copyright_theme a span {
      display: block;
      color: #ffffff;
      text-emphasis: center;
      width: 100%;
      margin-top: 10px; }
  footer#footer .copyright_theme .logo_soy_footer {
    display: flex;
    max-width: 220px;
    align-items: center;
    margin: 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    footer#footer .copyright_theme .logo_soy_footer > span {
      color: #ffffff;
      text-align: left;
      font: normal normal 500 0.875rem/1rem Work Sans;
      letter-spacing: 1.25px;
      margin-top: 0; }
    footer#footer .copyright_theme .logo_soy_footer > img {
      margin-top: -4px; }

#main .page-footer {
  margin-bottom: 0px; }

/** 
 * Responsive a partir de 575px
**/
@media screen and (min-width: 576px) {
  footer#footer > .container {
    margin: 0;
    width: 100%; } }

@media all and (max-width: 767px) {
  footer#footer .footer-container .links {
    width: 90%; } }

/** 
 * Responsive a partir de 768px
**/
@media screen and (min-width: 768px) {
  footer#footer .footer-container {
    padding-top: 3rem;
    /** ============== BLOQUE ENLACES TIENDA ================ **/
    /** ============== BLOQUE CONTACTO ================ **/
    /** ============== BLOQUE SOCIAL ================ **/
    /** ============== BLOQUE COPYRIGHT ================ **/ }
    footer#footer .footer-container .row:first-of-type {
      margin-bottom: 30px; }
    footer#footer .footer-container .links {
      border: none; }
      footer#footer .footer-container .links .h3 {
        margin-bottom: 23px;
        text-align: left;
        font: normal normal bold 1rem/1.188rem Roboto;
        letter-spacing: 0px;
        color: #ffffff; }
      footer#footer .footer-container .links > div > div {
        margin: 0;
        width: 100%; }
        footer#footer .footer-container .links > div > div > .h3 {
          margin-bottom: 23px;
          text-align: left;
          font: normal normal bold 1rem/1.188rem Roboto;
          letter-spacing: 0px;
          color: #ffffff; }
        footer#footer .footer-container .links > div > div .title + ul {
          background: transparent; }
          footer#footer .footer-container .links > div > div .title + ul li > a {
            display: block;
            width: 100%;
            text-align: left; }
      footer#footer .footer-container .links#block_myaccount_infos p {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
        justify-content: flex-start;
        -ms-flex-pack: flex-start;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        margin-bottom: 23px; }
        footer#footer .footer-container .links#block_myaccount_infos p > a {
          margin: 0; }
      footer#footer .footer-container .links#block_myaccount_infos ul li > a {
        width: 100%;
        display: block;
        text-align: left; }
      footer#footer .footer-container .links .block-social h3 {
        padding-bottom: 0px; }
    footer#footer .footer-container .block-contact {
      padding-top: 0 !important;
      padding: 0 15px; }
      footer#footer .footer-container .block-contact #contact-infos {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        -webkit-align-items: flex-start;
        -moz-align-items: flex-start;
        -ms-align-items: flex-start;
        align-items: flex-start;
        text-align: left; }
        footer#footer .footer-container .block-contact #contact-infos > span {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-direction: column;
          -moz-flex-direction: column;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -ms-justify-content: center;
          justify-content: center;
          -ms-flex-pack: center;
          -webkit-align-items: flex-start;
          -moz-align-items: flex-start;
          -ms-align-items: flex-start;
          align-items: flex-start;
          text-align: left;
          width: 100%;
          margin-bottom: 11px;
          line-height: 16px; }
          footer#footer .footer-container .block-contact #contact-infos > span:first-of-type > * {
            margin-bottom: 11px; }
    footer#footer .footer-container .block-social {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start; }
      footer#footer .footer-container .block-social > div {
        margin: 0; }
    footer#footer .footer-container .copyright_theme {
      border-top: #9D9D9D solid 2px; } }

/** 
 * Responsive a partir de 992px
**/
/*
@media screen and (min-width: $large-screen) {
    footer#footer {
		a,p,span,div {
			font-size: 16px;
		}
        #custom-text {
            padding: 5.5rem 0;
            background-image: url($dir_img + 'backgroundVentajas.jpg');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: 50% 50%;


            &>div>p {
                margin-bottom: 4rem;
            }

            #fondo-img {
                display: block;
            }

            ul {
                @include flexbox();
                padding: 0;
                padding: 1.5rem 2.125rem;

                li {
                    @include flex(1 1 auto);
                    padding: 0 3%;
                }
            }
        }

        .footer-container {
            padding-top: 4.8rem;


            .block-contact {
                padding: 0 !important;
                .block-contact-title {
	                margin-bottom:27px;
                }
            }

		    .block-social {
			    text-align: left;
                padding: 0;
			    div {
				    max-width: 132px;
					margin: 0;
			    }
            }
            
            .footer_content_block {
		        text-align:left;
	        }

            li {
                margin-bottom: 0;
            }
        }
    }
    #footer_account_list {
	    margin-top:30px;
    }
}
*/
/** 
 * Responsive a partir de 1200px
**/
@media screen and (min-width: 1200px) {
  footer#footer .footer-container > .container {
    width: 85%; }
  footer#footer .footer-container .block-contact-title {
    margin-bottom: 2.3rem; }
  footer#footer .footer-container .block-social h4 {
    margin-bottom: 2.3rem; } }

/** 
 * Responsive a partir de 992px
**/
@media screen and (min-width: 992px) {
  footer#footer .footer-container .block-contact #contact-infos > span {
    line-height: 20px; }
  footer#footer .soy_go_top img {
    width: 62px;
    height: auto; } }

/*-------------------------------------------------------------
# Manufacturer
--------------------------------------------------------------*/
#manufacturer .license .abc-title {
  padding-bottom: 15px; }
  #manufacturer .license .abc-title a {
    font-size: 18px;
    color: #9D9D9D;
    font-family: 'Oswald', sans-serif; }
    #manufacturer .license .abc-title a:before {
      content: "/ "; }
    #manufacturer .license .abc-title a:first-child:before {
      content: ""; }
  #manufacturer .license .abc-title .letter-selected {
    color: #60B3CC; }
    #manufacturer .license .abc-title .letter-selected:before {
      color: #9D9D9D; }

#manufacturer .license .license-full-container {
  padding-left: 0px;
  overflow: hidden; }
  #manufacturer .license .license-full-container .license-full {
    padding-left: 0px; }
    #manufacturer .license .license-full-container .license-full .license-abc {
      display: flex;
      align-items: center;
      margin: 15px 0px;
      min-height: 50px;
      flex-direction: column; }
      #manufacturer .license .license-full-container .license-full .license-abc a {
        color: #444645;
        line-height: 26px; }
      #manufacturer .license .license-full-container .license-full .license-abc .license-letter {
        padding-left: 0px;
        padding-right: 0px; }
        #manufacturer .license .license-full-container .license-full .license-abc .license-letter span {
          font-size: 18px;
          color: #444645;
          font-family: 'Oswald', sans-serif; }
      #manufacturer .license .license-full-container .license-full .license-abc .license-letter-content {
        display: flex;
        flex-direction: column; }
        #manufacturer .license .license-full-container .license-full .license-abc .license-letter-content .col-md-3 {
          flex: 0 0 49%; }

@media screen and (min-width: 992px) {
  #manufacturer .license .title-bg {
    margin-bottom: 50px; }
    #manufacturer .license .title-bg p {
      width: 40%;
      margin-top: 15px; }
  #manufacturer .license .abc-title a {
    font-size: 24px; }
  #manufacturer .license .license-full-container .license-full .license-abc {
    margin: 30px 0px;
    flex-direction: inherit; }
    #manufacturer .license .license-full-container .license-full .license-abc .license-letter span {
      font-size: 42px; }
    #manufacturer .license .license-full-container .license-full .license-abc .license-letter-content {
      display: block; }
      #manufacturer .license .license-full-container .license-full .license-abc .license-letter-content .col-md-3 {
        width: 25%; } }

/*-------------------------------------------------------------
# Modules
--------------------------------------------------------------*/
/*-------------------------------------------------------------
###  NEWSLETTER 
--------------------------------------------------------------*/
.block_newsletter {
  background-color: white;
  text-align: center;
  padding: 5rem 2rem; }
  .block_newsletter > .row {
    margin: 0 auto; }

input[type='email'] {
  border: 0px;
  border-bottom: 1px solid #ddd; }

/**
 * Rensponsive a partir de 768px
**/
@media screen and (min-width: 768px) {
  .block_newsletter > .row {
    width: 80%; }
  .block_newsletter form input[type=email]:focus {
    border: 2px solid #60B3CC; } }

/**
 * Rensponsive a partir de 992px
**/
@media screen and (min-width: 1200px) {
  .block_newsletter > .row {
    max-width: 96.375rem; }
  .block_newsletter form {
    max-width: 992px;
    margin: 0 auto; } }

/* Wishlist */
/*-------------------------------------------------------------
# WISHLIST
--------------------------------------------------------------*/
/** Listado de productos **/
#products article.product-miniature .wishlist, .products article.product-miniature .wishlist {
  display: none; }

/** Página de producto **/
#product .product-actions .wishlist {
  display: inline-block; }
  #product .product-actions .wishlist .popover-content.visible {
    position: fixed;
    bottom: 100px; }
    #product .product-actions .wishlist .popover-content.visible table td {
      color: #002D74;
      cursor: pointer; }
      #product .product-actions .wishlist .popover-content.visible table td:hover {
        background: #002D74;
        color: #ffffff; }
  #product .product-actions .wishlist a {
    padding: .75rem;
    background-color: pink;
    display: inline-block;
    height: 100%;
    cursor: pointer; }
    #product .product-actions .wishlist a i {
      color: #ffffff; }
    #product .product-actions .wishlist a span {
      display: none; }
    #product .product-actions .wishlist a:hover {
      opacity: 0.6; }

body .wishlist-toast.success {
  background-color: #60B3CC;
  border-color: #60B3CC; }

/** Mi cuenta (todas las listas) **/
#module-blockwishlist-lists #wrapper {
  padding-top: 1.563rem; }

#module-blockwishlist-lists .wishlist-container {
  padding: 0 15px; }
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header h1 {
    width: 48%;
    text-align: left;
    margin-bottom: 0;
    text-transform: uppercase; }
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new {
    color: #ffffff !important;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new i {
      color: #ffffff;
      margin-right: 0; }
    #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:hover, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:focus, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:active {
      color: #002D74 !important; }
      #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:hover i, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:focus i, #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new:active i {
        color: #002D74; }
  #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list {
    margin-bottom: 55px;
    position: relative;
    z-index: 1; }
    #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link {
      padding-left: 0; }
      #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-title {
        text-align: left;
        font: normal normal normal 0.875rem/1.25rem Roboto;
        letter-spacing: 0px;
        color: #444645; }
        #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-title span {
          color: #444645;
          font-size: 0.875rem;
          line-height: 1.25rem; }
        #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-title:hover {
          opacity: 0.6;
          color: #444645; }
      #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-right {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex; }
        #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-right button i {
          color: #444645;
          font-size: 1.25rem; }
        #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-right button:hover {
          opacity: 0.6; }
        #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-right .dropdown-menu {
          -moz-border-radius: 0;
          /* Mozilla */
          -webkit-border-radius: 0;
          /* Safari */
          border-radius: 0; }
          #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-right .dropdown-menu button {
            text-align: left;
            font: normal normal normal 0.875rem/1.25rem Roboto;
            letter-spacing: 0px;
            color: #444645; }
            #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-right .dropdown-menu button:hover, #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-right .dropdown-menu button:focus, #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-right .dropdown-menu button:active {
              opacity: 1; }
            #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-right .dropdown-menu button:hover {
              background-color: #60B3CC;
              color: #ffffff; }
      #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link:hover, #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link:focus, #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link:active {
        opacity: 1; }

/** Mi cuenta (una lista) **/
body#view #wrapper {
  padding-top: 0; }

body#view .wishlist-products-container .wishlist-products-container-header h1 {
  text-transform: uppercase; }

body#view .wishlist-products-container .wishlist-products-container-header .wishlist-products-count {
  display: none; }

body#view .wishlist-products-container .wishlist-products-container-header .sort-by-row .products-sort-order .select-title {
  font: normal normal normal 0.875rem/1rem Roboto;
  letter-spacing: 0px;
  color: #9D9D9D;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: none;
  padding-left: 0;
  padding-right: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center; }

body#view .wishlist-products-container .wishlist-products-container-header .sort-by-row .products-sort-order .dropdown-menu {
  background-color: #ffffff;
  -moz-border-radius: 0;
  /* Mozilla */
  -webkit-border-radius: 0;
  /* Safari */
  border-radius: 0;
  padding: 0; }
  body#view .wishlist-products-container .wishlist-products-container-header .sort-by-row .products-sort-order .dropdown-menu .select-list {
    font: normal normal normal 0.875rem/1.25rem Roboto;
    letter-spacing: 0px;
    color: #444645; }
    body#view .wishlist-products-container .wishlist-products-container-header .sort-by-row .products-sort-order .dropdown-menu .select-list:hover {
      opacity: 1;
      color: #ffffff;
      background-color: #60B3CC; }

body#view .wishlist-products-container #content.card {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding: 0; }
  body#view .wishlist-products-container #content.card .wishlist-list-empty {
    margin-bottom: 0; }
  body#view .wishlist-products-container #content.card .wishlist-products-list {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start; }
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item {
      -webkit-box-flex: 0 0 45%;
      -moz-box-flex: 0 0 45%;
      -webkit-flex: 0 0 45%;
      -ms-flex: 0 0 45%;
      flex: 0 0 45%;
      -webkit-transition: all 0.5s;
      /* Safari */
      -moz-transition: all 0.5s;
      /* Mozilla */
      -o-transition: all 0.5s;
      transition: all 0.5s;
      max-width: 50%;
      margin: 0 0 30px 0;
      padding: 0 5px; }
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product {
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
        justify-content: flex-start;
        -ms-flex-pack: flex-start;
        border: 1px solid #D8D8D8;
        padding: 4px; }
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-link {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center; }
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-image {
        margin: 0;
        width: 100%;
        height: auto; }
        body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-image img {
          position: static !important;
          width: 100%; }
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-right {
        width: 100%; }
        body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-right .wishlist-product-title {
          font: normal normal 500 0.875rem/1.25rem Roboto;
          letter-spacing: 0px;
          color: #444645;
          text-align: left;
          -webkit-line-clamp: 2;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          height: 2.625rem; }
        body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-right .wishlist-product-price {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-direction: column;
          -moz-flex-direction: column;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -ms-justify-content: center;
          justify-content: center;
          -ms-flex-pack: center;
          -webkit-align-items: flex-start;
          -moz-align-items: flex-start;
          -ms-align-items: flex-start;
          align-items: flex-start;
          text-align: left;
          font: normal normal bold 1rem/1.188rem Roboto;
          color: #444645;
          margin-bottom: 0.315rem; }
          body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-right .wishlist-product-price .wishlist-product-price-promo {
            text-decoration: line-through;
            font: normal normal 300 0.875rem/1rem Roboto;
            letter-spacing: 0px;
            color: #444645; }
        body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-right .wishlist-product-combinations .wishlist-product-combinations-text {
          min-height: 4.75rem;
          text-align: left;
          font: normal normal normal 0.875rem/1.25rem Roboto;
          letter-spacing: 0px;
          color: #444645; }
          body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-right .wishlist-product-combinations .wishlist-product-combinations-text span {
            text-align: left;
            font: normal normal normal 0.875rem/1.25rem Roboto;
            letter-spacing: 0px;
            color: #444645; }
        body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-right .wishlist-product-combinations > a {
          display: none; }
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart {
        height: 3rem;
        width: 70%; }
        body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart i {
          display: none; }
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-button-add {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        -moz-border-radius: 50%;
        /* Mozilla */
        -webkit-border-radius: 50%;
        /* Safari */
        border-radius: 50%;
        height: 3rem;
        width: 3rem;
        margin: 0; }
        body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-button-add i {
          margin-top: 0; }
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-availability {
        display: none; }
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item:last-of-type {
        margin-bottom: 0; }

body#view .wishlist-footer-links {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center; }
  body#view .wishlist-footer-links a {
    color: #002D74;
    width: 49%;
    max-width: 12.5rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    body#view .wishlist-footer-links a:hover {
      color: #002D74;
      opacity: 0.6; }

/** Modales **/
footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-header,
footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-header,
footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-header,
footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-header,
footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-header,
footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-header, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-header,
#main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-header,
#main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-header,
#main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-header,
#main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-header,
#main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-header {
  padding: 0.625rem 15px 0 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center; }
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-header .modal-title,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-header .modal-title,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-header .modal-title,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-header .modal-title,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-header .modal-title,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-header .modal-title, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-header .modal-title,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-header .modal-title,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-header .modal-title,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-header .modal-title,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-header .modal-title,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-header .modal-title {
    text-align: left;
    font: normal normal 500 1rem/1.25rem Oswald;
    letter-spacing: 0px;
    color: #444645;
    text-transform: uppercase; }
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-header button.close,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-header button.close,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-header button.close,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-header button.close,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-header button.close,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-header button.close, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-header button.close,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-header button.close,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-header button.close,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-header button.close,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-header button.close,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-header button.close {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    width: 2.813rem; }
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-header button.close > span,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-header button.close > span,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-header button.close > span,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-header button.close > span,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-header button.close > span,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-header button.close > span, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-header button.close > span,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-header button.close > span,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-header button.close > span,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-header button.close > span,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-header button.close > span,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-header button.close > span {
      text-align: center;
      font: normal normal 700 2rem/2rem Roboto;
      letter-spacing: 0px;
      color: #444645;
      text-transform: uppercase;
      width: 2.813rem; }

footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body,
footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body,
footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body,
footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body,
footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body,
footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body,
#main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body,
#main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body,
#main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body,
#main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body,
#main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body {
  padding: 0.625rem 15px;
  /*Iniciar sesión*/
  /*Añadir*/
  /*Compartir*/ }
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .modal-text,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .modal-text,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .modal-text,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .modal-text,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .modal-text,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .modal-text, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .modal-text,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .modal-text,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .modal-text,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .modal-text,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .modal-text,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .modal-text {
    padding: 0; }
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item {
    padding: 15px; }
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item p,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item p,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item p,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item p,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item p,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item p, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item p,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item p,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item p,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item p,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item p,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item p {
      padding: 0;
      color: #444645; }
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover {
      background: #60B3CC; }
      footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover p,
      footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover p,
      footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover p,
      footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover p,
      footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover p,
      footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover p, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover p,
      #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover p,
      #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover p,
      #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover p,
      #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover p,
      #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .wishlist-chooselist .wishlist-list .wishlist-list-item:hover p {
        color: #ffffff; }
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control {
    color: #444645; }
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control::placeholder,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control::placeholder,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control::placeholder,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control::placeholder,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control::placeholder,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control::placeholder, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control::placeholder,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control::placeholder,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control::placeholder,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control::placeholder,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control::placeholder,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control::placeholder {
      color: #9D9D9D; }
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control:focus,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control:focus,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control:focus,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control:focus,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control:focus,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control:focus, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control:focus,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control:focus,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control:focus,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control:focus,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control:focus,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-body .form-group .form-control:focus {
      outline: none;
      border: 1px solid #60B3CC; }

footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer,
footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer,
footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer,
footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer,
footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer,
footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer,
#main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer,
#main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer,
#main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer,
#main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer,
#main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer {
  padding: 0 15px 0.625rem 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center; }
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary {
    height: 3rem;
    width: 100%;
    margin-bottom: 3px; }
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus, footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:hover,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:focus,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary:active {
      color: #002D74; }
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-secondary {
    font-weight: 400;
    height: 3rem;
    width: 100%;
    margin: 0; }

.wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center; }
  .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new {
    color: #ffffff !important; }
    .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer a.wishlist-add-to-new i {
      color: #ffffff; }

.wishlist-popover-content,
.wishlist_added_message {
  display: none; }

.wishlist-popover-content {
  position: fixed;
  z-index: 9;
  bottom: 0;
  right: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%; }
  .wishlist-popover-content.visible {
    display: block; }
    .wishlist-popover-content.visible > div {
      padding: 5px;
      border-radius: 10px;
      height: auto;
      overflow-y: auto;
      top: 33%;
      position: fixed;
      margin: 0 auto;
      text-align: center;
      width: 33%;
      left: 33%;
      max-height: 80%; }
    .wishlist-popover-content.visible table {
      width: 100%;
      margin: 0 auto;
      cursor: pointer;
      background: #fff;
      color: #000; }
      .wishlist-popover-content.visible table td {
        border: 1px solid #000;
        color: #000;
        text-transform: uppercase;
        font-size: 10pt;
        border-radius: 5px; }

/*------------------------
	WISHLIST RESPONSIVE
-----------------------*/
@media screen and (min-width: 768px) {
  /** Página de producto **/
  #product .product-actions .wishlist .popover-content.visible {
    position: absolute;
    bottom: 78px;
    right: inherit;
    left: 2rem;
    max-width: 400px; }
    #product .product-actions .wishlist .popover-content.visible table td {
      color: #002D74;
      cursor: pointer; }
      #product .product-actions .wishlist .popover-content.visible table td:hover {
        background: #002D74;
        color: #ffffff; }
  /** Mi cuenta (una lista) **/
  body#view .wishlist-products-container .wishlist-products-container-header .sort-by-row .sort-by {
    width: unset;
    margin-right: 5px; }
  body#view .wishlist-products-container .wishlist-products-container-header .sort-by-row .products-sort-order .select-title {
    width: unset; }
  body#view .wishlist-products-container #content.card {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 0; }
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item {
      max-width: 32rem; }
  /**Modales**/
  footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer,
  footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer,
  footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer,
  footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer,
  footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer,
  footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer,
  #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer,
  #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer,
  #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer,
  #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer,
  #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer {
    padding: 0 15px 0.625rem 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    footer#footer .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
    footer#footer .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
    footer#footer .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
    footer#footer .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
    footer#footer .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
    footer#footer .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary, #main .wishlist-add-to .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
    #main .wishlist-delete .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
    #main .wishlist-create .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
    #main .wishlist-share .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
    #main .wishlist-login .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary,
    #main .wishlist-rename .wishlist-modal .modal-dialog .modal-content .modal-footer .btn-primary {
      margin-bottom: 0;
      margin-right: 3px; } }

@media all and (min-width: 769px) {
  /** Mi cuenta (una lista) **/
  body#view .wishlist-products-container .wishlist-products-container-header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start; }
    body#view .wishlist-products-container .wishlist-products-container-header .sort-by-row {
      min-width: unset;
      width: 70%; }
  body#view .wishlist-products-container #content.card {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 0; }
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item {
      -webkit-box-flex: 0 0 33%;
      -moz-box-flex: 0 0 33%;
      -webkit-flex: 0 0 33%;
      -ms-flex: 0 0 33%;
      flex: 0 0 33%;
      max-width: 33%; }
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-image img {
        position: static;
        transform: translate(0, 0);
        width: 100%; }
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-right .wishlist-product-combinations {
        margin-bottom: 1rem; }
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-bottom .wishlist-product-addtocart {
        width: 100%; }
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-availability {
        display: none; } }

@media all and (min-width: 992px) {
  /** Mi cuenta (todas las listas) **/
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header h1 {
    text-align: left;
    letter-spacing: 0px;
    width: 30%; }
  #module-blockwishlist-lists .wishlist-container .wishlist-container-header .wishlist-add-to-new i {
    margin-right: 0.3rem;
    margin-bottom: -2px; }
  #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-title {
    font: normal normal normal 1rem/1.25rem Roboto; }
    #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-title span {
      font: normal normal normal 1rem/1.25rem Roboto;
      letter-spacing: 0px;
      color: #444645; }
  #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-right button i {
    font-size: 1.5rem; }
  #module-blockwishlist-lists .wishlist-container #content .wishlist-list-container .wishlist-list .wishlist-list-item .wishlist-list-item-link .wishlist-list-item-right .dropdown-menu button {
    font: normal normal normal 1rem/1.25rem Roboto;
    letter-spacing: 0px;
    color: #444645; }
  /** Mi cuenta (una lista) **/
  body#view .wishlist-products-container .wishlist-products-container-header .sort-by-row .sort-by {
    text-align: left;
    font: normal normal 500 1rem/1.188rem Roboto;
    letter-spacing: 0px;
    color: #4A4A4A;
    text-transform: uppercase;
    margin-right: 7px; }
  body#view .wishlist-products-container .wishlist-products-container-header .sort-by-row .products-sort-order .select-title {
    font: normal normal normal 1rem/1.188rem Roboto;
    letter-spacing: 0px;
    color: #9D9D9D; }
  body#view .wishlist-products-container .wishlist-products-container-header .sort-by-row .products-sort-order .dropdown-menu .select-list {
    font: normal normal normal 1rem/1.188rem Roboto;
    letter-spacing: 0px;
    color: #444645; }
  body#view .wishlist-products-container #content.card {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 0; }
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product {
      max-width: unset; }
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-right .wishlist-product-title {
      text-align: left;
      font: normal normal 500 1.125rem/1.313rem Roboto;
      letter-spacing: 0px; }
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-right .wishlist-product-price {
      text-align: left;
      font: normal normal 500 1.25rem/1.5rem Roboto;
      letter-spacing: 0px;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      -ms-flex-pack: flex-start;
      -webkit-align-items: first baseline;
      -moz-align-items: first baseline;
      -ms-align-items: first baseline;
      align-items: first baseline; }
      body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-right .wishlist-product-price .wishlist-product-price-promo {
        font: normal normal 300 1rem/1.5rem Roboto; }
    body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item .wishlist-product-right .wishlist-product-combinations .wishlist-product-combinations-text span {
      text-align: left;
      font: normal normal normal 1rem/1.375rem Roboto;
      letter-spacing: 0px; } }

@media all and (min-width: 1200px) {
  /** Mi cuenta (una lista) **/
  body#view .wishlist-products-container #content.card .wishlist-products-list .wishlist-products-item {
    -webkit-box-flex: 0 0 25%;
    -moz-box-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; } }

/* Mail Alerts */
/*-------------------------------------------------------------
# EMAIL ALERT
--------------------------------------------------------------*/
#module-ps_emailalerts-account #wrapper {
  padding-top: 0; }
  #module-ps_emailalerts-account #wrapper > .container {
    padding: 0; }

#module-ps_emailalerts-account #content-wrapper {
  margin-top: 1rem;
  margin-bottom: 3rem; }

#module-ps_emailalerts-account .card {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

#module-ps_emailalerts-account .soy_content_account ul li {
  background-color: #f9f9f9;
  margin: 1rem 0;
  justify-content: space-between;
  display: flex;
  flex-direction: row; }
  #module-ps_emailalerts-account .soy_content_account ul li > a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    #module-ps_emailalerts-account .soy_content_account ul li > a img {
      -webkit-box-flex: 0 0 auto;
      -moz-box-flex: 0 0 auto;
      -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      mix-blend-mode: multiply;
      width: 80px; }
    #module-ps_emailalerts-account .soy_content_account ul li > a span {
      -webkit-box-flex: 1 0 auto;
      -moz-box-flex: 1 0 auto;
      -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
      flex: 1 0 auto;
      text-align: center;
      color: black;
      padding: .6rem; }
      #module-ps_emailalerts-account .soy_content_account ul li > a span.mail_name, #module-ps_emailalerts-account .soy_content_account ul li > a span.mail_combi {
        width: 90px; }
      #module-ps_emailalerts-account .soy_content_account ul li > a span.js-remove-email-alert {
        color: #CB041B; }

/* Loyalty */
/*-------------------------------------------------------------
# LOYALTY
--------------------------------------------------------------*/
#module-loyalty-default #order-list {
  width: 100%; }
  #module-loyalty-default #order-list thead {
    background-color: #f7f7f7; }
    #module-loyalty-default #order-list thead th {
      padding: .5rem .3rem;
      text-align: center; }
  #module-loyalty-default #order-list tbody td {
    text-align: center; }
    #module-loyalty-default #order-list tbody td.history_method {
      padding: 1rem .2rem;
      text-align: center; }
  #module-loyalty-default #order-list tfoot td {
    text-align: left !important;
    font-weight: 700; }
    #module-loyalty-default #order-list tfoot td:nth-of-type(2) {
      text-align: center !important; }

#module-loyalty-default h2 {
  margin-top: 2rem; }

#module-loyalty-default .pagination button {
  background-color: #002D74;
  color: white; }
  #module-loyalty-default .pagination button:hover {
    background-color: #001941;
    color: white; }

#module-loyalty-default .pagination li {
  display: inline-block;
  padding: .2rem .6rem;
  margin: 0 .3rem; }
  #module-loyalty-default .pagination li.active {
    background-color: #002D74;
    color: white; }

/* soycustommenupro */
/*-------------------------------------------------------------
# SOY CUSTOM MENU PRO
--------------------------------------------------------------*/
#soymenu #soymenu_main_ul .soy-content-submenu a {
  color: black;
  font-weight: 400;
  text-transform: capitalize;
  text-align: left; }
  #soymenu #soymenu_main_ul .soy-content-submenu a:hover {
    color: #60B3CC; }

#soymenu #soymenu_main_ul .soy-content-submenu .soymm_category {
  font-weight: 700; }

@media screen and (min-width: 992px) {
  #soymenu .soymm_subcategories_childs a {
    padding-left: 5px; }
  #soymenu .has_submenu:hover::after {
    content: '';
    position: absolute;
    background-color: transparent;
    bottom: -7px;
    width: 30px;
    height: 30px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid white;
    margin-left: -20px;
    z-index: -1; }
  .soymenu_subcategories {
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1); } }

@media (max-width: 991px) {
  #header .header-nav #soy_mobile_top_menu_wrapper {
    width: 100%;
    background-color: #002D74; }
    #header .header-nav #soy_mobile_top_menu_wrapper #soymenu .material-icons {
      z-index: 99;
      color: white;
      position: absolute; }
    #header .header-nav #soy_mobile_top_menu_wrapper #soymenu .soy-content-submenu ul li {
      background-color: white;
      margin-left: 0px; }
    #header .header-nav #soy_mobile_top_menu_wrapper #soymenu #soymenu_main_ul > li > .soymm_content_link > a {
      color: white;
      font-weight: 700; }
    #header .header-nav #soy_mobile_top_menu_wrapper #soymenu #soymenu_main_ul li {
      border-bottom: 1px solid white; }
    #header .header-nav #soy_mobile_top_menu_wrapper .soymenu_subcategories ul {
      padding-left: 0px;
      padding-right: 0px;
      width: 100%; }
      #header .header-nav #soy_mobile_top_menu_wrapper .soymenu_subcategories ul li {
        padding-left: 25px; } }

#_desktop_top_menu #soymenu .soymenu_category.has_submenu .dropdown-item::after {
  font-family: "grupoerik";
  content: "\e904";
  color: #fff; }

#_desktop_top_menu #soymenu .soymenu_category.has_submenu .dropdown-item:hover::after {
  color: #24b9d7; }

/* soycategoryfaqs */
/*-------------------------------------------------------------
# SOY CATEGORY FAQS
--------------------------------------------------------------*/
/** FAQs en pagina de categoria **/
#category #soyfaqcategorias {
  border-top: 1px solid black; }
  #category #soyfaqcategorias .soyfaq .soyfaq_titulo {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between; }
    #category #soyfaqcategorias .soyfaq .soyfaq_titulo span {
      font-weight: 700;
      display: flex;
      align-items: center;
      max-width: 80%; }
  #category #soyfaqcategorias .soyfaq .faq_mas {
    background-color: #60B3CC;
    color: white;
    border-radius: 30px;
    width: 45px;
    height: 45px;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center; }
    #category #soyfaqcategorias .soyfaq .faq_mas:hover {
      cursor: pointer; }

@media all and (min-width: 992px) {
  #category #soyfaqcategorias {
    border-top: 0px; }
    #category #soyfaqcategorias .soyfaq {
      display: flex;
      flex-direction: row;
      align-items: center;
      border-bottom: 0px; }
      #category #soyfaqcategorias .soyfaq .soyfaq_titulo {
        width: 30%;
        display: inherit;
        justify-content: inherit; }
      #category #soyfaqcategorias .soyfaq .soyfaq_respuesta {
        width: 70%; }
      #category #soyfaqcategorias .soyfaq .soyfaq_respuesta {
        display: block !important;
        border-left: 1px solid black; }
      #category #soyfaqcategorias .soyfaq .faq_mas {
        display: none !important; } }

/* soycontrolcookies */
/*-------------------------------------------------------------
# soycontrolcookies
--------------------------------------------------------------*/
#soycontrolcookies .soycontrolcookies_cookieicon,
#soycontrolcookies .soycontrolcookies_text p {
  color: #444645; }

#soycontrolcookies table tr {
  color: #444645; }

@media (max-width: 767px) {
  #soycontrolcookies_config {
    width: 100%;
    text-align: center;
    display: block; } }

/* soytwobanners */
/*-------------------------------------------------------------
# soytwobanners y soytwobanners2
--------------------------------------------------------------*/
/*soytwobanners*/
#soybannersContentFront_1 .soybanners-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px; }

#soybannersContentFront_1 .soybanners-container img {
  max-width: 100%;
  width: 100%;
  height: auto; }

@media (min-width: 768px) {
  /*#soybannersContentFront_1 .soybanners-container {
		width: 50%;
	}*/
  #soybannersContentFront_1 .soybanners-container .soybanners-banner:nth-child(1) .soyimg-zone {
    margin-right: 5%; }
  #soybannersContentFront_1 .soybanners-container .soybanners-banner:nth-child(2) .soyimg-zone {
    margin-left: 5%; } }

@media (max-width: 991px) {
  #soybannersContentFront_1 .soybanners-container {
    margin-top: 40px; } }

/*soytwobanners2*/
#soybannersContentFront_2 .soybanners-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px; }

#soybannersContentFront_2 .soybanners-container img {
  max-width: 100%;
  width: 100%;
  height: auto; }

@media (min-width: 768px) {
  /*#soybannersContentFront_2 .soybanners-container {
		width: 50%;
	}*/
  #soybannersContentFront_2 .soybanners-container .soybanners-banner:nth-child(1) .soyimg-zone {
    margin-right: 5%; }
  #soybannersContentFront_2 .soybanners-container .soybanners-banner:nth-child(2) .soyimg-zone {
    margin-left: 5%; } }

@media (max-width: 991px) {
  #soybannersContentFront_2 .soybanners-container {
    margin-top: 0px; } }

/* Corrección por nuevo Logo */

.header-top {
  z-index: 99;
}