@charset "UTF-8";

/*============================================================================
  Beocode Qrack extended Shopify Timber v1.4.0 (Copyright 2014 Shopify Inc., author Carson Shold @cshold)
  Copyright 2015 BeoCode DOO
  Author BeoCode
  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.
==============================================================================*/
/*============================================================================
  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
  #OOCSS Media Object
  #Images and iFrames
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Mobile Nav Bar
  #Home Main Slider
  #Home Top Banners
  #Featured Rows
  #Home Centered Full Width Blocks
  #Home Parallax
  #Home Carousel Collections
  #Home Bottom Banners with Icons
  #Home Mosaico Banners
  #Home Latest Blog Posts
  #Site Footer
  #Product Grid and List Views
  #Tooltips
  #Collections Page
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Blogs and Comments
  #Notes and Form Feedback
  #Cart Page
  #Demo Styles - for empty store state
  #Product Reviews
  #Customer Account Pages
  #Contact Page
  #Error Page
  #About us
  #FAQ Page
  #Elements

/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/* $colorBorder: lighten($colorBoxWrapper, 10%); */
/*================ Typography ================*/
/*============================================================================
  Get font-families from theme settings
==============================================================================*/
@import url('https://fonts.googleapis.com/css?family=Montserrat');

* {
  outline: none;
}

.replace {
  display: block;
  text-indent: -9000em;
  overflow: hidden;
}

/*============================================================================
  #Vertical align
==============================================================================*/
.slide-text,
.banner-text-wrap,
.parallax-text,
div.blog-post-image span,
.product-list-item .additional-text i,
.rating {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

/*============================================================================
  Dependency-free breakpoint mixin
// http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
==============================================================================*/
/*============================================================================
  #Normalize
==============================================================================*/
*,
input,
:before,
:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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 and a fixed gutter size
    - 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: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: -20px;
}

.grid-item {
  float: left;
  padding-left: 20px;
  padding-bottom: 20px;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*============================================================================
  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: 0px;
}

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

/* Halves */
.one-half,
.two-quarters,
.three-sixths,
.four-eighths,
.five-tenths,
.six-twelfths {
  width: 49.69%;
}

/* Thirds */
.one-third,
.two-sixths,
.four-twelfths {
  width: 33.333%;
}

.two-thirds,
.four-sixths,
.eight-twelfths {
  width: 66.666%;
}

/* Quarters */
.one-quarter,
.two-eighths,
.three-twelfths {
  width: 25%;
}

.three-quarters,
.six-eighths,
.nine-twelfths {
  width: 75%;
}

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

.two-fifths,
.four-tenths {
  width: 40%;
}

.three-fifths,
.six-tenths {
  width: 60%;
}

.four-fifths,
.eight-tenths {
  width: 80%;
}

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

.five-sixths,
.ten-twelfths {
  width: 83.333%;
}

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

.three-eighths {
  width: 37.5%;
}

.five-eighths {
  width: 62.5%;
}

.seven-eighths {
  width: 87.5%;
}

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

.three-tenths {
  width: 30%;
}

.seven-tenths {
  width: 70%;
}

.nine-tenths {
  width: 90%;
}

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

.five-twelfths {
  width: 41.666%;
}

.seven-twelfths {
  width: 58.333%;
}

.eleven-twelfths {
  width: 91.666%;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

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


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

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

.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,
  .small--two-quarters,
  .small--three-sixths,
  .small--four-eighths,
  .small--five-tenths,
  .small--six-twelfths {
    width: 49.69%;
  }

  /* Thirds */
  .small--one-third,
  .small--two-sixths,
  .small--four-twelfths {
    width: 33.333%;
  }

  .small--two-thirds,
  .small--four-sixths,
  .small--eight-twelfths {
    width: 66.666%;
  }

  /* Quarters */
  .small--one-quarter,
  .small--two-eighths,
  .small--three-twelfths {
    width: 25%;
  }

  .small--three-quarters,
  .small--six-eighths,
  .small--nine-twelfths {
    width: 75%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .small--seven-twelfths {
    width: 58.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--two-quarters:nth-child(2n+1),
  .grid-uniform .small--three-sixths:nth-child(2n+1),
  .grid-uniform .small--four-eighths:nth-child(2n+1),
  .grid-uniform .small--five-tenths:nth-child(2n+1),
  .grid-uniform .small--six-twelfths:nth-child(2n+1),
  .grid-uniform .small--one-third:nth-child(3n+1),
  .grid-uniform .small--two-sixths:nth-child(3n+1),
  .grid-uniform .small--four-twelfths:nth-child(3n+1),
  .grid-uniform .small--one-quarter:nth-child(4n+1),
  .grid-uniform .small--two-eighths:nth-child(4n+1),
  .grid-uniform .small--three-twelfths:nth-child(4n+1),
  .grid-uniform .small--one-fifth:nth-child(5n+1),
  .grid-uniform .small--two-tenths:nth-child(5n+1),
  .grid-uniform .small--one-sixth:nth-child(6n+1),
  .grid-uniform .small--two-twelfths: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,
  .medium--two-quarters,
  .medium--three-sixths,
  .medium--four-eighths,
  .medium--five-tenths,
  .medium--six-twelfths {
    width: 49.69%;
  }

  /* Thirds */
  .medium--one-third,
  .medium--two-sixths,
  .medium--four-twelfths {
    width: 33.333%;
  }

  .medium--two-thirds,
  .medium--four-sixths,
  .medium--eight-twelfths {
    width: 66.666%;
  }

  /* Quarters */
  .medium--one-quarter,
  .medium--two-eighths,
  .medium--three-twelfths {
    width: 25%;
  }

  .medium--three-quarters,
  .medium--six-eighths,
  .medium--nine-twelfths {
    width: 75%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium--seven-twelfths {
    width: 58.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--two-quarters:nth-child(2n+1),
  .grid-uniform .medium--three-sixths:nth-child(2n+1),
  .grid-uniform .medium--four-eighths:nth-child(2n+1),
  .grid-uniform .medium--five-tenths:nth-child(2n+1),
  .grid-uniform .medium--six-twelfths:nth-child(2n+1),
  .grid-uniform .medium--one-third:nth-child(3n+1),
  .grid-uniform .medium--two-sixths:nth-child(3n+1),
  .grid-uniform .medium--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium--one-quarter:nth-child(4n+1),
  .grid-uniform .medium--two-eighths:nth-child(4n+1),
  .grid-uniform .medium--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium--one-fifth:nth-child(5n+1),
  .grid-uniform .medium--two-tenths:nth-child(5n+1),
  .grid-uniform .medium--one-sixth:nth-child(6n+1),
  .grid-uniform .medium--two-twelfths: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,
  .medium-down--two-quarters,
  .medium-down--three-sixths,
  .medium-down--four-eighths,
  .medium-down--five-tenths,
  .medium-down--six-twelfths {
    width: 49.69%;
  }

  /* Thirds */
  .medium-down--one-third,
  .medium-down--two-sixths,
  .medium-down--four-twelfths {
    width: 33.333%;
  }

  .medium-down--two-thirds,
  .medium-down--four-sixths,
  .medium-down--eight-twelfths {
    width: 66.666%;
  }

  /* Quarters */
  .medium-down--one-quarter,
  .medium-down--two-eighths,
  .medium-down--three-twelfths {
    width: 25%;
  }

  .medium-down--three-quarters,
  .medium-down--six-eighths,
  .medium-down--nine-twelfths {
    width: 75%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-down--seven-twelfths {
    width: 58.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--two-quarters:nth-child(2n+1),
  .grid-uniform .medium-down--three-sixths:nth-child(2n+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--six-twelfths:nth-child(2n+1),
  .grid-uniform .medium-down--one-third:nth-child(3n+1),
  .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
  .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
  .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
  .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
  .grid-uniform .medium-down--two-tenths:nth-child(5n+1),
  .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
  .grid-uniform .medium-down--two-twelfths: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,
  .large--two-quarters,
  .large--three-sixths,
  .large--four-eighths,
  .large--five-tenths,
  .large--six-twelfths {
    width: 49.69%;
  }

  /* Thirds */
  .large--one-third,
  .large--two-sixths,
  .large--four-twelfths {
    width: 33.333%;
  }

  .large--two-thirds,
  .large--four-sixths,
  .large--eight-twelfths {
    width: 66.666%;
  }

  /* Quarters */
  .large--one-quarter,
  .large--two-eighths,
  .large--three-twelfths {
    width: 25%;
  }

  .large--three-quarters,
  .large--six-eighths,
  .large--nine-twelfths {
    width: 75%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large--seven-twelfths {
    width: 58.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--two-quarters:nth-child(2n+1),
  .grid-uniform .large--three-sixths:nth-child(2n+1),
  .grid-uniform .large--four-eighths:nth-child(2n+1),
  .grid-uniform .large--five-tenths:nth-child(2n+1),
  .grid-uniform .large--six-twelfths:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--two-tenths:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-twelfths: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;
  }
}

/*============================================================================
  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,
.push--two-quarters,
.push--three-sixths,
.push--four-eighths,
.push--five-tenths,
.push--six-twelfths {
  left: 50%;
}

/* Thirds */
.push--one-third,
.push--two-sixths,
.push--four-twelfths {
  left: 33.333%;
}

.push--two-thirds,
.push--four-sixths,
.push--eight-twelfths {
  left: 66.666%;
}

/* Quarters */
.push--one-quarter,
.push--two-eighths,
.push--three-twelfths {
  left: 25%;
}

.push--three-quarters,
.push--six-eighths,
.push--nine-twelfths {
  left: 75%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.push--seven-twelfths {
  left: 58.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,
  .push--medium--two-quarters,
  .push--medium--three-sixths,
  .push--medium--four-eighths,
  .push--medium--five-tenths,
  .push--medium--six-twelfths {
    left: 50%;
  }

  /* Thirds */
  .push--medium--one-third,
  .push--medium--two-sixths,
  .push--medium--four-twelfths {
    left: 33.333%;
  }

  .push--medium--two-thirds,
  .push--medium--four-sixths,
  .push--medium--eight-twelfths {
    left: 66.666%;
  }

  /* Quarters */
  .push--medium--one-quarter,
  .push--medium--two-eighths,
  .push--medium--three-twelfths {
    left: 25%;
  }

  .push--medium--three-quarters,
  .push--medium--six-eighths,
  .push--medium--nine-twelfths {
    left: 75%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--medium--seven-twelfths {
    left: 58.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,
  .push--medium-down--two-quarters,
  .push--medium-down--three-sixths,
  .push--medium-down--four-eighths,
  .push--medium-down--five-tenths,
  .push--medium-down--six-twelfths {
    left: 50%;
  }

  /* Thirds */
  .push--medium-down--one-third,
  .push--medium-down--two-sixths,
  .push--medium-down--four-twelfths {
    left: 33.333%;
  }

  .push--medium-down--two-thirds,
  .push--medium-down--four-sixths,
  .push--medium-down--eight-twelfths {
    left: 66.666%;
  }

  /* Quarters */
  .push--medium-down--one-quarter,
  .push--medium-down--two-eighths,
  .push--medium-down--three-twelfths {
    left: 25%;
  }

  .push--medium-down--three-quarters,
  .push--medium-down--six-eighths,
  .push--medium-down--nine-twelfths {
    left: 75%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--medium-down--seven-twelfths {
    left: 58.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,
  .push--large--two-quarters,
  .push--large--three-sixths,
  .push--large--four-eighths,
  .push--large--five-tenths,
  .push--large--six-twelfths {
    left: 50%;
  }

  /* Thirds */
  .push--large--one-third,
  .push--large--two-sixths,
  .push--large--four-twelfths {
    left: 33.333%;
  }

  .push--large--two-thirds,
  .push--large--four-sixths,
  .push--large--eight-twelfths {
    left: 66.666%;
  }

  /* Quarters */
  .push--large--one-quarter,
  .push--large--two-eighths,
  .push--large--three-twelfths {
    left: 25%;
  }

  .push--large--three-quarters,
  .push--large--six-eighths,
  .push--large--nine-twelfths {
    left: 75%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*============================================================================
  #Basic Styles
==============================================================================*/
html,
body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.wrapper {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
}

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

#main-wrapper {
  background: #FFFFFF;
}

#main-wrapper.boxed {
  margin: 0 auto;
  width: 1200px;
}

.template-index-boxed .slider-wrapper {
  margin: 0 auto;
  box-shadow: none;
  max-width: 1200px;
  overflow: hidden;
  background: #F2F2F2;
  padding: 15px 0;
}

.main-content {
  display: block;
  padding-top: 70px;
}

.main-content h1 {
  font-family: "Montserrat";
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.grid-border>.grid-item {
  padding-top: 30px;
}

.horizontal-row{
  border: 1px solid #254f65;
}

.grid-relative{
  position: relative !important;
}

@media screen and (min-width: 769px) {
  .grid-border--right {
    border-right: 1px solid #d9d9d9;
  }

  .grid-border--left {
    border-left: 1px solid #d9d9d9;
  }
}

.no-padding-all{
  padding: 0px;
}

.p-l-0{
  padding-left: 0px !important;
}
.p-r-0{
  padding-right: 0px !important;
}
.p-b-0{
  padding-bottom: 0px !important;
}
.p-t-0{
  padding-top: 0px !important;
}

.align-v-middle{
  vertical-align: middle;
}

.table-category-adjust {
  float: left;
  position: relative;
  top: 8px;
  margin-left: 20px;
}

.top-border-filters {
  border-top: 1px solid #d9d9d9;
  padding-top: 25px;
}

.remove-borders{
  border: none !important;
}

/*============================================================================
  #Helper Classes
==============================================================================*/
.left {
  float: left;
}

.right {
  float: right;
}

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

.hidden {
  display: none;
}

.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;
  }
}

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 15px;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
  color: #585858;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

h1,
.h1,
#shopify-product-reviews .spr-header-title,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  display: block;
  margin: 0 0 0.5em;
  line-height: 1.4;
 font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  color: #585858;
}

h1 a,
.h1 a,
#shopify-product-reviews .spr-header-title 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;
}

/*================ Pixel to EM conversion tool - http://pxtoem.com/ ================*/
h1,
.h1,
#shopify-product-reviews .spr-header-title {
  font-size: 1.733em;
  margin-bottom: 30px;
}


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


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


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


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


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

.main-content h1,
.main-content .h1,
.main-content #shopify-product-reviews .spr-header-title,
#shopify-product-reviews .main-content .spr-header-title,
.main-content h2,
.main-content .h2,
.main-content h3,
.main-content .h3,
.main-content h4,
.main-content .h4,
.main-content h5,
.main-content .h5 {
  color: #254f65;
}

.sidebar {
  padding-right: 30px;
  /* margin-top: 10px; */
}

.sidebar h2,
.sidebar .h2,
.sidebar h3,
.sidebar .h3,
.sidebar h4,
.sidebar .h4,
.sidebar h5,
.sidebar .h5 {
  margin-top: 4px;
}

.sidebar-right {
  padding-left: 30px;
}

p {
  margin: 0 0 15px 0;
}

p img {
  margin: 0;
}

em {
  font-style: italic;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.5em;
}

/*================ Blockquotes ================*/
blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 30px;
  padding: 15px 30px;
  border-left: 1px solid #d9d9d9;
}

blockquote p {
  margin-bottom: 0;
}

blockquote p+cite {
  margin-top: 15px;
}

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: 0.5em;
  margin: 0 0 1em;
}

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid #d9d9d9;
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0;
}

hr.hr--small {
  margin: 15px 0;
}

hr.hr--clear {
  border-top-color: transparent;
}

footer hr {
  /*  border-top-color: 
	darken($colorFooterBg, 10%); */
  /* if you are using dark footer background use this instead */
  border-top-color: #fdfdfd;
}

@media screen and (min-width: 769px) {
  hr.hr--offset-left {
    margin-left: -30px;
  }
}

/*================ Section Headers ================*/
.section-header {
  margin: 30px 0;
  margin: 10px 0;
  padding: 30px 0;
  border-bottom: 1px solid #d9d9d9;
  text-align: center;
  position: relative;
}

.section-header .h1,
.section-header h1,
.section-header .h1,
.section-header #shopify-product-reviews .spr-header-title,
#shopify-product-reviews .section-header .spr-header-title {
  display: inline-block;
  border-bottom: 1px solid #373738;
  margin: 0;
  color: #585858;
}

.product-detail .product-name {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -1.6px;
}
.product-detail h1.product-name {
  color: #303030;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: unset;
  font-size: 18px;
  line-height: 25px;
}
.descricaoProduto p {
  color: #191919;
  font-size: 12px;
  font-weight: lighter;
  line-height: 18px;
}
.product-detail .productOldPrice {
  display: block;
  margin-top: 20px;
  font-style: normal;
  color: #303030;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 23px;
  text-decoration: line-through;
  text-transform: uppercase;
}

.product-detail .productPrice {
  display: block;
  font-style: normal;
  text-decoration: none;
  color: #254f65;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  text-transform: uppercase;
}

.product-detail .productPrice big {
  font-size: 39px;
  letter-spacing: -2px;
}

.product-detail .productPrice i {
  font-style: normal;
}

.product-detail .product-meta,
.product-detail .product-meta a {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.96px;
}

.product-detail .abstract {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
}

.product-detail .author-box h5 {
  color: #333333;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -0.8px;
}

.product-detail .author-box .author-description {
  color: #666666;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
}

.product-detail .author-box .author-image {
  display: inline-block;
  max-width: 130px;
  margin-bottom: 10px;
  border-radius: 100%;
}

.product-detail .author-box .talk-to-the-author {
  display: inline-block;
  color: #66cccc;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -0.64px;
}

.product-detail .product-authors {
  margin-bottom: 30px;
}

.product-tabs {
  margin-bottom: 30px;
}

.product-tabs li {
  display: inline-block;
  margin-right: 30px;
}

.product-tabs li a {
  border-bottom: 2px solid #062a4a;
  padding-bottom: 5px;
  font-family: 'Montserrat';
  font-weight: 900;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  color: #062a4a;
}

#product-attributes {
  display: none;
}

#product-attributes dl dt {
  float: left;
  margin-right: 10px;
}

#product-description p,
#product-attributes p {
  font-family: 'Montserrat';
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.72px;
  color: #191919;
}

.change-layout-product-icons{
  position: relative;
  top: 8px;
}

.authors-header {
  margin-top: 20px;
  margin-bottom: 10px;
}

.autores-banner img {
  width: 100%;
}

.authors-header-title {
  color: #254f65;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0;
  height: 39px;
  top: 3px;
  position: relative;
}

.section-header h3,
.section-header .h3 {
  margin-bottom: 30px;
  border: none;
  color: #585858;
}

.section-header--title {
  margin-bottom: 0;
}

.wave-title {
  color: #254f65;
  font-family: Montserrat;
  font-size: 30px;
  font-weight: 700;
  line-height: 28px;
  margin: 60px 0 12px 0;
  border-bottom: 1px solid #000;
}

.wave-title-warning {
  letter-spacing: -0.31px;
  color: #ff9016;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 400;
  line-height: 28px;
}

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

  .section-header--left {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
  }

  .section-header--left h1,
  .section-header--left .h1,
  .section-header--left #shopify-product-reviews .spr-header-title,
  #shopify-product-reviews .section-header--left .spr-header-title,
  .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: 30px;
  }
}

.section-header--right .form-horizontal {
  display: inline-block;
  vertical-align: middle;
  font-size: 90%;
}

.section-header--right .form-horizontal label {
  font-size: 90%;
}

@media screen and (min-width: 481px) {

  .section-header--right label+select,
  .section-header--right .collection-view {
    margin-left: 15px;
  }
}

.form-horizontal select,
.collection-view {
  background-color: white;
}

.medium--show {
  display: none;
}

/*================ Hide on smaller screens ================*/
@media screen and (max-width: 768px) {
  .medium--hide {
    display: none;
  }
}

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

@media screen and (max-width: 980px) {
  .xlarge--hide {
    display: none;
  }
}

/*================ Show on smaller screens ================*/
@media screen and (max-width: 768px) {
  .medium--show {
    display: block;
  }
}

.collection-view {
  display: none;
  background: transparent;
  vertical-align: middle;
  /*================ We use SVG icons, so simply hide this in oldIE ================*/
  /*================ Only show on larger screens ================*/
}

.collection-view i {
  font-size: 25px;
  color: #989898;
}

.collection-view i:hover {
  font-size: 25px;
  color: #727272;
}

.lt-ie9 .collection-view {
  display: none;
}

@media screen and (min-width: 769px) {
  .collection-view {
    display: inline-block;
  }
}

.collection-view a {
  display: block;
  float: left;
  opacity: 0.7;
  cursor: pointer;
  -webkit-transition: opacity 0.15s ease-out;
  -moz-transition: opacity 0.15s ease-out;
  -ms-transition: opacity 0.15s ease-out;
  -o-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

.collection-view a+a {
  margin-left: 10px;
}

.collection-view a:hover {
  opacity: 0.9;
  -webkit-transition: opacity 0.05s ease-in;
  -moz-transition: opacity 0.05s ease-in;
  -ms-transition: opacity 0.05s ease-in;
  -o-transition: opacity 0.05s ease-in;
  transition: opacity 0.05s ease-in;
}

.collection-view a.collection-view--active {
  opacity: 1;
  cursor: default;
}

.collection-view img {
  display: block;
  opacity: inherit;
}

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 15px;
}

.rte h1,
.rte .h1,
.rte #shopify-product-reviews .spr-header-title,
#shopify-product-reviews .rte .spr-header-title,
.rte h2,
.rte .h2,
.rte h3,
.rte .h3,
.rte h4,
.rte .h4,
.rte h5,
.rte .h5,
.rte h6,
.rte .h6 {
  margin-top: 0.5em;
}

.rte h1:first-child,
.rte .h1:first-child,
.rte #shopify-product-reviews .spr-header-title:first-child,
#shopify-product-reviews .rte .spr-header-title: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>div {
  margin-bottom: 15px;
}

.rte ul,
.rte ol {
  margin-left: 35px;
}


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

/*============================================================================
  #Links and Buttons
==============================================================================*/
a {
  color: #373738;
  text-decoration: none;
  background: transparent;
}

a:hover,
a:focus {
  color: #5d5d5f;
}

button {
  overflow: visible;
}

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

.btn,
.btn-secondary,
input.btn-secondary,
input[type="submit"],
.header-cart-btn,
#shopify-product-reviews .spr-summary-actions-newreview {
  display: inline-block;
  padding: 12px 14px 9px;
  margin: 0;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -ms-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  /*================ Set primary button colors - can override later ================*/
  /* background-color: #373738; */
  color: #ffffff;
}

.btn.btn--small,
.btn--small.btn-secondary,
input.btn--small[type="submit"],
.btn--small.header-cart-btn,
#shopify-product-reviews .btn--small.spr-summary-actions-newreview {
  padding: 8px 14px;
  font-size: 12;
}

.btn.btn--full,
.btn--full.btn-secondary,
input.btn--full[type="submit"],
.btn--full.header-cart-btn,
#shopify-product-reviews .btn--full.spr-summary-actions-newreview {
  width: 100%;
}

.btn[disabled],
.btn-secondary[disabled],
input[disabled][type="submit"],
.header-cart-btn[disabled],
#shopify-product-reviews .spr-summary-actions-newreview[disabled],
.btn.disabled,
.disabled.btn-secondary,
input.disabled[type="submit"],
.disabled.header-cart-btn,
#shopify-product-reviews .disabled.spr-summary-actions-newreview {
  cursor: default;
  color: #b6b6b6;
  background-color: #f6f6f6;
}

.btn-secondary,
input.btn-secondary {
  background-color: #a3a0a0;
  color: #ffffff;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:visited,
input.btn-secondary:hover,
input.btn-secondary:active,
input.btn-secondary:visited {
  background-color: #969393;
  color: white;
}

.white-btn {
  background: transparent;
  border: 1px solid #a3a0a0;
  color: #a3a0a0;
}

.white-btn:hover,
.white-btn:active,
.white-btn:focus {
  background: #969393;
  border: 1px solid #969393;
  color: white;
}

.btn-secondary i {
  margin-right: 5px;
}

span.btn-secondary {
  cursor: auto;
}

/*================ 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 0em;
  padding: 0;
}

ul {
  list-style: none outside;
}

ol {
  list-style: decimal;
}

ol,
ul.square,
ul.disc,
.rte ul {
  margin-left: 20px;
}

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


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

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

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

/* li { margin-bottom: 0.25em; } */
.inline-list li {
  display: inline-block;
  margin-bottom: 0;
}

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

table.full {
  width: 100%;
  margin-bottom: 15px;
}

table.full thead {
  background-color: white;
}

table.full thead tr th {
  text-transform: uppercase;
  font-size: 80%;
}

table.full .note {
  margin-top: 5px;
  background-color: white;
}

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

/*============================================================================
  #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: 30px;
}

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

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

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

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

img.auto,
.grid-item img,
.grid-item 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: 30px;
}

button,
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input,
textarea,
select,
fieldset {
  border-radius: 2px;
  max-width: 100%;
}

input.input-full,
textarea.input-full,
select.input-full,
fieldset.input-full {
  width: 100%;
}

input,
select,
textarea {
  font-size: 1em;
  padding: 8px 10px;
  line-height: 1.42;
}

fieldset {
  border: 1px solid #d9d9d9;
  padding: 15px 0;
}

legend {
  border: 0;
  padding: 0;
}

optgroup {
  font-weight: bold;
}

input {
  display: inline-block;
  width: auto;
}

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

/*================ Input width and border ================*/
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
textarea,
select {
  border: 1px solid #bdcad0;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 0 20px;
  background-color: white;
}

input[type="text"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="file"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #bfbfbf;
}

input[type="text"][disabled],
input[type="text"].disabled,
input[type="search"][disabled],
input[type="search"].disabled,
input[type="password"][disabled],
input[type="password"].disabled,
input[type="email"][disabled],
input[type="email"].disabled,
input[type="file"][disabled],
input[type="file"].disabled,
input[type="number"][disabled],
input[type="number"].disabled,
input[type="tel"][disabled],
input[type="tel"].disabled,
textarea[disabled],
textarea.disabled,
select[disabled],
select.disabled {
  cursor: default;
  background-color: #f6f6f6;
  border-color: #b6b6b6;
}

textarea {
  min-height: 100px;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin: 0;
  padding: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  /* background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iNy43cHgiIGhlaWdodD0iNC4zcHgiIHZpZXdCb3g9IjAgMCA3LjcgNC4zIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA3LjcgNC4zIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiM5OTk5OTkiIGQ9Ik03LjEsMC4xQzYuNywwLjUsMy45LDMuMiwzLjksMy4yUzEsMC41LDAuNiwwLjFTMCwwLjcsMCwwLjdsMy45LDMuNmwzLjgtMy42QzcuNywwLjcsNy41LTAuMyw3LjEsMC4xeiIvPg0KPC9zdmc+DQo="); */
  background-image: url("../images/select-arrow.png");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-position-x: 95%;
  background-position-y: 50%;
  background-color: white;
  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;
}

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

/*================ Form labels ================*/
label,
legend {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

label.inline,
legend.inline {
  display: inline;
}

.form-horizontal label.hidden-label,
label.hidden-label,
.form-horizontal legend.hidden-label,
legend.hidden-label {
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.ie9 .form-horizontal label.hidden-label,
.lt-ie9 .form-horizontal label.hidden-label,
.ie9 label.hidden-label,
.lt-ie9 label.hidden-label,
.ie9 .form-horizontal legend.hidden-label,
.lt-ie9 .form-horizontal legend.hidden-label,
.ie9 legend.hidden-label,
.lt-ie9 legend.hidden-label {
  height: auto;
  margin-bottom: 2px;
  overflow: visible;
}

/*================ We don't want the same label treatment for checkboxes/radios ================*/
input[type="checkbox"]+label,
input[type="radio"]+label {
  font-weight: normal;
}

label[for] {
  cursor: pointer;
}

.label-hint {
  color: #999;
}

/*================ Horizontal Form ================*/
form.form-horizontal,
.form-horizontal {
  margin-bottom: 0;
}

form.form-horizontal input[type="text"],
form.form-horizontal input[type="search"],
form.form-horizontal input[type="password"],
form.form-horizontal input[type="email"],
form.form-horizontal input[type="file"],
form.form-horizontal input[type="number"],
form.form-horizontal input[type="tel"],
form.form-horizontal textarea,
form.form-horizontal select,
form.form-horizontal label,
.form-horizontal input[type="text"],
.form-horizontal input[type="search"],
.form-horizontal input[type="password"],
.form-horizontal input[type="email"],
.form-horizontal input[type="file"],
.form-horizontal input[type="number"],
.form-horizontal input[type="tel"],
.form-horizontal textarea,
.form-horizontal select,
.form-horizontal label {
  display: inline-block;
  margin-bottom: 0;
  width: auto;
}

/*================ Error styles ================*/
input[type="text"].error,
input[type="search"].error,
input[type="password"].error,
input[type="email"].error,
input[type="file"].error,
input[type="number"].error,
input[type="tel"].error,
textarea.error {
  border-color: #dc0000;
  background-color: #fff6f6;
  color: #dc0000;
}

label.error {
  color: #dc0000;
}

/*================ 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-group-btn:first-child>input[type="submit"],
.input-group .input-group-btn:first-child>.header-cart-btn,
.input-group #shopify-product-reviews .input-group-btn:first-child>.spr-summary-actions-newreview,
#shopify-product-reviews .input-group .input-group-btn:first-child>.spr-summary-actions-newreview,
.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,
.input-group input[type="hidden"]:first-child+.input-group-btn>input[type="submit"],
.input-group input[type="hidden"]:first-child+.input-group-btn>.header-cart-btn,
.input-group #shopify-product-reviews input[type="hidden"]:first-child+.input-group-btn>.spr-summary-actions-newreview,
#shopify-product-reviews .input-group input[type="hidden"]:first-child+.input-group-btn>.spr-summary-actions-newreview {
  border-radius: 2px 0 0 2px;
  border-right: none;
}

.input-group .input-group-field:last-child,
.input-group .input-group-btn:last-child>.btn,
.input-group .input-group-btn:last-child>.btn-secondary,
.input-group .input-group-btn:last-child>input[type="submit"],
.input-group .input-group-btn:last-child>.header-cart-btn,
.input-group #shopify-product-reviews .input-group-btn:last-child>.spr-summary-actions-newreview,
#shopify-product-reviews .input-group .input-group-btn:last-child>.spr-summary-actions-newreview {
  border-radius: 0 2px 2px 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[type="submit"],
.input-group .header-cart-btn,
.input-group #shopify-product-reviews .spr-summary-actions-newreview,
#shopify-product-reviews .input-group .spr-summary-actions-newreview,
.input-group .input-group-field {
  height: 42px;
}

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

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

.form-spacer {
  margin: 0 15px;
}

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

.supports-fontface .icon-fallback-text .icon {
  display: inline-block;
  margin-top: 5px;
  color: #585858;
}

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.supports-fontface .icon-fallback-text .fallback-text {
  clip: rect(0 0 0 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
}

.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;
}

/*================ Button icons ================*/
.payment-icons {
  margin-bottom: 30px;
  width: 226px;
}

.payment-icons li {
  float: left;
  margin-right: 9px;
}

.developed-by {
  clear: both;
  float: right;
  width: 280px;
}

.developed-by li {
  float: left;
  margin-right: 30px;
}

.social-icons li {
  margin: 0 10px 10px;
  vertical-align: middle;
}

.social-icons li {
  margin: 0 10px 10px;
  vertical-align: middle;
}

.indique-para-seus-amigos {
  float: left;
  line-height: 28px;
  margin-right: 10px;
}

.second-style-social-networks, .social-networks {
  display: inline-block;
}

.second-style-social-networks .sm-icons li .fa {
  font-size: 14px;
}

.social-template-style{
  background: #fff;
  border-radius: 50%;
  height: 41px;
  width: 41px;
  padding: 10px;
  color: #254f65;
  font-size: 24px;
}

.second-style-social-networks .social-template-style{
  background: #3d3d3d;
  border-radius: 50%;
  height: 28px;
  width: 28px;
  padding: 14px;
  color: #fff;
}

ul.sm-icons li {
  float: left;
  margin: 4px;
}

.second-style-social-networks i.fa::before {
  position: relative;
  bottom: 7px;
  right: 6px;
}

.second-style-social-networks .social-networks li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}


@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: #999999;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -ms-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.social-icons li a:hover {
  color: #737373;
  -webkit-transition: color 0.05s ease-in;
  -moz-transition: color 0.05s ease-in;
  -ms-transition: color 0.05s ease-in;
  -o-transition: color 0.05s ease-in;
  transition: color 0.05s ease-in;
}

/*================ Social share buttons ================*/
.social-sharing {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /*================ Large Buttons ================*/
}

.social-sharing a {
  display: inline-block;
  color: #fff;
  border-radius: 2px;
  margin: 0 10px 10px 0;
  height: 22px;
  line-height: 22px;
  text-decoration: none;
  font-weight: normal;
}

.social-sharing a:hover {
  color: #fff;
}

.social-sharing span {
  display: inline-block;
  vertical-align: top;
  height: 22px;
  line-height: 22px;
  font-size: 12px;
}

.social-sharing .icon {
  padding: 0 5px 0 10px;
}

.social-sharing .icon:before {
  line-height: 22px;
}

.social-sharing.is-large a {
  height: 44px;
  line-height: 44px;
}

.social-sharing.is-large a span {
  height: 44px;
  line-height: 44px;
  font-size: 18px;
}

.social-sharing.is-large a .icon {
  padding: 0 10px 0 18px;
}

.social-sharing.is-large a .icon:before {
  line-height: 44px;
}

.share-title {
  font-weight: 900;
  font-size: 12px;
  padding-right: 10px;
}

.is-large .share-title {
  padding-right: 16px;
}

.share-facebook {
  background-color: #3b5998;
}

.share-facebook:hover {
  background-color: #2d4373;
}

.share-twitter {
  background-color: #00aced;
}

.share-twitter:hover {
  background-color: #0087ba;
}

.share-pinterest {
  background-color: #cb2027;
}

.share-pinterest:hover {
  background-color: #9f191f;
}

.share-fancy {
  background-color: #4999dc;
}

.share-fancy:hover {
  background-color: #2780cb;
}

.share-google {
  background-color: #dd4b39;
}

.share-google:hover {
  background-color: #c23321;
}

.share-twitter,
.share-facebook,
.share-pinterest,
.share-fancy,
.share-google {
  background-color: #373738;
  color: #ffffff;
}

.share-count {
  position: relative;
  background-color: #fff;
  padding: 0 8px;
  margin-right: -2px;
  font-size: 14px;
  line-height: 20px;
  color: #333;
  border-radius: 0 2px 2px 0;
  border: 1px solid #ececec;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}

.share-count.is-loaded {
  opacity: 1;
}

.share-count:before,
.share-count:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid;
}

.share-count:before {
  left: -6px;
  border-right-color: #ececec;
}

.share-count:after {
  left: -5px;
  border-right-color: #fff;
}

a:hover .share-count {
  background-color: whitesmoke;
}

a:hover .share-count:after {
  border-right-color: whitesmoke;
}

.is-large .share-count {
  font-size: 18px;
  padding: 0 14px;
}

/*================ Clean Buttons ================*/
.social-sharing.is-clean a {
  background-color: #fff;
  border: 1px solid #ececec;
  color: #333;
  height: 30px;
  line-height: 30px;
}

.social-sharing.is-clean a span {
  height: 30px;
  line-height: 30px;
  font-size: 13px;
}

.social-sharing.is-clean a:hover {
  background-color: #f9f9f9;
}

.social-sharing.is-clean a:hover .share-count {
  background-color: #fff;
}

.social-sharing.is-clean a:hover .share-count:after {
  border-right-color: #fff;
}

.social-sharing.is-clean a .share-title {
  font-weight: normal;
}

.social-sharing.is-clean .share-count {
  top: -1px;
}

.social-sharing.is-clean .icon-facebook {
  color: #3b5998;
}

.social-sharing.is-clean .icon-twitter {
  color: #00aced;
}

.social-sharing.is-clean .icon-pinterest {
  color: #cb2027;
}

.social-sharing.is-clean .icon-fancy {
  color: #4999dc;
}

.social-sharing.is-clean .icon-google {
  color: #dd4b39;
}

/*============================================================================
  #Pagination
==============================================================================*/
.pagination-container {
  display: block;
  width: 100%;
  /* margin-bottom: 50px; */
}

.pagination-container .section-header--left {
  display: table;
  padding-top: 5px;
  font-size: 90%;
  color: #999999;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

/*================ Custom Pagination ================*/
.pagination-custom {
  display: inline-block;
  width: 100%;
  margin-top: 7px;
  text-align: right;
}

.pagination-custom>li {
  display: inline-block;
  margin: 0 10px;
}

.pagination-custom>li>a,
.pagination-custom>li>span {
  width: 16px;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  text-align: center;
  color: #322e2e;
  font-size: 16px;
  font-weight: 300;
  line-height: 23px; /* Text style for "2," */
  letter-spacing: 0.36px;
  display: block;
}

.pagination-custom>li.active>span {
  border-bottom: 2px solid #254f65;
  border-color:#254f65;
  color: #322e2e;
  font-weight: 700;
  margin: 0;
}

.pagination-custom>li:first-child>a,
.pagination-custom>li:first-child>span {
  margin-left: 0;
}

.pagination-custom>.active>a,
.pagination-custom>.active>span,
.pagination-custom>.active>a:hover,
.pagination-custom>.active>span:hover,
.pagination-custom>.active>a:focus,
.pagination-custom>.active>span:focus {
  z-index: 2;
  cursor: default;
  color: #254f65;
}

.pagination-custom>.disabled>span,
.pagination-custom>.disabled>a,
.pagination-custom>.disabled>a:hover,
.pagination-custom>.disabled>a:focus {
  color: #254f65;
  cursor: not-allowed;
}

.pagination-custom-lg>li>a,
.pagination-custom-lg>li>span {
  padding: 10px 16px;
  font-size: 18px;
}

.pagination-custom-sm>li>a,
.pagination-custom-sm>li>span {
  padding: 5px 10px;
  font-size: 0.75em;
}

/*============================================================================
  #Top Bar
==============================================================================*/
#top-bar {
  padding: 8.57143px 0;
  background-color: #373738;
  color: #f2f2f2;
  border-bottom: 3px solid #d45174;
}

#top-bar a {
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  #top-bar {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  #top-bar ul li {
    float: left;
    margin-left: 30px;
  }
}

#top-bar ul li i.fa {
  margin-right: 5px;
}

#top-bar ul li:first-child {
  margin-left: 0;
}

/*============================================================================
  #Site Header
==============================================================================*/
.miniHeader {
  color: #254f65;
  font-size: 11px;
  font-weight: 400;
  /* line-height: 23px; */
  /* height: 30px; */
  /* overflow: hidden; */
  /* padding-top: 3px; */
}
.miniHeader a{
  color: #254f65;
  margin: 0 4px;
}
.miniHeader img {
  /* position: relative; */
  /* top: 4px; */
  margin-right: 8px;
  margin-left: 8px;
}
.site-header {
  padding: 13px 0 20px 0;
  color: #ffffff;
  height: 91px;
  background-color: #254f65;
}
.site-header .site-header--text-link {
  line-height: 1;
}

.site-header a {
  color:#ffffff;
}

.site-header a:hover {
  opacity: 0.9;
}
h1.meusPedidos {
  color: #254f65;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 28px;
  padding-top: 49px;
}
.site-header a.quick-btn {
  color: #ffffff;
}

@media screen and (min-width: 769px) {

  .site-header .grid,
  .site-header .grid--rev,
  .site-header .grid--full {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  .site-header .grid>.grid-item,
  .site-header .grid--rev>.grid-item,
  .site-header .grid--full>.grid-item {
    float: none;
    display: table-cell;
    vertical-align: middle;
  }
}

.floating-header {
  display: none;
}

.floating-header .btn-your-purchase-has-a-purpose {
  margin: 10px 0;
}

.floating-header .search-bar {
  margin-top: 10px;
}

.floating-header .client-login-header .login-icon {
  background: url(../images/profile-icon.png) no-repeat left 14px;
  padding-left: 32px;
  height: 48px;
  line-height: 48px;
}

#main-menu li:hover>ul.notHoverable:before{
  display: none;
}

.floating-header .client-login-header .client-menu {
  top: 68px;
}

.header-logo {
  margin: 30px auto;
}

@media screen and (min-width: 769px) {
  .header-logo {
    margin: 15px 0;
  }
}

.header-logo a,
.header-logo a:hover,
.header-logo a:focus {
  text-decoration: none;
  color: #6c6c6c;
}

.header-logo a,
.header-logo img {
  display: block;
}

.header-logo img {
  margin: 0 auto;
  max-height: 120px;
  width: auto;
  position: relative;
  top: -15px;
}

.site-header--text-links {
  font-size: 0.85em;
  padding: 0;
}

.site-header--text-links a {
  font-weight: bold;
}

.site-header--meta-links {
  display: inline-block;
  margin-left: 15px;
}

.header-cart-btn {
  position: relative;
  padding-bottom: 10px;
  border: 0 none;
  margin-left: 15px;
  vertical-align: top;
  /* background: #ffffff; */
  background: transparent;
  color: #585858;
}

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

.header-cart-btn:hover,
.header-cart-btn:focus {
  background: transparent;
}

/*
#cartCount {
  display: block;
  position: absolute;
  top: -5px;
  right: -5px;
  text-align: center;
  background-color: $colorAccent;
  color: $headerBackground;
  font: {
    weight: 700;
    size: 13px;
  };
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 20px;

  &.hidden-count {
    display: none;
  }
}
*/
#cartCount {
  font-weight: 700;
  font-size: 13px;
}

#cartCount.hidden-count {
  display: none;
}

.js-quick-cart-product-name{
  color: #727272 !important;
}

.search-bar {
  position: relative;
  margin: 0 auto 30px;
}

.site-header .search-bar {
  width: 389px;
  height: 35px;
  border-radius: 18px;
}

.site-header .search-middle .search-bar {
  width: 100%;
}

.search-bar .icon-search {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .search-bar {
    display: block;
    max-width: 100%;
    width: 100%;
    margin-bottom: 15px;
  }
}

.search-bar input[type="text"],
.search-bar input[type="search"] {
  width: 100%;
  margin-bottom: 0;
  line-height: 1.2;
  height: 35px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 51.89px;
  letter-spacing: -0.31px;
  border-radius: 18px;
  padding-left: 20px;
  padding-right: 48px;
}

.search-bar input[type="submit"],
.search-bar .search-bar--submit {
  position: absolute;
  top: -4px;
  bottom: 0;
  right: 32px;
  width: 17px;
  margin: 0;
  border: 0 none;
  background: none;
  text-align: center;
  font-size: 26px;
  cursor: pointer;
}

.search-bar input[type="submit"] {
  text-indent: -9999px;
}

.site-header .search-bar {
  display: none;
  margin-bottom: 0;
}

@media screen and (min-width: 769px) {
  .site-header .search-bar {
    display: inline-block;
  }
}

.site-header .search-bar input[type="text"],
.site-header .search-bar input[type="search"] {
  border: 0 none;
  background-color: #ffffff;
  color: #504c6a;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -ms-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}

.site-header .search-bar input[type="text"]:hover,
.site-header .search-bar input[type="text"]:focus,
.site-header .search-bar input[type="search"]:hover,
.site-header .search-bar input[type="search"]:focus {
  background-color: #f2f2f2;
  -webkit-transition: background-color 0.05s ease-in;
  -moz-transition: background-color 0.05s ease-in;
  -ms-transition: background-color 0.05s ease-in;
  -o-transition: background-color 0.05s ease-in;
  transition: background-color 0.05s ease-in;
}

.site-header .search-bar input[type="text"]:focus,
.site-header .search-bar input[type="search"]:focus {
  outline: 0;
}

.site-header input::-webkit-input-placeholder {
  color: #585858;
}

.site-header input::-moz-placeholder {
  color: #585858;
}

.mainMenu {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.18);
  background-color: #ffffff;
}

/*================ QRACK Theme Site Header Additional ================*/
header.site-header .grid-item {
  padding-bottom: 0;
}

.site-header .search-bar {
  border-radius: 18px;
}

.site-header .line {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.header-cart-btn {
  padding: 0;
  line-height: 0;
  color: #333333;
}

.paddingTop {
  position: relative;
  top: -5px;
}
.secondHeader span {
  position: relative;
  top: -8px;
  margin-left: 10px;
}
.secondHeader span:hover {
  text-decoration: underline;
}
.underline:hover {
  text-decoration: underline;
}
.header-cart-btn span {
  display: table-cell;
}

.header-cart-btn span:first-child {
  border-left: 0;
}

.client-login-header .login-icon {
  background: url("../images/login-icon.png") no-repeat left top;
  padding-left: 72px;
}

.client-login-header .login-user {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  min-width: 230px;
  text-align: left;
  cursor: pointer;
}

.client-login-header .login-user > a {
  display: block;
  overflow: hidden;
  color: #8c2b73;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  height: 62px;
  line-height: 62px;
  letter-spacing: -0.31px;
}

.client-login-header .login-user > a .fa {
  margin-left: 15px;
}

.client-login-header .client-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 2;
  width: 230px;
  padding-top: 30px;
  box-sizing: border-box;
  box-shadow: 0 14px 29px 6px rgba(0, 0, 0, 0.28);
  border-radius: 0 0 10px 10px;
  background-color: #ffffff;
}

.client-login-header .client-menu li {
  display: block;
  line-height: 20px;
  padding: 0 35px;
}

.client-login-header .client-menu li:last-child {
  border-top: 1px solid #d8d8d8;
  padding: 10px 35px;
  margin-top: 20px;
}

.client-login-header .client-menu li a {
  display: block;
  color: #76ced9;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.64px;
}

/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.navbar {
  border-bottom: 1px solid #D0D8DD;
  background-color: #ffffff;
  color: #333333;
}

@media screen and (min-width: 768px) {
  .navbar[style] {
    display: block !important;
  }
}

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

.navbar .header-cart-btn {
  display: none;
}

.navbar .search-bar {
  margin: 0 15px 15px;
  width: auto;
}

@media screen and (max-width: 768px) {
  body.move-nav .navbar {
    top: 50px;
    padding-bottom: 50px;
    position: fixed;
    width: 100%;
    z-index: 5000;
    border: 0;
    max-height: 100%;
    overflow-y: scroll;
  }

  body.move-nav .navbar .wrapper {
    padding: 0;
  }

  .move-nav {
    margin-top: 50px;
  }
}

@media screen and (max-width: 480px) {
  body {
    margin-top: 50px;
  }
}

.sticky {
  display: block;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  border-top: 0;
  box-shadow: 0 -2px 8px #000 !important;
}

@media screen and (min-width: 768px) {
  .navbar.sticky .wrapper {
    position: relative;
  }

  .navbar.sticky .header-cart-btn {
    display: block;
    position: absolute;
    right: 30px;
    top: 0;
  }
}

/* Main Navigation Functionality (it's not recommended editing this)
===============================================================*/
.sm,
.sm ul,
.sm li {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: normal;
  direction: ltr;
}

/* ul.sm ul{position:absolute;top:-999999px;width:100px;} */
ul.sm li {
  position: relative;
  float: left;
}

ul.sm>li:first-child {
  margin-left: -20px;
}

ul.sm a {
  position: relative;
  display: block;
}

ul.sm a.disabled {
  cursor: default;
}

.sm-rtl,
.sm-rtl ul,
.sm-rtl li {
  direction: rtl;
}

ul.sm-rtl li {
  float: right;
}

ul.sm ul li,
ul.sm-vertical li {
  float: none;
}

ul.sm ul a,
ul.sm-vertical a {
  white-space: normal;
}

ul.sm ul.sm-nowrap>li>a {
  white-space: nowrap;
}

ul.sm:after {
  content: "\00a0";
  display: block;
  height: 0;
  font: 0/0 serif;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}

ul.sm,
ul.sm *,
ul.sm *:before,
ul.sm *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul.sm {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Main settings
===================*/
.sm-simple,
.sm-simple ul {
  background-color: #ffffff;
}

.sm-simple ul,
.sm-simple ul ul {
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
}

/* Menu items
===================*/
.sm-simple a {
  padding: 20px 10px;
  color: #254f65;
  font-family: 'Montserrat', sans-serif;
  font-weight: bolder;
  text-align: center;
  font-size: 9px;
  text-transform: uppercase;
}

.sm-simple a:hover,
.sm-simple a:focus,
.sm-simple a:active,
.sm-simple a.highlighted {
  background: #244351;
  color: #ffffff;
}

.sm-simple a.current,
.sm-simple a.current:hover,
.sm-simple a.current:focus,
.sm-simple a.current:active {
  background: #555;
  color: #ffffff;
}

.sm-simple a.has-submenu {
  padding-right: 32px;
}

.sm-simple .has-dropdown>a {
  padding: 20px 36px 20px 20px;
}

.sm-simple ul li a,
.sm-simple ul ul li a {
  font-family: 'Montserrat', sans-serif;
  text-transform: none;
  padding: 15px;
}

.sm-simple ul a.has-submenu,
.sm-simple-vertical a.has-submenu {
  padding-right: 23px;
}

/* Sub menu indicators
===================*/
.sm-simple a span.sub-arrow {
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  line-height: 16px;
}

.sm-simple ul a span.sub-arrow,
.sm-simple-vertical a span.sub-arrow {
  right: 5px;
}

/* Items separators
===================*/
.sm-simple ul li,
.sm-simple-vertical li {
  padding-left: 20px;
  padding-right: 20px;
}

.sm-simple ul li a,
.sm-simple-vertical li a {
  padding-left: 0;
  padding-right: 0;
}

.sm-simple ul li a:hover,
.sm-simple ul li a:focus,
.sm-simple ul li a:active,
.sm-simple ul li a.highlighted,
.sm-simple-vertical li a:hover,
.sm-simple-vertical li a:focus,
.sm-simple-vertical li a:active,
.sm-simple-vertical li a.highlighted {
  background: transparent;
}
#main-menu ul a:hover {
  color: #254f65;
}
#main-menu li:hover>ul:before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffffff;
  top: -9px;
  transform: rotate(45deg);
  left: 18px;
}
.sm-simple ul li:first-child a,
.sm-simple-vertical li:first-child a {
  border-top: 0;
}

/* Scrolling arrows containers for tall sub menus - test sub menu: "Sub test" -> "more..." -> "more..." in the default download package
===================*/
.sm-simple span.scroll-up,
.sm-simple span.scroll-down {
  position: absolute;
  display: none;
  visibility: hidden;
  overflow: hidden;
  border: solid #bbb;
  border-width: 1px 0;
  background: #ffffff;
  height: 22px;
  /* width and position will be automatically set by the script */
}

.sm-simple span.scroll-up-arrow,
.sm-simple span.scroll-down-arrow {
  position: absolute;
  top: -2px;
  left: 50%;
  margin-left: -8px;
  /* we will use one-side border to create a triangle so that we don't use a real background image, of course, you can use a real image if you like too */
  width: 0;
  height: 0;
  overflow: hidden;
  border-width: 8px;
  /* tweak size of the arrow */
  border-style: dashed dashed solid dashed;
  border-color: transparent transparent #555 transparent;
}

.sm-simple span.scroll-down-arrow {
  top: 6px;
  border-style: solid dashed dashed dashed;
  border-color: #555 transparent transparent transparent;
}

/*
---------------------------------------------------------------
  Responsiveness
  These will make the sub menus collapsible when the screen width is too small.
---------------------------------------------------------------*/
@media screen and (max-width: 768px) {

  /* The following will make the sub menus collapsible for small screen devices (it's not recommended editing these) */
  ul.sm-simple {
    width: auto !important;
  }

  ul.sm-simple ul {
    display: none;
    position: static !important;
    top: auto !important;
    left: auto !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  ul.sm-simple>li {
    float: none;
  }

  ul.sm-simple>li>a,
  ul.sm-simple ul.sm-nowrap>li>a {
    white-space: normal;
  }

  ul.sm-simple iframe {
    display: none;
  }

  ul.sm>li:first-child {
    margin-left: 0;
  }

  /* Uncomment this rule to disable completely the sub menus for small screen devices */
  /*.sm-simple ul, .sm-simple span.sub-arrow, .sm-simple iframe {
		display:none !important;
	}*/
  /* Menu box
===================*/
  .sm-simple ul {
    border: 0;
    /* darken the background of the sub menus */
    background: rgba(100, 100, 100, 0.1);
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  /* Menu items
===================*/
  .sm-simple a {
    background: transparent !important;
    color: #333333 !important;
  }

  .sm-simple a.has-submenu {
    padding-right: 23px;
  }

  /* add some text indentation for the 2+ level sub menu items */
  .sm-simple ul a {
    border-left: 8px solid transparent;
  }

  .sm-simple ul ul a {
    border-left: 16px solid transparent;
  }

  .sm-simple ul ul ul a {
    border-left: 24px solid transparent;
  }

  .sm-simple ul ul ul ul a {
    border-left: 32px solid transparent;
  }

  .sm-simple ul ul ul ul ul a {
    border-left: 40px solid transparent;
  }

  /* Sub menu indicators
===================*/
  .sm-simple a span.sub-arrow {
    right: 5px;
  }

  /* Hide sub indicator when item is expanded - we enable the item link when it's expanded */
  .sm-simple a.highlighted span.sub-arrow {
    display: none !important;
  }

  /* Items separators
===================*/
  .sm-simple li {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
  }

  .sm-simple li:first-child {
    border-top: 0 !important;
  }
}

/*============================================================================
  #Mobile Nav Bar
==============================================================================*/
#mobileNavBar {
  display: none;
  width: 100%;
  background-color: #ffffff;
  /*================ Small mobile nav bar ================*/
  /*================ Medium-down mobile nav bar ================*/
}

#mobileNavBar:after {
  content: "";
  display: table;
  clear: both;
}

#mobileNavBar .display-table-cell {
  padding: 0 15px;
}

#mobileNavBar .cart-mobile {
  text-align: right;
}

#mobileNavBar .cart-count {
  padding: 0;
}

@media screen and (max-width: 480px) {
  #mobileNavBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}

body.move-nav #mobileNavBar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  #mobileNavBar {
    display: table;
    height: 50px;
    z-index: 7000;
  }

  .show-nav #mobileNavBar {
    position: fixed;
    left: 0;
    top: 0;
  }
}

.mobileNavBar-link {
  display: block;
  padding: 10px 0;
  color: #333333;
  cursor: pointer;
}

.mobileNavBar-link:hover,
.mobileNavBar-link:focus {
  color: #333333;
}

/*============================================================================
  #Home Main Slider
==============================================================================*/
#slider {
  text-align: center;
  font-weight: normal;
}

.full-width-block.marg-pad-clear {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

.vert-slider {
  background: white;
}

#slider .slide-image-wrapper {
  position: relative;
}

#slider .slide-bg-image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  width: 100%;
  position: absolute;
  display: block;
  height: 600px;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  opacity: 1;
}

@media screen and (max-width: 980px) {
  #slider .slide-bg-image {
    height: 500px;
  }
}

@media screen and (max-width: 768px) {
  #slider .slide-bg-image {
    height: 400px;
  }
}

@media screen and (max-width: 480px) {
  #slider .slide-bg-image {
    height: 300px;
  }
}

.slide-1,
.slide-2,
.slide-3,
.slide-4,
.slide-5 {
  display: block;
  overflow: hidden;
}

/*
#slider .slide-1:hover .slide-bg-image,
#slider .slide-2:hover .slide-bg-image,
#slider .slide-3:hover .slide-bg-image,
#slider .slide-4:hover .slide-bg-image,
#slider .slide-5:hover .slide-bg-image {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}
*/

@media screen and (min-width: 0\0) {

  #slider .slide-1:hover .slide-bg-image,
  #slider .slide-2:hover .slide-bg-image,
  #slider .slide-3:hover .slide-bg-image,
  #slider .slide-4:hover .slide-bg-image,
  #slider .slide-5:hover .slide-bg-image {
    transform: none;
  }
}

#slider .slide-1 .slide-bg-image {
  opacity: 0.8;
}

#slider .slide-1 {
  background-color: #c8c9c4;
}

#slider .slide-2 .slide-bg-image {
  opacity: 0.9;
}

#slider .slide-2 {
  background-color: #12151a;
}

#slider .slide-3 .slide-bg-image {
  opacity: 1;
}

#slider .slide-3 {
  background-color: #f7d5df;
}

#slider .slide-4 .slide-bg-image {
  opacity: 1;
}

#slider .slide-4 {
  background-color: #dadad1;
}

#slider .wrapper {
  position: relative;
  height: 600px;
}

@media screen and (max-width: 980px) {
  #slider .wrapper {
    height: 500px;
  }
}

@media screen and (max-width: 768px) {
  #slider .wrapper {
    height: 400px;
  }
}

@media screen and (max-width: 480px) {
  #slider .wrapper {
    height: 300px;
  }
}

.slide-text {
  text-align: center;
  max-width: 85%;
  margin: 0 auto;
  color: #ffffff;
}

#slider .wrapper p {
  margin: 0 auto 7.5px;
}

#slider .wrapper p.ltext {
  margin-top: 7.5px;
}

.slide-text h2,
.slide-text .h2 {
  border: 0;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-left: 0;
  border-right: 0;
  padding: 15px 0;
  display: inline-block;
  font-weight: normal;
  line-height: 1em;
  margin: 0;
  text-transform: none;
  text-transform: uppercase;
  font-size: 7em;
}

@media screen and (max-width: 980px) {

  .slide-text h2,
  .slide-text .h2 {
    font-size: 4em;
    padding: 10px 0;
  }
}

@media screen and (max-width: 480px) {

  .slide-text h2,
  .slide-text .h2 {
    font-size: 2em;
  }
}

span.slide-btn {
  background: transparent;
  border: 1px solid #ffffff;
  padding: 10px;
  color: #ffffff;
  font-size: 16px;
  margin-top: 15px;
}

span.slide-btn:hover {
  background: transparent;
  opacity: 0.8;
}

.slide-1 .slide-text {
  color: #000000;
}

.slide-1 .slide-text h2,
.slide-1 .slide-text .h2 {
  border-color: #000000;
  color: #000000;
}

.slide-1 .slide-text span.slide-btn {
  color: #000000;
  border-color: #000000;
}

.slide-2 .slide-text {
  color: #ffffff;
}

.slide-2 .slide-text h2,
.slide-2 .slide-text .h2 {
  border-color: #ffffff;
  color: #ffffff;
}

.slide-2 .slide-text span.slide-btn {
  color: #ffffff;
  border-color: #ffffff;
}

.slide-3 .slide-text {
  color: #000000;
}

.slide-3 .slide-text h2,
.slide-3 .slide-text .h2 {
  border-color: #000000;
  color: #000000;
}

.slide-3 .slide-text span.slide-btn {
  color: #000000;
  border-color: #000000;
}

.slide-4 .slide-text {
  color: #ffffff;
}

.slide-4 .slide-text h2,
.slide-4 .slide-text .h2 {
  border-color: #ffffff;
  color: #ffffff;
}

.slide-4 .slide-text span.slide-btn {
  color: #ffffff;
  border-color: #ffffff;
}

.owl-theme .owl-controls {
  margin: 0;
}

#slider p {
  font-weight: normal;
  line-height: 1.5;
  font-size: 19px;
}

@media screen and (max-width: 768px) {
  #slider p {
    font-size: 16px;
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #slider p {
    font-size: 13px;
  }
}

#slider p small {
  text-transform: uppercase;
  font-size: 21px;
}

@media screen and (max-width: 768px) {
  #slider p small {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  #slider p small {
    font-size: 15px;
  }
}

#slider div.owl-nav {
  background: transparent;
  display: table;
}

#slider .owl-theme {
  position: relative;
}

@media screen and (max-width: 768px) {
  #slider .owl-theme .owl-controls {
    position: absolute;
    width: 100%;
    bottom: 10px;
  }
}

#slider .owl-theme .owl-controls .owl-nav [class*=owl-] {
  margin: 0 7.5px;
  position: absolute;
  bottom: 45%;
  color: #fff;
  width: 81px;
  height: 81px;
  line-height: 81px;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position-x: center;
}

.owl-theme .owl-controls .owl-nav .owl-prev {
  left: 0!important;
}

.owl-theme .owl-controls .owl-nav .owl-next {
  right: 0;
}

#slider .owl-theme .owl-controls .owl-nav [class*=owl-]:after {
  color: #FFF;
  opacity: 1;
}

#slider .owl-theme .owl-controls .owl-nav [class*=owl-]:hover,
#slider .owl-theme .owl-controls .owl-nav [class*=owl-]:focus {
  opacity: 0.3;
}

@media screen and (max-width: 768px) {
  #slider .owl-theme .owl-controls .owl-nav {
    display: none;
  }
}

#slider .owl-theme .owl-controls .owl-nav .owl-left {
  left: 0;
}

#slider .owl-theme .owl-controls .owl-nav .owl-next {
  padding-left: 6px;
  right: 0;
}

#slider div.owl-nav .owl-prev:after,
#slider div.owl-nav .owl-next:after {
  font-size: 56px;
}

/* if only first slide used uncomment this
#slider div.owl-controls{display:none;}
*/
/*============================================================================
  #Home Top Banners
==============================================================================*/
.banners {
  text-align: center;
}

.banners li img {
  max-width: 100%;
}

.banners .grid-item {
  padding-left: 20px;
}

.banner-image-wrapper {
  position: relative;
}

.banner-image {
  width: 100%;
  height: 170px;
  position: absolute;
  display: block;
  overflow: hidden;
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.banner-wrap {
  height: 170px;
  position: relative;
  overflow: hidden;
  padding: 5px;
}

.banner-border {
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 100%;
}

.banner-text-wrap {
  width: 100%;
  text-align: center;
}

.banners .home-banner-1 .banner-color {
  background-color: #faf7fa;
}

.banners .home-banner-1 .banner-image {
  opacity: 0.9;
}

.banners .home-banner-2 .banner-color {
  background-color: #030303;
}

.banners .home-banner-2 .banner-image {
  opacity: 0.9;
}

.banners .home-banner-3 .banner-color {
  background-color: #000000;
}

.banners .home-banner-3 .banner-image {
  opacity: 0.8;
}

.banners .home-banner-1:hover .banner-image,
.banners .home-banner-2:hover .banner-image,
.banners .home-banner-3:hover .banner-image {
  opacity: 1;
}

.banners .home-banner-1:hover .banner-message-1-small,
.banners .home-banner-1:hover .banner-message-2-small,
.banners .home-banner-1:hover .banner-message-3-small,
.banners .home-banner-1:hover .banner-message-1,
.banners .home-banner-1:hover .banner-message-2,
.banners .home-banner-1:hover .banner-message-3,
.banners .home-banner-2:hover .banner-message-1-small,
.banners .home-banner-2:hover .banner-message-2-small,
.banners .home-banner-2:hover .banner-message-3-small,
.banners .home-banner-2:hover .banner-message-1,
.banners .home-banner-2:hover .banner-message-2,
.banners .home-banner-2:hover .banner-message-3,
.banners .home-banner-3:hover .banner-message-1-small,
.banners .home-banner-3:hover .banner-message-2-small,
.banners .home-banner-3:hover .banner-message-3-small,
.banners .home-banner-3:hover .banner-message-1,
.banners .home-banner-3:hover .banner-message-2,
.banners .home-banner-3:hover .banner-message-3 {
  /* background:rgba(0, 0, 0, 0.2); */
  text-shadow: 1px 0 5px rgba(0, 0, 0, 0.2);
}

.banners .home-banner-1 .banner-color,
.banners .home-banner-2 .banner-color,
.banners .home-banner-3 .banner-color {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
}

.banners .home-banner-1 .banner-message-1,
.banners .home-banner-2 .banner-message-2,
.banners .home-banner-3 .banner-message-3 {
  font-size: 1.2em;
  line-height: 1.1;
  margin-bottom: 5px;
  display: block;
  padding: 6px 10px;
}

.banners .home-banner-1 .banner-message-1-small,
.banners .home-banner-2 .banner-message-2-small,
.banners .home-banner-3 .banner-message-3-small {
  font-size: 3em;
  display: inline-block;
  line-height: 1;
 font-family: 'Montserrat', sans-serif;
  padding: 0 10px;
}

.banners .home-banner-1 .banner-message-1 {
  color: #ffffff;
}

.banners .home-banner-1 .banner-message-1-small {
  color: #ffffff;
}

.banners .home-banner-2 .banner-message-2 {
  color: #ffffff;
}

.banners .home-banner-2 .banner-message-2-small {
  color: #ffffff;
}

.banners .home-banner-3 .banner-message-3 {
  color: #ffffff;
}

.banners .home-banner-3 .banner-message-3-small {
  color: #fffbc4;
}

.bottom-banners-bg{
  background-color: #e2e2e2;
}

.bottom-banners-bg + .site-footer{
  padding: 0;
}

/*============================================================================
  #Featured Rows
==============================================================================*/
.home-blocks-top {
  padding-top: 30px;
}

.home-blocks-top .section-header.clear-title {
  margin-bottom: 10px;
}

/*============================================================================
  #Home Centered Full Width Blocks
==============================================================================*/
.full-width-block {
  clear: both;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  margin: 0 0 20px 0;
  padding: 45px 0;
  background: white;
  border-top: none;
  border-bottom: none;
}

.full-width-block .section-header .h1 {
  border: none;
}

.clear-bot-marg {
  margin-bottom: 0;
}

.clear-top-pad {
  padding-top: 0 !important;
}

.centered-block {
  text-align: center;
  border: none;
  margin: 0;
}

.centered-block h3,
.centered-block .h3 {
  font-size: 2em;
}

.full-width-block .section-header {
  width: 100%;
}

.full-width-block .row-negative-bottom {
  margin-bottom: 0;
}

.btn-center {
  margin: 0 auto;
  display: table;
}

/*============================================================================
  #Home Parallax
==============================================================================*/
#home-parallax {
  text-align: center;
  background: #373738;
  overflow: hidden;
  background: no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 400px;
  margin-top: 30px;
  margin-bottom: 20px;
}

#parallax-image-wrapper {
  position: relative;
}

#parallax-image {
  background: #373738;
  opacity: 0.5;
  width: 100%;
  height: 400px;
  position: absolute;
  display: block;
}

#home-parallax .wrapper {
  position: relative;
  height: 400px;
}

.parallax-text {
  text-align: center;
  color: #ffffff;
  z-index: 2;
}

.parallax-text h2,
.parallax-text .h2 {
  color: #ffffff;
  line-height: 1;
  font-size: 50px;
}

@media screen and (max-width: 480px) {

  .parallax-text h2,
  .parallax-text .h2 {
    font-size: 30px;
  }
}

.parallax-text p {
  line-height: 1.5;
  max-width: 980px;
  margin: 0 auto;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .parallax-text p {
    font-size: 15px;
  }
}

.parallax-text a {
  background: transparent;
  border: 1px solid #ffffff;
  padding: 10px;
  color: #ffffff;
  font-size: 16px;
  margin-top: 30px;
}

.parallax-text a:hover {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #373738;
}

/*============================================================================
  #Home Carousel Collections
==============================================================================*/
.home-small-products .item {
  width: 100%;
}

.home-small-products .small-pic-wrapper {
  height: 150px;
  display: table;
  table-layout: fixed;
  overflow: hidden;
  float: left;
  margin-right: 15px;
  width: 40%;
  /* if you want to add backgrund color
  background:$thumbnailBackground;
  */
}

.home-small-products .pic-block-small {
  text-align: center;
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

.home-small-products .pic-block-small a img {
  width: 100%;
  height: auto;
}

.home-small-products .small-products-text {
  float: left;
  width: 40%;
}

@media screen and (max-width: 768px) {
  .home-small-products .item {
    clear: none;
    float: left;
  }
}

/* if you need to hide arrows
.number_small_1.owl-theme .owl-controls{
   display:none;
}
*/
/* if you need to hide arrows
.number_small_2.owl-theme .owl-controls{
   display:none;
}
*/
/*============================================================================
  #Home Bottom Banners with Icons
==============================================================================*/
.clean-banners .home-banner-1,
.clean-banners .home-banner-2,
.clean-banners .home-banner-3 {
  background: transparent;
  box-shadow: none;
  /* border: 1px solid #d9d9d9; */
  padding: 28px 20px 5px;
  /* display: table; */
}

/* .clean-banners p {
  display: table;
} */

.clean-banner .span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

i.desconto {
  display: inline-block;
  height: 33px;
  width: 33px;
  background-image: url("../images/desconto.png");
}
i.compra-cartao {
  display: inline-block;
  height: 33px;
  width: 33px;
  background-image: url("../images/compra-cartao.png");
}
i.compra-segura {
  display: inline-block;
  height: 35px;
  width: 33px;
  background-image: url("../images/compra-segura.png");
}

@media screen and (max-width: 980px) {
  .clean-banners i {
    font-size: 35px;
  }
}

.clean-banners span {
  float: left;
  width: 78%;
}

.clean-banners h4,
.clean-banners .h4 {
  margin: 0;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  color: #585858;
  color: #254f65;
  /* font-family: "Montserrat - Extra Bold"; */
  /* font-size: 12px; */
  /* font-weight: 400; */
  line-height: 19px;
  text-transform: uppercase;
}

/*============================================================================
  #Home Mosaico Banners
==============================================================================*/
.grid-row-banner-mosaic {
  display: flex;
  justify-content: space-between;
}

.grid-row-banner-mosaic div:nth-child(n+3) {
  display: none;
}

@media screen and (max-width: 1200px) {
  .third-mosaic-banner, .first-mosaic-banner{
    margin-right: 37px;
  }

  .authors {
    padding: 0 20px !important;
  }
}

/*============================================================================
  #Home Latest Blog Posts
==============================================================================*/
.home-blog-post {
  padding-bottom: 30px;
}

.blog-home-block h4,
.blog-home-block .h4 {
  font-size: 1.25em;
  line-height: 1.2em;
  clear: both;
  padding-top: 20px;
}

p.posted {
  text-transform: uppercase;
  display: table;
  width: 100%;
  border: 1px solid #d9d9d9;
  /* if you have a dark layout use this:
  border:1px solid lighten($colorBorder, 10%);
  */
  border-top: none;
  margin: 0;
}

p.posted span.date {
  background-color: rgba(0, 0, 0, 0.03);
  font-family: 'Montserrat', sans-serif;
  color: #585858;
  text-align: center;
  line-height: 1;
  padding: 15px 0 12px;
  font-size: 80%;
}

p.posted span.comment-icon {
  text-transform: none;
  color: #373738;
  text-align: center;
  border-left: 1px solid #d9d9d9;
  /* if you have a dark layout use this:
  border-left:1px solid lighten($colorBorder, 10%);
  */
  line-height: 1;
  padding: 0;
  font-size: 90%;
}

p.posted span.comment-icon a {
  padding: 15px 0 12px;
  display: block;
  font-size: 90%;
  font-family: 'Montserrat', sans-serif;
}

p.posted-free {
  font-size: 13px;
  border-bottom: 1px solid #d9d9d9;
  display: table;
  width: 100%;
  /* if no blog thumbnails
  .date{
  padding-left:0;
  }
  
  .date-home{
  padding-left:0;
  }
   */
}

p.posted-free span {
  padding-bottom: 5px;
}

.blog-regular p.posted-free {
  padding-bottom: 10px;
}

.blog-regular p.posted-free span {
  margin-right: 10px;
}

p.posted-free .date-remove {
  padding-left: 20px;
}

div.blog-post-image {
  height: 150px;
  background: rgba(0, 0, 0, 0.03);
  width: 100%;
  text-align: center;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

div.blog-post-image a {
  display: block;
  width: 100%;
  height: 100%;
}

div.blog-post-image span {
  color: #727272;
  text-transform: uppercase;
}

/*============================================================================
  #Site Footer
==============================================================================*/
.main-Development {
  width: 534px;
  margin: 0 auto;
  height: 124px;
}
.main-Development img:nth-child(2) {
  padding-top: 26px;
  margin-left: 86px;
  margin-right: 86px;
}
.main-Development img:nth-child(1) {
  position: relative;
    top: -6px;
}
footer.darkFooter {
  height: 31px;
  background-color: #123141;
  text-align: center;
  color:#fefefe;
  padding-top: 4px;
}
/* Social ribbon  */
#social-ribbon {
  text-align: center;
}

#social-ribbon ul {
  float: left;
  padding: 0;
}

#social-ribbon ul li {
  float: left;
  margin-right: 30px;
  list-style: none;
  display: block;
  font-size: 21px;
}

#social-ribbon ul li:last-child {
  margin-right: 0 !important;
}

#social-ribbon ul li.social-large-icon a span {
  display: none;
}

ul#sm-icons {
  float: left;
  margin: 0;
  width: 163px;
}
.footerDiv {
  padding-top: 24px;
}
.footerDivs {
  padding-top: 15px;
}
a.institucionalA {
  margin-bottom: 10px;
}
ul#sm-icons li {
  float: left;
  margin-right: 13px;
  margin-bottom: 16px;
  list-style: none;
  text-align: center;
}
.iconsFooter img {
  margin-right: 13px;
  position: relative;
  top: 4px;
}
ul#sm-icons li a {
  display: block;
  font-family: "FontAwesome";
  font-weight: normal;
  color: #999999;
  line-height: 0;
}

ul#sm-icons li a:hover {
  opacity: 0.8;
}

ul#sm-icons li a span {
  display: none;
}

/* end ribbon */
.institutional-menu li {
  display: inline-block;
  margin: 5px 30px;
}

.institutional-menu li a {
  color: #76ced9;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.64px;
}

.site-footer {
  padding: 30px 0 10px;
  color: #444444;
  clear: both;
}

@media screen and (min-width: 769px) {
  .site-footer {
    padding: 70px 0 0;
  }
}

.site-footer h3,
.site-footer .h3 {
  margin: 0 0 15px 0;
  color: #444444;
  border-bottom: 3px solid #fdfdfd;
  /* 3px solid darken($colorFooterBg, 10%); */
  /* if you have a dark layout use this */
  display: inline-block;
  padding-bottom: 5px;
  font-size: 110%;
}

@media screen and (max-width: 768px) {

  .site-footer h3,
  .site-footer .h3 {
    font-size: 120%;
  }
}

.site-footer a {
  color: #fefefe;
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
}

.dados-loja-list {
  color: #fefefe;
  font-size: 12px;
  margin-top: 30px;
}

.site-footer a:hover {
  color: #fefefe;
}
.footer-info p{
  color:  #fefefe;
  font-size: 13px;
  font-weight: bold;
}
p.iconsFooter {
  font-weight: inherit;
  margin: 7px 0;
}
.site-footer .btn-secondary {
  background-color: #d45174;
  color: #FFFFFF;
}

.site-footer .btn-secondary:hover,
.site-footer .btn-secondary:active,
.site-footer .btn-secondary:focus {
  background-color: #c23057;
}

.store-info {
  color: #999999;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: -0.28px;
  line-height: 18px;
}

.site-footer .phone-number {
  background: url('../images/ico-phone.png') no-repeat left center;
  color: #fefefe;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.31px;
  padding-left: 30px;
}

.site-footer .email {
  background: url('../images/ico-email.png') no-repeat left center;
  color: #fefefe;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.31px;
  padding-left: 30px;
}

.institutional-menu {
  margin-bottom: 50px;
}

.footer-info {
  background-color: #254f65;
  /* height: 232px; */
}

.footer-info .btn-your-purchase-has-a-purpose {  
  display: block;
  margin: 0 auto;
  position: relative;
  top: -22px;
}

.btn-your-purchase-has-a-purpose {
  background-color: #66cccc;
  border-radius: 23px;
  display: inline-block;
  width: 250px;
  height: 48px;
  color: #8c2b73;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.64px;
  line-height: 48px;
  text-align: center;
}

/* .form-newsletter {
  height: 104px;
  background-color: #8c2b73;
  box-shadow: 0 33px 46px rgba(0, 0, 0, 0.31);
  border-radius: 52px;
} */

.form-newsletter {
  min-height: 360px;
  background-image: url(../images/news-letter-bg.png);
  background-size: 100% 100%;
}

/* .form-newsletter h3 {
  color: #76ced9;
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  font-weight: 700;
  height: 104px;
  line-height: 104px;
  letter-spacing: -1px;
  margin-left: 85px;
  margin-bottom: 0;
  overflow: hidden;
} */

.form-newsletter h3 {
  margin-left: 40px;
  margin-bottom: 0;
  padding-top: 47px;
  overflow: hidden;
  letter-spacing: -1px;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.form-newsletter h4 {
  margin-left: 40px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 29px;
  font-weight: 300;
}

.form-newsletter p {
  margin-left: 40px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

@media (max-width: 1400px) {
  .form-newsletter h3 {
    font-size: 20px;
  }
}

.form-newsletter .grid-item {
  padding-bottom: 0;
}

.form-newsletter form {
  width: 700px;
  margin: 0 0 0 40px;
  overflow: hidden;
}

.form-newsletter form > .grid + .grid {
  width: 500px;
}

.form-newsletter form input[type="email"] {
  border: 1px solid #FFF;
  background: rgb(255,255,255);
  width: 100%;
  height: 37px;
  border-radius: 19px;
  margin: 15px 0;
  padding: 14px 0 14px 28px;
  color: #303030;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  line-height: 17px;
  display: inline-block;
}

.form-newsletter form .error input[type="email"] {
  border-color: red;
}

.form-newsletter form label.checkbox-field {
  display: block;
  height: 30px;
  line-height: 12px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 14px;
}

.form-newsletter form label.checkbox-field input[type="checkbox"] {
  margin: 0 5px 10px 0;
  width: 12px;
  height: 12px;
}

.form-newsletter form .btn-newsletter{
  margin: 15px 0 30px;
  width: 82px;
  height: 37px;
  border-radius: 19px !important;
  background-color: #ffffff;
  color: #303030;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px !important;
  font-weight: 400;
}

.btn-newsletter:hover {
  background-color: #26a220 !important;
  color: #FFF !important;
}

.form-newsletter form input[type="email"]::placeholder {
  color: #303030;
  font-weight: 400;
}

/* .form-newsletter form input[type="email"], */
.form-newsletter form input[type="text"] {
  background: transparent;
  border: none;
  margin: 32px 0;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 17px;
}

.form-newsletter form input::-webkit-input-placeholder {
  color: #FFFFFF;
}

.form-newsletter form input:-moz-placeholder {
  color: #FFFFFF;
}

.form-newsletter form input::-moz-placeholder {
  color: #FFFFFF;
}

.form-newsletter form input:-ms-input-placeholder {
  color: #FFFFFF;
}

.form-newsletter form input::-ms-input-placeholder {
  color: #FFFFFF;
}

.form-newsletter form input::placeholder {
  color: #FFFFFF;
}

.form-newsletter form button[type="submit"] {
  background: url(../images/btn-newsletter.png) no-repeat;
  border: none;
  width: 51px;
  height: 51px;
  margin: 26px 30px;
}

.supports-fontface .site-footer .icon-fallback-text .icon {
  color: #444444;
}

.legal-links {
  margin-bottom: 0;
}

.legal-links+.legal-links {
  margin-bottom: 15px;
}

.legal-links li {
  padding: 0 15px 0 0;
  font-size: 13px;
  line-height: 30px;
}

.legal-links.copyright,
.legal-links.copyright a {
  color: #2b2b2b;
}

.footer-link-marg {
  margin-top: 30px;
  /*
  .footer-first-column &{
  margin-top:0;
  }
  */
}

/* Twitter Widget */
div#twitter-load {
  font-size: 90%;
  padding-right: 10px;
}

div#twitter-load ul li {
  border-bottom: 1px solid #fdfdfd;
  /* 1px solid darken($colorFooterBg, 10%); */
  /* if you have a dark footer layout use this:
    1px solid lighten($colorFooterBg, 10%);
    */
  margin-bottom: 4px;
  position: relative;
}

div#twitter-load ul li p.tweet {
  margin-bottom: 10px;
  overflow: hidden;
}

div#twitter-load ul li p.timePosted {
  text-transform: uppercase;
  font-size: 11px;
  color: #848484;
  /*  darken($colorFooterText, 25%); */
  /* if you have a dark footer layout use this:
  lighten($colorFooterText, 25%);
 */
  position: absolute;
  top: 4px;
  right: 0;
}

div.user {
  margin: 10px 0 5px;
  line-height: 1.2em;
}

div.user a img {
  width: 25px;
  height: 25px;
}

div.user a span {
  margin-top: -10px;
  display: table;
  margin-left: 35px;
}

div.user span span {
  display: none;
}

/*============================================================================
  #Product Grid and List Views
==============================================================================*/
@media screen and (max-width: 769px) {
  .owl-theme .owl-controls .owl-nav {
    display: none;
  }
}

.owl-theme .owl-controls .owl-nav .owl-next {
  background: transparent;
  width: 18px;
  height: 40px;
  background: url(/images/rightArrow.png);
}

.owl-theme .owl-controls .owl-nav .owl-next:hover {
  background: url(/images/rightArrow.png);
}

.owl-theme .owl-controls .owl-nav .owl-prev {
  background: transparent;
  width: 18px;
  height: 40px;
  background: url(/images/leftArrow.png);
}
.owl-theme .owl-controls .owl-nav .owl-prev:hover {
  background: url(/images/leftArrow.png);
}

@media screen and (min-width: 1201px) {
  .owl-theme .owl-controls .owl-nav .owl-prev {
    position: relative;
    left: -40px !important;
  }

  .owl-theme .owl-controls .owl-nav .owl-next {
      position: relative;
      right: -40px;
  }
}


.owl-nav .owl-next:after,
.owl-nav .owl-prev:after {
  display: none!important;
}
.owl-theme .owl-controls .owl-nav .owl-prev:after {
  left: -2px;
}

.owl-theme .owl-next:after {
  left: 2px;
}

.owl-theme .owl-dots .owl-dot {
  margin: 10px 0;
}

.owl-theme .owl-dots .owl-dot span {
  background: #d5d4d4;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #a3a0a0;
}

@media screen and (min-width: 768px) {
  .owl-theme .owl-dots .owl-dot {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .owl-theme .owl-dots .owl-dot {
    margin-bottom: 0;
  }
}

.grid-uniform .product-grid-item p,
.grid-item-wrapper div.product-item--price,
.grid-uniform .product-grid-item .tools,
.owl-carousel .grid-item p,
.owl-carousel .grid-item div.product-item--price,
.owl-carousel .grid-item .tools {
  padding: 0 13px;
}

.grid-item-wrapper div.product-item--price .h1,
.grid-uniform .product-grid-item h1,
.grid-uniform .product-grid-item .h1,
.grid-uniform .product-grid-item #shopify-product-reviews .spr-header-title,
#shopify-product-reviews .grid-uniform .product-grid-item .spr-header-title {
  color: #585858;
  font-family: 'Montserrat', sans-serif;
}

.row-negative-bottom {
  margin-bottom: 30px;
}

.sold-out .product-grid-image {
  position: relative;
}

.sold-out .product-grid-image img {
  opacity: 0.7;
}

.badge {
  display: none;
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -15px;
  text-align: center;
  z-index: 5;
}

.badge-label {
  display: inline-block;
  margin: 0 auto;
  padding: 5px;
  font-size: 13px;
  font-weight: bold;
  color: #ffffff;
  background-color: #585858;
  text-transform: uppercase;
  border-radius: 2px;
}

.sold-out .badge--sold-out {
  display: block;
}

.product-grid-item .spr-badge {
  margin-bottom: 5px;
  display: block;
}

.product-grid-item .spr-badge-caption,
.small-products-text .spr-badge-caption {
  display: none;
}

.even {
  background: rgba(0, 0, 0, 0.02);
}

.clear-bot-padding {
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .product-list-item .spr-badge {
    clear: both;
  }
}

.product-list-item {
  border-bottom: 1px solid #d9d9d9;
  padding: 20px;
}

.product-list-item p,
.product-list-item .rte {
  margin-bottom: 0;
}

.product-list-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.preload {
  visibility: hidden;
}

@media screen and (min-width: 769px) {

  .product-list-item .grid,
  .product-list-item .grid--rev,
  .product-list-item .grid--full {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  .product-list-item .grid-item {
    display: table-cell;
  }
}

.product-grid-image,
.product-list-image {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 285px;
  max-width: 100%;
  min-width: 100%;
  margin: 0 auto 12px;
  position: relative;
  overflow: hidden;
}

.product-grid-image img,
.product-list-image img {
  display: block;
  margin: 0 auto;
}

.product-list-image {
  margin-bottom: 0;
}

.product-grid-image--centered {
  display: table-cell;
  vertical-align: middle;
}

.custom-grid-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 0 auto 12px;
  height: 200px;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: block;
  text-align: center;
}

a.product-grid-item,
.product-grid-item {
  display: block;
  color: #585858;
}

.list-title a {
  text-transform: none;
  line-height: 28px;
  color: #303030;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.logo-produto{
  position: relative;
  top: 8px;
  left: 20px;
  max-width: 74px;
  max-height: 33px;
}

@media screen and (min-width: 769px) {

  .template-list-collections a.product-grid-item,
  .template-list-collections .product-grid-item {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .line-item-text {
    padding: 0 30px;
  }
}

@media screen and (max-width: 480px) {
  .line-item-text {
    padding-top: 30px;
  }
}

.product-line-item p {
  padding: 0;
  height: auto;
}

div.product-item--price,
.best-prices {
  padding: 5px 0;
  margin-bottom: 15px;
}

.best-prices {
  margin-bottom: 0;
}

del {
  font-size: 95%;
}

.product-item--price .grid-item {
  padding: 0;
}

.product-item--price span del,
.best-prices del {
  color: #d45174;
  margin-left: 5px;
  font-size: 90%;
}

.home-small-products .product-item--price span del {
  display: block;
  margin-left: 0px;
}

.showcase-slider-container {
  background: url('../images/line-showcase.png') no-repeat center bottom;
  /* margin-bottom: 30px; */
}

.showcase-slider-container .grid--full>.grid-item {
  float: none;
  display: table-cell;
  /* vertical-align: middle; */
}

.showcase-slider-header .section-header {
  position: relative;
  border: none;
  margin: 0;
  text-align: center;
}

.showcase-slider-header .section-header .h1 {
  font-family: 'Montserrat', sans-serif;
  border: none;
  text-transform: none;
  font-size: 30px;
  font-weight: bolder;
  line-height: 52.24px;
  color: #254f65;
}

.showcase-slider-header .showcase-slider-description {
  max-width: 90%;
  max-height: 90px;
  overflow: hidden;
}

.showcase-slider-header .showcase-slider-description,
.showcase-slider-header .showcase-slider-description p {
  color: #999999;
  font-family: 'Montserrat', sans-serif;
  font-size: 23px;
  font-weight: 300;
  letter-spacing: -0.92px;
  line-height: 30px;
}

.showcase-slider-header .btn {
  background: #FFF;
  width: 148px;
  height: 41px;
  padding: 0;
  text-transform: lowercase;
  color: #8c2b73;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.showcase-slider-header .btn span {
  display: block;
  text-align: center;
}

.showcase-slider-header .btn span .fa-plus {
  border: 2px solid #8c2b73;
  border-radius: 100%;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 5px;
  font-size: 12px;
  line-height: 18px;
  color: #8c2b73;
}

.showcase-donated-books {
  background: url(../images/bg-showcase.png) no-repeat center bottom;
  height: 745px;
  margin: 0;
  padding: 0;
  z-index: 1;
  position: relative;
  top: -60px;
}

.showcase-donated-books .grid-item {
  padding-bottom: 0;
}

.showcase-donated-books .owl-controls {
  position: absolute;
  bottom: 120px;
  left: 50%;
}

.showcase-donated-books .owl-controls .owl-nav {
  position: static;
}

.showcase-donated-books .owl-controls .owl-nav .owl-prev,
.showcase-donated-books .owl-controls .owl-nav .owl-next {
  position: static;
  color: #73245d;
  border-color: #73245d;
}

.showcase-donated-books .owl-controls .owl-dots {
  position: static;
  padding: 0 65px;
}

.showcase-donated-books .owl-controls .owl-dots .owl-dot {
  display: inline-block;
  margin: 16px 0;
}

.showcase-donated-books .owl-controls .owl-dots .owl-dot span {
  background: transparent;
  border: 2px solid #ffffff;
  width: 13px;
  height: 13px;
  opacity: 0.3;
}

.showcase-donated-books .owl-controls .owl-dots .owl-dot.active span {
  border: 3px solid #ffffff;
  background-color: #66cccc;
  opacity: 1;
}

.showcase-donated-books .showcase-slider-header {
  margin-top: 160px;
}

.showcase-donated-books .showcase-slider-description p {
  color: #ffffff;
}

.showcase-donated-books .product-grid-image {
  margin: 0;
}

.showcase-donated-books .product-grid-image img {
  max-width: 375px;
  max-height: 530px;
  box-shadow: 0 24px 103px rgba(0, 0, 0, 0.55);
  margin-top: 100px;
  margin-bottom: 100px;
}

.showcase-donated-books .list-title {
  margin-top: 140px;
  margin-bottom: 15px;
  height: auto;
  max-height: 60px;
  line-height: 30px;
}

.showcase-donated-books .list-title a {
  color: #76ced9;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -2.4px;
}

.showcase-donated-books .product-item--price {
  margin-bottom: 30px;
}

.showcase-donated-books .product-item--price del {
  display: block;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: line-through;
  letter-spacing: -1.35px;
}

.showcase-donated-books .product-item--price ins {
  display: block;
  color: #43ffa0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: -1.35px;
  text-decoration: none;
}

.showcase-donated-books .product-item--price del i,
.showcase-donated-books .product-item--price ins i {
  font-style: normal;
}

.showcase-donated-books .product-item--price ins big {
  font-size: 40px;
  letter-spacing: -2.15px;
}

.showcase-donated-books .btn {
  background: #43ffa0;
  width: 198px;
  height: 60px;
  padding: 0;
  text-transform: lowercase;
  color: #8c2b73;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.64px;
  border-radius: 30px;
}

.showcase-donated-books .btn span {
  background: url(../images/ico-bag.png) no-repeat 36px 12px;
  background-size: 28px 32px;
  display: block;
  text-align: left;
  padding-left: 80px;
  line-height: 60px;
}

.box-video {
  background-color: #76ced9;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  top: -85px;
}

.box-video .grid-item {
  padding-bottom: 0;
}

.box-video .video-title {
  color: #8c2b73;
  font-family: 'Montserrat', sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -5.6px;
  margin-top: 100px;
}

.box-video .video-description {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -1.84px;
}

.box-video .btn {
  background: #FFF;
  width: 180px;
  height: 41px;
  padding: 0;
  margin-top: 40px;
  text-transform: lowercase;
  color: #8c2b73;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: -0.64px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
}

.box-video .btn span .fa-plus {
  border: 2px solid #8c2b73;
  border-radius: 100%;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  font-size: 12px;
  line-height: 18px;
  color: #8c2b73;
}

.box-video .iframe-video {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 24px 103px rgba(0, 0, 0, 0.55);
}

.box-video .iframe-video iframe {
  display: block;
}

.more-link {
  position: absolute;
  right: 16px;
  bottom: -14px;
}

@media screen and (max-width: 768px) {
  .more-link {
    display: none;
  }
}

.more-link a {
  background: #a3a0a0;
  color: #ffffff;
  display: block;
  padding: 4px 7px 4px 9px;
  border-radius: 2px;
  outline: #F2F2F2 solid 8px;
}

.more-link a:hover,
.more-link a:active,
.more-link a:focus {
  background: #969393;
}

.more-link-on-small {
  clear: both;
  margin: 30px auto;
}

@media screen and (min-width: 768px) {
  .more-link-on-small {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .featured-row {
    margin-bottom: 0;
  }
}

.featured-row .grid-item {
  padding-bottom: 0;
  padding-top: 20px;
}

/* Display products layout */

.product-grid-image-table-list{
  /* display: inline-block; */
  float: left;
}

.list-title-table-list {
  float: unset;
  margin-left: 357px;
  text-align: left;
}

.product-item--price-table-list {
  width: 40%;
  position: absolute;
  left: 357px;
}

.btn-notify-me-list, .btn-table-list {
  width: 42% !important;
  position: absolute;
  right: 0;
}

/*================ Owl Carousel Grid Styling ================*/
.owl-carousel .grid-item {
  padding-left: 0;
  padding-bottom: 0;
}

.wrapper .owl-nav {
  position: absolute;
  top: 180px;
  left: 0;
  width: 100%;
  z-index: 0;
}

.wrapper .owl-nav .owl-prev {
  position: absolute;
  left: 0;
}

.wrapper .owl-nav .owl-next {
  position: absolute;
  right: 0;
}

.owl-nav .disabled {
  pointer-events: none;
  opacity: 0.5;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  background: transparent;
  width: 18px;
  height: 18px;
  padding: 4px 0 5px 10px;
  display: block;
  float: right;
}

.owl-nav .owl-prev {
  margin-right: 10px;
  padding: 4px 0 5px 8px;
  float: left;
}

/* Owl end*/
.product-item--price:after {
  content: "";
  display: table;
  clear: both;
}

.product-item--price .h1 {
  margin-bottom: 5px;
  color: #585858;
  font-family: 'Montserrat', sans-serif;
  font-size: 100%;
  color: #585858;
}

.product-item--price span {
  line-height: 22px;
}

.product-tag {
  overflow: hidden;
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  position: absolute;
  top: 90px;
  left: 0;
  z-index: 1;
  color: #fefefe;
  font-family: 'Montserrat', sans-serif;
  line-height: 23px;
  text-transform: uppercase;
  width: 101px;
  height: 21px;
}
.product-tag:nth-child(2) {
  top: 120px;
}
.product-tag:nth-child(3) {
  top: 150px;
}
.discount-tag {
  background-color: #26a120;
}
.collection-tag {
  background-color: #c4147c;
}
.pre-sale-tag {
  background-color: #ffaa01;
}

.sale-tag sup {
  display: none;
}

.sale-tag.large {
  font-size: 16px;
  padding: 0 12px;
}

.product-meta .sale-tag {
  position: relative;
  top: 2px;
}

.sale-tag.has-reviews {
  margin-bottom: 0;
}

.featured-box {
  position: relative;
  display: block;
  padding: 15px 0;
  /* border around promo images
  border: 1px solid $colorBorder;
  */
  margin-bottom: 30px;
}

.featured-box:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.featured-box:hover .featured-box--title {
  color: #323232;
}

.featured-box:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* featured collection images bg
       background-color: rgba(0,0,0,.03);
      //  if dark layout use this:
       background-color: rgba(255,255,255,.03);
    */
  z-index: 5;
  border-radius: 2px;
}

.featured-box img {
  padding: 0 15px;
}

.featured-box--inner {
  display: table;
  margin: 0 auto;
}

.featured-box--image {
  display: table-cell;
  vertical-align: middle;
}

.featured-box--image img {
  width: 100%;
}

.featured-box--title {
  position: relative;
  display: block;
  color: #585858;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  padding-top: 15px;
  line-height: 1;
  z-index: 10;
}

.list-title {
  overflow: hidden;
  padding: 0;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: left;
}

.list-title a:hover,
.list-title a:active,
.list-title a:focus {
  color: #727272;
}

.small-products-text p {
  font-size: 90%;
}

/*================ Animated Buttons ================*/
ul.tools {
  width: 100%;
  display: table;
}

ul.tools form {
  margin: 0;
  padding: 0;
}

ul.tools li {
  margin-left: 5px;
}

ul.tools li:first-child {
  margin-left: 0;
}

@media screen and (max-width: 1149px) {

  ul.tools li .btn,
  ul.tools li .btn-secondary,
  ul.tools li input[type="submit"],
  ul.tools li .header-cart-btn,
  ul.tools li #shopify-product-reviews .spr-summary-actions-newreview,
  #shopify-product-reviews ul.tools li .spr-summary-actions-newreview {
    padding: 11px 8px 10px;
  }
}

.button-list {
  text-align: center;
  display: block;
  position: relative;
  text-decoration: none;
  border: 1px solid;
  border-color: #373738;
  background: transparent;
  color: #373738;
  white-space: nowrap;
  padding: 11px 8px 10px;
}

.button-list:hover {
  border-color: #373738;
  background: #373738;
  color: #ffffff;
}

ul.tools i.fa {
  font-size: 1.0em;
  margin-right: 5px;
  line-height: 0;
  margin: 0.4em 0 0.5em;
}

@media screen and (min-width: 1150px) {
  ul.tools .hide-tool {
    display: none;
  }
}

@media screen and (max-width: 1149px) {

  ul.tools li .btn span,
  ul.tools li .btn-secondary span,
  ul.tools li input[type="submit"] span,
  ul.tools li .header-cart-btn span,
  ul.tools li #shopify-product-reviews .spr-summary-actions-newreview span,
  #shopify-product-reviews ul.tools li .spr-summary-actions-newreview span {
    display: none;
  }
}

@media screen and (min-width: 1149px) {

  .product-grid-item .anim-btn,
  .product-grid-item .anim-btn-delay,
  .product-list-item .anim-btn,
  .product-list-item .anim-btn-delay {
    opacity: 0;
    /*visibility: hidden;*/
    -webkit-animation: fadeOutRight 1s;
    animation: fadeOutRight 1s;
  }

  .product-grid-item .anim-btn-delay,
  .product-list-item .anim-btn-delay {
    opacity: 0;
    /*visibility: hidden;*/
    -webkit-animation: fadeOutRight 0.5s;
    animation: fadeOutRight 0.5s;
  }

  .product-grid-item:hover .anim-btn,
  .product-grid-item:hover .anim-btn-delay,
  .product-list-item:hover .anim-btn,
  .product-list-item:hover .anim-btn-delay {
    -webkit-animation: fadeInRight 0.5s;
    animation: fadeInRight 0.5s;
    /* Chrome, Safari, Opera */
    opacity: 1;
    visibility: visible;
  }

  .product-grid-item:hover .anim-btn-delay .product-list-item:hover .anim-btn-delay {
    -webkit-animation: fadeInRight 1s;
    animation: fadeInRight 1s;
    /* Chrome, Safari, Opera */
    visibility: visible;
  }
}

.small-products-text ul.tools li .btn span,
.small-products-text ul.tools li .btn-secondary span,
.small-products-text ul.tools li input[type="submit"] span,
.small-products-text ul.tools li .header-cart-btn span,
.small-products-text ul.tools li #shopify-product-reviews .spr-summary-actions-newreview span,
#shopify-product-reviews .small-products-text ul.tools li .spr-summary-actions-newreview span {
  display: none;
}

.small-products-text ul.tools .hide-tool {
  display: inline-block;
}

.small-products-text ul.tools li .btn,
.small-products-text ul.tools li .btn-secondary,
.small-products-text ul.tools li input[type="submit"],
.small-products-text ul.tools li .header-cart-btn,
.small-products-text ul.tools li #shopify-product-reviews .spr-summary-actions-newreview,
#shopify-product-reviews .small-products-text ul.tools li .spr-summary-actions-newreview {
  padding: 13px 8px 10px;
  width: 30px;
}

.product-list-item .tools,
.small-products-text .tools {
  margin-top: 12px;
}

/*================ Animated Image Cover ================*/
.additional-text {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  color: #ffffff;
  padding: 10px;
  width: 100%;
  height: 100%;
  -webkit-animation: fancyFadeOut 1s;
  animation: fancyFadeOut 1s;
  background-color: #373738;
  border: 6px solid #5d5d5f;
  opacity: 0;
  visibility: none;
  text-align: center;
}

.additional-text p {
  line-height: 1.3;
}

@media screen and (min-width: 980px) {
  .grid-item-wrapper:hover .additional-text {
    -webkit-animation: fancyFadeIn 1s;
    animation: fancyFadeIn 1s;
    opacity: 0.8;
    visibility: visible;
  }
}

.grid-item-wrapper .grid-item {
  padding-bottom: 0;
}

.grid-item-wrapper img.product-pic {
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

@media screen and (min-width: 980px) {
  .grid-item-wrapper:hover img.product-pic {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
}

.additional-text i {
  font-size: 30px;
  margin-bottom: 12px;
}

.rating p {
  text-transform: none;
}

/*============================================================================
  #Tooltips
==============================================================================*/
@media screen and (min-width: 768px) {

  /* Base styles for the element that has a tooltip */
  [data-tooltip],
  .tooltip {
    position: relative;
    cursor: pointer;
  }

  /* Base styles for the entire tooltip */
  [data-tooltip]:before,
  [data-tooltip]:after,
  .tooltip:before,
  .tooltip:after {
    position: absolute;
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    pointer-events: none;
  }

  /* Show the entire tooltip on hover and focus */
  [data-tooltip]:hover:before,
  [data-tooltip]:hover:after,
  [data-tooltip]:focus:before,
  [data-tooltip]:focus:after,
  .tooltip:hover:before,
  .tooltip:hover:after,
  .tooltip:focus:before,
  .tooltip:focus:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 1;
  }

  /* Base styles for the tooltip's directional arrow */
  .tooltip:before,
  [data-tooltip]:before {
    z-index: 1001;
    border: 6px solid transparent;
    background: transparent;
    content: "";
  }

  /* Base styles for the tooltip's content area */
  .tooltip:after,
  [data-tooltip]:after {
    z-index: 1000;
    padding: 8px;
    width: 100%;
    display: table;
    background-color: #585858;
    color: #F2F2F2;
    content: attr(data-tooltip);
    font-size: 10px !important;
    line-height: 1.2;
  }

  /* Directions */
  /* Top (default) */
  [data-tooltip]:before,
  [data-tooltip]:after,
  .tooltip:before,
  .tooltip:after {
    bottom: 100%;
    left: 50%;
  }

  [data-tooltip]:before,
  .tooltip:before {
    margin-left: -6px;
    margin-bottom: -12px;
    border-top-color: #585858;
  }

  /* Horizontally align top/bottom tooltips */
  [data-tooltip]:after,
  .tooltip:after {
    margin-left: -140%;
  }

  [data-tooltip]:hover:before,
  [data-tooltip]:hover:after,
  [data-tooltip]:focus:before,
  [data-tooltip]:focus:after,
  .tooltip:hover:before,
  .tooltip:hover:after,
  .tooltip:focus:before,
  .tooltip:focus:after {
    -webkit-transform: translateY(-12px);
    -moz-transform: translateY(-12px);
    transform: translateY(-12px);
  }
}

/*============================================================================
  #Collections Page
==============================================================================*/
.col-sidebar h3,
.col-sidebar .h3 {
  text-transform: uppercase;
  border-bottom: 3px solid #d9d9d9;
  padding-bottom: 1px;
  clear: both;
  display: inline-block;
}

.col-sidebar ul {
  margin-bottom: 30px;
}

.col-sidebar h4,
.col-sidebar .h4 {
  text-transform: capitalize;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 80%;
}

.col-sidebar ul li {
  display: table;
  width: 100%;
}

.col-sidebar ul.advanced-filters li a {
  color: #303030;
}

.col-sidebar ul.advanced-filters li a:hover {
  color: #323232;
}

.col-sidebar ul li {
  /* border-bottom: 1px solid #e5e5e5; */
  padding: 4px 0 5px;
}

.col-sidebar ul li.article-list {
  border-bottom: 1px solid #e5e5e5;
}

.col-sidebar ul.article-list p.best-prices,
.col-sidebar em.text-light {
  font-size: 90%;
  font-family: 'Montserrat', sans-serif;
  color: #585858;
}

.col-sidebar ul.article-list p.best-prices {
  margin-bottom: 0;
}

.col-sidebar ul.active-layered li {
  background: white;
  padding-left: 15px;
}

.col-sidebar p {
  line-height: 1.3;
}

.col-sidebar .blog-post-image {
  float: left;
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 10px 10px 0;
}

em.text-light {
  color: #989898;
}

#cart-block {
  margin-bottom: 30px;
}

#cart-block ul {
  margin-bottom: 0;
}

#cart-block ul li {
  border-top: 1px solid #d9d9d9;
  padding: 7px 0 3px;
}

#cart-block ul li:first-child {
  border: none;
  padding-top: 0;
}

#cart-block img {
  max-height: 50px;
}

#cart-block a.quick-img {
  display: block;
  width: 40px;
  overflow: hidden;
  float: left;
}

#cart-block a.quick-txt {
  float: left;
  width: 65%;
  margin-left: 7px;
  line-height: 1.3;
  padding-right: 15px;
}

#cart-block .cart-total-price {
  background: #d9d9d9;
  color: #585858;
  padding: 12px;
  text-align: center;
}

#cart-block .item-qty {
  font-size: 11px;
}

#cart-block .chk-btn {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .filter {
    margin-bottom: 15px;
  }
}

/* Wishlist */
#wishlist-message-link,
#wishlist-message-signin {
  display: none;
}

.mfp-wrap #wishlist-message-link,
.mfp-wrap #wishlist-message-signin {
  display: block;
}

#number-in-wishlist {
  display: none;
  font-style: normal;
}

span#load-wishlist {
  padding: 0;
  border: 0;
  margin: 0;
}

#load-wishlist #number-in-wishlist {
  display: table-cell;
  padding: 23px 13px 21px;
  border-left: 1px solid #f0f0f0;
}

@media screen and (max-width: 480px) {
  .price-mobile {
    margin-left: 20px;
  }
}

/*============================================================================
  #Collection Filters
==============================================================================*/
.mfp-wrap {
  z-index: 10000;
}

.mfp-wrap .white-popup {
  position: relative;
  background: #F2F2F2;
  padding: 40px 25px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
  border-radius: 20px;
}

.mfp-wrap .white-popup.quick-view {
  max-width: 950px;
  overflow: auto;
  padding: 30px;
}

.mfp-wrap .quick-description {
  max-height: 200px;
  overflow-x: auto;
}

.filters-header-title {
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #254f65;
  display: block;
  padding: 3px 13px;
  margin-bottom: 20px;
  border-bottom: 0px !important;
  width: 100%;
}

.filters-header-title-alt {
  color: #254f65;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  border-bottom: 1px solid rgba(37, 79, 101, 0.3);
  padding: 3px 13px;
  margin-bottom: 20px;
}

.filters-header ul {
  margin-bottom: 30px;
  max-height: 170px;
  overflow-y: scroll;
}

.filters-header ul li {
  padding-left: 13px;
}

.collection-filters .mfp-hide {
  display: table !important;
}

@media screen and (max-width: 768px) {
  .collection-filters {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .toggle-filters {
    display: none;
  }
}

.advanced-filters-wrapper {
  margin-bottom: 30px;
  clear: both;
}

.advanced-filters {
  margin-bottom: 15px;
}

.advanced-filters a {
  display: block;
  position: relative;
  padding-left: 20px;
  color: #303030;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.72px;
}

.menuSmall {
  position: fixed;
  width: 100%;
  z-index: 99999!important;
}

header.site-header.menuSmall {
  top: 30px;
}

header.miniHeader.menuSmall {
  background: #ffffff;
}

.advanced-filters a:before,
.advanced-filters a:after {
  content: '';
  display: block;
  position: absolute;
}

.advanced-filters a:before {
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: white;
  border: 1px solid #d9d9d9;
  color: #254f65 !important;
}

.advanced-filters a:after {
  top: 9px;
  left: 3px;
  width: 6px;
  height: 6px;
  background-color: transparent;
}

.advanced-filters a:hover:after {
  background-color: #254f65;
}

.advanced-filter.active-filter a:after {
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  color: #373738;
  font-size: 8px;
  text-align: center;
  line-height: 12px;
}

.advanced-filter.active-filter a:hover:after {
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #373738;
  font-size: 8px;
  text-align: center;
  color: #ffffff;
  line-height: 12px;
}

ul.selected-filters .advanced-filter.active-filter a:after {
  color: #ffffff;
  background: transparent;
  font-size: 10px;
  text-align: center;
  margin-left: 5px;
  padding: 2px;
}

ul.selected-filters .advanced-filter.active-filter a:hover:after {
  color: #373738;
}

ul.advanced-filters {
  margin-bottom: 15px;
}

ul.selected-filters {
  padding-bottom: 30px;
}

ul.selected-filters li {
  float: left;
  width: auto;
  border: 0;
  margin: 0 5px 0 0;
}

ul.selected-filters li a {
  display: block;
  padding: 2px 5px 3px 8px;
  background: #373738;
  color: #ffffff;
  border-radius: 2px;
}

ul.selected-filters li a:hover {
  background: #ffffff;
  color: #373738;
}

.sorting-filters {
  padding: 10px 0;
  margin: 10px 0;
  margin-bottom: 20px;
  border-top: 1px solid #d9d9d9;
  text-align: left;
}

.sorting-filters span {
  margin-right: 15px;
}

.sorting-filters .form-horizontal select {
  width: 100%;
}

.hr-top-margin {
  margin-top: -30px;
}

/*============================================================================
  #Breadcrumbs
==============================================================================*/
.breadcrumb {
  font-size: 13px;
  margin-bottom: 30px;
  margin-top: -15px;
  height: 52px;
  opacity: 0.8;
}

@media screen and (min-width: 769px) {

  .template-page .breadcrumb,
  .template-product .breadcrumb {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    height: auto;
  }
}

.breadcrumb a {
  color: #585858;
}

.breadcrumb a:hover {
  color: #585858;
}

.breadcrumb a,
.breadcrumb span {
  display: inline-block;
  padding: 0 7px 0 0;
  margin-right: 7px;
  overflow: hidden;
}

.breadcrumb a:first-child,
.breadcrumb span:first-child {
  padding-left: 0;
}

.breadcrumb+.grid-border {
  margin-top: -30px;
}

.breadcrumb--truncate {
  width: 250px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*============================================================================
  #Product Page
==============================================================================*/
.product-page .section-header h1.section-header--title,
.product-page .section-header .section-header--title.h1,
.product-page .section-header #shopify-product-reviews .section-header--title.spr-header-title,
#shopify-product-reviews .product-page .section-header .section-header--title.spr-header-title {
  max-width: 70%;
}

@media screen and (max-width: 768px) {

  .product-page .large-three-fifths,
  .product-page .large-two-fifths {
    padding-left: 0;
  }
}

.product-page .btn i,
.product-page .btn-secondary i,
.product-page input[type="submit"] i,
.product-page .header-cart-btn i,
.product-page #shopify-product-reviews .spr-summary-actions-newreview i,
#shopify-product-reviews .product-page .spr-summary-actions-newreview i {
  margin-right: 5px;
}

#product-paginate.owl-nav {
  bottom: -17px;
  top: inherit;
  left: 0;
  padding: 0 15px;
  background: transparent;
  width: 100%;
}

@media screen and (max-width: 480px) {
  #product-paginate.owl-nav {
    display: none;
  }
}

#product-paginate.owl-nav .owl-prev {
  left: 0;
}

#product-paginate.owl-nav .owl-prev,
#product-paginate.owl-nav .owl-next {
  background: #373738;
  color: #ffffff;
  width: 25px;
  height: 25px;
  display: block;
  margin: 5px;
  padding: 4px 7px 4px 9px;
  border-radius: 2px;
  outline: #F2F2F2 solid 8px;
}

#product-paginate.owl-nav .owl-prev:hover,
#product-paginate.owl-nav .owl-prev:active,
#product-paginate.owl-nav .owl-prev:focus,
#product-paginate.owl-nav .owl-next:hover,
#product-paginate.owl-nav .owl-next:active,
#product-paginate.owl-nav .owl-next:focus {
  background: #2a2a2b;
  color: #ffffff;
}

#product-paginate.owl-nav .owl-prev:after {
  right: 1px;
  top: -7px;
  position: relative;
}

#product-paginate.owl-nav .owl-next:after {
  right: 0;
  top: -7px;
  position: relative;
}

#owl-featured-thumbs,
#owl-featured-thumbs-1 {
  margin-left: 0;
}

#owl-featured-thumbs .owl-nav,
#owl-featured-thumbs-1 .owl-nav {
  position: static;
  top: 0;
  right: 0;
  width: 100%;
  padding: 0;
  left: 0;
  background: none;
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
  opacity: 0;
  display: none;
}

#owl-featured-thumbs .owl-nav .owl-prev,
#owl-featured-thumbs .owl-nav .owl-next,
#owl-featured-thumbs-1 .owl-nav .owl-prev,
#owl-featured-thumbs-1 .owl-nav .owl-next {
  outline: 0;
  margin: 0;
  position: absolute;
  top: 32%;
}

#owl-featured-thumbs .owl-nav .owl-prev,
#owl-featured-thumbs-1 .owl-nav .owl-prev {
  left: -12px;
}

#owl-featured-thumbs .owl-nav .owl-next,
#owl-featured-thumbs-1 .owl-nav .owl-next {
  right: -12px;
}

#owl-featured-thumbs:hover .owl-nav,
#owl-featured-thumbs-1:hover .owl-nav {
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
  opacity: 1;
  display: block;
}

@media screen and (max-width: 768px) {

  #owl-featured-thumbs:hover .owl-nav,
  #owl-featured-thumbs-1:hover .owl-nav {
    display: none;
  }
}

h2.product-title,
.product-title.h2 {
  font-size: 1.733em;
}

span#productPrice {
  color: #585858;
}

.flip-back {
  background-color: #d45174;
  color: white;
}

.flip-back:hover,
.flip-back:active,
.flip-back:focus {
  background-color: #c23057;
}

/*================ Select fields ================*/
.product-variants {
  display: none;
}

.no-js .product-variants {
  display: block;
}

.selector-wrapper select,
.product-variants select {
  background-color: white;
}

.selector-wrapper label,
label.quantity-selector,
input#quantity {
  float: left;
  display: block;
  padding-top: 8px;
  min-width: 95px;
  margin-right: 5px;
}

label.quantity-selector {
  padding-top: 3px;
}

.js-qty {
  float: left;
}

#addToCart {
  background-color: #43ffa0;
  width: 209px;
  height: 61px;
}

#addToCart,
#addToCartPop {
  display: table;
  clear: both;
}

@media screen and (min-width: 480px) {

  #addToCart,
  #addToCartPop {
    margin-left: 100px;
  }
}

#addToCart i,
#addToCartPop i {
  margin-right: 5px;
}

@media screen and (min-width: 480px) {
  select.single-option-selector {
    margin-left: 100px;
  }
}

.js-qty,
.ajaxifyCart--qty {
  backface-visibility: hidden;
  margin-bottom: 1em;
  max-width: 100px;
  min-width: 75px;
  overflow: visible;
  position: relative;
}

.js-qty {
  min-width: 90px;
}

.ajaxifyCart--qty {
  margin-bottom: 0;
}

.js-qty input[type="text"],
.ajaxifyCart--qty input[type="text"] {
  background-color: white;
}

@media screen and (min-width: 769px) {

  .selector-wrapper select,
  .product-variants select {
    max-width: 40%;
  }
}

#addToCartForm {
  margin-bottom: 0 0 15px 0;
}

@media screen and (min-width: 481px) {
  #addToCartForm select {
    max-width: 50%;
  }
}

/* quantity */
input.qty {
  width: 60px;
  height: 35px;
  text-align: center;
  float: left;
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 0;
}

.js-qty input.qty {
  width: 40px;
}

.qtyplus,
.qtyminus {
  width: 25px;
  float: left;
  height: 35px;
  background-color: white;
  border: 1px solid #d9d9d9;
  cursor: pointer;
  padding: 0;
}

.qtyplus .qty_value,
.qtyminus .qty_value {
  color: #585858;
  display: block;
  padding: 4px 0;
  text-align: center;
}

.qtyminus {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qtyplus {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/*================ Product details ================*/
a.favoritos {
  background-color: #254f65;
  padding: 20px 51px;
  color: #ffffff;
  font-size: 11px;
  line-height: 23px;
}
a.carrinhoCompra {
  background-color: #254f65;
  padding: 18px 44px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 23px;
}
.carrinhoCompra img {
  margin-left: 9px;
}
#productPrice {
  font-size: 32px;
  margin-bottom: 0;
}

.vendor-meta span {
  font-weight: bold;
  margin-right: 5px;
}

.product-meta {
  margin-bottom: 5px;
}

.product-meta .product-meta--review {
  display: block;
}

@media screen and (min-width: 481px) {
  .product-meta {
    display: table;
  }

  .product-meta li,
  .product-meta .product-meta--review {
    display: table-cell;
    vertical-align: middle;
    padding-right: 15px;
  }
}

.product-description {
  margin-bottom: 60px;
  clear: both;
}

.product-description h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #062a4a;
  font-weight: 900;
  letter-spacing: 0.72px;
}

.product-description p {
  color: #062a4a;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
}


.product-detail .installment {
  display: inline-block;
  margin-bottom: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.57px;
}

.product-detail .installment strong {
  margin-right: 5px;
  color: #254f65;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
}

.product-detail .installment strong i {
  font-style: normal;
}
a.btn.btn-buy-product-detail span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  text-transform: uppercase;
}
a.btn.btn-buy-product-detail {
  width: 457px;
  height: 50px;
  background-color: #26a120;
}
.product-detail .see-plots {
  display: inline-block;
  /* margin-left: 36px; */
  color: #1f1f1f;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  position: relative;
  bottom: 54px;
  left: 48px;
}

.see-plots img {
  vertical-align: middle;
  margin-right: 10px;
}

/*================ Notice of < 10 items left ================*/
.variant-quantity {
  display: none;
  position: relative;
  top: 5px;
  color: #373738;
  line-height: 34px;
}

@media screen and (min-width: 480px) {
  .variant-quantity {
    margin-left: 100px;
  }
}

/*================ Product photos ================*/
.product-photo-container {
  margin-bottom: 30px;
  max-width: 100%;
  position: relative;
}

.product-photo-container div {
  top: 0;
}

.product-photo-container a,
.product-photo-container img,
.product-photo-thumbs a,
.product-photo-thumbs img {
  display: block;
  margin: 0 auto;
}

.product-photo-container li:first-child,
.product-photo-thumbs li:first-child {
  padding-left: 0;
}

.product-photo-container li,
.product-photo-thumbs li {
  margin-bottom: 30px;
}

.image-zoom {
  display: inline-block;
  cursor: move;
}

.product-photo-thumbs {
  width: 110px;
  margin: 60px auto 0;
}

.product-photo-thumbs .slick-slide a {
  display: table-cell;
  width: 110px;
  height: 110px;
  vertical-align: middle;
  text-align: center;
}

.product-photo-thumbs .slick-slide a img {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}

.freight-calculation-form {
  float: left;
  position: relative;
  width: 457px;
}

.freight-calculation-form fieldset {
  border: none;
  padding: 0;
}

.freight-calculation-form label {
  overflow: hidden;
  margin: 0;
}

.freight-calculation-form label span {
  float: left;
  max-width: 90px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.96px;
}

.freight-calculation-form label input[type="text"]::placeholder {
  color: #303030;
}
.freight-calculation-form label input[type="text"] {
  float: left;
  margin: 0;
  width: 196px;
  height: 35px;
  border: 1px solid #191919;
  color: #303030;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  line-height: 41.08px; /* Text style for "D, igite s" */
  letter-spacing: 0.34px;
}
.js-freight-calculation-form.freight-calculation-form label{
  float: left;
}
.freight-calculation-form button[type="submit"] {
  border: none;
  width: 118px;
  height: 35px;
  background-color: #254f65;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  float: left;
  margin-left: 22px;
  margin-right: 25px;
}
a.naoSeiCep{
  color: #303030;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  line-height: 41.08px;
  text-decoration: underline; /* Text style for "N, ão sei" */
  letter-spacing: 0.34px;
}
/*================ Product tabs ================*/
.r-tabs h5,
.r-tabs .h5 {
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

/* Tabs container */
.r-tabs {
  position: relative;
}

/* Tab nav */
.r-tabs .r-tabs-nav {
  border-bottom: 1px solid #d9d9d9;
}

/* Tab element */
.r-tabs .r-tabs-nav .r-tabs-tab {
  position: relative;
  background-color: #cccccc;
  margin-bottom: -1px;
  border-right: 1px solid #F2F2F2;
}

.r-tabs .r-tabs-nav .r-tabs-tab:first-child {
  border-left: 1px solid #d9d9d9;
}

/* Tab anchor */
.r-tabs .r-tabs-nav .r-tabs-anchor {
  display: inline-block;
  padding: 14px 12px 7px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  color: white;
}

/* Disabled tab */
.r-tabs .r-tabs-nav .r-tabs-state-disabled {
  opacity: 0.5;
}

/* Active state tab anchor */
.r-tabs .r-tabs-nav .r-tabs-state-active {
  border: 1px solid #d9d9d9;
  border-bottom: none;
  margin-right: 1px;
  background-color: white;
}

.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
  color: #d9d9d9;
  text-shadow: none;
}

/* Tab panel */
.r-tabs .r-tabs-panel {
  background-color: white;
  border: 1px solid #d9d9d9;
  border-top: none;
}

.r-tabs .r-tabs-panel th,
.r-tabs .r-tabs-panel td {
  border-color: #f2f2f2;
}

/* Accordion anchor */
.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
  display: block;
  padding: 14px 12px 7px;
  background-color: #cccccc;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #F2F2F2;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}

.r-tabs .r-tabs-accordion-title .r-tabs-anchor:first-child {
  border-top: 1px solid #d9d9d9;
}

/* Active accordion anchor */
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
  background-color: white;
  color: #d9d9d9;
  border-bottom: none;
  border-top: none;
}

.r-tabs-accordion-title.r-tabs-state-active {
  border-top: 1px solid #d9d9d9;
}

/* Disabled accordion button */
.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
  opacity: 0.5;
}

.r-tabs .r-tabs-nav {
  margin: 0;
  padding: 0;
}

.r-tabs .r-tabs-tab {
  display: inline-block;
  margin: 0;
  list-style: none;
}

.r-tabs .r-tabs-panel {
  padding: 20px;
  display: none;
}

.r-tabs .r-tabs-accordion-title {
  display: none;
}

.r-tabs .r-tabs-panel.r-tabs-state-active {
  display: block;
}

/* Accordion responsive breakpoint */
@media screen and (max-width: 980px) {
  .r-tabs .r-tabs-nav {
    display: none;
  }

  .r-tabs .r-tabs-accordion-title {
    display: block;
  }
}

/*============================================================================
  #Blogs and Comments
==============================================================================*/
.right-sidebar-blog {
  padding-left: 0;
  padding-right: 30px;
}

.comments-header {
  padding-top: 30px;
}

.comment {
  padding: 15px;
  margin: 0;
}

.comment+.comment {
  border-top: 1px solid #d9d9d9;
}

div.blog-page-image {
  height: 300px;
}

.blog-end {
  margin-bottom: 60px;
}

.blog-grid {
  text-align: center;
  padding-bottom: 30px;
}

.blog-grid h2,
.blog-grid .h2 {
  font-size: 1.25em;
  line-height: 1.2em;
  clear: both;
  padding-top: 15px;
}

@media screen and (max-width: 768px) {
  .blog-grid:nth-child(2n+3) {
    clear: both;
  }
}

@media screen and (min-width: 769px) {
  .blog-grid:nth-child(2n+3) {
    clear: none;
  }

  .blog-grid:nth-child(4n+5) {
    clear: both;
  }
}

.blog-regular h2,
.blog-regular .h2 {
  margin-top: 15px;
  font-size: 1.75em;
}

ul.blog-tags {
  display: table;
}

ul.blog-tags li {
  float: left;
  margin: 0 10px 8.57143px 0;
  width: inherit;
  display: block;
  border: none;
}

ul.blog-tags li a {
  background-color: white;
  border-radius: 2px;
  padding: 7.5px 10px;
}

ul.blog-tags li a:hover {
  background-color: #e5e5e5;
}

ul.blog-tags li.current {
  background-color: #b2b2b2;
  color: white;
  border-radius: 2px;
  padding-left: 10px;
  padding-right: 10px;
}

/*============================================================================
  #Notes and Form Feedback
==============================================================================*/
.note,
.errors {
  border-radius: 5px;
  padding: 15px;
  margin: 15px 0;
  border: 1px solid transparent;
}

.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: #d9d9d9;
}

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

.form-success {
  color: #0a942a;
  background-color: #ecfef0;
  border-color: #0a942a;
}

.form-error,
.errors {
  background-color: #fff6f6;
  border-color: #dc0000;
  color: #dc0000;
}

/*============================================================================
  #Cart Page
==============================================================================*/
.cart-wrapper {
  border: 1px solid #d9d9d9;
  padding: 0;
}

.cart-toggle {
  cursor: pointer;
}

.cart-header {
  background-color: white;
  margin-left: 0;
  text-transform: uppercase;
  font-size: 90%;
  font-weight: bold;
}

.header-pad {
  padding: 15px 0;
}

.cart-row {
  padding: 15px;
  border-top: 1px solid #d9d9d9;
}

.cart-row:first-child {
  border-top: none;
}

.cart-row:hover {
  background: rgba(0, 0, 0, 0.02);
}

.cart-row .grid,
.cart-row .grid--rev,
.cart-row .grid--full {
  margin-left: 0;
}

.cart-row span.h2 {
  font-family: 'Montserrat', sans-serif;
  color: #585858;
}

.cart-row a {
  text-transform: uppercase;
}

.cart-row a:hover {
  color: #373738;
}

.cart-row a.btn,
.cart-row a.btn-secondary,
.cart-row a.header-cart-btn,
.cart-row #shopify-product-reviews a.spr-summary-actions-newreview,
#shopify-product-reviews .cart-row a.spr-summary-actions-newreview {
  color: #ffffff;
}

.cart-row small {
  display: block;
}

input.btn-to-link {
  background: transparent;
  color: #373738;
  padding: 9px;
}

input.btn-to-link:hover {
  background: transparent;
  color: #5d5d5f;
}

.cart-image,
.cart-image img {
  display: block;
  width: auto;
  max-height: 100px;
}

.cart-subtotal--price {
  font-size: 1.733em;
  color: #585858;
}

.btn.full-btn,
.full-btn.btn-secondary,
input.full-btn[type="submit"],
.full-btn.header-cart-btn,
#shopify-product-reviews .full-btn.spr-summary-actions-newreview {
  width: 100%;
  text-align: center;
  padding: 15px 0;
  font-size: 100%;
  margin-bottom: 15px;
}

.btn.full-btn span,
.full-btn.btn-secondary span,
input.full-btn[type="submit"] span,
.full-btn.header-cart-btn span,
#shopify-product-reviews .full-btn.spr-summary-actions-newreview span {
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .cart-image {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 768px) {
  .remove-pad {
    padding-bottom: 0;
  }
}

.fa-close {
  margin: 5px;
}

.calculator {
  padding-top: 30px;
  clear: both;
}

/* #quick-cart {
  position: relative;
  margin-top: 10px;
  margin-left: 0;
} */

.quick-show,
.quick-show-modal {
  display: none;
}

.quick-hide-modal {
  display: block;
}

/*================ Ajaxify cart ================*/
.ajaxifyCart--content {
  position: relative;
  background-color: #F2F2F2;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  -ms-perspective: 1000px;
  -o-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -moz-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -ms-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -o-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
}

.is-visible .ajaxifyCart--content {
  -webkit-transition: all 550ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -moz-transition: all 550ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -ms-transition: all 550ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -o-transition: all 550ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  transition: all 550ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
}

.ajaxifyCart--content form {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .ajaxifyCart--content {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.ajaxifyCart--product {
  position: relative;
  padding: 10px;
  /* &:first-child {
    padding-top: 0;
  } */
}

.ajaxifyCart--product,
.cart-row {
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 650ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -moz-transition: all 650ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -ms-transition: all 650ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -o-transition: all 650ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  transition: all 650ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  max-height: 500px;
  visibility: visible;
}

.ajaxifyCart--product.is-removed,
.cart-row.is-removed {
  overflow: hidden;
  opacity: 0;
  padding: 0;
  margin: -30px 0 0;
  visibility: hidden;
  -webkit-transform: rotateX(-92deg);
  -moz-transform: rotateX(-92deg);
  -ms-transform: rotateX(-92deg);
  -o-transform: rotateX(-92deg);
  transform: rotateX(-92deg);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -moz-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -ms-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -o-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  max-height: 0;
}

.ajaxifyCart--row {
  clear: both;
}

.ajaxifyCart--row:after {
  content: "";
  display: table;
  clear: both;
}

.ajaxifyCart--row a.quick-btn {
  display: block;
}

.ajaxCart--product-image {
  display: block;
  overflow: hidden;
  margin-bottom: 15px;
}

.ajaxCart--product-image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/*================ QUICK CART ajaxify ================*/
#ajaxifyDrawer {
  display: none;
  position: absolute;
  top: 40px;
  right: 20px;
  z-index: 1000;
  /* color: #6c6c6c; */
}

#ajaxifyDrawer .empty-cart {
  padding: 15px 15px 20px;
  display: block;
  width: 100%;
  height: 100%;
}

#ajaxifyDrawer .empty-cart span {
  display: block;
  border-left: none;
  padding: 10px 0 0 0;
  text-transform: none;
}

#ajaxifyDrawer .empty-cart a {
  color: #373738;
}

#ajaxifyDrawer .empty-cart a:hover,
#ajaxifyDrawer .empty-cart a:active,
#ajaxifyDrawer .empty-cart a:focus {
  color: #5d5d5f;
}

#ajaxifyDrawer span {
  border: none;
}

#ajaxifyDrawer .quick-move {
  margin-top: 7px;
}

#ajaxifyDrawer .quick-move .center-third {
  padding: 0;
  text-align: center;
}

#ajaxifyDrawer .view-btn {
  width: 100%;
  text-align: right;
}

#ajaxifyDrawer .quick-btn {
  background: #254f65;
  display: block;
  width: 95%;
  height: 41px;
  margin: 0 auto 10px;
  text-align: center;
  padding: 0;
  text-transform: lowercase;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: -0.64px;
  border-radius: 30px;
}

#ajaxifyDrawer .h3,
#ajaxifyDrawer h4,
#ajaxifyDrawer .h4 {
  font-family: 'Montserrat', sans-serif;
}

#ajaxifyDrawer .total-price {
  color: #6c6c6c;
  padding: 17px 13px 14px;
  display: table-cell;
  line-height: 1.4;
  font-size: 1.133em;
}

#ajaxifyDrawer span.money {
  padding: 0;
  display: inline-block;
}

.is-visible+.ajaxifyDrawer-caret>span {
  display: none;
}

.ajaxify-drawer.is-visible {
  border: 1px solid #f0f0f0;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
  position: relative;
}

.ajaxify-drawer.is-visible .ajaxifyCart--content {
  padding: 15px;
  padding: 0;
  width: 300px;
}

.ajaxifyCart--qty input[type="text"] {
  font-size: 12px;
}

#ajaxifyModal .quick-hide-modal {
  display: none;
}

#ajaxifyModal .quick-show-modal {
  display: block;
}

.ajaxifyCart--content {
  background-color: white;
}

.ajaxifyCart--product {
  border-bottom: 1px solid #f0f0f0;
}

.ajaxifyCart--product:nth-child(2n+2) {
  background: rgba(0, 0, 0, 0.02);
}

.ajaxifyCart--product a.remove {
  color: #ffffff;
  position: absolute;
  right: 10px;
  top: 6px;
}

.remove-pad {
  padding: 0;
}

.orspan {
  margin-left: 10px;
  margin-right: 10px;
}

.ajaxifyAddedToCart .btn-view-cart {
  background: #d45174;
}

.ajaxifyAddedToCart i {
  margin-right: 10px;
}

.ajaxifyAddedToCart h2,
.ajaxifyAddedToCart .h2 {
  margin: 15px 0 10px;
  font-family: 'Montserrat', sans-serif;
}

.ajaxifyAddedToCart p {
  background: #defadf;
  border-radius: 2px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #7ed082;
  color: #3ea143;
}

.site-header .ajaxifyCart--product .grid .grid-item,
.site-header .ajaxifyCart--product .grid--rev .grid-item,
.site-header .ajaxifyCart--product .grid--full .grid-item {
  text-align: left;
  padding-top: 0;
  white-space: initial;
  line-height: 1.3;
  vertical-align: top !important;
}

/*================ Remove from cart icon ================*/
a.remove {
  background: #c9c7c7;
  opacity: 0.7;
  display: inline-block;
  margin-top: 7px;
  height: 19px;
  line-height: 19px;
  padding: 0 5px;
  border-radius: 19px;
  font-size: 9px;
  text-align: center;
  border: 0 none;
}

.supports-fontface a.remove {
  padding: 0;
  width: 19px;
}

#ajaxifyDrawer .ajaxifyCart--content a.remove {
  color: #ffffff;
}

/*============================================================================
  #Demo Styles - for empty store state
==============================================================================*/
.demo-image {
  background: url("//cdn.shopify.com/s/files/1/0383/9765/t/1/assets/blankslate-producticon.png?4") no-repeat center center #eee;
  display: block;
  text-align: center;
  padding: 100px 0;
  color: #aaa;
  font-size: 0.875em;
  text-decoration: none;
}

/*============================================================================
  #Product Reviews - Free Shopify App
    - https://apps.shopify.com/product-reviews
==============================================================================*/
#shopify-product-reviews {
  margin: 0 !important;
  /*================ Summary Rating ================*/
  /*================ Content ================*/
  /*================ Individual Ratings ================*/
  /*================ Review Form ================*/
}

#shopify-product-reviews .spr-container {
  padding: 0;
  border: 0 none;
  display: table;
}

#shopify-product-reviews .spr-form {
  display: none;
}

#shopify-product-reviews .spr-form fieldset {
  border: 0;
  padding: 0;
}

#shopify-product-reviews .spr-summary {
  border: none;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  #shopify-product-reviews .spr-summary {
    float: left;
    width: 20%;
  }

  #shopify-product-reviews .spr-summary .spr-summary-starrating {
    display: block;
    margin: 0;
  }
}

#shopify-product-reviews .spr-summary-caption {
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  #shopify-product-reviews .spr-summary-caption {
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

#shopify-product-reviews .spr-summary-actions-newreview:after {
  content: ' \203A';
  clear: none;
  display: inline;
}

@media screen and (min-width: 769px) {
  #shopify-product-reviews .spr-summary-actions-newreview {
    float: none;
  }
}

#shopify-product-reviews .spr-header:after {
  clear: none;
}

@media screen and (min-width: 769px) {
  #shopify-product-reviews .spr-content {
    float: left;
    width: 80%;
    padding-left: 30px;
  }
}

#shopify-product-reviews .spr-reviews {
  margin: 0;
}

#shopify-product-reviews .spr-review {
  padding: 0;
  padding-top: 30px;
  margin: 0;
  border: 0 none;
  border-top: 1px solid #e5e5e5;
}

#shopify-product-reviews .spr-review:first-child {
  border-top: none;
  padding-top: 0;
}

#shopify-product-reviews .spr-review+.spr-review {
  margin-top: 15px;
}

#shopify-product-reviews .spr-review .spr-review-reply {
  background: rgba(0, 0, 0, 0.02);
}

#shopify-product-reviews .spr-review-content-body {
  font-size: inherit;
}

#shopify-product-reviews .spr-review-content-body br {
  content: '';
  display: block;
  overflow: hidden;
  height: 1px;
}

#shopify-product-reviews .spr-review-header {
  margin-bottom: 0;
}

#shopify-product-reviews .spr-review-header:after {
  content: "";
  display: table;
  clear: both;
}

#shopify-product-reviews .spr-review-header-title {
  margin-right: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 20px;
  position: relative;
  top: 2px;
}

@media screen and (min-width: 769px) {

  #shopify-product-reviews .spr-review-header-starratings,
  #shopify-product-reviews .spr-review-header-title {
    display: inline;
  }
}

#shopify-product-reviews .spr-review-header-starratings {
  position: relative;
  top: 0;
  margin: 0 15px 10px 0;
}

#shopify-product-reviews .spr-review-reportreview {
  display: none;
}

#shopify-product-reviews .spr-form {
  border: 0 none;
  margin: 0 0 30px;
  padding: 0 0 30px;
}

/*================ Star Icons ================*/
.spr-badge-starrating,
.spr-icon {
  color: #ED7E1D;
  font-size: inherit;
}

.spr-badge-starrating:hover,
.spr-badge-starrating:active,
.spr-badge-starrating:focus,
.spr-icon:hover,
.spr-icon:active,
.spr-icon:focus {
  color: #ED7E1D;
}

/*================ Review count ================*/
.spr-badge-caption {
  display: inline-block;
  font-size: 13px;
}

/*============================================================================
  #Customer Account Pages
==============================================================================*/
.center-rte {
  text-align: center;
  padding-bottom: 30px;
}

.cust_account {
  text-transform: uppercase;
  border-bottom: 3px solid #d9d9d9;
  padding-bottom: 1px;
  clear: both;
  display: inline-block;
}

/*============================================================================
  #Contact Page
==============================================================================*/
#map-embed {
  margin-top: -29px;
  margin-bottom: 20px;
}

#map-embed iframe {
  width: 100%;
}

.contact-form label input[type="text"],
.contact-form label input[type="email"] {
  width: 100% !important;
  height: 46px !important;
  margin-bottom: 10px !important;
}

.contact-form .selectric {
  height: 46px !important;
  margin-bottom: 10px !important;
}

.contact-form .selectric .label {
  height: 46px !important;
  line-height: 46px !important;
}

.contact-form button[type="submit"].btn {
  line-height: 66px;
  margin: 0;
  border: none;
  bottom: 0;
  width: 168px;
  height: 60px;
  float: right;
}

.white-wave {
  background: url(../images/bg-wave-white.png) no-repeat center bottom;
  position: relative;
  top: -5px;
  width: 100%;
  height: 35px;
}

.fale-conosco-text {
  margin-bottom: 0px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px; 
  letter-spacing: 0.72px;
  color: #5e5e5e;
}

.fale-conosco-text:last-of-type {
  margin-bottom: 50px;
}

/* Tira o placeholder do select */
.selectric-items li:first-of-type {
  display: none;
}

/*============================================================================
  #Error Page
==============================================================================*/

.container-error-page{
  margin: 0 170px;
}

.section-header-error-page {
  margin-left: 35px;
}

.section-header--title-error-page {
  font-family: "Montserrat", sans-serif;
  font-size: 86px;
  font-weight: 900;
  line-height: 64px;
  color: #254f65 !important;
}

.section-header--sub-title-error-page {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.96px;
  color: #254f65 !important;
}

.error-page-list {
  list-style: disc;
  padding-left: 15px;
  margin-left: 35px;
}

.error-page-list li {
  color: #676767 !important;
  font-size: 12px;
  line-height: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.72px;
}

.error-page-btn {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: 1px solid transparent;
  width: 264px;
  height: 50px;
  margin-top: 50px;
  padding: 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 23px;
  text-align: center;
  background-color: #254f65;
  color: #fff;
}

.error-page-btn:hover {
  color: #fff;
}

/*============================================================================
  #About us
==============================================================================*/

.about-us-container {
  margin-top: 50px;
}

.about-us-titles {
  margin-bottom: 40px;
  color: #254f65;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  display: block;
}

.about-us-container p {
  color: #474747;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.72px;
}

/*============================================================================
#FAQ Page
==============================================================================*/
.faq {
  min-height: 350px;
  margin: 0 auto;
}

.faq dt {
  color: #254f65;
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.5px;
  padding-bottom: 15px;
  overflow: hidden;
  color: #5e5e5e;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 300;
  line-height: 34px;
  cursor: pointer;
  /* font-weight: 600; */
}
.faq dt:hover {
  color: #254f65;
  /* font-weight: 600; */
}

h1.faq-title {
  color: #254f65;
  font-family: Montserrat;
  font-size: 30px;
  font-weight: 700;
  line-height: 28px;
  text-transform: unset;
}

hr.faq-hr {
  border-top: 1px solid #000;
}

.faq dt .fa {
  float: right;
  font-size: 24px;
  color: #254f65;
  cursor: pointer;
}

.faq dd {
  display: none;
  overflow: hidden;
  padding-bottom: 25px;
  margin: 0;
}

.faq dd p {
  color: #666666;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: -0.32px;
}

.faq-list {
  column-count: 4;
}

.faq-list-item-link {
  color: #254f65;
  font-weight: bold;
  text-transform: uppercase;
}

/*============================================================================
  #popup-animation
==============================================================================*/
.mfp-content .btn {
  background: #254f65;
  width: 148px;
  height: 41px;
  padding: 0;
  text-transform: lowercase;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 41px;
}

.mfp-content .btn-secondary {
  background: #FFF;
  width: 170px;
  height: 41px;
  padding: 0;
  text-transform: lowercase;
  color: #254f65;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 41px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.mfp-zoom-out .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(1.3);
}

.mfp-zoom-out.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-zoom-out.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}

.mfp-zoom-out.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-zoom-out.mfp-removing .mfp-with-anim {
  transform: scale(1.3);
  opacity: 0;
}

.mfp-zoom-out.mfp-removing.mfp-bg {
  opacity: 0;
}

.spr-icon-star-half-alt::before {
  content: "\f123";
}

.acidjs-rating-stars,
.acidjs-rating-stars label::before {
  display: inline-block;
}

.acidjs-rating-stars label:hover,
.acidjs-rating-stars label:hover~label {
  color: #ED7E1D;
}

.acidjs-rating-stars * {
  margin: 0;
  padding: 0;
}

.acidjs-rating-stars {
  unicode-bidi: bidi-override;
  direction: rtl;
}

.acidjs-rating-stars input {
  display: none;
}

.acidjs-rating-stars input:checked~label:before {
  color: #ED7E1D;
  content: "\f005";
}

.acidjs-rating-stars label {
  color: #ccc;
  display: inline-block;
}

.acidjs-rating-stars label:before {
  content: "\f006";
  font-family: "FontAwesome";
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  margin-right: 6px;
}

.acidjs-rating-disabled {
  opacity: .50;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

#main-menu {
  display: flex;
  flex-direction: row;
}

#main-menu > li {
  float: none;
  flex: 1;
  border-right: 1px solid #D0D8DD;
}
#main-menu > li:last-child {
  border-right:unset;
}
#main-menu > li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 70px;
}
#main-menu ul {
  margin: 120px 0 0 0;
  _margin: 0;
  /*IE6 only*/
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: min-content;
  top: 77px;
  display: grid;
  /* grid-auto-flow: column; */
  grid-template-columns: repeat(3, 1fr);
  left: 0;
  z-index: 10000;
  transition: all .2s ease-in-out;
  /* columns: 3; */
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

#main-menu .has-dropdown>a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: normal;
  margin-left: 15px;
}

#main-menu li:hover>ul {
  opacity: 1;
  visibility: visible;
  margin: 0;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.18);
  background-color: #ffffff;
}

#main-menu ul ul {
  top: 0;
  left: 100%;
  margin: 0 0 0 80px;
  _margin: 0;
  /*IE6 only*/
}

#main-menu ul li {
  float: none;
  display: block;
  border: 0;
  min-width: 1;
  _line-height: 0;
  /*IE6 only*/
}

#main-menu ul a {
  padding: 15px;
  
  /*IE6 only*/
  display: flex;
  white-space: nowrap;
  justify-content: flex-start;
  height: auto;
}

#main-menu ul a:before {
  content: "";
  font-family: "FontAwesome";
  font-weight: normal;
  margin-right: 10px;
  left: -3px;
  position: absolute;
  transform: translate(-3px);
  -webkit-transform: translate(-3px);
  -moz-transform: translate(-3px);
  -o-transform: translate(-3px);
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
}

#main-menu .has-dropdown.active ul a {
  padding: 22px 10px;
}

#main-menu ul a:hover:before {
  transform: translate(5px);
  -webkit-transform: translate(5px);
  -moz-transform: translate(5px);
  -o-transform: translate(5px);
}

#main-menu ul .has-dropdown-2:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: normal;
  position: absolute;
  right: 10px;
  top: 14px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
}

#main-menu ul .has-dropdown-2:hover:after {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

#main-menu .has-dropdown .fa.fa-angle-down,
#main-menu .has-dropdown-2 .fa.fa-angle-down,
#main-menu .has-dropdown-2 .fa.fa-angle-right {
  display: none;
}

@media screen and (max-width: 769px) {
  body.move-nav .navbar {
    padding-bottom: 0;
    box-shadow: none;
  }

  ul.sm-simple .has-dropdown.active ul {
    display: block;
  }

  ul.sm-simple .has-dropdown.active ul ul {
    background: rgba(100, 100, 100, 0.035) none repeat scroll 0 0;
  }

  ul.sm-simple .has-dropdown.active ul ul li {
    padding-left: 10px;
    border-top: 0px !important;
  }

  ul.sm-simple .has-dropdown.active ul ul li a {
    border-top: 0px !important;
  }

  .sm-simple li.has-dropdown.bottom {
    background: #333333 none repeat scroll 0 0;
    border-top: 1px solid #787373 !important;
  }

  .sm-simple li.has-dropdown.bottom a {
    color: #ffffff !important;
  }

  #main-menu .has-dropdown.active ul {
    visibility: visible;
    opacity: 1;
  }

  #main-menu .has-dropdown>a:after,
  #main-menu ul .has-dropdown-2:after {
    content: "";
  }

  #main-menu .has-dropdown .fa.fa-angle-down,
  #main-menu .has-dropdown-2 .fa.fa-angle-right {
    display: block;
    position: absolute;
    right: 15px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 40px;
    line-height: 1.4;
    padding: 0 0 0 16px;
    top: 0;
    cursor: pointer;
  }

  #main-menu .has-dropdown-2 .fa.fa-angle-right {
    padding-left: 24px;
    right: 19px;
  }

  #main-menu .has-dropdown-2.active .fa.fa-angle-right {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    border-left: 0 none;
    padding-left: 16px;
    right: 11px;
  }

  #main-menu .has-dropdown.active .has-dropdown-2 ul {
    display: none;
  }

  #main-menu .has-dropdown.active .has-dropdown-2.active ul {
    display: block;
  }
}

/*vertical navigation*/
.left-menu h3,
.left-menu .h3 {
  margin-left: 0;
  /* margin-top: 10px; */
}

.left-menu h3,
.left-menu .h3,
.left-menu .h3 {
  border-bottom: 3px solid #d8d8d8;
  color: #333333;
  display: inline-block;
  text-transform: uppercase;
}

.vertical-nav {
  position: relative;
}

.vertical-nav ul {
  top: auto;
  left: 100%;
  margin: -43px 0 0 80px;
  _margin: 0;
  /*IE6 only*/
  background-color: #F2F2F2;
  padding: 0 20px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 10000;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

.vertical-nav ul li {
  float: none;
  display: block;
  border: 0;
  _line-height: 0;
  /*IE6 only*/
}

.vertical-nav li:hover {
  background-color: #F2F2F2;
}

.vertical-nav li:hover>ul {
  opacity: 1;
  visibility: visible;
  margin: -43px 0 0 -25px;
  box-shadow: 0 5px 40px #e5e5e5;
}

.vertical-nav li:hover>a {
  color: #373738;
  opacity: 0.65;
}

.vertical-nav ul a {
  padding: 15px;
  /* width: 130px; */
  _height: 10px;
  /*IE6 only*/
  display: block;
  white-space: nowrap;
  float: none;
  text-transform: uppercase;
  color: #373738;
}

.vertical-nav ul a:before {
  content: "";
  font-family: "FontAwesome";
  font-weight: normal;
  margin-right: 10px;
  left: 10px;
  position: absolute;
  transform: translate(0px);
  -webkit-transform: translate(0px);
  -moz-transform: translate(0px);
  -o-transform: translate(0px);
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
}

.vertical-nav ul a:hover:before {
  transform: translate(5px);
  -webkit-transform: translate(5px);
  -moz-transform: translate(5px);
  -o-transform: translate(5px);
}

.vertical-nav ul a li:hover ul li {
  color: #373738;
}

.slider-wrapper #slider .wrapper {
  height: 400px;
}

.slider-wrapper .grid-item {
  padding-bottom: 0px;
}

@media screen and (max-width: 768px) {
  .slider-wrapper #slider .wrapper {
    height: 300px;
  }
}

.template-index-boxed #slider .slide-text h2,
.template-index-boxed #slider .slide-text .h2,
.template-index-boxed #slider .slide-text .h2 {
  font-size: 3em;
}

.vertical-nav li a {
  border-top: 1px solid #d8d8d8;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 20px 10px 0;
  display: block;
  text-transform: uppercase;
}

.vertical-nav li:first-child a {
  border-top: 0px;
}

.vertical-nav li.no-sub a {
  border-top: 1px solid #d8d8d8;
  padding-left: 8px;
  padding-right: 10px;
}

.vertical-nav li.no-sub:first-child a {
  border-top: 0px;
}

.vertical-nav li.has-dropdown-2>a:after {
  content: "";
  font-family: "FontAwesome";
  font-weight: normal;
  margin-right: 10px;
  right: 4px;
  position: absolute;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

.vertical-nav li.has-dropdown-2>a:hover:after {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

#main-box-wrapper .navbar {
  background-color: #ffffff;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  border-left: 0px;
  border-right: 0px;
  box-shadow: none;
  color: #333333;
}

#top-bar select.currency-picker {
  font-size: 11px;
  margin: 0 0 0 5px;
  padding: 1px 16px 1px 5px;
  background-position: right 7px center;
}

#top-bar .site-header--no-padding {
  padding-bottom: 0 !important;
}

#top-bar .site-header--no-padding span {
  margin-top: 1px;
}

.header-cart-btn .cart-toggle {
  display: block;
}

.header-cart-btn span.cart-icon {
  background: url("../images/cart.png") no-repeat;
  min-width: 46px;
  width: 46px;
  height: 46px;
}

.header-cart-btn span.cart-count {
  background-color: #fff;
  color: #254f65;
  width: 20px;
  height: 20px;
  z-index: 1;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 20px;
  border-radius: 100%;
  position: absolute;
  right: 86px;
}

.header-cart-btn span.money {
  padding: 0;
}

@media screen and (max-width: 769px) {
  .left-menu {
    display: none;
  }

  .checkout .grid-item {
    padding-left: 0;
  }
}

.grid-item .no-padding {
  padding-left: 0;
}

.grid-item .no-padding select {
  line-height: 1.3;
}

.currency-picker__label {
  font-size: 0.85em;
}

.check-shipp a,
.new-account a {
  display: inline-block;
  height: 15px;
  position: relative;
  width: 15px;
  background-color: white;
  border: 1px solid #d8d8d8;
}

.new-account a {
  margin-right: 5px;
  top: 2px;
  width: 15px;
}

.check-shipp a.checked:after,
.new-account a.checked:after {
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 9px;
  font-weight: normal;
  left: 2px;
  position: absolute;
  top: 0px;
}

.grid-item.checkout {
  float: right;
  text-align: right;
}

.grid-item.hr {
  border-top: 1px solid #d8d8d8;
}

span.label {
  float: left;
  margin: 10px 0;
}

.ajaxifyCart--products>div#nothing-in-cart {
  margin-top: 30px;
  min-height: 30px;
}

.form_cart>#nothing-in-cart {
  text-align: center;
}

.form_cart>#nothing-in-cart h2,
.form_cart>#nothing-in-cart .h2 {
  text-transform: uppercase;
}

@media screen and (max-width: 480px) {

  .checkout .grid,
  .checkout .grid--rev,
  .checkout .grid--full {
    margin-left: 0;
  }

  #home-parallax {
    background-attachment: scroll;
  }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) {
  #home-parallax {
    background-attachment: scroll;
  }
}

@media only screen and (min-device-width: 414px) and (max-device-width: 736px) {
  #home-parallax {
    background-attachment: scroll;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #home-parallax {
    background-attachment: scroll;
  }
}

/* .showcase-slider {
  margin-bottom: 50px;
  padding: 0 75px;
} */

.showcase-slider {
  margin-bottom: 50px;
}


.list-items-default .btn {
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  height: 50px;
  background-color: #254f65;
}

.list-items-default .btn span {
  color: #ffffff;
  font-size: 14px;
  font-weight: bolder;
  line-height: 23px;
  text-transform: uppercase;
  text-align: center;
  padding-top: 13px;
}

.btn-notify-me span {
  color: #254f65;
  font-size: 14px;
  font-weight: bolder;
  line-height: 23px;
  text-transform: uppercase;
  text-align: center;
}

.list-items-default .btn-notify-me {
  background: #e1e1e1;
  display: block;
  height: 50px;
  padding: 0;
  margin: 0 auto;
  text-transform: lowercase;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: -0.64px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.list-items-default .product-item--price del, .list-items-default .product-item--price del i {
  font-style: normal;
  color: #303030;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 23px;
  text-decoration: line-through;
  text-transform: uppercase;
}

.list-items-default .product-item--price ins {
  display: block;
  color: #254f65;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  text-decoration: none;
  text-align: left;
}

.list-items-default .product-item--price ins big, .list-items-default .product-item--price ins big i {
  letter-spacing: -2px;
  font-weight: 700;
  font-style: normal;
  font-size: 19px;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
}
.product-item--price {
  text-align: left;
}

.buy-also .section-header {
  text-align: center;
  border-bottom: none;
}

.buy-also .section-header .h1 {
  letter-spacing: -1.08px;
  border-bottom: none;
  color: #254f65;
  font-size: 24px;
  font-weight: bolder;
  line-height: 52.24px;
  text-transform: uppercase;
}

.bg-product-detail {
  background: url('../images/bg-product-detail.png') no-repeat;
}

.main-image-product {
  display: table-cell;
  vertical-align: middle;
  width: 400px;
  height: 560px;
  margin: 0 auto;
}

.product-photo-container img {
  box-shadow: 0 19px 54px 11px rgba(0, 0, 0, 0.25);
}

.product-freight-loader {
  position: absolute;
  left: calc(50% - 32px);
  top: 50%;
}

#product-freight-modal {
  max-width: 800px;
  min-height: 400px;
}

#product-freight-modal table {
  display: none;
  width: 100%;
}

#product-freight-modal table thead th {
  min-width: 160px;
}

.search-view .section-header {
  padding-bottom: 20px;
}

.search-result {
  color: #464646;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.86px;
  margin-top: 10px;
}

.advanced-filters-wrapper h3 {
  background-color: #254f65;
  padding: 7px 10px;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.search-result strong {
  color: #254f65;
  font-weight: 700;
  letter-spacing: 0.86px;
  font-weight: bold;
  letter-spacing: 0.86px;
}

.section-header .search-title,
.section-header .category-title {
  background: #254f65;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 150px;
  letter-spacing: -2px;
  display: block;
  height: 150px;
  border: none;
}

.category-title {
  color: #254f65;
  font-weight: bold;
  font-size: 24px;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  bottom: 4px;
}

.form-horizontal select {
  float: right;
}
 
.search-view .search-results {
  color: #76ced9;
  font-family: 'Montserrat', sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -0.54px;
}

.search-return-container {
  display: grid;
  padding: 0;
  margin: 60px auto;
  list-style: none;
  grid-template-columns: 30% 70%;
  border-radius: 30px;
  border: 4px solid rgba(70,70,70, 0.3);
  justify-content: center;
  align-items: center;
  width: 741px;
  height: 190px;
}

.search-return-left-box img {
  margin: 20px 40px;
  justify-content: center;
}

.search-return-right-box {
  margin-left: 20px;
}

.search-return-primary-text{
  color: #464646;
  font-family: "Montserrat", "sans-serif";
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.86px;
}

.search-return-list {
  padding-left: 15px;
}

.search-return-list li {
  list-style: disc;
}

.search-return-secundary-text{
  color: #254f65;
  font-family: "Montserrat - Bold", "sans-serif";
  font-weight: 700;
  letter-spacing: 0.86px;
}

.search-results {
  vertical-align: -webkit-baseline-middle;
}

.notify-me-form {
  margin-top: 50px;
}

.notify-me-form .title {
  display: block;
  margin-bottom: 5px;
  font-family: 'Montserrat', "sans-serif";
  font-size: 27px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -1.08px;
}

.notify-me-form p {
  margin-bottom: 20px;
}

.notify-me-form label {
  overflow: hidden;
  margin-bottom: 15px;
}

.notify-me-form label span {
  float: left;
  width: 60px;
  font-family: 'Montserrat', 'sans-serif';
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.96px;
  line-height: 60px;
}

.notify-me-form label input[type="text"],
.notify-me-form label input[type="email"] {
  float: left;
  margin: 0;
  padding-left: 30px;
  border-radius: 30px;
  width: 290px;
  height: 60px;
}

.notify-me-form button[type="submit"] {
  background-color: #26a120;
  border: none;
  float: left;
  width: 88%;
  height: 60px;
  padding: 0;
}

.notify-me-form button[type="submit"] span {
  display: block;
  letter-spacing: -0.64px;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  text-transform: uppercase;
}

.form-default {
  overflow: hidden;
}

.form-default fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.form-default label {
  padding-bottom: 0;
  margin-bottom: 10px;
}

.form-default label input[type="text"], 
.form-default label input[type="email"], 
.form-default label input[type="password"], 
.form-default label input[type="tel"] {
  padding-left: 30px;
  margin-bottom: 0;
  width: 554px;
  height: 60px;
  border: 1px solid #3d3d3d;
  background-color: #ffffff;
  color: #353535;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px; /* Text style for "Cidade" */
  letter-spacing: 0.78px;
  font-family: 'Montserrat', sans-serif;
}
input#customer_password,
input#customer_cep {
  width: 274px;
  height: 60px;
  display: inline-block;
}
.form-default label textarea {
  width: 100%;
  /* height: 140px; */
  /* line-height: 20px; */
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  /* margin-bottom: 0; */
  /* border-radius: 30px; */
  border: 1px solid #3d3d3d;
  /* background-color: #ffffff; */
  /* color: #76ced9; */
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #353535;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px; /* Text style for "Mensagem*" */
  letter-spacing: 0.78px;
  /* width: 593px; */
}

.form-default label input[type="text"]::-webkit-input-placeholder,
.form-default label input[type="email"]::-webkit-input-placeholder,
.form-default label input[type="password"]::-webkit-input-placeholder,
.form-default label input[type="tel"]::-webkit-input-placeholder,
.form-default label textarea::-webkit-input-placeholder {
  color: #626262;
}
.form-default label input[type="text"]::-moz-placeholder,
.form-default label input[type="email"]::-moz-placeholder,
.form-default label input[type="password"]::-moz-placeholder,
.form-default label input[type="tel"]::-moz-placeholder,
.form-default label textarea::-webkit-input-placeholder {
  color: #626262;
}
.form-default label input[type="text"]:-ms-input-placeholder,
.form-default label input[type="email"]:-ms-input-placeholder,
.form-default label input[type="password"]:-ms-input-placeholder,
.form-default label input[type="tel"]:-ms-input-placeholder,
.form-default label textarea::-webkit-input-placeholder {
  color: #626262;
}
.form-default label input[type="text"]:-moz-placeholder,
.form-default label input[type="email"]:-moz-placeholder,
.form-default label input[type="password"]:-moz-placeholder,
.form-default label input[type="tel"]:-moz-placeholder,
.form-default label textarea::-webkit-input-placeholder {
  color: #626262;
}

.form-default .radio-field {
  margin-bottom: 20px;
  padding-left: 14px;
  margin-right: 13px;
  display: inline-block;
}

.form-default .radio-field > span {
  font-family: 'Montserrat', sans-serif;
  margin-left: 5px;
  margin-right: 15px;
  color: #626262;
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  /* text-transform: uppercase; */
  position: relative;
  top: 6px;
}

/* .form-default .radio-field > label {
  display: inline-block;
  line-height: 60px;
  margin-bottom: 0;
  margin-right: 15px;
} */

.form-default .radio-field > label {
  display: inline-block;
  margin-bottom: 0;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 14.76px;
  text-transform: uppercase;
  vertical-align: text-top;
  width: 91px;
}

.form-default .radio-field > label:last-child {
  margin-right: 0;
}

.form-default .radio-field > label span {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.31px;
  margin-right: 10px;
  color: #626262;
  font-size: 12px;
  font-weight: 400;
  line-height: 38px;
  text-transform: uppercase;
  position: relative;
  bottom: 2px;
}

.form-default .checkbox-field {
  height: 60px;
  line-height: 60px;
}

.form-default .checkbox-field input[type="checkbox"] {
  float: left;
  margin-top: 22px;
  margin-right: 10px;
  width: 17px;
  height: 17px;
}

.form-default .grid-item.hide {
  display: none;
}

.form-default button[type="submit"] {
  /* width: 160px; */
  /* height: 67px; */
  padding: 0;
  margin-top: 20px;
  line-height: 67px;
  background-color: #254f65;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.form-default .error input[type="text"],
.form-default .error input[type="password"] {
  border-color: #ef8f94;
}

.box-register h2 {
  color: #5e5e5e;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
}

.form-register {
  margin-bottom: 70px;
}

.form-register .type-person > label {
  margin: 0px 43px;
}

.type-person input[type="radio"],
.gender input[type="radio"],
.newsletter-check input[type="radio"]
{
  visibility: hidden;
  position: absolute;
}

.type-person input[type=radio] + :before,
.gender input[type=radio] + :before,
.newsletter-check input[type=radio] + :before
{
  height:15px;
  width:15px;
  margin-right: 5px;
  content: " ";
  display:inline-block;
  vertical-align: baseline;
  border:1px solid #254f65;
  border-radius: 50%;
  position: relative;
  top: 3px;
}

.type-person input[type=radio]:checked + :before,
.gender input[type=radio]:checked + :before,
.newsletter-check input[type=radio]:checked + :before
{
  background-color: #254f65;
}

.grid-item .type-person label, .grid-item .gender label {
  width: 15% !important;
}

.form-register button[type="submit"] .fa {
  margin-left: 10px;
}

.box-address-register {
  display: none;
}

.form-address {
  margin-bottom: 70px;
}

.form-address h2 {
  color: #333333;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1.2px;
}

.form-address button[type="submit"] {
  float: right;
  margin: 0;
}

.form-address button[type="submit"] .fa {
  margin-right: 10px;
}

.address-list {
  margin-bottom: 20px;
}

.address-list li {
  margin-bottom: 20px;
  display: inline-block;
  width: 280px;
  vertical-align: text-top;
}

.address-list li .address-container {
  min-height: 175px;
  padding: 35px;
}

.address-list li .edit-address {
  background-color: #254f65;
  text-align: center;
  margin-right: 10px;
  line-height: 40px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.64px;
  padding: 10px 20px;
}

.address-list li .remove-address {
  background-color: #254f65;
  text-align: center;
  margin-right: 10px;
  line-height: 40px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.64px;
  padding: 10px 20px;
}

.address-list li .remove-address .fa {
  font-size: 18px;
  color: #cccccc;
}

.address-list li h3 {
  display: inline-block;
  color: #254f65;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.address-list li p {
  color: #254f65;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.btn-register-new-address {
  display: block;
  width: 215px;
  height: 40px;
  margin: 0 auto;
  background-color: #254f65;
  text-align: center;
  color: #fff;
  line-height: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.64px;
  margin-bottom: 50px;
}

.btn-register-new-address:hover {
  color: #fff;
}

.box-login h2 {
  color: #5e5e5e;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
}

.box-login .form-success {
  width: 460px !important;
}

.box-login .form-login {
  margin-top: 32px;
}

.form-default label.error input {
  border-color: red;
}

input#customer_email {
  width: 473px !important;
}

h1.welcome {
  color: #254f65;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 28px;
  padding-top: 57px;
  margin-bottom: 5px;
  margin-bottom: 90px;
}
.box-register {
  float: right;
  width: 474px;
}
.box-register .form-success {
  width: 460px;
}

.btn-cadastrar {
  width: 160px;
  height: 67px;
}

p.welcome {
  color: #5e5e5e;
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  margin-top: 10px;
}
.box-login {
  border-right: 1px solid #000000;
  padding-right: 30px;
}
.form-login button[type="submit"].btn-login {
  border: none;
  width: 168px;
  height: 60px;
  margin-left: 27px;
  position: relative;
  top: 3px;
}
.form-login button[type="submit"].btn-login:hover, .form-default button[type="submit"]:hover {
  background: #254f65;
}

.form-login .forgot-my-password {
  display: inline-block;
  letter-spacing: -0.31px;
  color: #254f65;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
}

/* AUTORES */
.authors {
  padding: 0 10px;
  margin-bottom: 50px;
}

.author-details {
  background: url("../images/bg-author-description.png") no-repeat center center transparent;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 800px;
  margin-bottom: 50px;
}

.author-details .close {
  background-color: #76ced9;
  border: 2px solid #ffffff;
  border-radius: 20px;
  position: relative;
  top: -40px;
  float: right;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.64px;
  padding: 5px 25px;
}

.author-details .close span {
  margin-left: 5px;
}

.author-details .wrapper {
  margin-top: 120px;
}

.author-details .author-description .author-name {
  color: #333333;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -0.8px;
}

.author-details .author-description p {
  color: #333333;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.32px;
}

.featured-author a {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -0.64px;
}

.authors-list li {
  padding-bottom: 10px;
}

.authors-list li a {
  display: block;
  color: #474747;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.72px;
  text-align: left;
}

/* Meus Pedidos */
.orders.wrapper {
  width: 1280px;
  min-height: 400px;
}

.table-my-orders {
  width: 100%;
  margin-bottom: 50px;
}

.table-my-orders th {
  border: none;
  border-bottom: 2px solid #5e5e5e;
  padding-bottom: 20px;
  color: #5e5e5e;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 700;
  line-height: 22.39px;
  border-top: 2px solid #5e5e5e;
  padding-top: 20px;
  min-width: 150px;
}

.table-my-orders th:last-child,
.table-my-orders td:last-child {
  width: 170px;
  padding-right: 0;
}

.table-my-orders td img {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.table-my-orders td {
  border: none;
  padding-top: 25px;
  padding-bottom: 25px;
  color: #5e5e5e;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 22.39px;
  text-transform: uppercase;
}
.table-my-orders tr:nth-child(even) td{
  background:#ebebeb;
}

.table-my-orders td strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 22.39px;
}

.table-my-orders td span {
  display: block;
  color: #999999;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.table-my-orders td del {
  display: block;
  color: #999999;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-decoration: line-through;
  text-transform: uppercase;
}

.table-my-orders td ins {
  display: block;
  color: #254f65;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -1.32px;
}

.table-my-orders td .btn-order-details {
  display: inline-block;
  width: 190px;
  height: 41px;
  line-height: 41px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background-color: #254f65;
}

.table-my-orders tr.order-details > td {
  padding: 0;
}

.table-my-orders tr.order-details > td > div {
  display: none;
  padding: 50px 0;
}

.table-my-orders tr.order-details table {
  width: 100%;
  margin-bottom: 50px;
}

.order-information-title {
  color: #333333;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1.2px;
  text-transform: none;
  margin-left: 15px;
}

dl.order-data {
  float: left;
  margin: 0 0 20px 20px;
}

dl.order-data dt {
  color: #5e5e5e;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 22.39px;
}

dl.order-data dd {
  margin: 0 0 30px;
  color: #5e5e5e;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 22.39px;
}

dl.order-data dd a {
  color: #5e5e5e;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 22.39px;
  text-decoration: underline;
}

dl.order-values {
  float: right;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 20px;
}

dl.order-values dt {
  float: left;
  clear: both;
  width: 200px;
  color: #333333;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

dl.order-values dd {
  float: left;
  min-width: 150px;
  margin-left: 10px;
  color:#254f65;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: -1.84px;
}

dl.order-values dt.discount-coupon + dd {
  color: #000000;
}

dl.order-values dt.total-value {
  line-height: 48px;
}

dl.order-values dt.total-value + dd {
  color: #254f65;
  font-size: 24px;
  line-height: 48px;
  letter-spacing: -2.4px;
}

.form-change-password {
  margin: 100px 0;
}
div#product-plots {
  border: 10px solid #254f65;
  border-radius: 0px;
}

/* ==========================================================

# Elements

=========================================================== */

i.fa.fa-th, i.fa.fa-th-list{
  font-size: 24px;
  cursor: pointer;
}

i.fa.fa-th span, i.fa.fa span {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  vertical-align: middle;
  margin-left: 5px;
}

i.fa.fa-th:hover, i.fa.fa-th-list:hover {
  color: #254f65;
  cursor: pointer;
}

.pages-view h1, .pages-view .pages-content h1 {
  color: #254f65;
  font-family: "Montserrat";
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.pages-view .pages-content * {
  color: #474747;
  font-family: 'Montserrat';
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.72px;
}

.showcase-view {
  margin-top: 50px;
}

.form-forgot-my-password button[type="submit"] {
  float: right;
  width: 160px;
  height: 67px;
}

.mini-header-container {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr;
  padding: 6px 0;
  justify-items: flex-start;
  align-items: center;
}

.mini-header-itens {
  display: flex;
  align-items: center;
  justify-self: flex-end;
}

.mini-header-itens:first-of-type {
  justify-self: flex-start;
}

.show-all{
  display: block;
  width: 150px;
  height: 50px;
  margin: 0 auto 50px;
  padding: 15px;
  background-color: #254f65;
  font-family: 'Montserrat', sans-serif;
  color: #fff !important;
}

.categories-menu {
  width: 220px;
  margin-bottom: 20px;
  float: left;
  clear: left;
}

.categories-menu-level-1 > ul > li {
  background: #f8f8f8;
  color: #264f65;
  cursor: pointer;
  font: 12px/30px 'Montserrat', sans-serif;
  margin-top: 6px;
  text-indent: 7px;
}

.categories-menu-level-1 > ul > li > a {
  border-bottom: 1px solid #264f65;
  padding: 5px 40px 5px 12px;
  display: block;
  text-decoration: none;
  color: #264f65;
}

.categories-menu-level-2 {
  display: none;
}

.categories-menu-level-2 > ul {
  margin: 0;
}

.categories-menu-level-2 > ul > li {
  text-indent: 20px;
  border-bottom: 1px solid #e5e6e6;
}

.categories-menu-level-2 > ul > li > a {
  display: block;
  font: 12px/40px 'Montserrat', sans-serif;
  color: #264f65;
}

.categories-menu-level-3,
.categories-menu-level-4 {
  display: none;
}

.download-archives-products {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  text-align: center;
  gap: 15px;
  margin-bottom: 40px;
}

.download-archives-products a {
  font-size: 12px;
  color: #062a4a;
}