/*============================================================================
  Shopify Timber
  Copyright 2015 Shopify Inc.
  Author Carson Shold @cshold
  Built with Sass - http://sass-lang.com/

  Some things to know about this file:
    - Sass is compiled on Shopify's server so you don't need to convert it to CSS yourself
    - The output CSS is compressed and comments are removed
    - You cannot use @imports in this file
        * Use grunt or gulp tasks to enable @imports - https://github.com/Shopify/shopify-css-import
    - Helpers variables, mixins, and starter classes are provided. Change as needed.
    - The file is prepped with a CSS reset
    - The font icons are prepared using https://icomoon.io/app
==============================================================================*/
/*============================================================================
  Table of Contents

  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Normalize
  #Grid Setup
  #Basic Styles
  #Helper Classes
  #Typography
  #Rich Text Editor
  #Links and Buttons
  #Lists
  #Tables
  #Reponsive Tables
  #OOCSS Media Object
  #Images and Iframes
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Mobile Nav
  #Drawers
  #Site Footer
  #Product and Collection Grids
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Notes and Form Feedback
  #Cart Page
  #Ajax Cart Styles
==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*================ Typography ================*/
@font-face {
  font-family: 'icons';
  src: url("//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/icons.eot?v=95696210823250211211640876757");
  src: url("//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/icons.eot?v=95696210823250211211640876757#iefix") format("embedded-opentype"), url("//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/icons.woff?v=65748921002487031031640876759") format("woff"), url("//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/icons.ttf?v=17939663814406809461640876759") format("truetype"), url("//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/icons.svg?v=87905919142913548941640876758#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

::-webkit-scrollbar {
  width: 5px;
  height: 5px; }

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px; }

::-webkit-scrollbar-thumb {
  background: #eeeeee;
  border: none;
  border-radius: 0px; }

::-webkit-scrollbar-thumb:hover {
  background: #333; }

::-webkit-scrollbar-thumb:active {
  background: #333; }

::-webkit-scrollbar-track {
  background: #fff;
  border: none;
  border-radius: 0px; }

::-webkit-scrollbar-track:hover {
  background: #f5f5f5; }

::-webkit-scrollbar-track:active {
  background: #eee; }

::-webkit-scrollbar-corner {
  background: transparent; }

/*============================================================================
  #Sass Mixins
==============================================================================*/
.clearfix {
  *zoom: 1; }
  .clearfix:after {
    content: '';
    display: table;
    clear: both; }

/*============================================================================
  Prefixer mixin for generating vendor prefixes:
    - Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss
    - Usage:

      // Input:
      .element {
        @include prefixer(transform, scale(1), ms webkit spec);
      }

      // Output:
      .element {
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
      }
==============================================================================*/
/*============================================================================
  Layer promotion mixin for creating smoother animations with higher FPS.
==============================================================================*/
/*============================================================================
  Dependency-free breakpoint mixin
    - Based on http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
    - Usage docs: http://shopify.github.io/Timber/#sass-mixins
==============================================================================*/
/*============================================================================
  #Normalize
==============================================================================*/
*, input, :before, :after {
  box-sizing: border-box; }

html, body {
  padding: 0;
  margin: 0; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*============================================================================
  #Grid Setup
    - Based on csswizardry grid, but with floated columns, a fixed gutter size, and BEM classes
    - Breakpoints defined above, under #Breakpoint and Grid Variables
    - Note the inclusion of .grid-uniform to take care of clearfixes on evenly sized grid items
==============================================================================*/
/* Force clearfix on grids */
.grid, .grid--rev, .grid--full,
.grid-uniform {
  *zoom: 1; }
  .grid:after, .grid--rev:after, .grid--full:after,
  .grid-uniform:after {
    content: '';
    display: table;
    clear: both; }

/* Manual grid__item clearfix */
.grid__item.clear {
  clear: both; }

/*============================================================================
  Drop relative positioning into silent classes which can't take advantage of
  the `[class*="push--"]` and `[class*="pull--"]` selectors.
==============================================================================*/
/*============================================================================
  Grid Setup
    1. Allow the grid system to be used on lists.
    2. Remove any margins and paddings that might affect the grid system.
    3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
.grid, .grid--rev, .grid--full,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -28px; }

.grid__item {
  box-sizing: border-box;
  float: left;
  min-height: 1px;
  padding-left: 28px;
  vertical-align: top;
  width: 100%; }

/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item {
    direction: ltr;
    text-align: left;
    float: right; }

/* Gutterless grids have all the properties of regular grids, minus any spacing. */
.grid--full {
  margin-left: 0; }
  .grid--full > .grid__item {
    padding-left: 0; }

/*============================================================================
  WIDTHS
    - Create width classes, prefixed by the specified namespace.
==============================================================================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Helper show/hide classes around our breakpoints ================*/
/*================ Our regular, non-responsive width and helper classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

/* Halves */
.one-half {
  width: 50%; }

/* Thirds */
.one-third {
  width: 33.333%; }

.two-thirds {
  width: 66.666%; }

/* Quarters */
.one-quarter {
  width: 25%; }

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

/* Fifths */
.one-fifth {
  width: 20%; }

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

/* Sixths */
.one-sixth {
  width: 16.666%; }

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

/* Eighths */
.one-eighth {
  width: 12.5%; }

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

/* Tenths */
.one-tenth {
  width: 10%; }

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

/* Twelfths */
.one-twelfth {
  width: 8.333%; }

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

/*================ Our responsive classes, if we have enabled them ================*/
@media only screen and (max-width: 480px) {
  /** Whole */
  .small--one-whole {
    width: 100%; }

  /* Halves */
  .small--one-half {
    width: 50%; }

  /* Thirds */
  .small--one-third {
    width: 33.333%; }

  .small--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .small--one-quarter {
    width: 25%; }

  .small--two-quarters {
    width: 50%; }

  .small--three-quarters {
    width: 75%; }

  /* Fifths */
  .small--one-fifth {
    width: 20%; }

  .small--two-fifths {
    width: 40%; }

  .small--three-fifths {
    width: 60%; }

  .small--four-fifths {
    width: 80%; }

  /* Sixths */
  .small--one-sixth {
    width: 16.666%; }

  .small--two-sixths {
    width: 33.333%; }

  .small--three-sixths {
    width: 50%; }

  .small--four-sixths {
    width: 66.666%; }

  .small--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .small--one-eighth {
    width: 12.5%; }

  .small--two-eighths {
    width: 25%; }

  .small--three-eighths {
    width: 37.5%; }

  .small--four-eighths {
    width: 50%; }

  .small--five-eighths {
    width: 62.5%; }

  .small--six-eighths {
    width: 75%; }

  .small--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .small--one-tenth {
    width: 10%; }

  .small--two-tenths {
    width: 20%; }

  .small--three-tenths {
    width: 30%; }

  .small--four-tenths {
    width: 40%; }

  .small--five-tenths {
    width: 50%; }

  .small--six-tenths {
    width: 60%; }

  .small--seven-tenths {
    width: 70%; }

  .small--eight-tenths {
    width: 80%; }

  .small--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .small--one-twelfth {
    width: 8.333%; }

  .small--two-twelfths {
    width: 16.666%; }

  .small--three-twelfths {
    width: 25%; }

  .small--four-twelfths {
    width: 33.333%; }

  .small--five-twelfths {
    width: 41.666%; }

  .small--six-twelfths {
    width: 50%; }

  .small--seven-twelfths {
    width: 58.333%; }

  .small--eight-twelfths {
    width: 66.666%; }

  .small--nine-twelfths {
    width: 75%; }

  .small--ten-twelfths {
    width: 83.333%; }

  .small--eleven-twelfths {
    width: 91.666%; }

  .small--show {
    display: block !important; }

  .small--hide {
    display: none !important; }

  .small--text-left {
    text-align: left !important; }

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

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

  .small--left {
    float: left !important; }

  .small--right {
    float: right !important; }

  .grid-uniform .small--one-half:nth-child(2n+1),
  .grid-uniform .small--one-third:nth-child(3n+1),
  .grid-uniform .small--one-quarter:nth-child(4n+1),
  .grid-uniform .small--one-fifth:nth-child(5n+1),
  .grid-uniform .small--one-sixth:nth-child(6n+1),
  .grid-uniform .small--two-sixths:nth-child(3n+1),
  .grid-uniform .small--three-sixths:nth-child(2n+1),
  .grid-uniform .small--two-eighths:nth-child(4n+1),
  .grid-uniform .small--four-eighths:nth-child(2n+1),
  .grid-uniform .small--five-tenths:nth-child(2n+1),
  .grid-uniform .small--one-twelfth:nth-child(12n+1),
  .grid-uniform .small--two-twelfths:nth-child(6n+1),
  .grid-uniform .small--three-twelfths:nth-child(4n+1),
  .grid-uniform .small--four-twelfths:nth-child(3n+1),
  .grid-uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 481px) and (max-width: 768px) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }

  /* Halves */
  .medium--one-half {
    width: 50%; }

  /* Thirds */
  .medium--one-third {
    width: 33.333%; }

  .medium--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .medium--one-quarter {
    width: 25%; }

  .medium--two-quarters {
    width: 50%; }

  .medium--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium--one-fifth {
    width: 20%; }

  .medium--two-fifths {
    width: 40%; }

  .medium--three-fifths {
    width: 60%; }

  .medium--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium--one-sixth {
    width: 16.666%; }

  .medium--two-sixths {
    width: 33.333%; }

  .medium--three-sixths {
    width: 50%; }

  .medium--four-sixths {
    width: 66.666%; }

  .medium--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .medium--one-eighth {
    width: 12.5%; }

  .medium--two-eighths {
    width: 25%; }

  .medium--three-eighths {
    width: 37.5%; }

  .medium--four-eighths {
    width: 50%; }

  .medium--five-eighths {
    width: 62.5%; }

  .medium--six-eighths {
    width: 75%; }

  .medium--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium--one-tenth {
    width: 10%; }

  .medium--two-tenths {
    width: 20%; }

  .medium--three-tenths {
    width: 30%; }

  .medium--four-tenths {
    width: 40%; }

  .medium--five-tenths {
    width: 50%; }

  .medium--six-tenths {
    width: 60%; }

  .medium--seven-tenths {
    width: 70%; }

  .medium--eight-tenths {
    width: 80%; }

  .medium--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium--one-twelfth {
    width: 8.333%; }

  .medium--two-twelfths {
    width: 16.666%; }

  .medium--three-twelfths {
    width: 25%; }

  .medium--four-twelfths {
    width: 33.333%; }

  .medium--five-twelfths {
    width: 41.666%; }

  .medium--six-twelfths {
    width: 50%; }

  .medium--seven-twelfths {
    width: 58.333%; }

  .medium--eight-twelfths {
    width: 66.666%; }

  .medium--nine-twelfths {
    width: 75%; }

  .medium--ten-twelfths {
    width: 83.333%; }

  .medium--eleven-twelfths {
    width: 91.666%; }

  .medium--show {
    display: block !important; }

  .medium--hide {
    display: none !important; }

  .medium--text-left {
    text-align: left !important; }

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

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

  .medium--left {
    float: left !important; }

  .medium--right {
    float: right !important; }

  .grid-uniform .medium--one-half:nth-child(2n+1),
  .grid-uniform .medium--one-third:nth-child(3n+1),
  .grid-uniform .medium--one-quarter:nth-child(4n+1),
  .grid-uniform .medium--one-fifth:nth-child(5n+1),
  .grid-uniform .medium--one-sixth:nth-child(6n+1),
  .grid-uniform .medium--two-sixths:nth-child(3n+1),
  .grid-uniform .medium--three-sixths:nth-child(2n+1),
  .grid-uniform .medium--two-eighths:nth-child(4n+1),
  .grid-uniform .medium--four-eighths:nth-child(2n+1),
  .grid-uniform .medium--five-tenths:nth-child(2n+1),
  .grid-uniform .medium--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 768px) {
  /** Whole */
  .medium-down--one-whole {
    width: 100%; }

  /* Halves */
  .medium-down--one-half {
    width: 50%; }

  /* Thirds */
  .medium-down--one-third {
    width: 33.333%; }

  .medium-down--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .medium-down--one-quarter {
    width: 25%; }

  .medium-down--two-quarters {
    width: 50%; }

  .medium-down--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium-down--one-fifth {
    width: 20%; }

  .medium-down--two-fifths {
    width: 40%; }

  .medium-down--three-fifths {
    width: 60%; }

  .medium-down--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium-down--one-sixth {
    width: 16.666%; }

  .medium-down--two-sixths {
    width: 33.333%; }

  .medium-down--three-sixths {
    width: 50%; }

  .medium-down--four-sixths {
    width: 66.666%; }

  .medium-down--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .medium-down--one-eighth {
    width: 12.5%; }

  .medium-down--two-eighths {
    width: 25%; }

  .medium-down--three-eighths {
    width: 37.5%; }

  .medium-down--four-eighths {
    width: 50%; }

  .medium-down--five-eighths {
    width: 62.5%; }

  .medium-down--six-eighths {
    width: 75%; }

  .medium-down--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium-down--one-tenth {
    width: 10%; }

  .medium-down--two-tenths {
    width: 20%; }

  .medium-down--three-tenths {
    width: 30%; }

  .medium-down--four-tenths {
    width: 40%; }

  .medium-down--five-tenths {
    width: 50%; }

  .medium-down--six-tenths {
    width: 60%; }

  .medium-down--seven-tenths {
    width: 70%; }

  .medium-down--eight-tenths {
    width: 80%; }

  .medium-down--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium-down--one-twelfth {
    width: 8.333%; }

  .medium-down--two-twelfths {
    width: 16.666%; }

  .medium-down--three-twelfths {
    width: 25%; }

  .medium-down--four-twelfths {
    width: 33.333%; }

  .medium-down--five-twelfths {
    width: 41.666%; }

  .medium-down--six-twelfths {
    width: 50%; }

  .medium-down--seven-twelfths {
    width: 58.333%; }

  .medium-down--eight-twelfths {
    width: 66.666%; }

  .medium-down--nine-twelfths {
    width: 75%; }

  .medium-down--ten-twelfths {
    width: 83.333%; }

  .medium-down--eleven-twelfths {
    width: 91.666%; }

  .medium-down--show {
    display: block !important; }

  .medium-down--hide {
    display: none !important; }

  .medium-down--text-left {
    text-align: left !important; }

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

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

  .medium-down--left {
    float: left !important; }

  .medium-down--right {
    float: right !important; }

  .grid-uniform .medium-down--one-half:nth-child(2n+1),
  .grid-uniform .medium-down--one-third:nth-child(3n+1),
  .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
  .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
  .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
  .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
  .grid-uniform .medium-down--three-sixths:nth-child(2n+1),
  .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
  .grid-uniform .medium-down--four-eighths:nth-child(2n+1),
  .grid-uniform .medium-down--five-tenths:nth-child(2n+1),
  .grid-uniform .medium-down--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium-down--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium-down--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 769px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }

  /* Halves */
  .large--one-half {
    width: 50%; }

  /* Thirds */
  .large--one-third {
    width: 33.333%; }

  .large--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .large--one-quarter {
    width: 25%; }

  .large--two-quarters {
    width: 50%; }

  .large--three-quarters {
    width: 75%; }

  /* Fifths */
  .large--one-fifth {
    width: 20%; }

  .large--two-fifths {
    width: 40%; }

  .large--three-fifths {
    width: 60%; }

  .large--four-fifths {
    width: 80%; }

  /* Sixths */
  .large--one-sixth {
    width: 16.666%; }

  .large--two-sixths {
    width: 33.333%; }

  .large--three-sixths {
    width: 50%; }

  .large--four-sixths {
    width: 66.666%; }

  .large--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .large--one-eighth {
    width: 12.5%; }

  .large--two-eighths {
    width: 25%; }

  .large--three-eighths {
    width: 37.5%; }

  .large--four-eighths {
    width: 50%; }

  .large--five-eighths {
    width: 62.5%; }

  .large--six-eighths {
    width: 75%; }

  .large--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .large--one-tenth {
    width: 10%; }

  .large--two-tenths {
    width: 20%; }

  .large--three-tenths {
    width: 30%; }

  .large--four-tenths {
    width: 40%; }

  .large--five-tenths {
    width: 50%; }

  .large--six-tenths {
    width: 60%; }

  .large--seven-tenths {
    width: 70%; }

  .large--eight-tenths {
    width: 80%; }

  .large--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .large--one-twelfth {
    width: 8.333%; }

  .large--two-twelfths {
    width: 16.666%; }

  .large--three-twelfths {
    width: 25%; }

  .large--four-twelfths {
    width: 33.333%; }

  .large--five-twelfths {
    width: 41.666%; }

  .large--six-twelfths {
    width: 50%; }

  .large--seven-twelfths {
    width: 58.333%; }

  .large--eight-twelfths {
    width: 66.666%; }

  .large--nine-twelfths {
    width: 75%; }

  .large--ten-twelfths {
    width: 83.333%; }

  .large--eleven-twelfths {
    width: 91.666%; }

  .large--show {
    display: block !important; }

  .large--hide {
    display: none !important; }

  .large--text-left {
    text-align: left !important; }

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

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

  .large--left {
    float: left !important; }

  .large--right {
    float: right !important; }

  .grid-uniform .large--one-half:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--three-sixths:nth-child(2n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--four-eighths:nth-child(2n+1),
  .grid-uniform .large--five-tenths:nth-child(2n+1),
  .grid-uniform .large--one-twelfth:nth-child(12n+1),
  .grid-uniform .large--two-twelfths:nth-child(6n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 1080px) {
  /** Whole */
  .screen--one-whole {
    width: 100%; }

  /* Halves */
  .screen--one-half {
    width: 50%; }

  /* Thirds */
  .screen--one-third {
    width: 33.333%; }

  .screen--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .screen--one-quarter {
    width: 25%; }

  .screen--two-quarters {
    width: 50%; }

  .screen--three-quarters {
    width: 75%; }

  /* Fifths */
  .screen--one-fifth {
    width: 20%; }

  .screen--two-fifths {
    width: 40%; }

  .screen--three-fifths {
    width: 60%; }

  .screen--four-fifths {
    width: 80%; }

  /* Sixths */
  .screen--one-sixth {
    width: 16.666%; }

  .screen--two-sixths {
    width: 33.333%; }

  .screen--three-sixths {
    width: 50%; }

  .screen--four-sixths {
    width: 66.666%; }

  .screen--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .screen--one-eighth {
    width: 12.5%; }

  .screen--two-eighths {
    width: 25%; }

  .screen--three-eighths {
    width: 37.5%; }

  .screen--four-eighths {
    width: 50%; }

  .screen--five-eighths {
    width: 62.5%; }

  .screen--six-eighths {
    width: 75%; }

  .screen--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .screen--one-tenth {
    width: 10%; }

  .screen--two-tenths {
    width: 20%; }

  .screen--three-tenths {
    width: 30%; }

  .screen--four-tenths {
    width: 40%; }

  .screen--five-tenths {
    width: 50%; }

  .screen--six-tenths {
    width: 60%; }

  .screen--seven-tenths {
    width: 70%; }

  .screen--eight-tenths {
    width: 80%; }

  .screen--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .screen--one-twelfth {
    width: 8.333%; }

  .screen--two-twelfths {
    width: 16.666%; }

  .screen--three-twelfths {
    width: 25%; }

  .screen--four-twelfths {
    width: 33.333%; }

  .screen--five-twelfths {
    width: 41.666%; }

  .screen--six-twelfths {
    width: 50%; }

  .screen--seven-twelfths {
    width: 58.333%; }

  .screen--eight-twelfths {
    width: 66.666%; }

  .screen--nine-twelfths {
    width: 75%; }

  .screen--ten-twelfths {
    width: 83.333%; }

  .screen--eleven-twelfths {
    width: 91.666%; }

  .screen--show {
    display: block !important; }

  .screen--hide {
    display: none !important; }

  .screen--text-left {
    text-align: left !important; }

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

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

  .screen--left {
    float: left !important; }

  .screen--right {
    float: right !important; }

  .grid-uniform .screen--one-half:nth-child(2n+1),
  .grid-uniform .screen--one-third:nth-child(3n+1),
  .grid-uniform .screen--one-quarter:nth-child(4n+1),
  .grid-uniform .screen--one-fifth:nth-child(5n+1),
  .grid-uniform .screen--one-sixth:nth-child(6n+1),
  .grid-uniform .screen--two-sixths:nth-child(3n+1),
  .grid-uniform .screen--three-sixths:nth-child(2n+1),
  .grid-uniform .screen--two-eighths:nth-child(4n+1),
  .grid-uniform .screen--four-eighths:nth-child(2n+1),
  .grid-uniform .screen--five-tenths:nth-child(2n+1),
  .grid-uniform .screen--one-twelfth:nth-child(12n+1),
  .grid-uniform .screen--two-twelfths:nth-child(6n+1),
  .grid-uniform .screen--three-twelfths:nth-child(4n+1),
  .grid-uniform .screen--four-twelfths:nth-child(3n+1),
  .grid-uniform .screen--six-twelfths:nth-child(2n+1) {
    clear: both; } }
/*============================================================================
  PUSH
    - Push classes, to move grid items over to the right by certain amounts
==============================================================================*/
[class*="push--"] {
  position: relative; }

/* Whole */
.push--one-whole {
  left: 100%; }

/* Halves */
.push--one-half {
  left: 50%; }

/* Thirds */
.push--one-third {
  left: 33.333%; }

.push--two-thirds {
  left: 66.666%; }

/* Quarters */
.push--one-quarter {
  left: 25%; }

.push--two-quarters {
  left: 50%; }

.push--three-quarters {
  left: 75%; }

/* Fifths */
.push--one-fifth {
  left: 20%; }

.push--two-fifths {
  left: 40%; }

.push--three-fifths {
  left: 60%; }

.push--four-fifths {
  left: 80%; }

/* Sixths */
.push--one-sixth {
  left: 16.666%; }

.push--two-sixths {
  left: 33.333%; }

.push--three-sixths {
  left: 50%; }

.push--four-sixths {
  left: 66.666%; }

.push--five-sixths {
  left: 83.333%; }

/* Eighths */
.push--one-eighth {
  left: 12.5%; }

.push--two-eighths {
  left: 25%; }

.push--three-eighths {
  left: 37.5%; }

.push--four-eighths {
  left: 50%; }

.push--five-eighths {
  left: 62.5%; }

.push--six-eighths {
  left: 75%; }

.push--seven-eighths {
  left: 87.5%; }

/* Tenths */
.push--one-tenth {
  left: 10%; }

.push--two-tenths {
  left: 20%; }

.push--three-tenths {
  left: 30%; }

.push--four-tenths {
  left: 40%; }

.push--five-tenths {
  left: 50%; }

.push--six-tenths {
  left: 60%; }

.push--seven-tenths {
  left: 70%; }

.push--eight-tenths {
  left: 80%; }

.push--nine-tenths {
  left: 90%; }

/* Twelfths */
.push--one-twelfth {
  left: 8.333%; }

.push--two-twelfths {
  left: 16.666%; }

.push--three-twelfths {
  left: 25%; }

.push--four-twelfths {
  left: 33.333%; }

.push--five-twelfths {
  left: 41.666%; }

.push--six-twelfths {
  left: 50%; }

.push--seven-twelfths {
  left: 58.333%; }

.push--eight-twelfths {
  left: 66.666%; }

.push--nine-twelfths {
  left: 75%; }

.push--ten-twelfths {
  left: 83.333%; }

.push--eleven-twelfths {
  left: 91.666%; }

@media only screen and (min-width: 481px) and (max-width: 768px) {
  /* Whole */
  .push--medium--one-whole {
    left: 100%; }

  /* Halves */
  .push--medium--one-half {
    left: 50%; }

  /* Thirds */
  .push--medium--one-third {
    left: 33.333%; }

  .push--medium--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--medium--one-quarter {
    left: 25%; }

  .push--medium--two-quarters {
    left: 50%; }

  .push--medium--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--medium--one-fifth {
    left: 20%; }

  .push--medium--two-fifths {
    left: 40%; }

  .push--medium--three-fifths {
    left: 60%; }

  .push--medium--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--medium--one-sixth {
    left: 16.666%; }

  .push--medium--two-sixths {
    left: 33.333%; }

  .push--medium--three-sixths {
    left: 50%; }

  .push--medium--four-sixths {
    left: 66.666%; }

  .push--medium--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--medium--one-eighth {
    left: 12.5%; }

  .push--medium--two-eighths {
    left: 25%; }

  .push--medium--three-eighths {
    left: 37.5%; }

  .push--medium--four-eighths {
    left: 50%; }

  .push--medium--five-eighths {
    left: 62.5%; }

  .push--medium--six-eighths {
    left: 75%; }

  .push--medium--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--medium--one-tenth {
    left: 10%; }

  .push--medium--two-tenths {
    left: 20%; }

  .push--medium--three-tenths {
    left: 30%; }

  .push--medium--four-tenths {
    left: 40%; }

  .push--medium--five-tenths {
    left: 50%; }

  .push--medium--six-tenths {
    left: 60%; }

  .push--medium--seven-tenths {
    left: 70%; }

  .push--medium--eight-tenths {
    left: 80%; }

  .push--medium--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--medium--one-twelfth {
    left: 8.333%; }

  .push--medium--two-twelfths {
    left: 16.666%; }

  .push--medium--three-twelfths {
    left: 25%; }

  .push--medium--four-twelfths {
    left: 33.333%; }

  .push--medium--five-twelfths {
    left: 41.666%; }

  .push--medium--six-twelfths {
    left: 50%; }

  .push--medium--seven-twelfths {
    left: 58.333%; }

  .push--medium--eight-twelfths {
    left: 66.666%; }

  .push--medium--nine-twelfths {
    left: 75%; }

  .push--medium--ten-twelfths {
    left: 83.333%; }

  .push--medium--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (max-width: 768px) {
  /* Whole */
  .push--medium-down--one-whole {
    left: 100%; }

  /* Halves */
  .push--medium-down--one-half {
    left: 50%; }

  /* Thirds */
  .push--medium-down--one-third {
    left: 33.333%; }

  .push--medium-down--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--medium-down--one-quarter {
    left: 25%; }

  .push--medium-down--two-quarters {
    left: 50%; }

  .push--medium-down--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--medium-down--one-fifth {
    left: 20%; }

  .push--medium-down--two-fifths {
    left: 40%; }

  .push--medium-down--three-fifths {
    left: 60%; }

  .push--medium-down--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--medium-down--one-sixth {
    left: 16.666%; }

  .push--medium-down--two-sixths {
    left: 33.333%; }

  .push--medium-down--three-sixths {
    left: 50%; }

  .push--medium-down--four-sixths {
    left: 66.666%; }

  .push--medium-down--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--medium-down--one-eighth {
    left: 12.5%; }

  .push--medium-down--two-eighths {
    left: 25%; }

  .push--medium-down--three-eighths {
    left: 37.5%; }

  .push--medium-down--four-eighths {
    left: 50%; }

  .push--medium-down--five-eighths {
    left: 62.5%; }

  .push--medium-down--six-eighths {
    left: 75%; }

  .push--medium-down--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--medium-down--one-tenth {
    left: 10%; }

  .push--medium-down--two-tenths {
    left: 20%; }

  .push--medium-down--three-tenths {
    left: 30%; }

  .push--medium-down--four-tenths {
    left: 40%; }

  .push--medium-down--five-tenths {
    left: 50%; }

  .push--medium-down--six-tenths {
    left: 60%; }

  .push--medium-down--seven-tenths {
    left: 70%; }

  .push--medium-down--eight-tenths {
    left: 80%; }

  .push--medium-down--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--medium-down--one-twelfth {
    left: 8.333%; }

  .push--medium-down--two-twelfths {
    left: 16.666%; }

  .push--medium-down--three-twelfths {
    left: 25%; }

  .push--medium-down--four-twelfths {
    left: 33.333%; }

  .push--medium-down--five-twelfths {
    left: 41.666%; }

  .push--medium-down--six-twelfths {
    left: 50%; }

  .push--medium-down--seven-twelfths {
    left: 58.333%; }

  .push--medium-down--eight-twelfths {
    left: 66.666%; }

  .push--medium-down--nine-twelfths {
    left: 75%; }

  .push--medium-down--ten-twelfths {
    left: 83.333%; }

  .push--medium-down--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 769px) {
  /* Whole */
  .push--large--one-whole {
    left: 100%; }

  /* Halves */
  .push--large--one-half {
    left: 50%; }

  /* Thirds */
  .push--large--one-third {
    left: 33.333%; }

  .push--large--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--large--one-quarter {
    left: 25%; }

  .push--large--two-quarters {
    left: 50%; }

  .push--large--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--large--one-fifth {
    left: 20%; }

  .push--large--two-fifths {
    left: 40%; }

  .push--large--three-fifths {
    left: 60%; }

  .push--large--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--large--one-sixth {
    left: 16.666%; }

  .push--large--two-sixths {
    left: 33.333%; }

  .push--large--three-sixths {
    left: 50%; }

  .push--large--four-sixths {
    left: 66.666%; }

  .push--large--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--large--one-eighth {
    left: 12.5%; }

  .push--large--two-eighths {
    left: 25%; }

  .push--large--three-eighths {
    left: 37.5%; }

  .push--large--four-eighths {
    left: 50%; }

  .push--large--five-eighths {
    left: 62.5%; }

  .push--large--six-eighths {
    left: 75%; }

  .push--large--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--large--one-tenth {
    left: 10%; }

  .push--large--two-tenths {
    left: 20%; }

  .push--large--three-tenths {
    left: 30%; }

  .push--large--four-tenths {
    left: 40%; }

  .push--large--five-tenths {
    left: 50%; }

  .push--large--six-tenths {
    left: 60%; }

  .push--large--seven-tenths {
    left: 70%; }

  .push--large--eight-tenths {
    left: 80%; }

  .push--large--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--large--one-twelfth {
    left: 8.333%; }

  .push--large--two-twelfths {
    left: 16.666%; }

  .push--large--three-twelfths {
    left: 25%; }

  .push--large--four-twelfths {
    left: 33.333%; }

  .push--large--five-twelfths {
    left: 41.666%; }

  .push--large--six-twelfths {
    left: 50%; }

  .push--large--seven-twelfths {
    left: 58.333%; }

  .push--large--eight-twelfths {
    left: 66.666%; }

  .push--large--nine-twelfths {
    left: 75%; }

  .push--large--ten-twelfths {
    left: 83.333%; }

  .push--large--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 1080px) {
  /* Whole */
  .push--screen--one-whole {
    left: 100%; }

  /* Halves */
  .push--screen--one-half {
    left: 50%; }

  /* Thirds */
  .push--screen--one-third {
    left: 33.333%; }

  .push--screen--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--screen--one-quarter {
    left: 25%; }

  .push--screen--two-quarters {
    left: 50%; }

  .push--screen--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--screen--one-fifth {
    left: 20%; }

  .push--screen--two-fifths {
    left: 40%; }

  .push--screen--three-fifths {
    left: 60%; }

  .push--screen--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--screen--one-sixth {
    left: 16.666%; }

  .push--screen--two-sixths {
    left: 33.333%; }

  .push--screen--three-sixths {
    left: 50%; }

  .push--screen--four-sixths {
    left: 66.666%; }

  .push--screen--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--screen--one-eighth {
    left: 12.5%; }

  .push--screen--two-eighths {
    left: 25%; }

  .push--screen--three-eighths {
    left: 37.5%; }

  .push--screen--four-eighths {
    left: 50%; }

  .push--screen--five-eighths {
    left: 62.5%; }

  .push--screen--six-eighths {
    left: 75%; }

  .push--screen--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--screen--one-tenth {
    left: 10%; }

  .push--screen--two-tenths {
    left: 20%; }

  .push--screen--three-tenths {
    left: 30%; }

  .push--screen--four-tenths {
    left: 40%; }

  .push--screen--five-tenths {
    left: 50%; }

  .push--screen--six-tenths {
    left: 60%; }

  .push--screen--seven-tenths {
    left: 70%; }

  .push--screen--eight-tenths {
    left: 80%; }

  .push--screen--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--screen--one-twelfth {
    left: 8.333%; }

  .push--screen--two-twelfths {
    left: 16.666%; }

  .push--screen--three-twelfths {
    left: 25%; }

  .push--screen--four-twelfths {
    left: 33.333%; }

  .push--screen--five-twelfths {
    left: 41.666%; }

  .push--screen--six-twelfths {
    left: 50%; }

  .push--screen--seven-twelfths {
    left: 58.333%; }

  .push--screen--eight-twelfths {
    left: 66.666%; }

  .push--screen--nine-twelfths {
    left: 75%; }

  .push--screen--ten-twelfths {
    left: 83.333%; }

  .push--screen--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*============================================================================
  #Basic Styles
==============================================================================*/
html {
  background-color: #f0f0f0; }

body {
  background-color: white; }

[tabindex='-1']:focus {
  outline: none; }

.wrapper {
  *zoom: 1;
  max-width: 1900px;
  margin: 0 auto;
  padding: 0 14px; }
  .wrapper:after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (min-width: 480px) {
    .wrapper {
      padding: 0 28px; } }

.main-content {
  display: block; }

.front__destacados, .product__row, .centrada {
  margin-bottom: 56px; }

/*============================================================================
  #Helper Classes
==============================================================================*/
.is-transitioning {
  display: block !important;
  visibility: visible !important; }

.display-table {
  display: table;
  table-layout: fixed;
  width: 100%; }

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
  float: none; }

@media screen and (min-width: 769px) {
  .large--display-table {
    display: table;
    table-layout: fixed;
    width: 100%; }

  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }
.visually-hidden, .supports-fontface .icon-fallback-text .fallback-text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 15px;
  line-height: 1.6;
  font-family: Brandon, Futura, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #424242;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  font-family: Brandon, Futura, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  margin: 0 0 0.5em;
  line-height: 1.4; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    text-decoration: none;
    font-weight: inherit; }

/*================ Use em() Sass function to declare font-size ================*/
h1, .h1 {
  font-size: 2.4em; }

h2, .h2 {
  font-size: 1.86667em; }

h3, .h3 {
  font-size: 1.46667em; }

h4, .h4 {
  font-size: 1.33333em; }

h5, .h5 {
  font-size: 1.06667em; }

h6, .h6 {
  font-size: 0.93333em; }

p {
  margin: 0 0 14px 0; }
  p img {
    margin: 0; }

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.9em; }

sup, sub {
  position: relative;
  font-size: 60%;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 28px;
  padding: 14px 28px;
  border-left: 1px solid #e5e5e5; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 14px; }
  blockquote cite {
    display: block;
    font-size: 0.75em; }
    blockquote cite:before {
      content: '\2014 \0020'; }

/*================ Code ================*/
code, pre {
  background-color: #faf7f5;
  font-family: Consolas,monospace;
  font-size: 1em;
  border: 0 none;
  padding: 0 2px;
  color: #51ab62; }

pre {
  overflow: auto;
  padding: 14px;
  margin: 0 0 28px; }

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid #e5e5e5;
  border-width: 1px 0 0;
  margin: 28px 0;
  height: 0; }
  hr.hr--small {
    margin: 14px 0; }
  hr.hr--clear {
    border-top-color: transparent; }

/*================ Section Headers ================*/
.section-header {
  margin-bottom: 18.66667px; }

@media screen and (min-width: 769px) {
  .section-header {
    display: table;
    width: 100%; }

  .section-header__title {
    margin-bottom: 11.2px; }

  .section-header__left {
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0; }
    .section-header__left h1, .section-header__left .h1, .section-header__left h2, .section-header__left .h2, .section-header__left h3, .section-header__left .h3, .section-header__left h4, .section-header__left .h4,
    .section-header__left .h1, .section-header__left .h2, .section-header__left .h3, .section-header__left .h4 {
      margin-bottom: 0; }

  .section-header__right {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    width: 335px; } }
  @media screen and (min-width: 769px) and (max-width: 768px) {
    .section-header__right {
      margin-bottom: 28px; } }

.section-header__right .form-horizontal,
.section-header__right .collection-view {
  display: inline-block;
  vertical-align: middle; }
@media screen and (min-width: 481px) {
  .section-header__right label + select,
  .section-header__right .collection-view {
    margin-left: 14px; } }

.collection-view {
  display: inline-block;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  padding: 0 5px;
  height: 37px;
  overflow: hidden;
  /*================ Only show on larger screens ================*/ }
  @media screen and (min-width: 769px) {
    .collection-view {
      display: inline-block; } }

.change-view {
  display: block;
  background: none;
  border: 0 none;
  float: left;
  padding: 10px 8px;
  color: #e5e5e5;
  line-height: 1; }
  .change-view:hover, .change-view:focus {
    color: #424242; }

.change-view--active {
  cursor: default;
  color: #424242; }

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 14px; }
  .rte a {
    text-decoration: underline; }
  .rte h1, .rte .h1, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-top: 2em; }
    .rte h1:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
      margin-top: 0; }
    .rte h1 a, .rte .h1 a, .rte h2 a, .rte .h2 a, .rte h3 a, .rte .h3 a, .rte h4 a, .rte .h4 a, .rte h5 a, .rte .h5 a, .rte h6 a, .rte .h6 a {
      text-decoration: none; }
  .rte > div {
    margin-bottom: 14px; }
  .rte li {
    margin-bottom: 0.4em; }

.rte--header {
  margin-bottom: 0; }

/*============================================================================
  #Links and Buttons
==============================================================================*/
a,
.text-link {
  color: #424242;
  text-decoration: none;
  background: transparent; }

a:hover,
a:focus {
  color: #686868; }

button {
  overflow: visible; }

button[disabled],
html input[disabled] {
  cursor: default; }

.btn, .btn--secondary,
.rte .btn--secondary,
.rte .btn,
.rte .btn--secondary {
  display: inline-block;
  padding: 8px 10px;
  width: auto;
  margin: 0;
  line-height: 1.42;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid #424242;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-transform: uppercase;
  /*================ Set primary button colors - can override later ================*/
  background-color: #fff;
  color: #424242; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover {
    background-color: #424242;
    color: white; }
  .btn:active, .btn--secondary:active, .btn:focus, .btn--secondary:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus {
    background-color: #0f0f0f;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, .btn.disabled, .disabled.btn--secondary,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte .btn.disabled,
  .rte .disabled.btn--secondary {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6; }

.btn--secondary,
.rte .btn--secondary {
  background-color: #bbbbbb; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    background-color: #a2a2a2;
    color: white; }
  .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:active,
  .rte .btn--secondary:focus {
    background-color: #888888;
    color: white; }

.btn--small {
  padding: 4px 5px;
  font-size: 0.8em; }

.btn--large {
  padding: 12px 15px;
  font-size: 1.06667em; }

.btn--full {
  width: 100%; }

/*================ Force an input/button to look like a text link ================*/
.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0; }

/*============================================================================
  #Lists
==============================================================================*/
ul, ol {
  margin: 0 0 14px 20px;
  padding: 0; }

ol {
  list-style: decimal; }

ul ul, ul ol,
ol ol, ol ul {
  margin: 4px 0 5px 20px; }

li {
  margin-bottom: 0.25em; }

ul.square {
  list-style: square outside; }

ul.disc {
  list-style: disc outside; }

ol.alpha {
  list-style: lower-alpha outside; }

.no-bullets {
  list-style: none outside;
  margin-left: 0; }

.inline-list {
  margin-left: 0; }
  .inline-list li {
    display: inline-block;
    margin-bottom: 0; }

/*============================================================================
  #Tables
==============================================================================*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

table.full {
  width: 100%;
  margin-bottom: 1em; }

.table-wrap {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

th {
  font-weight: bold; }

th, td {
  text-align: left;
  padding: 14px;
  border: 1px solid #e5e5e5; }

/*============================================================================
  Responsive tables, defined with .table--responsive on table element.
  Only defined for IE9+
==============================================================================*/
@media screen and (max-width: 480px) {
  .table--responsive thead {
    display: none; }
  .table--responsive tr {
    display: block; }
  .table--responsive tr,
  .table--responsive td {
    float: left;
    clear: both;
    width: 100%; }
  .table--responsive th,
  .table--responsive td {
    display: block;
    text-align: right;
    padding: 15px; }
  .table--responsive td:before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 12px;
    padding-right: 10px; }
  .table--responsive.cart-table img {
    margin: 0 auto; }
  .table--responsive.cart-table .js-qty, .table--responsive.cart-table .ajaxcart__qty {
    float: right; } }

@media screen and (max-width: 480px) {
  .table--small-hide {
    display: none !important; }

  .table__section + .table__section {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    .table__section + .table__section:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px;
      border-bottom: 1px solid #e5e5e5; } }
/*============================================================================
  #OOCSS Media Object
    - http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
==============================================================================*/
.media,
.media-flex {
  overflow: hidden;
  _overflow: visible;
  zoom: 1; }

.media-img {
  float: left;
  margin-right: 28px; }

.media-img-right {
  float: right;
  margin-left: 28px; }

.media-img img,
.media-img-right img {
  display: block; }

/*============================================================================
  #Images and Iframes
==============================================================================*/
img {
  border: 0 none; }

svg:not(:root) {
  overflow: hidden; }

img,
iframe {
  max-width: 100%; }

.video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto; }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/*============================================================================
  #Forms
==============================================================================*/
form {
  margin-bottom: 0; }

.form-vertical {
  margin-bottom: 14px; }

/*================ Prevent zoom on touch devices in active inputs ================*/
@media screen and (max-width: 768px) {
  input,
  textarea {
    font-size: 16px; } }
input,
textarea,
button,
select {
  padding: 0;
  margin: 0;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text; }

button {
  background: none;
  border: none;
  cursor: pointer; }

button,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none; }

button {
  background: none;
  border: none;
  display: inline-block;
  cursor: pointer; }

input[type="image"] {
  padding-left: 0;
  padding-right: 0; }

fieldset {
  border: 1px solid #e5e5e5;
  padding: 14px; }

legend {
  border: 0;
  padding: 0; }

button,
input[type="submit"] {
  cursor: pointer; }

input,
textarea,
select {
  border: 1px solid #e5e5e5;
  max-width: 100%;
  padding: 4px 10px; }
  input:focus,
  textarea:focus,
  select:focus {
    border: 1px solid #cccccc; }
  input[disabled], input.disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #f6f6f6;
    border-color: #b6b6b6; }
  input.input-full,
  textarea.input-full,
  select.input-full {
    width: 100%; }

textarea {
  min-height: 100px; }

/*================ Input element overrides ================*/
input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin: 0 8px 0 0;
  padding: 0;
  width: auto; }

input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox; }

input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio; }

input[type="image"] {
  padding-left: 0;
  padding-right: 0; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/ico-select.svg?v=79488484750440631741640876880");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: bold; }

option {
  color: #000;
  background-color: #fff; }

select::-ms-expand {
  display: none; }

/*================ Form labels ================*/
.hidden-label {
  position: absolute;
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }
  .ie9 .hidden-label, .lt-ie9 .hidden-label {
    position: static;
    height: auto;
    width: auto;
    margin-bottom: 2px;
    overflow: visible;
    clip: initial; }

label[for] {
  cursor: pointer; }

/*================ Horizontal Form ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  margin-bottom: 10px; }
.form-vertical input[type="radio"],
.form-vertical input[type="checkbox"] {
  display: inline-block; }

/*================ Error styles ================*/
input.error,
select.error,
textarea.error {
  border-color: #d02e2e;
  background-color: #fff6f6;
  color: #d02e2e; }

label.error {
  color: #d02e2e; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .input-group-field:first-child,
  .input-group .input-group-btn:first-child,
  .input-group .input-group-btn:first-child > .btn,
  .input-group .input-group-btn:first-child > .btn--secondary,
  .input-group input[type="hidden"]:first-child + .input-group-field,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--secondary {
    border-radius: 3px 0 0 3px; }
  .input-group .input-group-field:last-child,
  .input-group .input-group-btn:last-child > .btn,
  .input-group .input-group-btn:last-child > .btn--secondary {
    border-radius: 0 3px 3px 0; }
  .input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px; }

.input-group-field,
.input-group-btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group .btn, .input-group .btn--secondary,
.input-group .input-group-field {
  height: 37px; }

.input-group .input-group-field {
  width: 100%; }

.input-group-btn {
  position: relative;
  white-space: nowrap;
  width: 1%;
  padding: 0; }

/*============================================================================
  #Icons
==============================================================================*/
.icon-fallback-text .icon {
  display: none; }
  .supports-fontface .icon-fallback-text .icon {
    display: inline-block; }

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.icon:before {
  display: none; }

.supports-fontface .icon:before {
  display: inline;
  font-family: "icons";
  text-decoration: none;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/*================ Icon mapping ================*/
.icon-amazon_payments:before {
  content: "\e800"; }

.icon-american_express:before {
  content: "\41"; }

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

.icon-bitcoin:before {
  content: "\42"; }

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

.icon-cirrus:before {
  content: "\43"; }

.icon-dankort:before {
  content: "\64"; }

.icon-diners_club:before {
  content: "\63"; }

.icon-discover:before {
  content: "\44"; }

.icon-facebook:before {
  content: "\66"; }

.icon-fancy:before {
  content: "\46"; }

.icon-google:before {
  content: "\67"; }

.icon-google_wallet:before {
  content: "\47"; }

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

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

.icon-instagram:before {
  content: "\69"; }

.icon-interac:before {
  content: "\49"; }

.icon-jcb:before {
  content: "\4a"; }

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

.icon-maestro:before {
  content: "\6d"; }

.icon-master:before {
  content: "\4d"; }

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

.icon-paypal:before {
  content: "\50"; }

.icon-pinterest:before {
  content: "\70"; }

.icon-plus:before {
  content: "\e605"; }

.icon-rss:before {
  content: "\72"; }

.icon-search:before {
  content: "\73"; }

.icon-stripe:before {
  content: "\53"; }

.icon-tumblr:before {
  content: "\74"; }

.icon-twitter:before {
  content: "\54"; }

.icon-vimeo:before {
  content: "\76"; }

.icon-visa:before {
  content: "\56"; }

.icon-x:before {
  content: "\e606"; }

.icon-youtube:before {
  content: "\79"; }

.payment-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default; }
  .payment-icons li {
    margin: 0 7px 7px;
    color: #bbb;
    cursor: default; }
  .payment-icons .icon {
    font-size: 30px;
    line-height: 30px; }
  .payment-icons .fallback-text {
    text-transform: capitalize; }

.social-icons li {
  margin: 0 14px 14px;
  vertical-align: middle; }
  @media screen and (min-width: 481px) {
    .social-icons li {
      margin-left: 0; } }
  .social-icons li .icon {
    font-size: 30px;
    line-height: 26px; }
  .social-icons li a {
    color: #bbb; }
    .social-icons li a:hover {
      color: #a2a2a2; }

/*============================================================================
  #Pagination
==============================================================================*/
.pagination {
  margin-bottom: 1em;
  text-align: center; }
  .pagination > span {
    display: inline-block;
    line-height: 1; }
  .pagination a {
    display: block; }
  .pagination a,
  .pagination .page.current {
    padding: 8px; }

/*============================================================================
  #Site Header
==============================================================================*/
@media screen and (max-width: 480px) {
  .template-index .site-header, .template-list-collections .site-header {
    position: absolute;
    padding: 0;
    width: 50%;
    left: 25%;
    top: 0;
    z-index: 1; } }
.site-header .grid--table {
  display: table;
  table-layout: fixed;
  width: 100%; }
  .site-header .grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle; }

.site-header__logo {
  text-align: center;
  margin: 0 auto;
  max-width: 100%; }
  @media screen and (min-width: 769px) {
    .site-header__logo {
      text-align: left; } }
  .site-header__logo a,
  .site-header__logo a:hover,
  .site-header__logo a:focus {
    text-decoration: none; }
  .site-header__logo a, .site-header__logo img {
    display: block; }
  .site-header__logo img {
    padding: 7px 0;
    height: 100%; }

.site-header__logo-link {
  height: 49px; }
  .site-header__logo-link img {
    margin: 0 auto; }
    @media screen and (min-width: 769px) {
      .site-header__logo-link img {
        margin: 0; } }

.site-header__cart-toggle {
  display: inline-block; }

.site-header__search {
  display: inline-block;
  max-width: 400px;
  margin-top: 14px;
  width: 100%; }

.search-bar {
  max-width: 100%; }
  @media screen and (max-width: 768px) {
    .search-bar {
      margin-left: auto;
      margin-right: auto; } }

/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.nav-bar {
  text-align: right; }

.site-nav, .site-nav--mobile {
  font-size: 0.93333em;
  cursor: default;
  margin: 0 0 0 -14px; }
  .site-nav li, .site-nav--mobile li {
    margin: 0;
    display: block; }
  .site-nav > li, .site-nav--mobile > li {
    position: relative;
    display: inline-block; }

/*================ Home to hamburger and cart that toggle drawers ================*/
.text-right .site-nav--mobile {
  margin: 0 -14px 0 0; }
.site-nav--mobile .site-nav__link {
  font-size: 1.66667em; }

.site-nav__link {
  display: block;
  line-height: 0.5;
  /* rolando ajuste para cuetas usuario */
  text-decoration: none;
  padding: 0;
  white-space: nowrap;
  color: #424242;
  text-transform: uppercase;
  font-weight: bold; }
  @media screen and (min-width: 769px) {
    .site-nav__link {
      padding: 21px 7px 7px 7px; } }
  .site-nav__link:hover, .site-nav__link:active, .site-nav__link:focus {
    color: #828282; }
  .site-nav__link .icon-arrow-down {
    position: relative;
    top: -2px;
    font-size: 10px;
    padding-left: 7px; }
  .site-nav--mobile .site-nav__link {
    display: inline-block; }

/*================ Dropdowns ================*/
.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 7px;
  right: 7px;
  margin: 0;
  z-index: 5; }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown, .nav-focus + .site-nav__dropdown {
    display: block; }
  .site-nav__dropdown a {
    background-color: rgba(255, 255, 255, 0.7);
    font-size: 0.8em; }
    .site-nav__dropdown a:hover, .site-nav__dropdown a:active, .site-nav__dropdown a:focus {
      background-color: #e6e6e6; }
  .site-nav__dropdown .site-nav__link {
    padding: 4.66667px; }

/*================ Search bar in header ================*/
.nav-search {
  position: relative;
  padding: 10px 0; }
  @media screen and (max-width: 768px) {
    .nav-search {
      padding: 0 0 14px;
      margin: 0 auto;
      text-align: center; } }

/*============================================================================
  #Mobile Nav
  - List of items inside the mobile drawer
==============================================================================*/
.mobile-nav {
  margin: -14px -14px 0 -14px; }
  .mobile-nav li {
    margin-bottom: 0; }

.mobile-nav__search {
  padding: 14px; }
  .mobile-nav__search .search-bar {
    margin-bottom: 0; }

.mobile-nav__item {
  position: relative;
  display: block;
  text-transform: uppercase; }
  .mobile-nav > .mobile-nav__item {
    background-color: white; }
  .mobile-nav__item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    border-bottom: 1px solid #f2f2f2; }
  .mobile-nav > .mobile-nav__item:last-child:after {
    display: none; }

.mobile-nav__item a {
  display: block; }

.mobile-nav__item a,
.mobile-nav__toggle button {
  color: #333333;
  padding: 14px;
  text-decoration: none; }
  .mobile-nav__item a:hover, .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:hover,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    color: #0d0d0d; }
  .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    background-color: #f2f2f2; }

.mobile-nav__item--active {
  font-weight: bold; }

.mobile-nav__has-sublist {
  display: table;
  width: 100%; }
  .mobile-nav__has-sublist .mobile-nav__link {
    display: table-cell;
    vertical-align: middle;
    width: 100%; }

.mobile-nav__toggle {
  display: table-cell;
  vertical-align: middle;
  width: 1%; }

.mobile-nav--expanded .mobile-nav__toggle-open {
  display: none; }

.mobile-nav__toggle-close {
  display: none; }
  .mobile-nav--expanded .mobile-nav__toggle-close {
    display: block; }

.mobile-nav__sublist {
  margin: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .mobile-nav--expanded + .mobile-nav__sublist {
    visibility: visible;
    max-height: 700px;
    transition: all 700ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .mobile-nav__sublist .mobile-nav__item:after {
    top: 0;
    bottom: auto; }
  .mobile-nav__sublist .mobile-nav__link {
    padding-left: 28px;
    font-weight: normal; }

/*============================================================================
  #Drawers
==============================================================================*/
.js-drawer-open {
  overflow: hidden;
  height: 100%; }

.drawer {
  -webkit-transform: translateZ(0);
  will-change: transform;
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  padding: 0 14px 14px;
  max-width: 95%;
  z-index: 99999;
  color: #333333;
  background-color: white;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .drawer a {
    color: #333333; }
    .drawer a:hover, .drawer a:focus {
      opacity: 0.7; }
  .drawer input,
  .drawer textarea {
    border-color: #f2f2f2; }

.drawer--left {
  width: 300px;
  left: -300px;
  border-right: 1px solid #f2f2f2; }
  .js-drawer-open-left .drawer--left {
    display: block;
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px); }
    .lt-ie9 .js-drawer-open-left .drawer--left {
      left: 0; }

.drawer--right {
  width: 300px;
  right: -300px;
  border-left: 1px solid #f2f2f2; }
  .js-drawer-open-right .drawer--right {
    display: block;
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px); }
    .lt-ie9 .js-drawer-open-right .drawer--right {
      right: 0; }

#PageContainer {
  overflow: hidden; }

.is-moved-by-drawer {
  -webkit-transform: translateZ(0);
  will-change: transform;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .js-drawer-open-left .is-moved-by-drawer {
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px); }
  .js-drawer-open-right .is-moved-by-drawer {
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px); }

.drawer__header {
  display: table;
  height: 70px;
  width: 100%;
  margin-bottom: 14px;
  border-bottom: 1px solid #f2f2f2; }

.drawer__title,
.drawer__close {
  display: table-cell;
  vertical-align: middle; }

.drawer__title {
  width: 100%;
  text-transform: uppercase; }

.drawer__close {
  width: 1%;
  text-align: center;
  font-size: 1.2em; }

.drawer__close button {
  position: relative;
  right: -20px;
  height: 100%;
  padding: 0 20px;
  color: inherit; }
  .drawer__close button:active, .drawer__close button:focus {
    background-color: #f2f2f2; }

/*============================================================================
  #Site Footer
==============================================================================*/
/*============================================================================
  #Product and Collection Grids
==============================================================================*/
.grid__image {
  display: block;
  margin: 0 auto; }
  .grid__image img {
    display: block;
    margin: 0 auto; }

/*============================================================================
  #Collection Filters
==============================================================================*/
.filter--active {
  font-weight: bold; }

/*============================================================================
  #Breadcrumbs
==============================================================================*/
.breadcrumb {
  margin-bottom: 28px; }
  .breadcrumb a,
  .breadcrumb span {
    display: inline-block;
    padding: 0 7px 0 0;
    margin-right: 7px; }
    .breadcrumb a:first-child,
    .breadcrumb span:first-child {
      padding-left: 0; }

/*============================================================================
  #Product Page
==============================================================================*/
.product-single__variants {
  display: none; }
  .no-js .product-single__variants {
    display: block; }

.product-single__photos {
  margin-bottom: 28px; }
  @media screen and (max-width: 480px) {
    .product-single__photos img {
      max-width: 80%; } }

.product-single__photos--sobre img {
  max-width: 250px; }
  @media screen and (max-width: 480px) {
    .product-single__photos--sobre img {
      max-width: 40%; } }

.product-single__photos a, .product-single__photos img,
.product-single__thumbnails a,
.product-single__thumbnails img {
  display: block;
  margin: 0 auto; }
.product-single__photos li,
.product-single__thumbnails li {
  margin-bottom: 28px; }

/*============================================================================
  #Notes and Form Feedback
==============================================================================*/
.note,
.errors {
  border-radius: 3px;
  padding: 6px 12px;
  margin-bottom: 14px;
  border: 1px solid transparent;
  font-size: 0.9em;
  text-align: left; }
  .note ul,
  .note ol,
  .errors ul,
  .errors ol {
    margin-top: 0;
    margin-bottom: 0; }
  .note li:last-child,
  .errors li:last-child {
    margin-bottom: 0; }
  .note p,
  .errors p {
    margin-bottom: 0; }

.note {
  border-color: #e5e5e5; }

.errors ul {
  list-style: disc outside;
  margin-left: 20px; }

.form-success {
  color: #56ad6a;
  background-color: #ecfef0;
  border-color: #56ad6a; }
  .form-success a {
    color: #56ad6a;
    text-decoration: underline; }
    .form-success a:hover {
      text-decoration: none; }

.form-error,
.errors {
  color: #d02e2e;
  background-color: #fff6f6;
  border-color: #d02e2e; }
  .form-error a,
  .errors a {
    color: #d02e2e;
    text-decoration: underline; }
    .form-error a:hover,
    .errors a:hover {
      text-decoration: none; }

/*============================================================================
  #Cart Page
==============================================================================*/
.cart__row {
  position: relative;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #e5e5e5; }
  .cart__row:first-child {
    margin-top: 0; }
  .cart__row:first-child {
    padding-top: 0; }
  .cart__row .js-qty, .cart__row .ajaxcart__qty {
    margin: 0 auto; }

.cart-table th {
  font-weight: normal; }
.cart-table td,
.cart-table th {
  padding: 30px 15px;
  border: none; }

@media screen and (min-width: 769px) {
  .cart__row--table-large {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .cart__row--table-large .grid__item {
      display: table-cell;
      vertical-align: middle;
      float: none; } }
.cart__image {
  display: block; }
  .cart__image img {
    display: block;
    max-width: 100%; }

.cart__subtotal {
  margin: 0 0 0 9.33333px;
  display: inline; }

.cart__mini-labels {
  display: block;
  margin: 9.33333px 0;
  font-size: 0.8em; }
  @media screen and (min-width: 769px) {
    .cart__mini-labels {
      display: none; } }

.cart__remove {
  display: block; }

/*============================================================================
  #Ajax Cart Styles (conditionally loaded)
==============================================================================*/
.ajaxcart__inner {
  margin-bottom: 28px; }

.ajaxcart__row > .grid, .ajaxcart__row > .grid--rev, .ajaxcart__row > .grid--full {
  margin-left: -14px; }
  .ajaxcart__row > .grid > .grid__item, .ajaxcart__row > .grid--rev > .grid__item, .ajaxcart__row > .grid--full > .grid__item {
    padding-left: 14px; }

.ajaxcart__product {
  position: relative;
  max-height: 500px; }
  .ajaxcart__product.is-removed {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }

.ajaxcart__row {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #f2f2f2; }

.ajaxcart__product-image {
  display: block;
  overflow: hidden;
  margin-bottom: 15px; }
  .ajaxcart__product-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%; }

.ajaxcart__product-name,
.ajaxcart__product-meta {
  display: block; }

.ajaxcart__product-name + .ajaxcart__product-meta {
  padding-top: 5.6px; }

/*================ Quantity Selectors ================*/
.js-qty, .ajaxcart__qty {
  position: relative;
  margin-bottom: 1em;
  max-width: 200px;
  min-width: 75px;
  overflow: visible; }
  .js-qty input, .ajaxcart__qty input {
    display: block;
    background: none;
    text-align: center;
    width: 100%;
    padding: 4px 25px;
    margin: 0; }

.js-qty__adjust, .ajaxcart__qty-adjust {
  cursor: pointer;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  border: 0 none;
  padding: 0 8px;
  background: none;
  text-align: center;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .js-qty__adjust:hover, .ajaxcart__qty-adjust:hover, .js-qty__adjust:focus, .ajaxcart__qty-adjust:focus {
    color: #424242; }

.js-qty__adjust--plus, .ajaxcart__qty--plus {
  right: 0;
  border-left: 1px solid #e5e5e5; }

.js-qty__adjust--minus, .ajaxcart__qty--minus {
  left: 0;
  border-right: 1px solid #e5e5e5; }

/*================ Quantity Selectors in Ajax Cart ================*/
.ajaxcart__qty {
  margin: 0; }
  .is-loading .ajaxcart__qty {
    opacity: 0.5;
    transition: none; }

.ajaxcart__qty-num {
  border-color: #f2f2f2;
  color: #333333; }

.ajaxcart__qty-adjust {
  color: #333333; }

.ajaxcart__qty--plus {
  border-color: #f2f2f2; }

.ajaxcart__qty--minus {
  border-color: #f2f2f2; }

.ajaxcart-item__price-strikethrough {
  float: right; }

/*================ BAIA Custom ================*/
.bg__ondas {
  background: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/pattern.png?v=88787338089467364081640876787);
  background-size: 100px auto;
  background-position: 0 0;
  background-attachment: fixed;
  background-color: #fff; }

.header__wrapper {
  padding: 7px 28px;
  background: white;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 9;
  -ms-transition: background 0.5s ease-in-out;
  -moz-transition: background 0.5s ease-in-out;
  -webkit-transition: background 0.5s ease-in-out;
  -o-transition: background 0.5s ease-in-out; }
  @media screen and (min-width: 769px) {
    .header__wrapper {
      padding: 14px 10% 7px 10%; } }
  .header__wrapper .logo__white {
    display: none; }

.usr_white {
  display: none; }

.template-index .header__wrapper {
  background: rgba(255, 255, 255, 0); }
.template-index .site-nav__link {
  color: #fff; }
.template-index .logo__white {
  display: block; }
.template-index .usr_white {
  display: inline; }
.template-index .logo__dark, .template-index .usr_dark {
  display: none; }
.template-index .site-nav__dropdown .site-nav__link {
  color: #424242; }
.template-index .header__wrapper--opaco {
  background: white; }
  .template-index .header__wrapper--opaco .logo__white {
    display: none !important; }
  .template-index .header__wrapper--opaco .logo__dark {
    display: block !important; }
  .template-index .header__wrapper--opaco .site-nav__link {
    color: #424242; }
  .template-index .header__wrapper--opaco .site-nav__dropdown .site-nav__link {
    color: #424242; }

.main-content {
  margin-top: 100px; }
  @media screen and (min-width: 768px) {
    .main-content {
      margin-top: 71px; } }

.hojas--maincontent {
  height: 13px;
  margin-bottom: 28px;
  background-color: #e5caad;
  position: relative;
  z-index: 2; }
  @media screen and (min-width: 769px) {
    .hojas--maincontent {
      margin-bottom: 71px; } }
  .hojas--maincontent .hojas__down {
    margin-bottom: 0;
    position: relative;
    top: 12px;
    background: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/hojas_sobre.png?v=156834252029696853201640876756); }

#quienes-somos .hojas--maincontent {
  margin-bottom: 0; }

.template-index .main-content {
  margin-top: 0; }

.slide__img {
  position: relative;
  overflow: hidden;
  width: 100%; }

.slide__link__layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  cursor: pointer; }

.slide__wrapper {
  position: relative; }

.slide__text {
  position: absolute;
  top: 50%;
  left: 15%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  margin: 0;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  text-align: left; }
  @media screen and (min-width: 480px) {
    .slide__text {
      width: 75%; } }
  @media screen and (min-width: 769px) {
    .slide__text {
      width: 60%; } }

.slide__text-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  width: 90%;
  margin: 0;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  font-weight: normal; }
  @media screen and (min-width: 480px) {
    .slide__text-center {
      width: 75%; } }
  @media screen and (min-width: 769px) {
    .slide__text-center {
      width: 60%; } }
  .slide__text-center p {
    margin: 10px 0; }
  .slide__text-center .slide__subtitle {
    margin: 15px auto; }

.slide__text--pequeno {
  font-size: 0.86667em;
  line-height: 1; }
  @media screen and (min-width: 769px) {
    .slide__text--pequeno {
      font-size: 1.33333em; } }

.slide__text--medio {
  font-size: 1.2em;
  line-height: 1; }
  @media screen and (min-width: 769px) {
    .slide__text--medio {
      font-size: 2.33333em; } }

.slide__text--grande {
  font-size: 2em;
  line-height: 1; }
  @media screen and (min-width: 769px) {
    .slide__text--grande {
      font-size: 4em; } }

.slide__title {
  line-height: 1em;
  font-size: 2em;
  letter-spacing: -0.02em;
  margin-bottom: 7px; }
  @media screen and (min-width: 769px) {
    .slide__title {
      font-size: 3.33333em; } }

.slide__subtitle {
  line-height: 1em;
  font-size: 0.86667em;
  background: #fff;
  color: #424242;
  display: block;
  letter-spacing: -0.02em;
  width: 250px;
  text-align: center;
  margin-bottom: 0; }
  @media screen and (min-width: 480px) {
    .slide__subtitle {
      font-size: 1em; } }
  .slide__subtitle a {
    padding: 14px 28px;
    display: block; }

.slide__masinfo {
  font-size: 0.66667em;
  line-height: 1em;
  background: #424242;
  padding: 7px;
  display: block;
  width: 150px;
  margin-left: 100px;
  text-align: center;
  letter-spacing: -0.01em; }

.slide__img--1 {
  background: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/slide_diapo_1.jpg?v=144363496757950234311640876845) no-repeat center center;
  background-size: cover; }

.slide__img--2 {
  background: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/slide_diapo_2.jpg?v=96697588483976688191640876846) no-repeat center center;
  background-size: cover; }

.slide__img--3 {
  background: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/slide_diapo_3.jpg?v=93590672925532742401640876846) no-repeat center center;
  background-size: cover; }

.slide__img--5 {
  background: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/003WEB-black.jpg?v=43204526069348778931640876677) no-repeat center center;
  background-size: cover;
  height: 800px !important; }

.slide__img--4 {
  background-color: white; }

.slide__down__wrapper {
  position: absolute;
  bottom: 70px;
  left: 50%;
  margin-left: -24px; }

.slide__down {
  width: 16px;
  height: 16px;
  background: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/slider_down.png?v=127661278690697136451640876843) no-repeat 0 0;
  background-size: cover;
  display: inline-block; }

@media screen and (max-width: 480px) {
  .bx-wrapper .bx-controls-direction,
  .slide__down__wrapper {
    display: none; } }

/* Hang */
@-webkit-keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px); }

  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px); }

  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px); } }

@keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px); }

  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px); }

  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px); } }

@-webkit-keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px); } }

@keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px); } }

.hang {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation-name: hvr-hang-sink, hvr-hang;
  animation-name: hvr-hang-sink, hvr-hang;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate; }

.front__icons {
  margin-top: 28px; }
  .front__icons div {
    height: 100px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 33% auto; }

.front__icon--morado {
  background-color: #743494;
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/label_acai.png?v=65982990242487200671640876764); }
  .front__icon--morado:hover {
    background-color: #48205b; }

.front__icon--azul {
  background: #108e8d;
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/label_espirulina.png?v=46155310434293801421640876766); }
  .front__icon--azul:hover {
    background-color: #084949; }

.front__icon--verde {
  background: #88a83d;
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/label_matcha.png?v=72072195447338800201640876767); }
  .front__icon--verde:hover {
    background-color: #5b7029; }

.front__icon--marron {
  background: #bfb351;
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/label_canamo.png?v=180388005015594325961640876765); }
  .front__icon--marron:hover {
    background-color: #8f8535; }

.front__icon--naranja {
  background: #f2ae29;
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/label_maca.png?v=82803411217292713911640876767); }
  .front__icon--naranja:hover {
    background-color: #c3850c; }

.front__icon--rojo {
  background: #e92749;
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/label_goji.png?v=133992411138975728491640876766); }
  .front__icon--rojo:hover {
    background-color: #b1122e; }

.front__icon--naranja_o {
  background: #c94b35;
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/label_chia.png?v=25426308542218008991640876765); }
  .front__icon--naranja_o:hover {
    background-color: #8c3425; }

.front__icon--marron_o {
  background: #612318;
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/label_cacao.png?v=119538513128903560111640876764); }
  .front__icon--marron_o:hover {
    background: #240d09; }

.front__icons .grid__item {
  -ms-transition: background-position 0.25s ease-out;
  -moz-transition: background-position 0.25s ease-out;
  -webkit-transition: background-position 0.25s ease-out;
  overflow: hidden;
  position: relative; }
  .front__icons .grid__item:hover {
    background-position: center -200%; }
    .front__icons .grid__item:hover .front__icon__name {
      top: 0%; }

.front__icon__name {
  text-align: center;
  text-transform: uppercase;
  color: #FFF;
  font-size: 1.33333em;
  line-height: 102px;
  font-weight: 900;
  position: absolute;
  width: 100%;
  -ms-transition: top 0.25s ease-out;
  -moz-transition: top 0.25s ease-out;
  -webkit-transition: top 0.25s ease-out;
  top: 105%; }

.title__front {
  text-align: center; }
  .title__front .bg__ondas {
    padding-bottom: 28px; }

.descripcion {
  text-align: center; }
  .descripcion p {
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
    font-size: 1.06667em; }
  .descripcion h1, .descripcion .h1, .descripcion h2, .descripcion .h2 {
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: 1em;
    margin-top: 28px;
    margin-bottom: 14px; }

.descripcion__destacado {
  font-size: 1.33333em; }

.descripcion__destacado--big {
  margin-top: 43px;
  font-size: 2em;
  line-height: 1.1em; }

.descripcion__listado strong {
  display: block;
  text-transform: uppercase;
  line-height: 1em; }
.descripcion__listado p {
  text-transform: initial;
  font-size: 0.86667em;
  font-weight: 400;
  width: 90%;
  margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .descripcion__listado p {
      font-size: 0.46667em; } }
.descripcion__listado li {
  padding-top: 14px;
  padding-bottom: 14px;
  margin-bottom: 0; }
  .descripcion__listado li img {
    height: 30px;
    margin: 0 auto 7px auto;
    display: block; }
@media screen and (max-width: 480px) {
  .descripcion__listado {
    padding: 0 7px; }
    .descripcion__listado .grid, .descripcion__listado .grid--rev, .descripcion__listado .grid--full {
      margin-left: 0px; }
    .descripcion__listado .grid__item {
      padding-left: 4px; } }

.descripcion__listado__wrapper {
  background: #fff;
  margin-top: 40px; }
  @media screen and (max-width: 480px) {
    .descripcion__listado__wrapper {
      margin-top: 0px; } }

.hojas__up {
  height: 13px;
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/des_list_up.png?v=179058723821137945141640876730);
  background--repeat: repeat-x;
  background-position: 0 0;
  background-size: cover;
  position: relative;
  z-index: 999;
  margin-top: -13px; }

.hojas__down {
  height: 13px;
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/des_list_down.png?v=81417743299100647211640876730);
  background--repeat: repeat-x;
  background-position: 0 0;
  background-size: cover;
  position: relative;
  z-index: 999;
  margin-bottom: -13px; }

.hojas__up.hojas__up--white {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/white_onda_up.png?v=104636185953038809561640876857); }

.hojas__down.hojas__down--black {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/black_onda_down.png?v=8300296644360118421640876697); }

.hojas__down.hojas__down--atelier {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/hojas_atelier.png?v=77014211507396004271640876755); }

.hojas__down.hojas__down--atelier {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/hojas_atelier.png?v=77014211507396004271640876755); }

.hojas__down.hojas__down--acai {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/acai_onda_down.png?v=26678560794799681141640876680); }

.hojas__down.hojas__down--ballance {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/ballance_onda_down.png?v=70146059331199359971640876691); }

.hojas__down.hojas__down--balance {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/ballance_onda_down.png?v=70146059331199359971640876691); }

.hojas__down.hojas__down--cacao {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/cacao_onda_down.png?v=139416851259153268651640876712); }

.hojas__down.hojas__down--canamo {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/canamo_onda_down.png?v=98197876123787144481640876715); }

.hojas__down.hojas__down--chia {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/chia_onda_down.png?v=25565914427695257971640876720); }

.hojas__down.hojas__down--espirulina {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/espirulina_onda_down.png?v=164227201582379480691640876736); }

.hojas__down.hojas__down--goji {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/goji_onda_down.png?v=8475895269326050331640876750); }

.hojas__down.hojas__down--maca,
.hojas__down.hojas__down--moca {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/maca_onda_down.png?v=139748771898452721261640876774); }

.hojas__down.hojas__down--matcha {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/matcha_onda_down.png?v=83813868451707657341640876778); }

.hojas__down.hojas__down--vainilla {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/vainilla_onda_down.png?v=73827405575439338771640876853); }

.hojas__down.hojas__down--coco {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/coco_onda_down.png?v=71968855202349072021640876723); }

.hojas__down.hojas__down--baobab {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/baobab_onda_down.png?v=6928671371521579091640876693); }

.hojas__down.hojas__down--moringa {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/moringa_onda_down.png?v=18138070564775394351640876782); }

.hojas__down.hojas__down--beauty {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/beauty_onda_down.png?v=167443880507316215551640876694); }

.hojas__down.hojas__down--curcuma-latte {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/curcuma_onda_down.png?v=51173780995166302421640876726); }

.hojas__down.hojas__down--natural-inmunity {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/natural_inmunity_onda_down.png?v=17852883996288398091640876783); }

.hojas__down.hojas__down--matcha-latte {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/matcha_latte_onda_down.png?v=42824802882275679871640876777); }

.hojas__down.hojas__down--pink-latte {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/pink_latte_onda_down.png?v=17269420116242043691640876787); }

/* rolando originales hojas__down

.hojas__down.hojas__down--black {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--atelier {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--acai {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--ballance {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--cacao {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--canamo {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--chia {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--espirulina {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--goji {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--maca,
.hojas__down.hojas__down--moca {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--matcha,
.hojas__down.hojas__down--vainilla {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--coco {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--baobab {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--moringa {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--beauty {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--curcuma-latte {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
.hojas__down.hojas__down--natural-inmunity {background-image:url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/rojo_onda_down.png?v=4008970531461105091640876839);}
*/
.hojas__up.hojas__up--acai {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/acai_onda_up.png?v=155723564242268398021640876680); }

.hojas__up.hojas__up--ballance {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/ballance_onda_up.png?v=81048549388645005331640876691); }

.hojas__up.hojas__up--cacao {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/cacao_onda_up.png?v=86390756623744886521640876712); }

.hojas__up.hojas__up--canamo {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/canamo_onda_up.png?v=126881929874776594331640876715); }

.hojas__up.hojas__up--chia {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/chia_onda_up.png?v=37909032194747084741640876721); }

.hojas__up.hojas__up--espirulina {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/espirulina_onda_up.png?v=140898994733233131041640876736); }

.hojas__up.hojas__up--goji {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/goji_onda_up.png?v=130894721207657010341640876751); }

.hojas__up.hojas__up--maca {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/maca_onda_up.png?v=40297204263773423821640876774); }

.hojas__up.hojas__up--matcha,
.hojas__up.hojas__up--vainilla {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/matcha_onda_up.png?v=60129244292030569061640876778); }

.hojas__franja {
  background: #fff3ec;
  position: relative;
  z-index: 1; }

.cuadricula img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out; }

.cuadricula__item {
  position: relative;
  overflow: hidden; }
  .cuadricula__item:hover img {
    opacity: 0.15; }
  .cuadricula__item:hover .cuadricula__texto {
    opacity: 1; }

.cuadricula__velo {
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 7;
  opacity: 0; }

.cuadricula__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9; }

.cuadricula__texto {
  position: absolute;
  z-index: 8;
  top: 50%;
  width: 100%;
  text-align: center;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out; }

.cuadricula__link__title, .cuadricula__link__subtitle {
  font-weight: 900;
  text-transform: uppercase; }

.cuadricula__link__title {
  font-size: 3.33333em;
  line-height: 1.1em; }

.cuadricula__link__subtitle {
  font-size: 1.13333em;
  line-height: 1.1em; }

.cuadricula-1 {
  margin-right: 5px;
  margin-bottom: 10px; }

.cuadricula-2 {
  margin-right: 5px; }

.cuadricula-3 {
  margin-left: 5px;
  margin-bottom: 10px; }

.cuadricula-4 {
  margin-left: 5px; }

.front__destacados__text {
  text-align: center;
  text-transform: uppercase; }

.front__destacados__desc {
  font-weight: 900;
  font-size: 1.33333em;
  margin-bottom: 28px; }

.front__destacados__title {
  font-size: 3.73333em;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1em;
  margin-top: 28px; }

.front__destacados__list {
  *zoom: 1;
  margin-left: 0;
  margin-top: 0;
  border-top: 1px solid #eee; }
  .front__destacados__list:after {
    content: '';
    display: table;
    clear: both; }
  .front__destacados__list .grid__image__wrapper {
    position: relative; }
  .front__destacados__list .product__grid__ficha {
    margin-left: 56px;
    margin-right: 56px; }
  .front__destacados__list .grid__image {
    width: 100%; }
    .front__destacados__list .grid__image img {
      width: 100%; }
  .front__destacados__list .grid__item {
    position: relative;
    padding: 0; }
  .front__destacados__list .product-btn {
    background: #424242; }
    .front__destacados__list .product-btn a, .front__destacados__list .product-btn a:link, .front__destacados__list .product-btn a:visited, .front__destacados__list .product-btn a:hover, .front__destacados__list .product-btn a:active {
      color: #fff; }
  .front__destacados__list .product-btn--goji {
    background: #e92749; }
  .front__destacados__list .product-btn--chia {
    background: #c94b35; }
  .front__destacados__list .product-btn--espirulina {
    background: #108e8d; }
  .front__destacados__list .product-btn--maca {
    background: #f2ae29; }
  .front__destacados__list .product-btn--matcha {
    background: #88a83d; }
  .front__destacados__list .product-btn--cacao {
    background: #612318; }
  .front__destacados__list .product-btn--acai {
    background: #743494; }
  .front__destacados__list .product-btn--canamo {
    background: #bfb351; }
  .front__destacados__list .product-price {
    position: absolute;
    bottom: 28px;
    left: 28px;
    padding: 15px;
    text-align: left;
    text-transform: initial;
    line-height: 1.2em; }
  .front__destacados__list .product-price__title {
    font-weight: 100;
    display: block; }
  .front__destacados__list .product-price__price {
    font-weight: 900;
    display: block;
    font-size: 1.2em; }

.product-btns {
  position: absolute;
  right: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%); }

.product-btn {
  margin-bottom: 5px; }
  .product-btn a {
    font-size: 1.33333em;
    font-weight: 900;
    text-align: center;
    line-height: 15px;
    padding: 10px;
    display: block; }
  .product-btn:last-child {
    margin-bottom: 0; }
  .product-btn:hover {
    background: #E7E7E7 !important; }

.product-btn__store a {
  font-size: 0.66667em;
  line-height: 8px;
  text-transform: uppercase; }

.addtocart__bg {
  background: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/carro_blanco.png?v=180353489657160280471640876717) no-repeat center center;
  height: 20px;
  width: 20px;
  background-size: contain;
  display: block; }

.product-btn__addtocart button {
  padding: 8px 0;
  display: block;
  margin: 0 auto; }

.front__masinfo {
  margin: 0; }
  .front__masinfo .btn--full {
    width: 50%;
    margin-bottom: 14px; }

#cart-floater {
  position: fixed;
  top: 50%;
  right: 0;
  background: #FFF;
  background-size: 500px auto;
  font-size: 1.86667em;
  line-height: 1em;
  z-index: 999;
  display: none !important;
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%); }
  #cart-floater a {
    padding: 14px;
    display: block; }
  @media screen and (min-width: 768px) {
    #cart-floater {
      display: block !important; } }

.cart-svg {
  height: 15px;
  width: auto; }

.button {
  font-size: 2.66667em; }

.product-single h1, .product-single .h1 {
  text-transform: uppercase;
  line-height: 1.1em; }
.product-single .product-description {
  font-size: 1.06667em;
  line-height: 1.25em;
  position: relative; }
  .product-single .product-description ul {
    margin-bottom: 28px; }
    .product-single .product-description ul li {
      list-style-type: circle;
      font-size: 0.93333em; }
      .product-single .product-description ul li strong {
        font-size: 0.8em; }
      .product-single .product-description ul li:last-child {
        list-style-type: none;
        margin-left: -18px; }
    .product-single .product-description ul:last-child {
      margin-bottom: 0; }

.product__imgfix {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/slide_diapo_1.jpg?v=144363496757950234311640876845);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  height: 300px; }
  @media screen and (min-width: 769px) {
    .product__imgfix {
      background-attachment: fixed;
      background-size: cover; } }

.product__imgfix--acai {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/acai_big.jpg?v=6014481820264521331640876679); }

.product__imgfix2--acai {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/acai_imgfix.jpg?v=148394793168664727601640876679); }

.product__imgfix--cacao {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/cacao_big.jpg?v=102219868802908766881640876711); }

.product__imgfix2--cacao {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/cacao_imgfix.jpg?v=19487436009339310821640876711); }

.product__imgfix--coco {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/coco_imgfix.jpg?v=3118347682122964901640876723); }

.product__imgfix2--coco {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/coco_imgfix2.jpg?v=135513879872041298551640876723); }

.product__imgfix--baobab {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/baobab_imgfix.jpg?v=1330088988673242111640876692); }

.product__imgfix2--baobab {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/baobab_imgfix2.jpg?v=97638897528312019431640876692); }

.product__imgfix--canamo {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/canamo_big.jpg?v=18872778688787357171640876714); }

.product__imgfix2--canamo {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/canamo_imgfix.jpg?v=81910474828429772471640876714); }

.product__imgfix--chia {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/chia_big.jpg?v=32400338406111691851640876719); }

.product__imgfix2--chia {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/chia_imgfix.jpg?v=126402470878107706541640876720); }

.product__imgfix--espirulina {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/espirulina_big.jpg?v=175739127656322987421640876735); }

.product__imgfix2--espirulina {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/espirulina_imgfix.jpg?v=71333615157320532391640876735); }

.product__imgfix--goji {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/goji_big.jpg?v=47272132160746586651640876749); }

.product__imgfix2--goji {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/goji_imgfix.jpg?v=156120381082866815731640876750); }

.product__imgfix--maca {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/maca_big.jpg?v=142701370181845878751640876773); }

.product__imgfix2--maca {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/maca_imgfix.jpg?v=23614471830458229331640876773); }

.product__imgfix--matcha {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/matcha_big.jpg?v=162429822265953812221640876776); }

.product__imgfix2--matcha {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/matcha_imgfix.jpg?v=133273765379029535761640876777); }

.product__imgfix--vitalitybooster {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/vitality-booster.jpg?v=17926493841203116191640876856);
  background-position: top center; }

.product__imgfix--glowingsummerskin {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/glowing-summer-skin.jpg?v=86081526369281437411640876749);
  background-position: top center; }

.product__imgfix--cleansedetox {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/cleanse-detox.jpg?v=131019307002434407481640876722);
  background-position: top center; }

.product__imgfix--foreveryoung {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/forever-young.jpg?v=53223217841582796801640876745);
  background-position: top center; }

.product__imgfix--workoutfitness {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/workout-fitness.jpg?v=116076190363314654051640876858);
  background-position: top center; }

.product__imgfix--inmunitypunch {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/inmunity-punch.jpg?v=141724165093542385401640876762);
  background-position: top center; }

.product__imgfix--box {
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/baia_navidad.jpg?v=117494623351492094011640876690);
  height: 600px; }

.product__row {
  margin-bottom: 28px; }

.product-links__wrapper {
  padding: 0; }

.product__franja {
  height: 100px; }

#ComparePrice {
  color: #e92749;
  text-decoration: line-through;
  font-weight: bold;
  margin: 0;
  line-height: 1; }

.compare-price {
  color: #e92749;
  text-decoration: line-through;
  font-weight: bold; }

.product-iconos {
  margin: 14px 0; }
  .product-iconos ul {
    margin: 0;
    padding: 0; }
    .product-iconos ul li {
      list-style-type: none;
      display: inline-block;
      vertical-align: top;
      margin-right: 14px; }
  .product-iconos p {
    font-size: 0.66667em;
    line-height: 1em;
    text-transform: uppercase;
    text-align: center;
    display: none; }
  .product-iconos img {
    margin: 0 auto 5px auto;
    display: block;
    height: 25px; }

.nutricion {
  margin: 15px auto 0 auto;
  font-size: 0.6em;
  text-transform: uppercase;
  background: #fff; }
  .nutricion td {
    padding: 6px;
    border: 1px dotted #eee; }
    .nutricion td.nutricion-fact--sub {
      padding-left: 16px; }

.nutricion-data {
  font-weight: bold;
  text-align: right; }

.btn--nutricion {
  font-size: 0.66667em;
  padding: 3px 10px;
  display: inline-block;
  vertical-align: top; }

.site-footer__wrapper {
  background-color: #f0f0f0;
  font-weight: bold;
  font-size: 0.73333em;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  color: #7b7b7b;
  text-transform: uppercase; }

.site-footer {
  text-align: center;
  padding: 28px 10% 7px 10%; }
  @media screen and (min-width: 768px) {
    .site-footer {
      text-align: left; } }
  @media screen and (min-width: 769px) {
    .site-footer {
      padding-top: 56px; } }
  .site-footer a, .site-footer a:link, .site-footer a:visited, .site-footer a:active {
    color: #7b7b7b; }
  .site-footer a:hover, .site-footer a:focus {
    color: #676767; }

.footer__menus {
  margin-bottom: 0; }

.footer__logo {
  max-width: 85px;
  margin-top: -10px;
  display: inline-block; }

.footer__mail {
  display: block;
  font-size: 0.66667em; }

@media screen and (min-width: 769px) {
  .footer__mailchimp {
    padding: 0; } }
.footer__mailchimp .mc-email {
  text-align: center;
  font-size: 1.2em;
  width: auto; }
  @media screen and (min-width: 769px) {
    .footer__mailchimp .mc-email {
      width: 100%;
      text-align: left; } }
.footer__mailchimp #mc-embedded-subscribe {
  font-size: 1.06667em; }

.mc-email {
  padding: 4.66667px 7px;
  margin-bottom: 4.66667px;
  width: 100%; }

#mc-embedded-subscribe {
  line-height: 1em;
  font-size: 0.8em;
  padding: 5.6px 4.66667px 4.66667px 4.66667px; }
  @media screen and (min-width: 769px) {
    #mc-embedded-subscribe {
      float: right; } }

.mc-field-group p {
  margin: 0;
  font-weight: normal; }

.footer-menu ul {
  margin: 0;
  padding: 0;
  -moz-column-count: 3;
  -moz-column-gap: 84px;
  -webkit-column-count: 3;
  -webkit-column-gap: 84px;
  column-count: 3;
  column-gap: 84px; }
.footer-menu li {
  list-style-type: none;
  margin-bottom: 0; }
  .footer-menu li a {
    display: block; }

.footer-menu--columns li {
  display: inline-block;
  width: 49%; }

.footer-menu__title {
  margin: 0;
  font-weight: normal; }

.footer__icons p {
  margin: 0;
  font-weight: normal; }

.footer__social {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  .footer__social li {
    display: inline; }
    .footer__social li img {
      height: 18px;
      width: auto;
      margin: 0 2px; }

.footer__credits {
  border-top: 1px solid #e1e1e1;
  margin-top: 28px;
  padding: 28px 10%; }
  .footer__credits p {
    margin: 0;
    padding: 0;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .footer__credits p {
        text-align: right; } }

.qsomos h1, .qsomos .h1 {
  text-transform: uppercase;
  text-align: center; }
.qsomos .descripcion {
  padding-bottom: 28px; }

.qsomos__hojas {
  background: #fff3ec;
  position: relative;
  z-index: 1; }
  .qsomos__hojas h1, .qsomos__hojas .h1 {
    margin: 28px 0; }

.qsomos__box .box__text {
  text-align: center;
  height: auto;
  max-height: 100%;
  overflow-y: auto; }
.qsomos__box .box__text__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center; }

.qsomos__box__desc {
  font-size: 1.06667em; }

.qsomos__box__title {
  font-size: 1.86667em;
  text-transform: uppercase; }

.qsomos2 h2, .qsomos2 .h2 {
  font-size: 3em;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1em;
  margin-top: 43px;
  margin-bottom: 28px;
  text-align: center; }

.qsomos__img img {
  display: block;
  width: 100%; }

.qsomos__person {
  position: relative;
  overflow: hidden;
  cursor: pointer; }
  .qsomos__person:hover .qsomos__text {
    opacity: 1; }

.qsomos__text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  opacity: 0;
  -ms-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out; }

.qsomos__text__wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 14px;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.qsomos__title {
  text-transform: uppercase;
  line-height: 1.1em; }

.qsomos__cargo {
  text-transform: uppercase; }

.qsomos__elemento img {
  width: 50px;
  height: auto; }
.qsomos__elemento p {
  text-transform: uppercase;
  font-weight: 900; }

.embajadores h1, .embajadores .h1 {
  text-transform: uppercase; }

@supports (display: grid) {
  .product__grid__wrapper {
    padding: 14px;
    margin: 0 0 0 -14px;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-gap: 15px; }
    @media screen and (min-width: 768px) {
      .product__grid__wrapper {
        grid-template-columns: repeat(3, 33.33%); } }
    @media screen and (min-width: 1330px) {
      .product__grid__wrapper {
        grid-template-columns: repeat(4, 25%); } }
    .product__grid__wrapper > span {
      display: none; }
    .product__grid__wrapper .grid__item {
      padding: 0;
      margin: 0; } }
.product__grid .grid__image {
  position: relative; }
  .product__grid .grid__image img {
    width: 100%; }

.products {
  margin-bottom: 56px; }

.products__title {
  text-transform: uppercase;
  text-align: center; }

.product__grid__agotado img {
  opacity: 0.15; }
.product__grid__agotado strong {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-transform: uppercase;
  color: #686868;
  font-size: 1.66667em; }

.product__grid__ficha {
  text-align: center;
  text-transform: uppercase;
  font-weight: 900; }

.product__grid__title {
  border: 2px solid #424242; }
  .product__grid__title a {
    padding: 14px 4.66667px;
    display: block;
    font-size: 1.13333em;
    line-height: 1.1em; }
  .product__grid__title:hover {
    background: #424242; }
    .product__grid__title:hover a, .product__grid__title:hover a:link, .product__grid__title:hover a:visited, .product__grid__title:hover a:hover, .product__grid__title:hover a:active {
      color: #fff; }

.product__grid__precio {
  font-size: 1.06667em;
  white-space: nowrap;
  margin-bottom: 0; }

.product__grid__addtocart {
  font-size: 0.8em;
  font-weight: 100; }
  .product__grid__addtocart input {
    padding: 0 !important;
    text-transform: uppercase !important; }

.product-link {
  text-align: center;
  font-size: 1.33333em;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff; }
  .product-link a {
    padding: 42px 0;
    display: block; }
    .product-link a:link, .product-link a:visited, .product-link a:hover, .product-link a:active {
      color: #fff; }

.product-link--black {
  color: #fff;
  background: #424242; }
  .product-link--black a:link, .product-link--black a:visited, .product-link--black a:hover, .product-link--black a:active {
    color: #fff; }
  .product-link--black:hover {
    background: #565656; }

.product-link--gray {
  background: white; }
  .product-link--gray a:link, .product-link--gray a:visited, .product-link--gray a:hover, .product-link--gray a:active {
    color: #424242; }
  .product-link--gray:hover {
    background: #f0f0f0; }

.product-link--goji,
.product-link--goji-organico {
  background: #e92749; }
  .product-link--goji:hover,
  .product-link--goji-organico:hover {
    background: #d21536; }

.product-link--maca,
.product-link--maca-organica {
  background: #f2ae29; }
  .product-link--maca:hover,
  .product-link--maca-organica:hover {
    background: #e49c0e; }

.product-link--espirulina,
.product-link--espirulina-organica {
  background: #108e8d; }
  .product-link--espirulina:hover,
  .product-link--espirulina-organica:hover {
    background: #0c6969; }

.product-link--acai,
.product-link--acai-organico {
  background: #743494; }
  .product-link--acai:hover,
  .product-link--acai-organico:hover {
    background: #5c2976; }

.product-link--cacao,
.product-link--cacao-organico {
  background: #612318; }
  .product-link--cacao:hover,
  .product-link--cacao-organico:hover {
    background: #401710; }

.product-link--chia,
.product-link--chia-organica {
  background: #c94b35; }
  .product-link--chia:hover,
  .product-link--chia-organica:hover {
    background: #a93f2c; }

.product-link--goji,
.product-link--goji-organico {
  background: #e92749; }
  .product-link--goji:hover,
  .product-link--goji-organico:hover {
    background: #d21536; }

.product-link--matcha,
.product-link--matcha-organico {
  background: #88a83d; }
  .product-link--matcha:hover,
  .product-link--matcha-organico:hover {
    background: #708a32; }

.product-link--canamo,
.product-link--canamo-organico {
  background: #bfb351; }
  .product-link--canamo:hover,
  .product-link--canamo-organico:hover {
    background: #a99d3e; }

.product-link--coco,
.product-link--coco-organico {
  background: #83b4c7; }
  .product-link--coco:hover,
  .product-link--coco-organico:hover {
    background: #67a3ba; }

.product-link--baobab,
.product-link--baobab-organico {
  background: #e36f38; }
  .product-link--baobab:hover,
  .product-link--baobab-organico:hover {
    background: #d4591e; }

.product-link--dark.product-link--gray {
  background: gainsboro; }
  .product-link--dark.product-link--gray:hover {
    background: #c2c2c2; }
.product-link--dark.product-link--goji, .product-link--dark.product-link--goji-organico {
  background: #c91434; }
  .product-link--dark.product-link--goji:hover, .product-link--dark.product-link--goji-organico:hover {
    background: #a4112a; }
.product-link--dark.product-link--maca, .product-link--dark.product-link--maca-organica {
  background: #db950d; }
  .product-link--dark.product-link--maca:hover, .product-link--dark.product-link--maca-organica:hover {
    background: #b47b0b; }
.product-link--dark.product-link--espirulina, .product-link--dark.product-link--espirulina-organica {
  background: #0b605f; }
  .product-link--dark.product-link--espirulina:hover, .product-link--dark.product-link--espirulina-organica:hover {
    background: #073b3b; }
.product-link--dark.product-link--acai, .product-link--dark.product-link--acai-organico {
  background: #56276e; }
  .product-link--dark.product-link--acai:hover, .product-link--dark.product-link--acai-organico:hover {
    background: #3f1c50; }
.product-link--dark.product-link--cacao, .product-link--dark.product-link--cacao-organico {
  background: #38140e; }
  .product-link--dark.product-link--cacao:hover, .product-link--dark.product-link--cacao-organico:hover {
    background: #170806; }
.product-link--dark.product-link--chia, .product-link--dark.product-link--chia-organica {
  background: #a13c2a; }
  .product-link--dark.product-link--chia:hover, .product-link--dark.product-link--chia-organica:hover {
    background: #803022; }
.product-link--dark.product-link--goji, .product-link--dark.product-link--goji-organico {
  background: #c91434; }
  .product-link--dark.product-link--goji:hover, .product-link--dark.product-link--goji-organico:hover {
    background: #a4112a; }
.product-link--dark.product-link--matcha, .product-link--dark.product-link--matcha-organico {
  background: #6a832f; }
  .product-link--dark.product-link--matcha:hover, .product-link--dark.product-link--matcha-organico:hover {
    background: #516525; }
.product-link--dark.product-link--canamo, .product-link--dark.product-link--canamo-organico {
  background: #a2963b; }
  .product-link--dark.product-link--canamo:hover, .product-link--dark.product-link--canamo-organico:hover {
    background: #847b30; }
.product-link--dark.product-link--coco, .product-link--dark.product-link--coco-organico {
  background: #609fb7; }
  .product-link--dark.product-link--coco:hover, .product-link--dark.product-link--coco-organico:hover {
    background: #4a8ba4; }
.product-link--dark.product-link--baobab, .product-link--dark.product-link--baobab-organico {
  background: #cb551d; }
  .product-link--dark.product-link--baobab:hover, .product-link--dark.product-link--baobab-organico:hover {
    background: #a84618; }

.product-link--darker.product-link--gray {
  background: #f0f0f0; }
  .product-link--darker.product-link--gray:hover {
    background: gainsboro; }
.product-link--darker.product-link--goji, .product-link--darker.product-link--goji-organico {
  background: #9a1028; }
  .product-link--darker.product-link--goji:hover, .product-link--darker.product-link--goji-organico:hover {
    background: #750c1e; }
.product-link--darker.product-link--maca, .product-link--darker.product-link--maca-organica {
  background: #ab740a; }
  .product-link--darker.product-link--maca:hover, .product-link--darker.product-link--maca-organica:hover {
    background: #845a08; }
.product-link--darker.product-link--espirulina
.product-link--darker.product-link--espirulina-organica {
  background: #063232; }
  .product-link--darker.product-link--espirulina
  .product-link--darker.product-link--espirulina-organica:hover {
    background: #020e0e; }
.product-link--darker.product-link--acai, .product-link--darker.product-link--acai-organico {
  background: #391949; }
  .product-link--darker.product-link--acai:hover, .product-link--darker.product-link--acai-organico:hover {
    background: #210f2a; }
.product-link--darker.product-link--cacao, .product-link--darker.product-link--cacao-organico {
  background: #0f0504; }
  .product-link--darker.product-link--cacao:hover, .product-link--darker.product-link--cacao-organico:hover {
    background: black; }
.product-link--darker.product-link--chia, .product-link--darker.product-link--chia-organica {
  background: #782d20; }
  .product-link--darker.product-link--chia:hover, .product-link--darker.product-link--chia-organica:hover {
    background: #582117; }
.product-link--darker.product-link--goji, .product-link--darker.product-link--goji-organico {
  background: #9a1028; }
  .product-link--darker.product-link--goji:hover, .product-link--darker.product-link--goji-organico:hover {
    background: #750c1e; }
.product-link--darker.product-link--matcha, .product-link--darker.product-link--matcha-organico {
  background: #4b5d22; }
  .product-link--darker.product-link--matcha:hover, .product-link--darker.product-link--matcha-organico:hover {
    background: #333f17; }
.product-link--darker.product-link--canamo, .product-link--darker.product-link--canamo-organico {
  background: #7c742e; }
  .product-link--darker.product-link--canamo:hover, .product-link--darker.product-link--canamo-organico:hover {
    background: #5e5823; }
.product-link--darker.product-link--coco, .product-link--darker.product-link--coco-organico {
  background: #47859d; }
  .product-link--darker.product-link--coco:hover, .product-link--darker.product-link--coco-organico:hover {
    background: #3a6d81; }
.product-link--darker.product-link--baobab, .product-link--darker.product-link--baobab-organico {
  background: #9f4216; }
  .product-link--darker.product-link--baobab:hover, .product-link--darker.product-link--baobab-organico:hover {
    background: #7b3311; }

.goji {
  color: #e92749; }

.maca {
  color: #f2ae29; }

.espirulina {
  color: #108e8d; }

.acai {
  color: #743494; }

.cacao {
  color: #612318; }

.chia {
  color: #c94b35; }

.canamo {
  color: #bfb351; }

.matcha {
  color: #88a83d; }

.bg-black {
  background: #424242; }

.bg-goji {
  background-color: #e92749;
  color: #fff; }

.bg-coco {
  background-color: #83b4c7; }

.bg-baobab {
  background-color: #e36f38; }

.bg-maca, .bg-moca {
  background-color: #f2ae29;
  color: #fff; }

.bg-espirulina {
  background-color: #108e8d;
  color: #fff; }

.bg-acai {
  background-color: #743494;
  color: #fff; }

.bg-atelier {
  background-color: #ffc3c3; }

.bg-cacao {
  background-color: #612318;
  color: #fff; }

.bg-moringa {
  background-color: #02713e;
  color: #fff; }

.bg-beauty {
  background-color: #f98c95;
  color: #fff; }

.bg-chia {
  background-color: #c94b35;
  color: #fff; }

.bg-canamo {
  background-color: #bfb351;
  color: #fff; }

.bg-matcha, .bg-vainilla {
  background-color: #88a83d;
  color: #fff; }

.bg-ballance {
  background-color: #f77a40;
  color: #fff; }

.bg-balance {
  background-color: #f77a40;
  color: #fff; }

.bg-curcuma-latte {
  background-color: #F6BD2F;
  color: #fff; }

.bg-natural-inmunity {
  background-color: #06539a;
  color: #fff; }

.bg-rojo {
  background-color: #b80101; }

.bg-matcha-latte {
  background-color: #aabd4e; }

.bg-pink-latte {
  background-color: #d02558; }

.bg-vainilla {
  background-color: #f1ce8e; }

.bg-ketovainilla {
  background-color: #f0d3b5; }

.bg-ketocacao {
  background-color: #EEB2A7; }

.bg-keto {
  background-color: #CCEBF7; }

/* rolando originales bg-xxx

.bg-goji {background-color: $rojo-bg; color:#fff;}
.bg-coco {background-color: $rojo-bg;}
.bg-baobab {background-color: $rojo-bg;}
.bg-black {background:$rojo-bg;}
.bg-maca, .bg-moca {background-color: $rojo-bg; color:#fff;}
.bg-espirulina {background-color: $rojo-bg; color:#fff;}
.bg-acai {background-color: $rojo-bg; color:#fff;}
.bg-atelier {background-color: $rojo-bg;}
.bg-cacao {background-color: $rojo-bg; color:#fff;}
.bg-moringa {background-color: $rojo-bg;  color:#fff;}
.bg-beauty {background-color: $rojo-bg;  color:#fff;}
.bg-chia {background-color: $rojo-bg; color:#fff;}
.bg-canamo {background-color: $rojo-bg; color:#fff;}
.bg-matcha, .bg-vainilla {background-color: $rojo-bg; color:#fff;}
.bg-ballance {background-color: $rojo-bg; color:#fff;}
.bg-curcuma-latte {background-color: $rojo-bg; color:#fff;}
.bg-natural-inmunity {background-color: $rojo-bg; color:#fff;}
.bg-rojo {background-color:$rojo-bg;}
*/
.btn--goji {
  border-color: #e92749;
  background: #e92749;
  text-transform: uppercase;
  color: #fff; }
  .btn--goji:hover, .btn--goji:focus, .btn--goji:active {
    border-color: #ee5570;
    background: #ee5570; }

.btn--plantproteinorganicmacamoca, .btn--macamoca {
  border-color: #e7b04c;
  background: #e7b04c;
  text-transform: uppercase;
  color: #fff; }
  .btn--plantproteinorganicmacamoca:hover, .btn--plantproteinorganicmacamoca:focus, .btn--plantproteinorganicmacamoca:active, .btn--macamoca:hover, .btn--macamoca:focus, .btn--macamoca:active {
    border-color: #edc479;
    background: #edc479; }

.btn--plantproteinorganicmatchavainilla, .btn--premiummatchavainilla {
  border-color: #8da454;
  background: #8da454;
  text-transform: uppercase;
  color: #fff; }
  .btn--plantproteinorganicmatchavainilla:hover, .btn--plantproteinorganicmatchavainilla:focus, .btn--plantproteinorganicmatchavainilla:active, .btn--premiummatchavainilla:hover, .btn--premiummatchavainilla:focus, .btn--premiummatchavainilla:active {
    border-color: #a4b873;
    background: #a4b873; }

.btn--plantproteinorganicmatchavainilla {
  border-color: #8da454;
  background: #8da454;
  text-transform: uppercase;
  color: #fff; }
  .btn--plantproteinorganicmatchavainilla:hover, .btn--plantproteinorganicmatchavainilla:focus, .btn--plantproteinorganicmatchavainilla:active {
    border-color: #a4b873;
    background: #a4b873; }

.btn--plantproteinorganiccacao {
  border-color: #5b291e;
  background: #5b291e;
  text-transform: uppercase;
  color: #fff; }
  .btn--plantproteinorganiccacao:hover, .btn--plantproteinorganiccacao:focus, .btn--plantproteinorganiccacao:active {
    border-color: #813a2b;
    background: #813a2b; }

.btn--plantproteinorganiccacao {
  border-color: #5b291e;
  background: #5b291e;
  text-transform: uppercase;
  color: #fff; }
  .btn--plantproteinorganiccacao:hover, .btn--plantproteinorganiccacao:focus, .btn--plantproteinorganiccacao:active {
    border-color: #813a2b;
    background: #813a2b; }

.btn--plantproteinorganicacai, .btn--premiumacai {
  border-color: #6b418d;
  background: #6b418d;
  text-transform: uppercase;
  color: #fff; }
  .btn--plantproteinorganicacai:hover, .btn--plantproteinorganicacai:focus, .btn--plantproteinorganicacai:active, .btn--premiumacai:hover, .btn--premiumacai:focus, .btn--premiumacai:active {
    border-color: #8552af;
    background: #8552af; }

.btn--maca {
  border-color: #f2ae29;
  background: #f2ae29;
  text-transform: uppercase;
  color: #fff; }
  .btn--maca:hover, .btn--maca:focus, .btn--maca:active {
    border-color: #f5c059;
    background: #f5c059; }

.btn--espirulina {
  border-color: #108e8d;
  background: #108e8d;
  text-transform: uppercase;
  color: #fff; }
  .btn--espirulina:hover, .btn--espirulina:focus, .btn--espirulina:active {
    border-color: #15bcbb;
    background: #15bcbb; }

.btn--acai {
  border-color: #743494;
  background: #743494;
  text-transform: uppercase;
  color: #fff; }
  .btn--acai:hover, .btn--acai:focus, .btn--acai:active {
    border-color: #9241ba;
    background: #9241ba; }

.btn--cacao {
  border-color: #612318;
  background: #612318;
  text-transform: uppercase;
  color: #fff; }
  .btn--cacao:hover, .btn--cacao:focus, .btn--cacao:active {
    border-color: #8a3222;
    background: #8a3222; }

.btn--coco {
  border-color: #83b4c7;
  background: #83b4c7;
  text-transform: uppercase;
  color: #fff; }
  .btn--coco:hover, .btn--coco:focus, .btn--coco:active {
    border-color: #a6c9d7;
    background: #a6c9d7; }

.btn--baobab {
  border-color: #e36f38;
  background: #e36f38;
  text-transform: uppercase;
  color: #fff; }
  .btn--baobab:hover, .btn--baobab:focus, .btn--baobab:active {
    border-color: #e98f65;
    background: #e98f65; }

.btn--chia {
  border-color: #c94b35;
  background: #c94b35;
  text-transform: uppercase;
  color: #fff; }
  .btn--chia:hover, .btn--chia:focus, .btn--chia:active {
    border-color: #d46f5d;
    background: #d46f5d; }

.btn--beauty {
  border-color: #f98c95;
  background: #f98c95;
  text-transform: uppercase;
  color: #fff; }
  .btn--beauty:hover, .btn--beauty:focus, .btn--beauty:active {
    border-color: #fcbcc2;
    background: #fcbcc2; }

.btn--canamo {
  border-color: #bfb351;
  background: #bfb351;
  text-transform: uppercase;
  color: #fff; }
  .btn--canamo:hover, .btn--canamo:focus, .btn--canamo:active {
    border-color: #cdc376;
    background: #cdc376; }

.btn--matcha, .btn--matcha-latte {
  border-color: #88a83d;
  background: #88a83d;
  text-transform: uppercase;
  color: #fff; }
  .btn--matcha:hover, .btn--matcha:focus, .btn--matcha:active, .btn--matcha-latte:hover, .btn--matcha-latte:focus, .btn--matcha-latte:active {
    border-color: #a2c256;
    background: #a2c256; }

.btn--curcuma-latte, .btn--curcuma {
  border-color: #f6bd2f;
  background: #f6bd2f;
  text-transform: uppercase;
  color: #fff; }
  .btn--curcuma-latte:hover, .btn--curcuma-latte:focus, .btn--curcuma-latte:active, .btn--curcuma:hover, .btn--curcuma:focus, .btn--curcuma:active {
    border-color: #f8cd60;
    background: #f8cd60; }

.btn--pink-latte, .btn--pink {
  border-color: #d02558;
  background: #d02558;
  text-transform: uppercase;
  color: #fff; }
  .btn--pink-latte:hover, .btn--pink-latte:focus, .btn--pink-latte:active, .btn--pink:hover, .btn--pink:focus, .btn--pink:active {
    border-color: #df4976;
    background: #df4976; }

.btn--natural-ballance, .btn--ballance, .btn--natural-balance, .btn--balance {
  border-color: #f77a40;
  background: #f77a40;
  text-transform: uppercase;
  color: #fff; }
  .btn--natural-ballance:hover, .btn--natural-ballance:focus, .btn--natural-ballance:active, .btn--ballance:hover, .btn--ballance:focus, .btn--ballance:active, .btn--natural-balance:hover, .btn--natural-balance:focus, .btn--natural-balance:active, .btn--balance:hover, .btn--balance:focus, .btn--balance:active {
    border-color: #f99c71;
    background: #f99c71; }

.btn--natural-inmunity, .btn--inmunity {
  border-color: #06539a;
  background: #06539a;
  text-transform: uppercase;
  color: #fff; }
  .btn--natural-inmunity:hover, .btn--natural-inmunity:focus, .btn--natural-inmunity:active, .btn--inmunity:hover, .btn--inmunity:focus, .btn--inmunity:active {
    border-color: #f99c71;
    background: #f99c71; }

.box {
  position: relative; }

.box--left {
  text-align: right; }

.box__img {
  width: 100%;
  margin-bottom: 28px; }
  .box__img img {
    width: 100%;
    height: auto;
    display: block; }

.box__text__wrapper {
  margin-bottom: 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 0 14px; }
  @media screen and (min-width: 768px) {
    .box__text__wrapper {
      padding: 0; } }

@media screen and (min-width: 769px) {
  .box__text__wrapper {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    text-align: left;
    margin-bottom: 0;
    padding: 28px 28px 28px 56px; }
    .box--right .box__text__wrapper {
      right: 0; }
    .box--left .box__text__wrapper {
      left: 0; }

  .box__text {
    height: auto;
    max-height: 100%;
    overflow-y: auto; }
    .box--scroll .box__text {
      height: 100%;
      overflow-y: scroll;
      padding-right: 56px; }

  .box__img {
    margin-bottom: 0;
    width: 50%; }
    .box--left .box__img {
      display: inline-block;
      vertical-align: bottom; } }
.masinfo h1, .masinfo .h1 {
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  padding: 28px 0; }

.masinfo__mainimg img {
  display: block; }

.masinfo__row .box__text h1, .masinfo__row .box__text .h1 {
  text-align: left; }
.masinfo__row .box__desc {
  font-size: 1.06667em; }

.masinfo__franja {
  color: #fff; }

.masinfo__box {
  padding-left: 28px;
  padding-right: 28px; }
  .masinfo__box p, .masinfo__box li {
    font-size: 1.13333em; }
  .masinfo__box ul {
    margin: 0; }
  .masinfo__box li {
    list-style-type: none;
    text-align: center; }
    @media screen and (min-width: 769px) {
      .masinfo__box li {
        list-style-type: circle;
        text-align: left; } }
  .masinfo__box h3, .masinfo__box .h3 {
    text-transform: uppercase;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .masinfo__box h3, .masinfo__box .h3 {
        text-align: left; } }

.masinfo__propiedades__wrapper {
  padding: 0; }

.masinfo__propiedades {
  margin: 56px 0;
  text-align: center; }

.masinfo__propiedad {
  margin-bottom: 28px; }
  @media screen and (min-width: 769px) {
    .masinfo__propiedad {
      margin-bottom: 0; } }

.masinfo__propiedad--central {
  border-left: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0; }

.masinfo__propiedad--border {
  border-right: 1px solid #f0f0f0; }

.masinfo__propiedades__title {
  text-transform: uppercase;
  line-height: 1.1em; }

.masinfo__propiedades__title, .masinfo__propiedades__text {
  padding: 0 56px; }

.masinfo__propiedades--cuatro .masinfo__propiedades__title, .masinfo__propiedades--cuatro .masinfo__propiedades__text {
  padding: 0 28px; }

.masinfo__propiedades__img {
  position: relative; }
  .masinfo__propiedades__img img {
    width: 100%;
    display: block;
    opacity: 0.6; }

.masinfo__btns {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 1;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
  .masinfo__btns a {
    display: block;
    width: 50%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    padding: 7px 14px;
    margin: 0 auto 28px auto;
    background: #fff;
    border: 2px solid #424242; }
    .masinfo__btns a:hover {
      background: #424242;
      color: #fff; }

.beneficios h1, .beneficios .h1 {
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  padding: 28px 0; }

.beneficios__desc {
  font-size: 1.06667em; }

.recetas .masinfo__propiedades {
  margin: 0; }

.loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  z-index: 99999999; }

body#recharge-novum .loading {
  position: unset;
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
  background: unset;
  z-index: unset; }

.centrada h1, .centrada .h1 {
  text-transform: uppercase;
  text-align: left; }

.centrada__wrapper {
  margin-top: 28px; }

.centrada__text {
  font-size: 1.2em; }

.article h1, .article .h1 {
  text-transform: uppercase; }

.recent-articles li {
  margin-bottom: rhythm(0.5); }
  .recent-articles li a {
    font-weight: bold; }

.article-sidebar {
  margin: 28px 0; }
  @media screen and (min-width: 768px) {
    .article-sidebar {
      margin-top: 0; } }
  .article-sidebar h4, .article-sidebar .h4 {
    text-transform: uppercase; }

.article__body {
  font-size: 1.13333em;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif; }
  .article__body h3, .article__body .h3 {
    text-transform: uppercase;
    margin-top: 0; }

.article-featured-img {
  margin-bottom: 28px; }

.sidebar-separador {
  height: 28px;
  margin: 14px 0; }

#blog h1, #blog .h1 {
  text-transform: uppercase;
  text-align: center; }
#blog .article {
  margin-bottom: 28px; }
  #blog .article h3, #blog .article .h3 {
    text-transform: uppercase; }
  #blog .article .article__featured-image {
    margin-bottom: 28px;
    display: block; }
    #blog .article .article__featured-image img {
      width: 100%;
      display: block; }
  #blog .article .article__excerpt {
    height: 15em; }

.blog__logo {
  text-align: center; }
  .blog__logo img {
    max-height: 100px; }

.leer_mas {
  *zoom: 1; }
  .leer_mas:after {
    content: '';
    display: table;
    clear: both; }
  .leer_mas a {
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #424242;
    padding: 7px;
    float: right;
    font-size: 0.66667em; }
    .leer_mas a:hover {
      color: #fff;
      background-color: #424242; }

.contacto {
  margin-bottom: 28px;
  padding: 0 14px; }
  .contacto h1, .contacto .h1 {
    text-transform: uppercase; }

.vex .btn, .vex .btn--secondary, .vex input[type="email"] {
  border-color: #555;
  color: #fff;
  font-weight: 100;
  background: transparent; }
  .vex .btn:focus, .vex .btn--secondary:focus, .vex .btn:hover, .vex .btn--secondary:hover, .vex input[type="email"]:focus, .vex input[type="email"]:hover {
    background: rgba(85, 85, 85, 0.75); }
.vex .btn, .vex .btn--secondary {
  font-size: 14px; }
.vex input[type="email"] {
  border-width: 2px;
  color: #f5f5f5; }

.popup__premio {
  display: none;
  margin: 3px 0; }

.popup__social ul {
  margin: 30px 0 0 0;
  padding: 0;
  list-style-type: none;
  text-align: center; }
  .popup__social ul li {
    display: inline-block; }
    .popup__social ul li img {
      height: 27px;
      width: auto;
      margin: 0 10px;
      display: inline-block; }
      .popup__social ul li img:hover {
        opacity: 0.75; }

.popup__form {
  margin-top: 15px; }
  .popup__form .mc-field-group p {
    text-transform: uppercase; }
  .popup__form .mc-email {
    margin: 7px 0;
    text-align: center; }
  .popup__form #mc-embedded-subscribe-2 {
    float: none;
    margin-top: 3px;
    padding: 4px 7px 3px 7px; }

.landing-premio {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/fondo_baia.png?v=96528765113355920791640876743);
  background-repeat: repeat;
  background-size: 100px auto;
  background-position: 0 0; }
  .landing-premio .vex.vex-theme-plain {
    padding: 0;
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    width: auto;
    height: auto;
    background: rgba(30, 30, 30, 0.96); }
  .landing-premio .vex.vex-theme-plain .vex-content {
    background: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .landing-premio .vex h1, .landing-premio .vex .h1 {
    text-transform: uppercase; }

.search-list-wrapper {
  position: fixed;
  top: 51px;
  left: 0;
  right: 0;
  padding: 40px 10% 15px 10%;
  z-index: 1;
  background: #fff; }
  @media screen and (min-width: 480px) {
    .search-list-wrapper {
      top: 100px; } }
  @media screen and (min-width: 768px) {
    .search-list-wrapper {
      top: 71px; } }

#search-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto; }
  @media screen and (min-width: 1080px) {
    #search-list {
      flex-wrap: nowrap; } }
  #search-list .btn.btn--list, #search-list .btn--list.btn--secondary {
    font-size: 0.73333em;
    font-weight: 400;
    border: 1px solid #e5e5e5;
    margin-bottom: -1px;
    margin-right: -1px;
    flex: 1 1 50%; }
    @media screen and (min-width: 480px) {
      #search-list .btn.btn--list, #search-list .btn--list.btn--secondary {
        font-size: 0.86667em;
        font-weight: 100; } }
    @media screen and (min-width: 480px) {
      #search-list .btn.btn--list, #search-list .btn--list.btn--secondary {
        flex: 1 1 30%; } }
    @media screen and (min-width: 768px) {
      #search-list .btn.btn--list, #search-list .btn--list.btn--secondary {
        flex: 1 1 17%; } }
    @media screen and (min-width: 769px) {
      #search-list .btn.btn--list, #search-list .btn--list.btn--secondary {
        flex: 1 1 17%; } }
    @media screen and (min-width: 1080px) {
      #search-list .btn.btn--list, #search-list .btn--list.btn--secondary {
        flex: 1 1 auto;
        margin-bottom: 0; } }
    #search-list .btn.btn--list svg, #search-list .btn--list.btn--secondary svg {
      width: 14px;
      height: auto;
      display: inline-block;
      fill: #999; }
    #search-list .btn.btn--list:hover, #search-list .btn--list.btn--secondary:hover, #search-list .btn.btn--list:focus, #search-list .btn--list.btn--secondary:focus, #search-list .btn.btn--list:active, #search-list .btn--list.btn--secondary:active {
      background: #f5f5f5;
      color: #424242;
      outline: none; }
    #search-list .btn.btn--list.btn--todos, #search-list .btn--list.btn--todos.btn--secondary {
      flex: 1 1 50%;
      text-align: center; }
      @media screen and (min-width: 480px) {
        #search-list .btn.btn--list.btn--todos, #search-list .btn--list.btn--todos.btn--secondary {
          flex: 0 0 auto; } }

.search-list-open {
  display: block;
  width: 100%;
  background: #424242;
  color: #fff;
  font-weight: 400;
  font-size: 0.8em;
  padding: 5px;
  text-transform: uppercase; }
  @media screen and (min-width: 480px) {
    .search-list-open {
      display: none; } }

.embajador {
  text-align: center;
  margin-bottom: 30px; }
  .embajador h3, .embajador .h3 {
    margin-top: 15px;
    text-transform: uppercase; }
  .embajador .article__excerpt {
    font-size: 1.05rem; }
    .embajador .article__excerpt img {
      height: 25px;
      width: auto; }

.embajador__inner {
  padding: 10px;
  border: 1px solid #eee; }
  .embajador__inner .article__excerpt {
    height: 250px;
    overflow: auto; }

@media screen and (min-width: 768px) {
  .ebook-page {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    width: 100vw;
    height: 100%;
    height: 100vh; }

  .ebook-page main {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; } }
.ebook {
  text-align: center;
  padding: 40px 20px; }
  @media screen and (min-width: 768px) {
    .ebook {
      padding: 40px;
      height: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: vertical;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }

.ebook-title {
  text-transform: uppercase; }
  .ebook-title span {
    border-bottom: 1px solid #424242; }

.ebook-img {
  flex: 1;
  position: relative; }
  @media screen and (min-width: 768px) {
    .ebook-img img {
      position: absolute;
      height: 100%;
      width: auto;
      left: 50%;
      -ms-transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); } }

.ebook-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999; }

.ebook-img-wide {
  display: none; }
  @media screen and (min-width: 768px) {
    .ebook-img-wide {
      display: block; } }

.ebook-img-tall {
  display: block;
  margin: 0 auto; }
  @media screen and (min-width: 768px) {
    .ebook-img-tall {
      display: none; } }

.ebook-text {
  margin: 0 auto 30px auto;
  max-width: 825px; }
  .ebook-text p {
    margin: 0;
    font-size: 16px; }

.ebook-img-smoothies {
  margin-bottom: 15px; }

.ebook-subscribe-smoothies > p {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  padding-top: 2px; }

.ebook-subscribe p {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  padding-top: 2px; }
  @media screen and (min-width: 768px) {
    .ebook-subscribe p {
      margin: 0 15px 0 0; } }
.ebook-subscribe form {
  margin: 0 auto; }
  @media screen and (min-width: 768px) {
    .ebook-subscribe form {
      margin: 0; } }

.ebook-back {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  text-transform: uppercase; }

.ebook-fx {
  background: #424242;
  color: #fff;
  position: fixed;
  padding: 14px 14px 14px 46px;
  bottom: 0;
  top: auto;
  right: -160px;
  height: 220px;
  width: 206px;
  display: flex;
  align-items: center;
  transition: right 0.25s ease-out 0.15s;
  z-index: 999; }
  @media screen and (min-width: 768px) {
    .ebook-fx {
      top: 50%; } }
  .ebook-fx p {
    margin: 0; }
  .ebook-fx:hover {
    right: 0; }

.ebook-fx__title {
  transform: rotate(90deg);
  transform-origin: 0 0;
  position: absolute;
  top: 13px;
  left: 35px;
  white-space: nowrap;
  font-weight: 400;
  text-transform: uppercase;
  color: #ccc; }
  .ebook-fx__title span {
    color: #fff;
    font-weight: bold; }

.ebook-fx__desc {
  line-height: 1em;
  font-size: 15px;
  font-weight: 400;
  text-align: center; }
  .ebook-fx__desc span {
    display: block;
    font-size: 40px;
    line-height: 1em;
    font-weight: bold; }

.addtocart {
  padding: 10px;
  border: 1px solid #ccc; }
  .addtocart .js-qty, .addtocart .ajaxcart__qty {
    margin: 0; }
  .addtocart .js-qty__adjust, .addtocart .ajaxcart__qty-adjust {
    border: none !important; }
  .addtocart .AddToCart {
    float: right; }

.front__bestseller,
.product__recomendados,
.front__instagram {
  margin: 40px auto;
  padding: 0; }
  .front__bestseller h3, .front__bestseller .h3,
  .product__recomendados h3,
  .product__recomendados .h3,
  .front__instagram h3,
  .front__instagram .h3 {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px; }

.front__instagram__title {
  text-align: center;
  margin-bottom: 40px; }
  .front__instagram__title img {
    display: inline-block;
    width: auto;
    height: 1.1rem;
    margin-right: 5px;
    vertical-align: middle; }
  .front__instagram__title h3, .front__instagram__title .h3 {
    display: inline-block;
    vertical-align: middle;
    margin: 0; }

.front__collections {
  margin: 40px 0; }
  @media screen and (max-width: 480px) {
    .front__collections {
      margin-top: 10px; } }
  .front__collections ul {
    margin: 0;
    padding: 0;
    overflow: hidden; }
    .front__collections ul li {
      width: 100%;
      margin: 0;
      list-style-type: none;
      text-align: center;
      font-weight: bold; }
      @media screen and (min-width: 769px) {
        .front__collections ul li {
          width: 20%;
          float: left; } }
      .front__collections ul li a {
        font-size: 1.5rem;
        padding: 42px 0;
        text-transform: uppercase;
        display: block; }
        .front__collections ul li a small {
          font-size: 0.75rem;
          line-height: 1;
          display: block; }

.front__collections--packs a {
  background: #f2f2f2; }
  .front__collections--packs a:hover {
    background: white; }

.front__collections--productos a {
  background: #d8d8d8; }
  .front__collections--productos a:hover {
    background: #e5e5e5; }

.front__collections--consultas a {
  background: #e0e0e0; }
  .front__collections--consultas a:hover {
    background: #ededed; }

.front__collections--creamers a {
  background: #f2f2f2; }
  .front__collections--creamers a:hover {
    background: white; }

.nogutter {
  padding: 0; }

@media screen and (max-width: 1330px) {
  .product__wrapper {
    width: 100%;
    left: 0; } }

.product-single__photos {
  margin: 0; }

.product-single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media screen and (min-width: 769px) {
    .product-single {
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row; } }

.product--nosobre .product__image {
  width: 100%; }
  @media screen and (min-width: 1080px) {
    .product--nosobre .product__image {
      width: 55%;
      margin-right: auto;
      margin-left: 0; }
      .product--nosobre .product__image img {
        margin: 0 auto 0 0; } }
.product--nosobre .product__info__wrapper {
  display: block; }
  @media screen and (min-width: 769px) {
    .product--nosobre .product__info__wrapper {
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center; } }
  @media screen and (min-width: 1080px) {
    .product--nosobre .product__info__wrapper {
      width: 40%;
      display: block; } }
.product--nosobre .product-description {
  margin-top: 15px;
  border: 1px solid #ccc;
  padding: 20px 10px; }
  @media screen and (min-width: 1080px) {
    .product--nosobre .product-description {
      max-height: 250px;
      overflow-y: scroll; } }
  .product--nosobre .product-description h1, .product--nosobre .product-description .h1 {
    font-size: 1.33333em; }
  .product--nosobre .product-description p:last-child {
    margin-bottom: 0; }
.product--nosobre .AddToCart {
  margin-top: 1.2rem; }

.product__image {
  margin-bottom: 40px; }
  @media screen and (min-width: 769px) {
    .product__image {
      width: 45%;
      margin-right: auto;
      margin-left: auto; } }
  @media screen and (min-width: 1080px) {
    .product__image {
      width: 32%;
      margin-bottom: 0; } }

.product__info__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media screen and (min-width: 769px) {
    .product__info__wrapper {
      width: 100%; } }
  @media screen and (min-width: 1080px) {
    .product__info__wrapper {
      width: 64%; } }
  @media screen and (min-width: 769px) {
    .product__info__wrapper {
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row; } }

.product__info {
  margin-bottom: 40px; }
  @media screen and (min-width: 769px) {
    .product__info {
      width: 48%;
      margin-bottom: 0; } }

.product__description__item {
  border: 1px solid #ccc;
  position: relative; }
  @media screen and (min-width: 769px) {
    .product__description__item {
      width: 48%;
      -webkit-box-ordinal-group: 0;
      -webkit-order: -1;
      -moz-order: -1;
      -ms-flex-order: -1;
      order: -1; } }
  .product__description__item .product-description {
    margin: 0;
    padding: 10px; }
    @media screen and (min-width: 769px) {
      .product__description__item .product-description {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow-y: scroll; } }

.product__grid--hover {
  position: relative; }
  .product__grid--hover .product__grid__ficha {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 15px;
    background: #424242;
    opacity: 0;
    transition: opacity 0.15s ease-out 0.25s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    color: #fff; }
  .product__grid--hover .product__grid__title {
    border: none; }
    .product__grid--hover .product__grid__title a {
      color: #fff;
      font-size: 1.66667em;
      padding: 0; }
    .product__grid--hover .product__grid__title:hover {
      background: transparent; }
  .product__grid--hover .AddToCart {
    color: #fff; }
  .product__grid--hover:hover .product__grid__ficha {
    opacity: 1; }

.product__grid--hover--comprar-acai .product__grid__ficha {
  background-color: #743494;
  color: #fff; }

.product__grid--hover--comprar-chia .product__grid__ficha {
  background-color: #c94b35; }

.product__grid--hover--comprar-matcha .product__grid__ficha {
  background-color: #88a83d; }

.product__grid--hover--comprar-maca .product__grid__ficha {
  background-color: #f2ae29; }

.product__grid--hover--comprar-espirulina .product__grid__ficha {
  background-color: #108e8d; }

.product__grid--hover--comprar-cacao .product__grid__ficha {
  background-color: #612318; }

.product__grid--hover--comprar-canamo .product__grid__ficha {
  background-color: #bfb351; }

.product__grid--hover--comprar-goji .product__grid__ficha {
  background-color: #e92749; }

.product__grid--hover--comprar-baobab .product__grid__ficha {
  background-color: #e36f38; }

.product__grid--hover--comprar-coco .product__grid__ficha {
  background-color: #83b4c7; }

.product__grid--hover--comprar-natural-beauty .product__grid__ficha {
  background-color: #F98C95; }

.product__grid--hover--comprar-curcuma-latte .product__grid__ficha {
  background-color: #F6BD2F; }

.product__grid--hover--comprar-natural-immunity .product__grid__ficha {
  background-color: #06539a; }

@media screen and (max-width: 480px) {
  .template-list-collections .main-content {
    margin-top: 51px; } }

.mensaje-promocional {
  background: #424242;
  background-size: 400px auto;
  padding: 5px;
  color: #fff;
  position: relative;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.86667em;
  position: relative;
  z-index: 99; }
  .mensaje-promocional a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .mensaje-promocional p {
    margin: 0; }

.christmas__item {
  padding: 50px;
  display: flex;
  flex-direction: column; }
  @media screen and (min-width: 768px) {
    .christmas__item {
      flex-direction: row; } }
  .christmas__item h2, .christmas__item .h2 {
    text-transform: uppercase;
    margin: 0; }
  .christmas__item ul {
    margin: 0;
    padding: 0; }
    .christmas__item ul li {
      list-style-type: none; }

.christmas__item--2 .christmas__img {
  order: 9; }
  @media screen and (min-width: 768px) {
    .christmas__item--2 .christmas__img {
      margin-left: 50px;
      margin-right: 0; } }
.christmas__item--2 .christmas__desc {
  text-align: left; }

.christmas__desc {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: right; }

.christmas__img {
  width: 100%;
  margin-bottom: 50px; }
  @media screen and (min-width: 768px) {
    .christmas__img {
      width: 55%;
      margin-right: 50px;
      margin-bottom: 0; } }
  .christmas__img img {
    width: 100%;
    display: block;
    object-fit: cover; }

.christmas__price {
  font-size: 20px;
  font-weight: bold;
  margin-top: auto; }

.christmas__small {
  text-transform: uppercase;
  font-weight: bold;
  color: #e92749; }

.anchorlist {
  padding: 15px 15px 15px 30px;
  border: 2px solid;
  margin: 0 0 30px 0;
  font-size: 11px; }

.consulta h1, .consulta .h1, .consulta h2, .consulta .h2 {
  text-transform: uppercase;
  line-height: 1.1; }

.consulta__comprar {
  margin-top: 30px; }

.consulta__img img {
  border-radius: 50%;
  overflow: hidden; }

.consulta__franja {
  height: 50px;
  margin-bottom: 30px; }

.consulta__animo {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 1.25rem; }

.consulta__incluye p {
  text-transform: uppercase;
  font-size: 0.8rem;
  text-align: center; }

@media screen and (min-width: 768px) {
  .consulta__conseguir {
    display: flex; }

  .consulta__conseguir__img {
    flex: 0 0 300px;
    margin-right: 15px;
    overflow: hidden; }
    .consulta__conseguir__img img {
      object-fit: cover;
      height: 100%;
      width: 100%; } }
.consulta__conseguir__txt p:last-child {
  margin: 0; }

@media screen and (max-width: 768px) {
  .consulta__incluye__item {
    height: 400px; } }
.consulta__incluye__item svg {
  max-width: 120px;
  height: auto;
  margin: 0 auto 15px auto;
  display: block; }

.consulta__description,
.consulta__conseguir__txt {
  font-size: 1.05rem; }

.consulta__description,
.consulta__conseguir__txt,
.consulta__incluye__item {
  line-height: 1.35; }

.consulta__animo p {
  line-height: 1.15;
  margin-bottom: 5px;
  max-width: 768px; }

.product__imgfix--consulta {
  background-image: url("//cdn.shopify.com/s/files/1/1246/6251/t/26/assets/consultas_2.jpg?v=9048418235767640251640876724"); }

.consulta__comprar {
  display: flex;
  align-items: center;
  justify-content: flex-end; }
  .consulta__comprar h2, .consulta__comprar .h2 {
    margin: 0 30px 0 0; }

.consulta__banner a {
  display: block;
  text-align: center;
  color: #424242;
  border: 3px solid #424242;
  padding: 25px;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase; }
  .consulta__banner a:hover {
    background-color: #424242;
    border-color: #424242;
    color: #fff; }

.mailingok .product__grid {
  height: 425px; }

.mailingok__text {
  text-align: center; }
  .mailingok__text ul {
    max-width: 650px;
    margin: 0 auto 30px auto;
    padding: 30px;
    border: 3px solid #1b1b1b;
    list-style-type: none; }
  .mailingok__text p, .mailingok__text li {
    font-size: 1.25rem; }
  .mailingok__text li {
    margin-bottom: 30px;
    line-height: 1.1; }
    .mailingok__text li:last-child {
      margin: 0; }
  .mailingok__text .h1 {
    font-size: 4rem; }
  .mailingok__text strong {
    text-transform: uppercase; }

.btn-wrap {
  white-space: pre-wrap !important; }

.form-frame {
  height: 700px;
  width: 100%;
  border: none; }
  @media screen and (min-width: 480px) {
    .form-frame {
      height: 500px; } }
  @media screen and (min-width: 768px) {
    .form-frame {
      height: 700px; } }
  @media screen and (min-width: 1330px) {
    .form-frame {
      height: 400px; } }

.logos {
  background-color: #eee;
  text-align: center;
  padding: 60px 15px 85px 15px;
  display: grid;
  grid-template-columns: 1fr 1fr; }
  @media screen and (min-width: 769px) {
    .logos {
      grid-template-columns: 1fr 1fr 1fr 1fr; } }
  @media screen and (min-width: 1330px) {
    .logos {
      display: block; }
      .logos .logo {
        display: inline-block; } }
  .logos img {
    height: 20px;
    margin: 5px 10px;
    width: auto;
    vertical-align: baseline; }
    @media screen and (min-width: 480px) {
      .logos img {
        height: 25px; } }
    @media screen and (min-width: 768px) {
      .logos img {
        height: 35px; } }
    @media screen and (min-width: 769px) {
      .logos img {
        height: 30px;
        margin: 15px 5px; } }
    @media screen and (min-width: 1330px) {
      .logos img {
        height: 35px;
        margin: 5px 15px; } }
  .logos span {
    display: block; }

.logo__title {
  grid-column: span 2;
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 25px;
  font-size: 0.9rem; }
  @media screen and (min-width: 769px) {
    .logo__title {
      grid-column: span 4; } }

.product-new .product-single {
  display: block;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  align-items: stretch; }
  @media screen and (min-width: 850px) {
    .product-new .product-single {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex; } }
.product-new #ProductPhoto {
  margin-bottom: 0; }
  .product-new #ProductPhoto .slick-dots {
    bottom: 7px; }
.product-new .product__image {
  width: 100%; }
  @media screen and (min-width: 850px) {
    .product-new .product__image {
      width: 66.66%;
      margin-bottom: 0;
      padding-right: 2rem; } }
.product-new .product-single__photos--sobre img {
  width: 100%;
  max-width: 100%; }
.product-new .product__info__wrapper {
  width: 100%; }
  @media screen and (min-width: 850px) {
    .product-new .product__info__wrapper {
      width: 33.33%; } }
  .product-new .product__info__wrapper .product__info {
    width: 100%;
    margin-bottom: 2rem; }
.product-new .product-description {
  position: relative; }
  @media screen and (min-width: 850px) {
    .product-new .product-description {
      position: absolute; } }
.product-new .product__info__inner {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
.product-new .product__description__item {
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-ordinal-group: 10000;
  -webkit-order: 9999;
  -moz-order: 9999;
  -ms-flex-order: 9999;
  order: 9999; }
.product-new .addtocart {
  padding: 0;
  border: none; }
.product-new .AddToCart {
  width: 100%;
  max-width: 100%;
  margin-top: 1rem; }
.product-new .selector-wrapper label {
  display: block; }

.mostrar_pc {
  display: inline-block; }

.mostrar_dispositivo {
  display: none; }

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

  .mostrar_dispositivo {
    display: inline-block; } }
.shogun-editor .loading {
  display: none !important; }

.footer-certification-logo-container {
  margin: 0 auto 16px; }

.footer-certification-logo-container img {
  max-width: none !important;
  height: 50px; }

@media screen and (max-width: 480px) {
  .footer-certification-logo-container {
    margin: 0 auto 12px; }

  .footer-enisa-logo {
    float: right; }

  .footer-bcorp-logo {
    float: left; } }
