@charset "UTF-8";
/**
 * Global style for any project page
 * Usefull for Mobile/Tablet/Desktop separated env
 */
/**
 * Common config (tools, mixins, variables, etc.)
 */
/**
 * Vendor (Third party libs)
 * Mixins/Functions
 */
/**
 * Settings
 */
/**
 * Colors
 */
/**
 * Typography
 */
/**
 * Font Weight
 * Uses by 'font-weight' mixin
 */
/* stylelint-disable-next-line */
/**
 * Settings alerts boxes
 */
/**
 * General Variables
 * Call on every SASS files
 */
/**
 * SASS Rem config
 */
/**
 * Initialize.css config
 */
/**
 * SASS Form Reset
 */
@import url("https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre:300,400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700&display=swap");
/**
 * Tools
 */
/**
 * Register all z-indexes values
 * Desc order (...5003, 5002, 5001)
 */
/**
 * Z-indexes organization
 * Main file is in: scss/settings/_z-indexes.scss
 */
/**
 * Screen Sizes
 */
/**
 * Breakpoints - Media Queries
 */
/**
 * Media Queries
 * Mobile first
 */
/**
 * Font Weight
 */
/**
 * Common Helpers
 */
/**
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
/**
 * Custom text selection style
 */
/**
 * Custom input placeholders
 */
/**
 * Custom default browser scrollbar
 */
/**
 * Generate arrow on a pseudo-element
 * To set color, use 'border-color' inside a class
 *
 * @param  {string} $position:     up              Arrow position (up, right, bottom, left)
 * @param  {string} $arrow-width:  20px             Arrow Width
 * @param  {string} $arrow-size:   $arrow-width/4   Arrow size
 *
 * @return A CSS Arrow
 */
/**
 * @include triangle within a pseudo element and add positioning properties (ie. top, left)
 * $direction: up, down, left, right
 */
/**
 * Feature.js mixins
 * http://featurejs.com/
 */
/**
 * Provide a hover effect for non-touch devices, turn it into an Active state for mobile, and maintain a fallback.
 * @requires Modernizr as a JS dependency to get .no-touch classes
 * Adds styles via @content
 *
 * To apply it to a specific class, the mixin must be applied inside that class, like so (since it relies on the & operator):
 * .anchor {
 *     @include touch-hover {
 *         color: purple;
 *     }
 * }
 */
/**
 * Applies transition to element but removes it from the same element on touch devices.
 * Useful for making all pseudo hover effects on mobile instant on click.
 *
 * @requires Modernizr
 */
/**
 * Placeholder Components
 */
@import url("https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre:300,400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700&display=swap");
.x-form__submit, .x-form__file-control:before {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  color: #fff;
  position: relative;
  padding-left: 32px;
  padding-left: 2rem;
  padding-right: 32px;
  padding-right: 2rem;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  height: 32px;
  height: 2rem;
  /**
     * Specif buttons styles
     */ }
  .x-form__submit:focus, .x-form__file-control:focus:before, .has--focus.x-form__submit, .has--focus.x-form__file-control:before {
    outline: 0; }
  .is--disabled.x-form__submit, .is--disabled.x-form__file-control:before, .x-form__submit:disabled, .x-form__file-control:disabled:before {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none; }
  .x-form__submit:not(:disabled):not(.is--disabled), .x-form__file-control:not(:disabled):not(.is--disabled):before {
    cursor: pointer; }
  .x-form__submit, .x-form__file-control:before {
    background-color: #0030a0;
    color: #093953;
    width: 100%; }
    .no-js .x-form__submit:hover, .no-js .x-form__file-control:hover:before,
    .js.no-touch .x-form__submit:hover,
    .js.no-touch .x-form__file-control:hover:before,
    .js.touch .x-form__submit:active,
    .js.touch .x-form__file-control:active:before {
      border-color: #003fd3;
      background-color: #2163ff; }
  .x-form__group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5px;
    margin-bottom: 0.3125rem; }
    .has--two-columns.x-form__group .form__field {
      width: 48.5%; }
  .x-form__group {
    position: relative; }
    .x-form__group input.error,
    .x-form__group select.error,
    .x-form__group textarea.error {
      border: 1px solid #ebcccc !important; }
    .x-form__group label.error {
      color: #a94442;
      font-size: 10px;
      font-size: 0.625rem;
      position: relative;
      top: -16px;
      top: -1rem;
      right: 3px;
      right: 0.1875rem; }
  .x-form__group-left, .x-form__group-right {
    width: 100%; }
  .x-form__group-left {
    margin-right: 5px;
    margin-right: 0.3125rem; }
  .x-form__group input[type='text'],
  .x-form__group input[type='email'],
  .x-form__group input[type='number'],
  .x-form__group input[type='password'],
  .x-form__group input[type='tel'],
  .x-form__group input[type='file'],
  .x-form__group select, .x-form__file-control {
    color: #adadad;
    border: 1px solid #e7eeee;
    font-size: 15px;
    font-size: 0.9375rem;
    padding-left: 21px;
    padding-left: 1.3125rem;
    padding-right: 20px;
    padding-right: 1.25rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    min-height: 51px;
    min-height: 3.1875rem; }
    .x-form__group input[type='text']::-webkit-input-placeholder,
    .x-form__group input[type='email']::-webkit-input-placeholder,
    .x-form__group input[type='number']::-webkit-input-placeholder,
    .x-form__group input[type='password']::-webkit-input-placeholder,
    .x-form__group input[type='tel']::-webkit-input-placeholder,
    .x-form__group input[type='file']::-webkit-input-placeholder,
    .x-form__group select::-webkit-input-placeholder, .x-form__file-control::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #adadad;
      opacity: 1; }
    .x-form__group input[type='text']::-moz-placeholder,
    .x-form__group input[type='email']::-moz-placeholder,
    .x-form__group input[type='number']::-moz-placeholder,
    .x-form__group input[type='password']::-moz-placeholder,
    .x-form__group input[type='tel']::-moz-placeholder,
    .x-form__group input[type='file']::-moz-placeholder,
    .x-form__group select::-moz-placeholder, .x-form__file-control::-moz-placeholder {
      /* Firefox 19+ */
      color: #adadad;
      opacity: 1; }
    .x-form__group input:-ms-input-placeholder[type='text'],
    .x-form__group input:-ms-input-placeholder[type='email'],
    .x-form__group input:-ms-input-placeholder[type='number'],
    .x-form__group input:-ms-input-placeholder[type='password'],
    .x-form__group input:-ms-input-placeholder[type='tel'],
    .x-form__group input:-ms-input-placeholder[type='file'],
    .x-form__group select:-ms-input-placeholder, .x-form__file-control:-ms-input-placeholder {
      /* IE 10+ */
      color: #adadad;
      opacity: 1; }
    .x-form__group input:-moz-placeholder[type='text'],
    .x-form__group input:-moz-placeholder[type='email'],
    .x-form__group input:-moz-placeholder[type='number'],
    .x-form__group input:-moz-placeholder[type='password'],
    .x-form__group input:-moz-placeholder[type='tel'],
    .x-form__group input:-moz-placeholder[type='file'],
    .x-form__group select:-moz-placeholder, .x-form__file-control:-moz-placeholder {
      /* Firefox 18- */
      color: #adadad;
      opacity: 1; }
    @media only screen and (max-width: 768px) {
      .x-form__group input[type='text'],
      .x-form__group input[type='email'],
      .x-form__group input[type='number'],
      .x-form__group input[type='password'],
      .x-form__group input[type='tel'],
      .x-form__group input[type='file'],
      .x-form__group select, .x-form__file-control {
        font-size: 15px;
        font-size: 0.9375rem; } }
    .x-form__group input:focus[type='text'],
    .x-form__group input:focus[type='email'],
    .x-form__group input:focus[type='number'],
    .x-form__group input:focus[type='password'],
    .x-form__group input:focus[type='tel'],
    .x-form__group input:focus[type='file'],
    .x-form__group select:focus, .x-form__file-control:focus {
      -webkit-box-shadow: 0 0 1px 1px rgba(191, 191, 191, 0.35);
      box-shadow: 0 0 1px 1px rgba(191, 191, 191, 0.35); }
  .x-form__group textarea {
    color: #adadad;
    border: 1px solid #e7eeee;
    font-size: 15px;
    font-size: 0.9375rem;
    padding-left: 21px;
    padding-left: 1.3125rem;
    padding-right: 20px;
    padding-right: 1.25rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    padding-top: 12px;
    padding-top: 0.75rem;
    padding-bottom: 12px;
    padding-bottom: 0.75rem;
    transition: all 0.3s; }
    .x-form__group textarea::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #adadad;
      opacity: 1; }
    .x-form__group textarea::-moz-placeholder {
      /* Firefox 19+ */
      color: #adadad;
      opacity: 1; }
    .x-form__group textarea:-ms-input-placeholder {
      /* IE 10+ */
      color: #adadad;
      opacity: 1; }
    .x-form__group textarea:-moz-placeholder {
      /* Firefox 18- */
      color: #adadad;
      opacity: 1; }
    @media only screen and (max-width: 768px) {
      .x-form__group textarea {
        font-size: 15px;
        font-size: 0.9375rem; } }
  .x-form__group label {
    display: block;
    color: #093953;
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 12px;
    font-weight: 400;
    position: relative;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 10px; }
    @media only screen and (max-width: 768px) {
      .x-form__group label {
        font-size: 15px;
        font-size: 0.9375rem; } }
  .x-form__checkbox-field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .x-form__checkbox {
    visibility: hidden;
    width: 0 !important; }
    .x-form__checkbox:checked + label + .form__checkbox-label:before,
    .x-form__checkbox:checked + .form__checkbox-label:before {
      background: #d3d3d3; }
  .x-form__checkbox-label {
    width: 16px;
    width: 1rem;
    height: 16px;
    height: 1rem;
    display: block;
    position: relative;
    text-indent: -999px;
    overflow: hidden;
    border: 1px solid #d3d3d3;
    cursor: pointer;
    margin-right: 8px;
    margin-right: 0.5rem; }
    .x-form__checkbox-label:before {
      content: '';
      width: 10px;
      width: 0.625rem;
      height: 10px;
      height: 0.625rem;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      position: absolute;
      margin: auto;
      -webkit-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
      transition: all 0.4s ease; }
  .x-form__checkbox-text {
    font-size: 12px;
    font-size: 0.75rem; }
  .x-form__group input[type='checkbox'] {
    margin-right: 0; }
  .x-form__checkbox-default-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 51px; }
    .x-form__checkbox-default-group label {
      margin-bottom: 0; }
  .x-form__group input[type='radio'] {
    margin-right: 2.5px;
    margin-right: 0.15625rem; }
  .x-form__radio-group, .x-form__radio-field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 51px;
    height: 3.1875rem; }
    .x-form__radio-group label, .x-form__radio-field label {
      margin-bottom: 0; }
  .x-form__radio-field {
    margin-right: 10px;
    margin-right: 0.625rem; }
    .x-form__radio-field:last-child {
      margin-right: 0; }
  .x-form__file {
    cursor: pointer;
    margin-bottom: 0 !important;
    position: relative;
    width: 100%; }
  .x-form__file-input {
    font-size: 0 !important;
    height: 51px;
    width: 100%; }
  .x-form__file-control {
    border: 0;
    left: 0;
    position: absolute;
    top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden; }
    .x-form__file-control:before {
      content: attr(data-btn-name);
      padding-left: 12px;
      padding-left: 0.75rem;
      padding-right: 12px;
      padding-right: 0.75rem;
      position: absolute;
      right: -1px;
      top: -1px;
      z-index: 1;
      -webkit-transition: background-color 0.3s ease-out;
      -o-transition: background-color 0.3s ease-out;
      transition: background-color 0.3s ease-out; }
    .x-form__file-control:after {
      content: attr(data-file-name); }

/**
 * SVG Icons
 */
.icon {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  fill: currentColor; }

.x-quick-view {
  background-color: #f9f9f9;
  display: block !important;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  max-height: 100%;
  max-width: 435px;
  max-width: 27.1875rem;
  overflow-y: auto;
  z-index: 5001;
  -webkit-transition: -webkit-transform 0.175s cubic-bezier(0.4, 0, 1, 1);
  transition: -webkit-transform 0.175s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: transform 0.175s cubic-bezier(0.4, 0, 1, 1);
  transition: transform 0.175s cubic-bezier(0.4, 0, 1, 1);
  transition: transform 0.175s cubic-bezier(0.4, 0, 1, 1), -webkit-transform 0.175s cubic-bezier(0.4, 0, 1, 1);
  pointer-events: none; }
  .is--active.x-quick-view {
    will-change: transform;
    -webkit-transition: -webkit-transform 0.175s cubic-bezier(0, 0, 0.2, 1);
    transition: -webkit-transform 0.175s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: transform 0.175s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 0.175s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 0.175s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.175s cubic-bezier(0, 0, 0.2, 1);
    pointer-events: all; }

/**
 * Generic
 */
/**
 * Initialize.css is a complete and customizable collection of
 * CSS best practices based on Normalize.css and HTML5 Boilerplate.
 */
/*!
 * Initialize.css (v1.4.0) is a complete and customizable collection of CSS best practices based on Normalize.css and HTML5 Boilerplate.
 * http://jeroenoomsnl.github.io/initialize-css
 *
 * HTML5 Boilerplate: https://github.com/h5bp/html5-boilerplate
 * Normalize.css: http://github.com/necolas/normalize.css
 */
/* ==========================================================================
   General
   ========================================================================== */
/**
 * 1. Set default font family to $initialize-font-family (default: sans-serif)
 * 2. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.
 * 3. Configurable defaults
 */
html {
  color: #000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: sans-serif;
  /* 1 */
  line-height: 1.4;
  /* 3 */
  font-size: 16px;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove the margin in all browsers
 */
body {
  margin: 0; }

/**
 * Inheriting box-sizing
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit; }

/* ==========================================================================
   HTML5 display defenitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/**
     * Add the correct display in IE 9-.
     */
audio,
canvas,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/* ==========================================================================
   Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  -moz-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/*
     * Address styling not present in IE 8/9.
     */
mark {
  background: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
     * Remove the border on images inside links in IE 10-.
     */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Grouping content
   ========================================================================== */
/*
 * Address margin not present in IE 8/9 and Safari.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.4;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
    * Correct the padding in Firefox.
    */
fieldset {
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
     * 1. Add the correct box sizing in IE 10-.
     * 2. Remove the padding in IE 10-.
     */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* ==========================================================================
   Optional configurations
   ========================================================================== */
/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  margin: 0; }

/**
 * Block elements
 */
p, table, ul, ol, fieldset, blockquote, dl {
  margin: 0; }

/* ==========================================================================
   Print styles
   ========================================================================== */
/**
 * Form reset - Vendor lib
 */
/**
 * SCSS Form Reset Helpers - Forked from: https://gist.github.com/anthonyshort/552543
 *
 * Intended usage:
 * - MIXINS: for very specific use cases, when you dont want to reset absolutly all the forms, very verbose output.
 * - PLACEHOLDER SELECTORS: use as extending classes. Less verbose, more generic overrides.
 *
 * A couple of things to watch out for:
 *
 * - IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
 * - The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
 * - You NEED to set the font-size and family on all form elements
 * - Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
 * - You can style the upload button in webkit using ::-webkit-file-upload-button
 * - ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
 * - IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
 * - By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs
 */
  ::-webkit-search-decoration {
    display: none; }
  ::-webkit-file-upload-button {
    padding: 0;
    border: 0;
    background: none; }

input {
  display: inline-block;
  margin: 0;
  border: 0;
  padding: 0;
  width: auto;
  vertical-align: middle;
  white-space: normal;
  line-height: inherit;
  background: none;
  /* Browsers have different default form fonts */
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  /* Make webkit render the search input like a normal text field */
  /* Turn off the recent search for webkit. It adds about 15px padding on the left */
  /* Fix IE7 display bug */
  /* These elements are usually rendered a certain way by the browser */ }
  input:focus {
    outline: 0; }
  input[type=checkbox], input[type=radio] {
    width: 13px;
    height: 13px; }
  input[type=search] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box; }
  ::-webkit-search-decoration {
    display: none; }
  input[type="reset"], input[type="button"], input[type="submit"] {
    overflow: visible; }
  input[type=reset], input[type=button], input[type=submit], input[type=checkbox], input[type=radio] {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
    cursor: pointer; }

label {
  display: inline-block;
  margin: 0;
  border: 0;
  padding: 0;
  width: auto;
  vertical-align: middle;
  white-space: normal;
  line-height: inherit;
  background: none;
  /* Browsers have different default form fonts */
  color: inherit;
  font-size: inherit;
  font-family: inherit; }

select {
  display: inline-block;
  margin: 0;
  border: 0;
  padding: 0;
  width: auto;
  vertical-align: middle;
  white-space: normal;
  line-height: inherit;
  background: none;
  /* Browsers have different default form fonts */
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  /* Move the label to the top */ }
  select[multiple] {
    vertical-align: top; }

button {
  display: inline-block;
  margin: 0;
  border: 0;
  padding: 0;
  width: auto;
  vertical-align: middle;
  white-space: normal;
  line-height: inherit;
  background: none;
  /* Browsers have different default form fonts */
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  background: none;
  border: 0;
  outline: none;
  /* IE8 and FF freak out if this rule is within another selector */ }
  button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  button:hover, button:active, button:focus {
    outline: 0; }
  ::-webkit-file-upload-button {
    padding: 0;
    border: 0;
    background: none; }

textarea {
  display: inline-block;
  margin: 0;
  border: 0;
  padding: 0;
  width: auto;
  vertical-align: middle;
  white-space: normal;
  line-height: inherit;
  background: none;
  /* Browsers have different default form fonts */
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto; }

/**
 * Elements
 */
html {
  font-size: 100%;
  font-weight: 400;
  cursor: default;
  height: 100%;
  word-break: break-word; }

body {
  background-color: #fff;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /**
     * iOS Hack
     * Needs 'viewport-fit=cover' on meta Viewport
     */
  padding: constant(safe-area-inset-top) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
  /* Status bar height on iOS 11.0 */
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  /* Status bar height on iOS 11+ */ }
  body.no-scroll {
    overflow: hidden !important; }

/**
 * Mobile Fast Click
 * Clicking links, buttons, and form fields will be
 * a lot quicker and responsive on touch devices.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

/**
 * Hand cursor on clickable input elements
 */
a,
input[type='button'],
input[type='submit'],
input[type='file'],
input[type='image'],
button {
  cursor: pointer; }

h1 {
  font-size: 16px;
  font-weight: 400; }

h2 {
  font-size: 16px;
  font-weight: 400; }

h3 {
  font-size: 16px;
  font-weight: 400; }

h4 {
  font-size: 16px;
  font-weight: 400; }

h5 {
  font-size: 16px;
  font-weight: 400; }

h6 {
  font-size: 16px;
  font-weight: 400; }

a {
  text-decoration: inherit;
  color: inherit; }
  a:hover {
    cursor: pointer; }

ul,
ol {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none; }

img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle; }

/**
 * Module Globals
 */
body:not(.product) > img {
  display: none !important; }

body.has--loader .x-ajax-loader {
  opacity: 1;
  visibility: visible; }

body.quickview-active::before {
  content: "";
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  z-index: 2001; }

body.quickview-active #suiteshare_chat, body.no-scroll #suiteshare_chat {
  display: none !important; }

body.has--no-scroll {
  height: 100%;
  overflow: hidden; }
  @media only screen and (min-width: 769px) {
    body.has--no-scroll {
      margin-right: 17px;
      margin-right: 1.0625rem; } }

body #main-header {
  -webkit-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease; }
  body #main-header svg g {
    -webkit-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease; }
    body #main-header svg g#Group_224 {
      -webkit-transform: translate(-982px, -162px) scale(1);
      -ms-transform: translate(-982px, -162px) scale(1);
      transform: translate(-982px, -162px) scale(1);
      opacity: 1; }
    body #main-header svg g#Group_226 {
      -webkit-transform: translate(-933px, -132px) scale(1);
      -ms-transform: translate(-933px, -132px) scale(1);
      transform: translate(-933px, -132px) scale(1); }
  body #main-header.is-fixed .header-middle {
    padding: 0px; }
    @media only screen and (max-width: 768px) {
      body #main-header.is-fixed .header-middle {
        padding: 10px 0px; } }
    body #main-header.is-fixed .header-middle .x-main-logo {
      padding: 0px; }
      body #main-header.is-fixed .header-middle .x-main-logo svg g {
        -webkit-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease; }
        body #main-header.is-fixed .header-middle .x-main-logo svg g#Group_224 {
          -webkit-transform: translate(-983px, -163.246px) scale(0);
          -ms-transform: translate(-983px, -163.246px) scale(0);
          transform: translate(-983px, -163.246px) scale(0);
          opacity: 0; }
        body #main-header.is-fixed .header-middle .x-main-logo svg g#Group_226 {
          -webkit-transform: translate(-965px, -150px) scale(2.5);
          -ms-transform: translate(-965px, -150px) scale(2.5);
          transform: translate(-965px, -150px) scale(2.5); }
        @media only screen and (max-width: 768px) {
          body #main-header.is-fixed .header-middle .x-main-logo svg g#Group_226 {
            -webkit-transform: translate(-970px, -158px) scale(2.75) !important;
            -ms-transform: translate(-970px, -158px) scale(2.75) !important;
            transform: translate(-970px, -158px) scale(2.75) !important; } }
  body #main-header.is-fixed .countdown-promo {
    display: none; }
  body #main-header .header-middle {
    -webkit-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease; }
    body #main-header .header-middle .x-main-logo {
      padding: 0px; }
      body #main-header .header-middle .x-main-logo svg {
        display: block;
        width: 150px;
        margin: 0 auto;
        -webkit-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease; }
        body #main-header .header-middle .x-main-logo svg g {
          -webkit-transition: all 200ms ease;
          -o-transition: all 200ms ease;
          transition: all 200ms ease; }
        @media only screen and (max-width: 768px) {
          body #main-header .header-middle .x-main-logo svg {
            width: 120px; } }
    body #main-header .header-middle .header-logo {
      -webkit-transition: all 200ms ease;
      -o-transition: all 200ms ease;
      transition: all 200ms ease; }
      body #main-header .header-middle .header-logo a {
        display: block;
        width: 157px;
        height: 44px;
        margin: 0px auto;
        -webkit-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease; }
        body #main-header .header-middle .header-logo a .aviator-logo {
          display: block;
          width: 100%;
          height: 100%;
          background-image: url("/arquivos/aviator.png");
          background-position: 50%;
          -webkit-background-size: 157px 157px;
          background-size: 157px;
          background-repeat: no-repeat;
          -webkit-transition: all 200ms ease;
          -o-transition: all 200ms ease;
          transition: all 200ms ease; }
    body #main-header .header-middle .x-minicart-group {
      display: none; }
  body #main-header .header-bottom {
    top: -1px; }

body .x-modal {
  position: fixed;
  top: 0px;
  left: 0px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  display: none !important;
  /* modal boas vindas desativado */ }
  body .x-modal--registered {
    text-align: center; }
    body .x-modal--registered .x-modal__content-message::after {
      font-size: 14px;
      content: "*Não cumulativo com outros descontos e produtos da Linha Off.";
      display: block;
      margin: 10px 0; }
    body .x-modal--registered .x-modal__content-message + a {
      padding: 15px 30px;
      background: #0c3a52;
      font-size: 16px;
      margin: 15px 0 0;
      color: #fff;
      display: inline-block; }
  body .x-modal.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
    -webkit-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial; }
  body .x-modal__content {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0px);
    transform: translate3d(-50%, -50%, 0px);
    display: block;
    width: 500px;
    height: 500px;
    background-color: #fff;
    padding: 75px; }
    body .x-modal__content-message {
      display: block; }
      body .x-modal__content-message-success {
        margin: 0px;
        opacity: 0;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        color: #123855;
        -webkit-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease; }
        body .x-modal__content-message-success.is--active {
          margin: 20px 0px;
          opacity: 1; }
        body .x-modal__content-message-success span {
          display: block;
          font-size: 12px;
          margin-top: 5px;
          font-weight: 400;
          color: #000000; }
          body .x-modal__content-message-success span span {
            text-transform: uppercase;
            font-weight: 900;
            color: #123854;
            text-decoration: underline;
            display: inline-block; }
      body .x-modal__content-message-failed {
        margin: 0px;
        opacity: 0;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        color: #000;
        -webkit-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease; }
        body .x-modal__content-message-failed.is--active {
          margin: 30px 0px;
          opacity: 1; }
  body .x-modal__title {
    text-align: center;
    margin-bottom: 35px; }
    body .x-modal__title small,
    body .x-modal__title big {
      display: block; }
    body .x-modal__title small {
      font-family: "Source Sans Pro", sans-serif;
      font-size: 18px;
      font-weight: 400;
      width: 210px;
      margin: 0px auto;
      line-height: normal; }
      body .x-modal__title small span {
        font-size: 40px;
        font-weight: bold;
        display: block; }
    body .x-modal__title big {
      font-family: "Frank Ruhl Libre", serif;
      font-size: 30px;
      line-height: 45px;
      letter-spacing: 8px;
      text-transform: uppercase;
      font-weight: 700; }
  body .x-modal__coupon {
    font-size: 21px;
    font-weight: bold;
    padding: 10px 40px;
    border: 1px solid black; }
  body .x-modal__input {
    width: 100%;
    margin-bottom: 10px;
    background-color: #eee;
    padding: 15px 25px; }
    body .x-modal__input:disabled {
      background-color: #f6f6f6;
      color: #bbb; }
  body .x-modal__submit {
    background-color: #093953;
    color: #fff;
    padding: 15px 60px;
    margin: 0px auto;
    display: block;
    margin-bottom: 10px; }
    body .x-modal__submit:disabled {
      background-color: #ccc; }
  body .x-modal__cancel {
    display: block;
    margin: 0px auto;
    text-decoration: underline;
    color: #bbb; }
    body .x-modal__cancel.is--close {
      position: absolute;
      top: 15px;
      right: 25px; }
      body .x-modal__cancel.is--close i.aviator-icon-close {
        font-size: 18px; }

body #page-content .fullbanner {
  width: 100%;
  height: auto; }
  @media (max-width: 480px) {
    body #page-content .fullbanner-mobile .box-banner img {
      width: 100%; } }

@media (max-width: 480px) {
  body #page-content .upperfullbanner .slick-list.draggable {
    min-height: unset; } }

body #page-content .titulo-sessao {
  font-size: 5vh; }

body .is-fixed + div + div {
  margin-top: 110px !important; }

@media (max-width: 480px) {
  body #main-header .header-middle .header-logo a {
    width: 150px;
    height: 30px; }
    body #main-header .header-middle .header-logo a .aviator-logo {
      -webkit-background-size: 100px 100px;
      background-size: 100px; }
  body #main-header .header-bottom .header-search {
    padding: 0px 15px; }
    body #main-header .header-bottom .header-search fieldset {
      padding: 0px; }
  body #main-header .header-user .list-inline {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  body .footer-middle {
    padding-bottom: 0px; }
    body .footer-middle .footer-newsletter .newsletter fieldset .newsletter-button-ok {
      margin-bottom: 5px; }
    body .footer-middle .seal.seal--ebit {
      margin-top: 15px; }
      body .footer-middle .seal.seal--ebit figure {
        margin: 0px;
        margin-left: 15px; }
  body .x-modal__content {
    width: 85%;
    padding: 30px; }
  body .x-modal--registered .x-modal__coupon {
    font-size: 14px; }
  body .x-modal--registered .x-modal__title big {
    font-size: 23px; }
  body .x-modal--registered .x-modal__content-message + a {
    padding: 15px;
    background: #0c3a52;
    font-size: 14px;
    margin: 15px 0 0;
    color: #fff;
    display: inline-block; } }

body .flagGroup {
  position: relative; }
  body .flagGroup .flagCollection {
    position: absolute;
    right: 10%;
    top: 34px;
    z-index: 1; }
    body .flagGroup .flagCollection .flag {
      display: none; }
      body .flagGroup .flagCollection .flag.polos-basicas {
        display: block;
        width: 30px;
        height: 220px;
        opacity: 1;
        -webkit-user-select: initial;
        -moz-user-select: initial;
        -ms-user-select: initial;
        user-select: initial;
        position: absolute;
        left: 2%;
        top: -8px;
        font-size: 0px;
        background-image: url("/arquivos/flag-polos-basicas-172.png");
        background-position: center center;
        background-repeat: no-repeat; }
        @media (max-width: 475px) {
          body .flagGroup .flagCollection .flag.polos-basicas {
            right: 4px; } }
      body .flagGroup .flagCollection .flag.Off {
        display: block;
        width: 40px;
        height: 23px;
        opacity: 1;
        -webkit-user-select: initial;
        -moz-user-select: initial;
        -ms-user-select: initial;
        user-select: initial;
        position: absolute;
        top: 10px;
        right: 10px;
        background-image: url("/arquivos/tag-off.png");
        -webkit-background-size: 100% auto;
        background-size: 100% auto;
        background-position: center center;
        background-repeat: no-repeat; }
        @media (max-width: 475px) {
          body .flagGroup .flagCollection .flag.Off {
            width: 30px;
            top: 5px;
            right: 5px; } }

body .showcase li .box-item .x-flag-wrapper {
  position: absolute;
  top: 0px;
  z-index: 1;
  width: 100%; }
  body .showcase li .box-item .x-flag-wrapper .flag {
    display: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    body .showcase li .box-item .x-flag-wrapper .flag.novidades {
      display: block;
      opacity: 1;
      -webkit-user-select: initial;
      -moz-user-select: initial;
      -ms-user-select: initial;
      user-select: initial;
      position: absolute;
      top: 25px;
      right: -5px;
      font-size: 0px;
      -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
      transform: rotate(-90deg); }
      body .showcase li .box-item .x-flag-wrapper .flag.novidades:before {
        content: "Novo";
        font-size: 20px;
        font-weight: 500;
        text-transform: uppercase;
        color: #093953;
        font-family: initial; }
    body .showcase li .box-item .x-flag-wrapper .flag.off {
      opacity: 1;
      -webkit-user-select: initial;
      -moz-user-select: initial;
      -ms-user-select: initial;
      user-select: initial;
      position: absolute;
      top: 5px;
      left: 0px;
      font-size: 0px; }
      body .showcase li .box-item .x-flag-wrapper .flag.off:before {
        content: "Off";
        font-size: 14px;
        font-weight: 300;
        text-transform: uppercase;
        padding: 5px 10px;
        background-color: #000;
        color: #fff; }
    body .showcase li .box-item .x-flag-wrapper .flag.Off {
      display: block;
      opacity: 1;
      -webkit-user-select: initial;
      -moz-user-select: initial;
      -ms-user-select: initial;
      user-select: initial;
      position: absolute;
      top: 10px;
      right: 10px;
      background: white;
      width: auto;
      padding: 5px 10px;
      height: auto;
      color: #a62015;
      font-weight: bold;
      font-size: 12px; }
      @media (max-width: 475px) {
        body .showcase li .box-item .x-flag-wrapper .flag.Off {
          top: 5px;
          right: 5px;
          padding: 3px;
          font-size: 10px; } }
    body .showcase li .box-item .x-flag-wrapper .flag.promocao-verao, body .showcase li .box-item .x-flag-wrapper .flag.liqui-verao {
      width: 20px;
      height: 60px;
      opacity: 1;
      -webkit-user-select: initial;
      -moz-user-select: initial;
      -ms-user-select: initial;
      user-select: initial;
      position: absolute;
      top: 0px;
      left: 10px;
      font-size: 0px;
      background-image: url("/arquivos/flag-promo.png");
      background-position: center center;
      background-repeat: no-repeat; }
    body .showcase li .box-item .x-flag-wrapper .flag.liqui-verao {
      background-image: url("/arquivos/flag-liqui.png");
      display: block; }
    body .showcase li .box-item .x-flag-wrapper .flag.polos-basicas {
      display: block;
      width: 30px;
      height: 220px;
      opacity: 1;
      -webkit-user-select: initial;
      -moz-user-select: initial;
      -ms-user-select: initial;
      user-select: initial;
      position: absolute;
      top: 0;
      right: 14px;
      font-size: 0px;
      background-image: url("/arquivos/flag-polos-basicas-172.png");
      background-position: center center;
      background-repeat: no-repeat; }
      @media (max-width: 475px) {
        body .showcase li .box-item .x-flag-wrapper .flag.polos-basicas {
          -webkit-background-size: 13px 13px;
          background-size: 13px;
          top: -31px;
          right: -2px; } }

body .x-size-table-wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease; }
  @media (max-width: 475px) {
    body .x-size-table-wrapper tr td:nth-child(1),
    body .x-size-table-wrapper tr th:nth-child(1) {
      text-align: left !important;
      padding: 17px 10px !important;
      width: 140px !important; }
    body .x-size-table-wrapper tr td:not(:nth-child(1)),
    body .x-size-table-wrapper tr th:not(:nth-child(1)) {
      text-align: center; } }
  @media (max-width: 320px) {
    body .x-size-table-wrapper tr td:nth-child(1),
    body .x-size-table-wrapper tr th:nth-child(1) {
      width: 110px !important; }
    body .x-size-table-wrapper tr td:not(:nth-child(1)),
    body .x-size-table-wrapper tr th:not(:nth-child(1)) {
      text-align: left; } }
  body .x-size-table-wrapper.is--active {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
    -webkit-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial; }
  body .x-size-table-wrapper .x-size-type {
    display: none; }
    body .x-size-table-wrapper .x-size-type.is--active {
      display: block; }
      @media (max-width: 968px) {
        body .x-size-table-wrapper .x-size-type.is--active {
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
          -moz-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
          -moz-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; } }
    @media (max-width: 1024px) {
      body .x-size-table-wrapper .x-size-type.is--mobile.is--active {
        display: block; } }
    @media (min-width: 1025px) {
      body .x-size-table-wrapper .x-size-type.is--desk.is--active {
        display: block; } }
  body .x-size-table-wrapper .x-size-table-wrapper__content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-color: #fff;
    padding: 10px 50px;
    width: 70%;
    max-height: 70vh;
    overflow: auto; }
    body .x-size-table-wrapper .x-size-table-wrapper__content-close {
      position: absolute;
      top: 15px;
      right: 15px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      display: block;
      border: 0;
      width: 20px;
      height: 20px;
      font-size: 0px; }
      body .x-size-table-wrapper .x-size-table-wrapper__content-close:before {
        content: "";
        display: block;
        width: 25px;
        height: 1px;
        background-color: #000;
        position: absolute;
        top: 9px;
        left: -2px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      body .x-size-table-wrapper .x-size-table-wrapper__content-close:after {
        content: "";
        display: block;
        width: 25px;
        height: 1px;
        background-color: #000;
        position: absolute;
        top: 9px;
        left: -2px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
    body .x-size-table-wrapper .x-size-table-wrapper__content-title {
      font-family: "Frank Ruhl Libre", serif;
      font-size: 28px;
      text-align: center;
      margin-bottom: 50px;
      color: #787878; }
      body .x-size-table-wrapper .x-size-table-wrapper__content-title:after {
        content: "|";
        display: block;
        margin: 10px 0px;
        font-weight: 300; }
    body .x-size-table-wrapper .x-size-table-wrapper__content-prod-name {
      text-align: center;
      font-size: 16px;
      font-weight: 600; }
    body .x-size-table-wrapper .x-size-table-wrapper__content-table {
      position: relative;
      width: 100%;
      margin: 0px;
      padding: 0px;
      font-size: 14px;
      color: #787878; }
      @media (max-width: 968px) {
        body .x-size-table-wrapper .x-size-table-wrapper__content-table {
          width: -webkit-calc(100% - 10px);
          width: calc(100% - 10px); } }
      body .x-size-table-wrapper .x-size-table-wrapper__content-table tr {
        border-bottom: 1px solid #c9c9c9; }
      body .x-size-table-wrapper .x-size-table-wrapper__content-table thead {
        background-color: #f4f4f4; }
        @media (max-width: 480px) {
          body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr:nth-child(1) th {
            text-align: center; } }
        body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr {
          padding: 0; }
          body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr th {
            padding: 12px 20px;
            font-weight: 500; }
            @media (max-width: 480px) {
              body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr th {
                padding: 5px 0;
                vertical-align: text-top; }
                body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr th p {
                  display: inline-block; }
                body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr th .x-size-table-wrapper__content-body-hover {
                  display: block;
                  text-align: center; }
                  body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr th .x-size-table-wrapper__content-body-hover .x-what-this {
                    padding: 0px;
                    border: 1px solid #787878;
                    -webkit-border-radius: 100px;
                    border-radius: 100px;
                    margin-left: 10px;
                    line-height: 11px;
                    width: 13px;
                    display: inline-block;
                    text-align: center;
                    margin: 0 auto; }
                  body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr th .x-size-table-wrapper__content-body-hover .x-hover {
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    display: block;
                    width: 200px;
                    height: auto;
                    background-color: #fff;
                    -webkit-border-radius: 4px;
                    border-radius: 4px;
                    border: 1px solid #ddd;
                    padding: 20px;
                    text-align: center;
                    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.02);
                    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.02);
                    -webkit-transform: translate3d(-50%, 0, 0px);
                    transform: translate3d(-50%, 0, 0px);
                    -webkit-transition: all 200ms ease;
                    -o-transition: all 200ms ease;
                    transition: all 200ms ease;
                    opacity: 0;
                    visibility: hidden;
                    pointer-events: none;
                    -webkit-user-select: none;
                    -moz-user-select: none;
                    -ms-user-select: none;
                    user-select: none; }
                    body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr th .x-size-table-wrapper__content-body-hover .x-hover h4,
                    body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr th .x-size-table-wrapper__content-body-hover .x-hover img,
                    body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr th .x-size-table-wrapper__content-body-hover .x-hover p {
                      display: block;
                      text-align: center; }
                    body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr th .x-size-table-wrapper__content-body-hover .x-hover h4 {
                      margin-bottom: 20px; }
                    body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr th .x-size-table-wrapper__content-body-hover .x-hover img {
                      margin: 10px auto 20px; }
                  body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr th .x-size-table-wrapper__content-body-hover:hover .x-hover {
                    opacity: 1;
                    visibility: visible;
                    pointer-events: initial;
                    -webkit-user-select: initial;
                    -moz-user-select: initial;
                    -ms-user-select: initial;
                    user-select: initial; } }
          body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr .x-prod-name {
            background-color: #ededed; }
      body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody {
        background-color: #fff; }
        body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr {
          padding: 0; }
          body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr td {
            padding: 17px 20px; }
            body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr td p {
              display: inline-block; }
            body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr td .x-size-table-wrapper__content-body-hover {
              display: inline-block; }
              body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr td .x-size-table-wrapper__content-body-hover .x-what-this {
                padding: 0px;
                border: 1px solid #000;
                -webkit-border-radius: 100px;
                border-radius: 100px;
                margin-left: 10px;
                line-height: 16px;
                width: 18px;
                display: inline-block;
                text-align: center; }
              body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr td .x-size-table-wrapper__content-body-hover .x-hover {
                position: absolute;
                bottom: 0;
                left: 50%;
                display: block;
                width: 200px;
                height: auto;
                background-color: #fff;
                -webkit-border-radius: 4px;
                border-radius: 4px;
                border: 1px solid #ddd;
                padding: 20px;
                text-align: center;
                -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.02);
                box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.02);
                -webkit-transform: translate3d(-50%, 0, 0px);
                transform: translate3d(-50%, 0, 0px);
                -webkit-transition: all 200ms ease;
                -o-transition: all 200ms ease;
                transition: all 200ms ease;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none; }
                body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr td .x-size-table-wrapper__content-body-hover .x-hover h4,
                body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr td .x-size-table-wrapper__content-body-hover .x-hover img,
                body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr td .x-size-table-wrapper__content-body-hover .x-hover p {
                  display: block;
                  text-align: center; }
                body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr td .x-size-table-wrapper__content-body-hover .x-hover h4 {
                  margin-bottom: 20px; }
                body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr td .x-size-table-wrapper__content-body-hover .x-hover img {
                  margin: 10px auto 20px; }
              body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr td .x-size-table-wrapper__content-body-hover:hover .x-hover {
                opacity: 1;
                visibility: visible;
                pointer-events: initial;
                -webkit-user-select: initial;
                -moz-user-select: initial;
                -ms-user-select: initial;
                user-select: initial; }
    body .x-size-table-wrapper .x-size-table-wrapper__content-undertitle {
      padding: 15px 20px;
      text-align: center;
      font-size: 12px;
      color: #787878; }

body .dual-video-mosaic .dual-video-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 15px; }
  @media (max-width: 768px) {
    body .dual-video-mosaic .dual-video-wrapper {
      padding: 20px 0 0 0;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }
  body .dual-video-mosaic .dual-video-wrapper .dual-video__column {
    width: -webkit-calc(50% - 7px);
    width: calc(50% - 7px); }
    @media (max-width: 768px) {
      body .dual-video-mosaic .dual-video-wrapper .dual-video__column {
        width: 100%;
        margin-bottom: 15px; } }
  body .dual-video-mosaic .dual-video-wrapper img {
    max-width: 100%;
    width: 100%; }
  body .dual-video-mosaic .dual-video-wrapper .container-video-dual {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; }
    body .dual-video-mosaic .dual-video-wrapper .container-video-dual iframe {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%; }

body .x-mosaic-wrapper {
  display: block; }
  body .x-mosaic-wrapper .x-mosaic__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: auto;
    padding: 10px 0px; }
    body .x-mosaic-wrapper .x-mosaic__row.row--1, body .x-mosaic-wrapper .x-mosaic__row.row--2, body .x-mosaic-wrapper .x-mosaic__row.row--3 {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex; }
    body .x-mosaic-wrapper .x-mosaic__row.row-mob--1, body .x-mosaic-wrapper .x-mosaic__row.row-mob--2, body .x-mosaic-wrapper .x-mosaic__row.row-mob--3 {
      display: none; }
    body .x-mosaic-wrapper .x-mosaic__row.row--mouseover {
      padding: 10px 0; }
      body .x-mosaic-wrapper .x-mosaic__row.row--mouseover a:after {
        background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.65) 0, rgba(0, 0, 0, 0) 100%);
        background: -o-linear-gradient(45deg, rgba(0, 0, 0, 0.65) 0, rgba(0, 0, 0, 0) 100%);
        background: linear-gradient(45deg, rgba(0, 0, 0, 0.65) 0, rgba(0, 0, 0, 0) 100%);
        content: "";
        left: 0;
        height: 100%;
        opacity: 0;
        position: absolute;
        top: 0;
        width: 100%;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease; }
      body .x-mosaic-wrapper .x-mosaic__row.row--mouseover a:hover:after {
        opacity: 0; }
    body .x-mosaic-wrapper .x-mosaic__row .box-banner {
      float: none !important;
      width: 100% !important;
      padding: 0px 15px !important; }
      body .x-mosaic-wrapper .x-mosaic__row .box-banner:first-child {
        padding-left: 0px; }
      body .x-mosaic-wrapper .x-mosaic__row .box-banner:last-child {
        padding-right: 0px; }

body .promo-bar {
  background-color: #272727;
  color: #fff;
  display: block;
  -webkit-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  height: 32px;
  overflow: hidden; }

@media (max-width: 480px) {
  body .x-size-table-wrapper .x-size-table-wrapper__content {
    padding: 10px 0px; }
    body .x-size-table-wrapper .x-size-table-wrapper__content-title {
      font-size: 18px;
      margin-bottom: 20px; }
    body .x-size-table-wrapper .x-size-table-wrapper__content-table {
      font-size: 12px; }
  body .x-mosaic-wrapper {
    display: block; }
    body .x-mosaic-wrapper .x-mosaic__row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-flow: column;
      -moz-box-orient: vertical;
      -moz-box-direction: normal;
      -ms-flex-flow: column;
      flex-flow: column; }
      body .x-mosaic-wrapper .x-mosaic__row.row--1, body .x-mosaic-wrapper .x-mosaic__row.row--2, body .x-mosaic-wrapper .x-mosaic__row.row--3 {
        display: none; }
      body .x-mosaic-wrapper .x-mosaic__row.row-mob--1, body .x-mosaic-wrapper .x-mosaic__row.row-mob--2, body .x-mosaic-wrapper .x-mosaic__row.row-mob--3 {
        display: block; }
      body .x-mosaic-wrapper .x-mosaic__row .box-banner {
        padding: 0px !important; } }

@media (max-width: 320px) {
  body .x-size-table-wrapper .x-size-table-wrapper__content {
    padding: 10px 0px; }
    body .x-size-table-wrapper .x-size-table-wrapper__content-prod-name {
      padding: 10px 0px; }
    body .x-size-table-wrapper .x-size-table-wrapper__content-table {
      font-size: 10px; }
      body .x-size-table-wrapper .x-size-table-wrapper__content-table thead tr th {
        padding: 5px 2px; }
      body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody {
        background-color: #fff; }
        body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr {
          padding: 0; }
          body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr td {
            padding: 5px 1px; }
            body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr td p {
              display: inline-block; }
            body .x-size-table-wrapper .x-size-table-wrapper__content-table tbody tr td .x-size-table-wrapper__content-body-hover .x-what-this {
              margin-left: 2px; } }

@media (max-width: 768px) {
  #mobile-menu .menu-departamento ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #ededed; }
    #mobile-menu .menu-departamento ul li > span {
      text-align: right;
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -moz-box-flex: 1;
      -ms-flex: 1;
      flex: 1; }
    #mobile-menu .menu-departamento ul li a {
      display: block;
      font-size: 18px;
      border-bottom: none;
      padding: 15px;
      width: auto;
      cursor: pointer; }
    #mobile-menu .menu-departamento ul li > span.active {
      -webkit-box-flex: 1;
      -webkit-flex: auto;
      -moz-box-flex: 1;
      -ms-flex: auto;
      flex: auto;
      text-align: left; }
    #mobile-menu .menu-departamento ul li ul {
      width: 100%;
      padding-bottom: 30px; }
    #mobile-menu .menu-departamento ul li.is-active a {
      width: 100%;
      border-bottom: 1px solid #ededed; } }

@supports (-moz-appearance: meterbar) and (background-blend-mode: difference, normal) {
  body {
    padding: 0 !important; }
    @media (max-width: 1024px) {
      body {
        padding: 0 !important; } } }

@media (min-width: 768px) {
  .logout {
    display: inline-block; }
    .logout:hover {
      font-size: 0; }
      .logout:hover a::before {
        font-size: 12px;
        content: "Sair";
        position: relative;
        display: inline-block;
        visibility: visible; } }

@media (min-width: 768px) {
  .logout a {
    padding: 10px 0;
    display: inline-block;
    width: 90px;
    text-align: left;
    -webkit-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease; } }

@media (max-width: 768px) {
  .account + .logout {
    display: none !important; } }

html #vtexIdContainer {
  position: fixed !important;
  z-index: 999999 !important; }

html #ajaxBusy {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url("/arquivos/ajax-loader.gif") no-repeat center rgba(255, 255, 255, 0.67);
  z-index: 9;
  display: none !important; }

html #ajaxBusy p {
  display: none; }

footer {
  background-color: #272727;
  clear: both;
  margin: 30px 0 0;
  position: relative;
  color: #fff; }
  footer a {
    color: #bebebe; }
    footer a:focus, footer a:hover {
      color: #fff; }
  footer .footer-list h4 {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 35px; }
  footer .footer-list li a {
    display: block;
    padding: 10px 0;
    font-size: 12px; }
  footer .footer-list li span {
    display: block;
    padding: 10px 0;
    font-size: 12px;
    color: #bebebe; }
  footer .footer-list .seal.seal--ebit {
    margin-top: 35px; }
    footer .footer-list .seal.seal--ebit h4 {
      margin: 0px; }
    footer .footer-list .seal.seal--ebit figure {
      margin-top: 35px;
      margin-bottom: 0px;
      margin-left: 0px; }
  footer .block-social li,
  footer .social li {
    margin-right: 23px;
    padding: 0; }
    footer .block-social li a,
    footer .social li a {
      color: #bebebe;
      border: 1px solid;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -moz-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -moz-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      line-height: 26px;
      padding: 0;
      text-align: center;
      width: 30px;
      height: 30px;
      margin-left: 5px; }
      footer .block-social li a:hover,
      footer .social li a:hover {
        color: #fff; }
      footer .block-social li a i,
      footer .social li a i {
        color: #bebebe;
        position: relative; }
  footer .footer-middle {
    padding: 35px 0; }
  footer .footer-bottom {
    background-color: #000;
    color: #bebebe;
    font-size: 11px; }
    footer .footer-bottom p {
      margin: 0;
      padding: 20px 0 10px; }
    footer .footer-bottom .technology {
      padding: 10px 0; }
      footer .footer-bottom .technology .aviator-icon-vtex {
        font-size: 18px;
        vertical-align: middle; }

@media (max-width: 1024px) {
  footer .footer-list {
    margin: 0 0 -1px; }
    footer .footer-list--new {
      width: 100vw;
      margin-left: -15px !important;
      padding: 0 15px; }
    footer .footer-list.list-toggle.ajuda-e-suporte {
      margin: 0 0 -1px; }
    footer .footer-list li a {
      font-size: 14px; }
    footer .footer-list.list-toggle {
      border-top: 1px solid #888;
      border-bottom: 1px solid #888; }
      footer .footer-list.list-toggle h4 {
        margin: 0;
        padding: 20px 0; }
        footer .footer-list.list-toggle h4:after {
          color: #fff;
          content: "\e906";
          float: right;
          font: normal normal normal 14px/1 aviator-icon;
          font-size: inherit;
          text-rendering: auto;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          transform: rotate(45deg); }
        footer .footer-list.list-toggle h4.active:after {
          content: "_";
          font-size: 25px;
          -webkit-transform: rotate(0) translateY(-21px);
          -ms-transform: rotate(0) translateY(-21px);
          transform: rotate(0) translateY(-21px); }
      footer .footer-list.list-toggle ul {
        display: none;
        padding-bottom: 15px; }
  footer .footer-newsletter {
    padding-bottom: 40px; }
    footer .footer-newsletter .newsletter {
      margin-top: 15px; }
      footer .footer-newsletter .newsletter fieldset .newsletter-client-email,
      footer .footer-newsletter .newsletter fieldset .newsletter-client-name {
        width: 100%;
        margin: 5px 0; }
      footer .footer-newsletter .newsletter fieldset .newsletter-button-ok {
        float: right;
        margin-top: 5px;
        height: auto;
        line-height: 44px;
        margin-left: 0; }
      footer .footer-newsletter .newsletter fieldset .bt-voltar {
        float: right;
        margin-top: 5px;
        width: 100%;
        height: 40px;
        padding: 0;
        line-height: 40px; }
    footer .footer-newsletter .newsletter-text p {
      line-height: 1.2em;
      margin: 0;
      color: #bebebe;
      letter-spacing: 1px;
      max-width: 360px; }
    footer .footer-newsletter .social {
      padding-top: 20px;
      padding-left: 0; }
      footer .footer-newsletter .social li a {
        border: none;
        color: #fff;
        font-size: 20px; }
  footer .footer-bottom {
    background-color: transparent; }
    footer .footer-bottom .technology {
      text-align: left;
      padding: 10px 15px; } }

footer#new-footer .footer-list-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  footer#new-footer .footer-list-content:after {
    display: none; }

footer#new-footer .footer-newsletter {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2; }

footer#new-footer .list-toggle {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1; }
  footer#new-footer .list-toggle.social-secure {
    width: 200px; }
    @media (max-width: 768px) {
      footer#new-footer .list-toggle.social-secure {
        width: 100vw; } }
    footer#new-footer .list-toggle.social-secure ul {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
      -moz-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; }
      footer#new-footer .list-toggle.social-secure ul #seloEbit {
        margin-right: 20px;
        padding: 0; }
      @media (max-width: 768px) {
        footer#new-footer .list-toggle.social-secure ul li {
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
          -moz-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: reverse;
          -webkit-flex-direction: row-reverse;
          -moz-box-orient: horizontal;
          -moz-box-direction: reverse;
          -ms-flex-direction: row-reverse;
          flex-direction: row-reverse; } }
      footer#new-footer .list-toggle.social-secure ul li span {
        padding: 0; }
      footer#new-footer .list-toggle.social-secure ul li img + a {
        margin-top: 14px; }
        @media (max-width: 768px) {
          footer#new-footer .list-toggle.social-secure ul li img + a {
            margin-right: 20px; } }

footer#new-footer .footer-list.formas-de-pagamento li {
  display: block;
  padding: 10px 0;
  color: #bebebe;
  font-size: 12px;
  font-weight: 600; }

footer#new-footer .footer-list.formas-de-pagamento small {
  display: block;
  font-weight: 400;
  margin-bottom: 5px; }

footer#new-footer .footer-list.formas-de-pagamento .wrap-flag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  footer#new-footer .footer-list.formas-de-pagamento .wrap-flag img {
    max-width: 35px; }
    footer#new-footer .footer-list.formas-de-pagamento .wrap-flag img:not(:last-child) {
      margin-right: 10px; }
  footer#new-footer .footer-list.formas-de-pagamento .wrap-flag.ame img {
    max-width: none; }

@media (max-width: 1024px) {
  footer#new-footer .footer-list-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  footer#new-footer .footer-newsletter {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  footer#new-footer .block-social {
    display: none; }
  footer#new-footer .seal--ebit {
    margin-top: 0 !important; } }

.product-page .product-info-aditional {
  max-width: 380px; }
  .product-page .product-info-aditional ul {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    margin: 0 0 20px 0; }
    .product-page .product-info-aditional ul li {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0;
      padding: 14px 8px;
      border-bottom: 1px solid #fff;
      font-size: 12px;
      font-weight: 300;
      line-height: 17px;
      color: #000;
      text-align: left;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -moz-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
      -moz-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start; }
      .product-page .product-info-aditional ul li img {
        margin-right: 5px;
        width: 16px;
        height: auto; }

button#open-infobox {
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 999; }

#webWidget {
  z-index: 999999999999999999999999999999999999999999999999999999999999999999999999; }

#suiteshare_chat #widget_circle {
  z-index: 99 !important; }

.infobox {
  display: none;
  position: fixed;
  right: 13px;
  bottom: 13px;
  z-index: 999;
  background: white;
  max-width: 550px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  @media (max-width: 768px) {
    .infobox {
      max-width: 295px; } }
  .infobox h3 {
    font-size: 23px;
    color: white;
    background: #272727;
    padding: 15px;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media (max-width: 768px) {
      .infobox h3 {
        font-size: 15px;
        padding: 10px 15px; } }
    .infobox h3 button {
      -webkit-transform: scale(0.85);
      -ms-transform: scale(0.85);
      transform: scale(0.85); }
      @media (max-width: 768px) {
        .infobox h3 button {
          -webkit-transform: scale(0.65);
          -ms-transform: scale(0.65);
          transform: scale(0.65); } }
  .infobox ul {
    padding: 10px 15px;
    margin: 0; }
    @media (max-width: 768px) {
      .infobox ul {
        padding: 10px 15px; } }
    .infobox ul li {
      padding: 15px 0;
      margin: 0; }
      @media (max-width: 768px) {
        .infobox ul li {
          padding: 10px 0; } }
      .infobox ul li a {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        .infobox ul li a i {
          margin-right: 10px;
          width: 56px; }
          @media (max-width: 768px) {
            .infobox ul li a i {
              width: 50px; } }
          .infobox ul li a i img {
            max-width: 100%;
            width: 100%;
            height: auto; }
        .infobox ul li a span {
          font-size: 20px;
          color: #000000;
          width: -webkit-calc(100% - 56px);
          width: calc(100% - 56px); }
          @media (max-width: 768px) {
            .infobox ul li a span {
              font-size: 15px;
              width: -webkit-calc(100% - 50px);
              width: calc(100% - 50px); } }
          .infobox ul li a span small {
            display: block;
            padding: 10px 0 0 0;
            max-width: 300px;
            font-size: 14px; }
            @media (max-width: 768px) {
              .infobox ul li a span small {
                font-size: 12px;
                padding: 5px 0 0 0; } }
      .infobox ul li:last-child a {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start; }

.lgpd {
  position: fixed;
  background: white;
  left: 50%;
  bottom: 15px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9999999;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: -webkit-calc(100% - 28px);
  width: calc(100% - 28px);
  max-width: 1200px; }
  @media (max-width: 768px) {
    .lgpd {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      width: -webkit-calc(100% - 20px);
      width: calc(100% - 20px);
      bottom: 10px;
      padding: 15px; } }
  .lgpd.active {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .lgpd p {
    font-size: 12px;
    color: #5a5a5a;
    padding: 0;
    margin: 0;
    width: -webkit-calc(100% - 150px);
    width: calc(100% - 150px);
    max-width: 940px; }
    @media (max-width: 768px) {
      .lgpd p {
        width: 100%;
        padding-bottom: 20px; } }
    .lgpd p a {
      color: #272727;
      text-decoration: underline; }
  .lgpd button {
    background: #272727;
    color: white;
    text-transform: uppercase;
    width: 150px;
    padding: 12px 40px; }
    @media (max-width: 768px) {
      .lgpd button {
        width: 100%;
        padding: 7px; } }

.countdown-promo .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 17px; }
  @media (max-width: 768px) {
    .countdown-promo .container {
      padding: 5px 0; } }
  .countdown-promo .container .only-mobile {
    display: none; }
    @media (max-width: 768px) {
      .countdown-promo .container .only-mobile {
        display: block; } }
  .countdown-promo .container .only-desktop {
    display: block; }
    @media (max-width: 768px) {
      .countdown-promo .container .only-desktop {
        display: none; } }
  .countdown-promo .container:before, .countdown-promo .container:after {
    display: none; }
  .countdown-promo .container h2,
  .countdown-promo .container span {
    display: block;
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    width: 100%; }
    @media (max-width: 768px) {
      .countdown-promo .container h2,
      .countdown-promo .container span {
        font-size: 14px; } }
  .countdown-promo .container span {
    text-transform: none;
    font-weight: 200;
    font-size: 14px;
    margin-top: 2px; }
    @media (max-width: 768px) {
      .countdown-promo .container span {
        font-size: 11px; } }
  .countdown-promo .container .countdown-promo-item:first-child {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
    @media (max-width: 768px) {
      .countdown-promo .container .countdown-promo-item:first-child {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        gap: 5px; }
        .countdown-promo .container .countdown-promo-item:first-child h2,
        .countdown-promo .container .countdown-promo-item:first-child span.only-mobile {
          display: inline-block; }
        .countdown-promo .container .countdown-promo-item:first-child span.only-mobile {
          width: 12px; }
        .countdown-promo .container .countdown-promo-item:first-child div {
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-flex: 1;
          -webkit-flex: 1;
          -moz-box-flex: 1;
          -ms-flex: 1;
          flex: 1;
          -webkit-flex-wrap: nowrap;
          -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
          width: 28px; } }
  .countdown-promo .container .countdown-promo-item:last-child {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    .countdown-promo .container .countdown-promo-item:last-child:after {
      display: none !important; }
  .countdown-promo .container .countdown-promo-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    gap: 0 15px;
    position: relative; }
    @media (max-width: 768px) {
      .countdown-promo .container .countdown-promo-item {
        padding: 5px; } }
    .countdown-promo .container .countdown-promo-item:after {
      position: absolute;
      top: 50%;
      right: 0;
      display: block;
      content: "";
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 1px;
      height: 40px;
      background: #efefef; }

#ajaxBusy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100vw !important;
  height: 100vh !important;
  position: fixed !important;
  top: 0px !important;
  left: 0px !important;
  z-index: 9999 !important;
  margin: 0px !important;
  padding: 0px !important;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url("https://aviator.vteximg.com.br/arquivos/loading-aviator.gif");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-background-size: 158px 158px;
  background-size: 158px;
  -webkit-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease; }
  #ajaxBusy p {
    display: none; }

.x-form {
  /**
     * Checkbox default
     */
  /**
     * Checkbox custom
     */ }
  .x-form__group-left, .x-form__group-right {
    position: relative; }

.icon {
  fill: #000; }

.icon-close {
  width: 16px;
  width: 1rem; }

.icon-arrow-up,
.icon-arrow-right,
.icon-arrow-left,
.icon-arrow-down,
.icon-plus {
  width: 12px;
  width: 0.75rem; }

.icon-worldwide {
  width: 22px;
  width: 1.375rem; }

.icon-car-version,
.icon-car-color,
.icon-car-accessories {
  margin-right: 10px;
  margin-right: 0.625rem; }

.icon-car-version {
  width: 18px;
  width: 1.125rem; }

.icon-car-color {
  width: 28px;
  width: 1.75rem; }

.icon-car-accessories {
  width: 18px;
  width: 1.125rem; }

.icon-info {
  width: 48px;
  width: 3rem; }

.x-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  z-index: 5000; }
  .x-overlay.is--active {
    opacity: 1;
    visibility: visible; }

.x-minicart__top {
  border-bottom: 1px solid #ddd;
  height: 54px;
  height: 3.375rem; }

.x-minicart__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%; }

.x-minicart__title {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: 'Frank Ruhl Libre',serif;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 8px;
  display: block;
  width: 100%; }

.x-minicart__trigger {
  position: relative;
  padding-left: 15px; }
  @media (max-width: 768px) {
    .x-minicart__trigger {
      padding-left: 25px; } }

.x-minicart__amount {
  color: #000;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  position: absolute;
  top: 4px;
  left: -10px; }
  .x-minicart__amount:before {
    content: '(';
    font-weight: 600;
    padding-right: 2px; }
  .x-minicart__amount:after {
    content: ')';
    font-weight: 600;
    padding-right: 2px; }
  @media (max-width: 768px) {
    .x-minicart__amount {
      top: 3px;
      left: 8px; } }

.x-minicart__empty-btn-close {
  display: block !important; }
  .x-minicart__empty-btn-close .icon-close-popup {
    height: 20px;
    height: 1.25rem;
    width: 20px;
    width: 1.25rem; }

.x-minicart {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 435px;
  z-index: 999999999999999999; }
  .x-minicart.is--active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  .x-minicart__top, .x-minicart__empty {
    padding-left: 36px;
    padding-left: 2.25rem;
    padding-right: 36px;
    padding-right: 2.25rem; }
    @media only screen and (max-width: 768px) {
      .x-minicart__top, .x-minicart__empty {
        padding-left: 16px;
        padding-left: 1rem;
        padding-right: 16px;
        padding-right: 1rem; } }
  .x-minicart__middle {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-y: auto;
    padding-left: 36px;
    padding-left: 2.25rem; }
    @media only screen and (max-width: 768px) {
      .x-minicart__middle {
        padding-left: 16px;
        padding-bottom: 20px; } }
  @media only screen and (max-width: 768px) {
    .x-minicart__content {
      height: 100%;
      overflow: auto; } }
  .x-minicart__bottom {
    bottom: 0;
    z-index: 10;
    left: 0px;
    width: 100%;
    padding: constant(safe-area-inset-bottom) 0;
    padding: env(safe-area-inset-bottom) 0;
    background: white; }

.x-minicart__items {
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  overflow-y: auto; }
  @media only screen and (max-width: 768px) {
    .x-minicart__items {
      height: 100%; } }
  .x-minicart__items .mCSB_scrollTools {
    opacity: 1 !important; }
  .x-minicart__items .mCSB_draggerRail {
    width: 7px !important;
    width: 0.4375rem !important;
    background-color: #fff !important; }
  .x-minicart__items .mCSB_dragger_bar {
    background-color: #000 !important;
    margin: 0 5px !important;
    margin: 0 0.3125rem !important;
    width: 7px !important;
    width: 0.4375rem !important;
    height: 7px !important;
    height: 0.4375rem !important; }

.x-minicart__item-container:last-child .x-minicart__item {
  border-bottom: 0; }

.x-minicart__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #fff; }

.x-minicart__item-img-link {
  display: inline-block; }

.x-minicart__item-img {
  mix-blend-mode: multiply; }

.x-minicart__item-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 24px;
  margin-left: 1.5rem;
  padding: 9px 0;
  padding: 0.5625rem 0; }

.x-minicart__item-name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.x-minicart__item-title {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  width: 94%;
  width: -webkit-calc(100% - 24px);
  width: calc(100% - 24px); }
  @media only screen and (min-width: 1024px) {
    .x-minicart__item-title {
      letter-spacing: 1px; } }
  @media only screen and (max-width: 768px) {
    .x-minicart__item-title {
      font-size: 13px;
      font-size: 0.8125rem; } }

.x-minicart__item-remove {
  margin-left: 15px;
  margin-right: 15px;
  height: 20px;
  width: 20px; }
  .x-minicart__item-remove svg {
    width: 100%;
    height: auto; }

.x-minicart__item-price-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.x-minicart__item-old-price {
  color: #5a5a5a;
  margin-right: 15px;
  text-decoration: line-through;
  -webkit-text-decoration-color: #c90000;
  -moz-text-decoration-color: #c90000;
  text-decoration-color: #c90000;
  font-size: 14px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 500;
  text-align: left; }

@media only screen and (min-width: 1024px) {
  .x-minicart__item-best-price {
    letter-spacing: 1px; } }

@media only screen and (max-width: 768px) {
  .x-minicart__item-best-price {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 1px; } }

.x-minicart__item-installments-wrapper {
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase; }
  @media only screen and (min-width: 1024px) {
    .x-minicart__item-installments-wrapper {
      letter-spacing: 1px; } }

.x-minicart__item-actions {
  margin-top: auto; }
  @media only screen and (max-width: 768px) {
    .x-minicart__item-actions {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
      -moz-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start; } }

.x-minicart__item-variant {
  color: #656564;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  width: 50%;
  float: left; }
  .x-minicart__item-variant span {
    display: block;
    color: #000;
    font-size: 13px;
    font-size: 0.8125rem; }
    @media only screen and (min-width: 769px) {
      .x-minicart__item-variant span {
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        width: 5.5ch; } }
  @media only screen and (max-width: 768px) {
    .x-minicart__item-variant {
      font-size: 11px;
      font-size: 0.6875rem; }
      .x-minicart__item-variant span {
        font-size: 14px;
        font-size: 0.875rem; } }

.x-minicart__item-qty-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3px;
  margin-top: 0.1875rem;
  margin-bottom: 3px;
  margin-bottom: 0.1875rem;
  border: 1px solid #DDD;
  padding: 2px 4px;
  width: 85px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.x-minicart__item-qty-val {
  font-size: 12px;
  font-size: 0.75rem;
  width: 3ch;
  text-align: center;
  font-weight: bold; }

.x-minicart__item-qty-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 24px;
  height: 1.5rem;
  width: 24px;
  width: 1.5rem;
  width: 20px;
  width: 1.25rem; }
  .x-minicart__item-qty-btn:before {
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    font-size: 0.875rem; }
  .x-minicart__item-qty-btn.has--minus:before {
    content: '-'; }
  .x-minicart__item-qty-btn.has--plus:before {
    content: '+'; }

.x-minicart__footer {
  height: auto;
  height: auto;
  padding-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #DDD;
  -webkit-box-shadow: 0px -20px 30px rgba(0, 0, 0, 0.03);
  box-shadow: 0px -20px 30px rgba(0, 0, 0, 0.03); }

.x-minicart__total-price {
  margin-top: auto;
  padding-left: 36px;
  padding-left: 2.25rem;
  padding-right: 36px;
  padding-right: 2.25rem; }
  @media only screen and (max-width: 768px) {
    .x-minicart__total-price {
      padding-left: 16px;
      padding-left: 1rem;
      padding-right: 16px;
      padding-right: 1rem; } }

.x-minicart__total, .x-minicart__discount, .x-minicart__subtotal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 22px;
  margin-bottom: 1.375rem; }

.x-minicart__total-text {
  font-weight: 700; }

.x-minicart__total-text, .x-minicart__discount-text, .x-minicart__subtotal-text {
  font-size: 13px;
  font-size: 0.8125rem;
  text-transform: uppercase; }

.x-minicart__fulltotal-price {
  font-weight: 700; }

.x-minicart__fulltotal-price, .x-minicart__discount-price, .x-minicart__subtotal-price {
  font-size: 18px;
  font-size: 1.125rem; }

.x-minicart__btn-checkout {
  font-size: 10px;
  font-size: 0.625rem;
  height: auto;
  height: auto;
  padding-left: 12px;
  padding-left: 0.75rem;
  padding-right: 12px;
  padding-right: 0.75rem;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  padding-top: 15px;
  padding-top: 0.9375rem;
  font-family: inherit;
  width: 100%;
  background-color: #093953;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 3px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .x-minicart__btn-checkout:hover, .x-minicart__btn-checkout:active, .x-minicart__btn-checkout:focus {
    background-color: #272727;
    color: #fff !important; }

.x-minicart__empty {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%; }
  .x-minicart__empty .vve-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .x-minicart__empty .vve-container h1 {
      color: #000;
      font-style: italic;
      font-size: 24px;
      font-size: 1.5rem;
      margin-bottom: 5px;
      margin-bottom: 0.3125rem; }
    .x-minicart__empty .vve-container h2 {
      color: #000;
      font-style: italic;
      font-size: 24px;
      font-size: 1.5rem;
      margin-bottom: 5px;
      margin-bottom: 0.3125rem; }
    .x-minicart__empty .vve-container h3 {
      color: #000;
      font-style: italic;
      font-size: 24px;
      font-size: 1.5rem;
      margin-bottom: 5px;
      margin-bottom: 0.3125rem; }
    .x-minicart__empty .vve-container h4 {
      color: #000;
      font-style: italic;
      font-size: 24px;
      font-size: 1.5rem;
      margin-bottom: 5px;
      margin-bottom: 0.3125rem; }
    .x-minicart__empty .vve-container h5 {
      color: #000;
      font-style: italic;
      font-size: 24px;
      font-size: 1.5rem;
      margin-bottom: 5px;
      margin-bottom: 0.3125rem; }
    .x-minicart__empty .vve-container h6 {
      color: #000;
      font-style: italic;
      font-size: 24px;
      font-size: 1.5rem;
      margin-bottom: 5px;
      margin-bottom: 0.3125rem; }
    .x-minicart__empty .vve-container p {
      font-size: 12px;
      font-size: 0.75rem;
      letter-spacing: 1px;
      text-transform: uppercase; }
    .x-minicart__empty .vve-container a {
      margin-top: 12px;
      margin-top: 0.75rem; }

.x-quick-view {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  max-width: 380px;
  max-width: 23.75rem;
  display: block;
  max-height: 100vh;
  height: 100%; }
  .x-quick-view.is--active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

.x-quick-view__top {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 15px;
  padding: 0.75rem 0.9375rem;
  background-color: #fff; }

.x-quick-view__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 'Frank Ruhl Libre',serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: block;
  width: 100%; }

.x-quick-view__close {
  height: 18px;
  height: 1.125rem;
  width: 18px;
  width: 1.125rem;
  cursor: pointer; }
  .x-quick-view__close .icon-close-popup svg {
    fill: #000; }

.x-quick-view__img-container.has--placeloader {
  padding: 63% 50%; }

.x-quick-view__img {
  width: 100%; }
  .x-quick-view__img.has--placelaoder {
    padding: 63% 100%; }

.x-quick-view .slick-arrow {
  font-size: 0px; }

.x-quick-view .slick-prev {
  left: 8px;
  left: 0.5rem; }
  .x-quick-view .slick-prev:before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    border-color: #fff; }

.x-quick-view .slick-next {
  right: 8px;
  right: 0.5rem; }
  .x-quick-view .slick-next:before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-color: #fff; }

.x-quick-view__info {
  padding: 10px 23px 0px;
  padding: 0.625rem 1.4375rem 0rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.x-quick-view__name {
  font-weight: 300;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: 'Frank Ruhl Libre',serif;
  color: #093953;
  text-transform: capitalize;
  margin-bottom: 4px;
  margin-bottom: 0.25rem; }

.x-quick-view__ref {
  font-weight: 300;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.8px;
  letter-spacing: 0.05rem;
  font-family: 'Frank Ruhl Libre',serif;
  color: #5A5A5A; }

.x-quick-view__old-price {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: .8px;
  color: #5A5A5A;
  display: block; }

.x-quick-view__best-price {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  letter-spacing: 0.05rem;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  color: #222222;
  text-decoration: none; }

.x-quick-view__installments-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.8px;
  letter-spacing: 0.05rem;
  color: #222222; }

.x-quick-view__link {
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-transform: uppercase;
  line-height: 1;
  color: #093953;
  padding-bottom: 8px;
  display: inline-block;
  border-bottom: 2px solid #093953; }

.x-quick-view__select-size-title {
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  letter-spacing: 0.05rem;
  font-family: 'Frank Ruhl Libre',serif;
  color: #093953;
  text-transform: uppercase;
  margin: 10px 11px 13px 0;
  margin: 0.625rem 0.6875rem 0.8125rem 0;
  line-height: 1; }

.x-quick-view__cart-btn {
  display: block;
  background-color: #0030a0;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  font-weight: 400;
  line-height: 1px;
  line-height: 0.0625rem;
  padding: 12px 0;
  padding: 0.75rem 0;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: .8px;
  min-height: 46px;
  min-height: 2.875rem;
  width: 100%; }

.x-quick-view__select {
  padding: 12px 24px 0;
  padding: 0.75rem 1.5rem 0; }

.x-quick-view__select-size {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.x-quick-view__color-item {
  padding: 10px 26px;
  padding: 0.625rem 1.625rem;
  text-transform: lowercase; }
  .x-quick-view__color-item:first-letter {
    text-transform: uppercase; }

.x-quick-view__color-item, .x-quick-view__size-item {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  text-align: center;
  color: #848484;
  border: 1px solid #848484;
  -webkit-transition: all 0.175s cubic-bezier(0, 0, 0.2, 1);
  -o-transition: all 0.175s cubic-bezier(0, 0, 0.2, 1);
  transition: all 0.175s cubic-bezier(0, 0, 0.2, 1);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  opacity: .75;
  display: inline-block;
  margin-right: 13px;
  margin-right: 0.8125rem;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem; }
  .x-quick-view__color-item.is--unavailable, .x-quick-view__size-item.is--unavailable {
    opacity: .5;
    cursor: not-allowed;
    text-decoration: line-through; }
  .x-quick-view__color-item.is--active, .x-quick-view__size-item.is--active {
    -webkit-transition: all 0.175s cubic-bezier(0.4, 0, 1, 1);
    -o-transition: all 0.175s cubic-bezier(0.4, 0, 1, 1);
    transition: all 0.175s cubic-bezier(0.4, 0, 1, 1);
    color: #093953;
    border-color: #093953; }
  .x-quick-view__color-item:not(.is--current):hover, .x-quick-view__size-item:not(.is--current):hover {
    -webkit-transition: all 0.175s cubic-bezier(0.4, 0, 1, 1);
    -o-transition: all 0.175s cubic-bezier(0.4, 0, 1, 1);
    transition: all 0.175s cubic-bezier(0.4, 0, 1, 1);
    opacity: 1; }

.x-quick-view__size-item {
  width: 38px;
  width: 2.375rem;
  line-height: 38px;
  line-height: 2.375rem;
  text-transform: uppercase; }

/*LOGIN ESTILIZADO:*/
.vtexIdUI * {
  font-family: "Nunito Sans" !important; }

.vtexIdUI-show-app {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
  -webkit-border-radius: none !important;
  border-radius: none !important; }

.vtexIdUI-providers-list .btn {
  font-family: 'Nunito Sans';
  letter-spacing: .7px !important; }

.vtexIdUI .alert {
  background-color: transparent !important;
  border: 0 !important;
  color: #dc0505 !important;
  font-family: Nunito, sans-serif;
  text-align: center; }

.vtexIdUI .modal-header .close {
  color: #cecdcd !important;
  font-family: 'Nunito sans', sans-serif !important;
  font-weight: 400 !important; }

.vtexIdUI {
  width: 90% !important;
  max-width: 600px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
  top: 0 !important;
  left: 0 !important;
  right: 0;
  bottom: 0;
  margin: auto !important; }
  .vtexIdUI .btn-success {
    background: #0030a0 !important;
    -webkit-border-radius: 0px !important;
    border-radius: 0px !important;
    padding: 10px 45px;
    margin-right: 40px !important;
    font-size: 11px;
    letter-spacing: 1px; }
  .vtexIdUI .vtexIdUI-auth-code .btn {
    font-size: 11px !important; }
  .vtexIdUI input {
    height: 34px !important;
    font-size: 12px !important;
    letter-spacing: .5px;
    margin-bottom: 5px !important;
    color: #505050 !important;
    font-weight: 500 !important;
    padding-left: 12px !important;
    border: 1px solid #505050 !important;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-family: Nunito, sans-serif; }

#vtexIdContainer .vtexIdUI .modal-body {
  padding: 5px 55px 30px; }
  @media (max-width: 1024px) {
    #vtexIdContainer .vtexIdUI .modal-body {
      padding: 5px 15px 30px; } }

.vtexIdUI .modal-header,
.vtexIdUI .modal-footer {
  background: white !important;
  border: 0 !important; }

.vtexIdUI .modal-header .close {
  background: transparent !important;
  color: grey !important;
  -webkit-transform: scale(2) !important;
  -ms-transform: scale(2) !important;
  transform: scale(2) !important;
  position: absolute !important;
  top: 10px !important;
  right: 10px !important; }

.vtexIdUI h4 {
  font-family: 'Nunito Sans';
  text-align: center !important;
  margin-top: 18px !important;
  margin-bottom: 6px !important;
  padding: 0; }

.vtexIdUI .vtexid-icon-lock.bottom-icon {
  display: none !important; }

h4.vtexIdUI-heading span {
  font-size: 0 !important; }

h4.vtexIdUI-heading span::before {
  content: 'Faça seu login:' !important;
  font-size: 20px !important;
  font-weight: bold;
  color: #000 !important;
  letter-spacing: 1px !important;
  font-family: 'Nunito Sans'; }

.vtexIdUI .btn-large {
  padding: 9px 19px;
  height: 38px !important;
  text-transform: none;
  color: white !important;
  font-weight: normal !important;
  font-size: 14px !important;
  border: 0 !important; }
  .vtexIdUI .btn-large i::before {
    display: none; }

.vtexIdUI .vtexIdUI-send-email::before {
  content: 'Entrar apenas com e-mail' !important;
  font-size: 14px !important;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

@media all and (max-width: 768px) {
  .vtexIdUI .vtexIdUI-send-email::before {
    font-size: 11px !important; } }

.vtexIdUI .btn-large > span:nth-child(2) {
  font-size: 0px !important; }

.vtexIdUI .btn-large > span {
  font-size: 14px !important; }

.vtexIdUI .vtexIdUI-send-email::before {
  font-size: 14px !important; }

.vtexIdUI .btn {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-shadow: none !important; }

.vtexIdUI .vtexIdUI-providers-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (max-width: 1024px) {
    .vtexIdUI .vtexIdUI-providers-list .btn {
      padding-left: 15px; } }

.vtexIdUI .vtexIdUI-providers-list li:nth-child(1) {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1; }

.vtexIdUI .vtexIdUI-providers-list li:nth-child(2) {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -moz-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3; }

.vtexIdUI .vtexIdUI-providers-list li:nth-child(3) {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2; }

.vtexIdUI .vtexIdUI-providers-list li:nth-child(4) {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -moz-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4; }

#vtexIdUI-google-plus {
  background: #E8453C !important; }

button#loginWithUserAndPasswordBtn {
  background: black !important; }

button#loginWithAccessKeyBtn {
  background: #6B6B6B !important; }

#vtexIdUI-facebook {
  background: #4B639A !important; }

text-t .vtexIdUI .vtexIdUI-providers-list .btn i {
  display: none !important; }

button#loginWithAccessKeyBtn::after {
  content: '';
  display: block;
  background: url("https://aviator.vteximg.com.br/arquivos/mail.png") no-repeat;
  display: block;
  height: 20px;
  width: 35px;
  position: absolute;
  top: 25%;
  right: 0%; }

.vtexIdUI #vtexIdUI-google-plus::after {
  content: '';
  display: block;
  background: url("https://aviator.vteximg.com.br/arquivos/gplus.png") no-repeat;
  display: block;
  height: 30px;
  width: 39px;
  position: absolute;
  top: 14%;
  right: 0%; }

.vtexIdUI #vtexIdUI-facebook::after {
  content: '';
  display: block;
  background: url("https://aviator.vteximg.com.br/arquivos/facebookicon.png") no-repeat;
  display: block;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 15%;
  right: 0%;
  -webkit-transform: scaleY(0.89);
  -ms-transform: scaleY(0.89);
  transform: scaleY(0.89); }

button#loginWithUserAndPasswordBtn::after {
  content: '';
  display: block;
  background: url("https://aviator.vteximg.com.br/arquivos/lock.png") no-repeat;
  height: 30px;
  width: 39px;
  position: absolute;
  top: 21%;
  right: -2%; }

.vtexIdUI-heading {
  font-size: 0 !important; }
  @media all and (min-width: 1024px) {
    .vtexIdUI-heading {
      padding-bottom: 4px !important; } }

.vtexIdUI-confirm-email .vtexIdUI-heading::before {
  font-size: 20px !important;
  font-family: 'Nunito Sans';
  font-weight: bold !important;
  color: black !important;
  letter-spacing: 1px !important;
  content: 'Por favor, informe seu E-mail' !important; }

.vtexIdUI .modal-footer {
  border: 0 !important;
  padding: 0px 15px 30px !important; }

.vtexIdUI-back-link.pull-left.dead-link span {
  color: #505050;
  font-family: 'Nunito sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  display: inline-block !important;
  margin-top: 0 !important;
  margin-left: 3px !important;
  letter-spacing: .5px !important; }

.vtexIdUI-back-link .vtexid-icon-arrow-left {
  color: grey;
  background: url(/arquivos/arrow-left.png) no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  height: 26px;
  width: 26px;
  display: inline-block !important; }

.vtexIdUI-back-link .vtexid-icon-arrow-left:before {
  content: '' !important; }

.vtexIdUI-confirm-email .modal-footer .pull-right {
  background: #0030a0 !important;
  -webkit-border-radius: 50px !important;
  border-radius: 50px !important;
  padding: 8px 45px !important;
  margin-right: 40px !important;
  font-size: 14px !important;
  letter-spacing: 1px !important;
  font-weight: 700; }

.vtexIdUI-confirm-email .modal-footer button {
  background: #0030a0 !important;
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
  padding: 10px 30px !important;
  margin-right: 40px !important;
  font-size: 11px !important;
  letter-spacing: 1px !important; }

.vtexIdUI-classic-login h4 .vtexIdUI-heading {
  font-size: 20px !important;
  font-weight: bold;
  font-family: 'Nunito sans', serif !important;
  color: black !important;
  letter-spacing: 1px !important; }

.vtexIdUI-classic-login h4 .vtexIdUI-heading::after {
  content: ':' !important;
  display: inline-block !important; }

#vtexIdUI-form-classic-login > div.modal-body > div.control-group.vtexIdUI-classic-login-control.email-model > label > span,
#vtexIdUI-form-classic-login > div.modal-body > div:nth-child(2) > label > span {
  display: none !important; }

.vtexIdUI-classic-login .control-label span {
  display: none !important; }

.vtexIdUI .vtexIdUI-back-link.pull-left.dead-link {
  margin: 5px 40px !important;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.vtexIdUI .vtexIdUI-back-link.pull-left.dead-link:hover {
  text-decoration: none;
  color: black; }

#appendedInputButton {
  outline: 0 !important;
  height: 38px !important;
  min-height: auto !important; }

#vtexIdUI-global-loader {
  opacity: 0.77 !important; }

#classicLoginBtn {
  background: #0030a0 !important;
  -webkit-border-radius: 50px !important;
  border-radius: 50px !important;
  padding: 8px 45px !important;
  margin-right: 40px !important;
  font-size: 14px !important;
  letter-spacing: 1px !important;
  font-weight: 700; }

#vtexIdUI-form-classic-login .dead-link.pull-right {
  /* esqueci minha senha */
  display: block;
  margin-bottom: 14px !important;
  float: none !important;
  color: #505050 !important;
  font-family: 'Nunito sans', sans-serif;
  font-weight: 500;
  font-size: 12px !important;
  text-align: right; }

@media all and (max-width: 480px) {
  .vtexIdUI .vtexIdUI-back-link.pull-left.dead-link {
    margin: 0 !important;
    margin-top: 4px !important; }
  #classicLoginBtn,
  #sendAccessKeyBtn {
    margin-right: 0px !important; } }

.vtexIdUI-auth-code .modal-body {
  margin-top: -30px !important; }

.vtexIdUI-auth-code .modal-body::before {
  content: 'Informar chave de acesso';
  font-weight: bold;
  font-size: 20px !important;
  font-family: "Nunito sans" !important;
  color: #000 !important;
  letter-spacing: 1px !important;
  margin-bottom: 20px;
  display: block;
  text-align: center !important; }

.vtexid-instruction {
  margin: 0 !important; }

.vtexIdUI-auth-code .info-code {
  font-weight: bold !important;
  font-family: 'Nunito sans' !important;
  font-size: 16px !important; }

.vtexIdUI-auth-code .info-code span {
  font-weight: normal !important;
  line-height: 24px !important; }

.vtexIdUI-auth-code .vtexIdUI-code-field {
  max-width: 305px !important; }

.vtexIdUI-auth-code input {
  height: 38px !important;
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
  border-color: black !important;
  margin: 20px 0 !important; }

#confirmLoginAccessKeyBtn {
  background: #0030a0 !important;
  -webkit-border-radius: 50px !important;
  border-radius: 50px !important;
  padding: 8px 45px !important;
  margin-right: 40px !important;
  font-size: 14px !important;
  letter-spacing: 1px !important;
  font-weight: 700; }

#vtexIdUI-change-pswd .modal-header .vtexIdUI-header {
  display: none; }

#vtexIdUI-change-pswd .modal-header h4:before {
  content: 'Cadastrar nova senha:';
  font-size: 20px !important;
  font-family: "Nunito sans" !important;
  font-weight: bold !important;
  color: #000 !important;
  letter-spacing: 1px !important; }

#vtexIdUI-change-pswd .modal-header .vtexid-icon-user {
  display: none !important; }

#vtexIdUI-change-pswd .modal-body {
  position: relative !important; }

#vtexIdUI-change-pswd .modal-body .vtexid-icon-lock {
  display: none !important; }

#vtexIdUI-change-pswd .modal-body .info-why {
  position: absolute !important;
  right: 60px !important;
  font-weight: bold !important;
  font-size: 15px !important; }

#tryChangePswdBtn {
  background: #0030a0 !important;
  -webkit-border-radius: 50px !important;
  border-radius: 50px !important;
  padding: 8px 45px !important;
  margin-right: 40px !important;
  font-size: 0 !important;
  letter-spacing: 1px !important;
  font-weight: 700; }

#tryChangePswdBtn::before {
  font-size: 14px !important;
  content: 'Cadastrar';
  display: block; }

.vtexid-password-requirements {
  color: black !important;
  font-weight: bold !important;
  line-height: 18px !important;
  font-size: 13px !important;
  letter-spacing: 0.5px !important; }

.vtexid-password-requirements-list {
  margin: 0 !important;
  font-family: Nunito, helvetica, sans-serif;
  font-size: 12px;
  font-weight: 600; }

#vtexIdUI-change-pswd .modal-body .control-group label {
  font-size: 12px;
  color: #000000;
  font-family: Nunito, helvetica, sans-serif;
  font-weight: 700; }

#vtexIdUI-change-pswd .vtexIdUI-user {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 18px !important; }

button#loginWithAccessKeyBtn {
  /* padding-left: 60px !important; */ }

#vtexIdUI-change-pswd form {
  padding-top: 18px !important; }

.vtexIdUI-auth-code .modal-footer {
  margin-top: 20px !important; }

#vtexIdUI-form-classic-login > div.modal-body > div:nth-child(2) > a {
  margin-top: 0px !important; }

@media all and (max-width: 480px) {
  #vtexIdUI-change-pswd .modal-body .info-why {
    position: relative !important;
    margin-top: 0 !important;
    right: unset !important;
    font-size: 14px !important; }
  #vtexIdUI-change-pswd form {
    padding-top: 9px !important; }
  #vtexIdUI-change-pswd .modal-body .control-group label {
    margin-bottom: 0 !important;
    margin-top: 4px !important; }
  #tryChangePswdBtn,
  #sendAccessKeyBtn,
  #classicLoginBtn,
  #confirmLoginAccessKeyBtn {
    margin-right: 0 !important; } }

@media all and (min-width: 1279px) and (max-width: 1281px) {
  #vtexIdUI-change-pswd .modal-body .info-why {
    font-size: 13px !important; } }

#bannerEbit {
  margin-bottom: 20px; }

/**
 * Utils (shame file included)
 * Helper Classes & IE10+/Edge Fallback
 */
.is--show {
  display: block !important; }

.is--hide {
  display: none !important; }

@media only screen and (min-width: 769px) {
  .is--mobile {
    display: none !important; } }

@media only screen and (min-width: 1024px) {
  .is--mobile-tablet {
    display: none !important; } }

@media only screen and (max-width: 768px) {
  .is--tablet {
    display: none !important; } }

@media only screen and (min-width: 1024px) {
  .is--tablet {
    display: none !important; } }

@media only screen and (max-width: 768px) {
  .is--tablet-desktop {
    display: none !important; } }

@media only screen and (max-width: 1023px) {
  .is--desktop {
    display: none !important; } }

.clearfix {
  /**
     * For IE 6/7 only
     * Include this rule to trigger hasLayout and contain floats.
     */
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: ' ';
    /* 1 */
    display: table;
    /* 2 */ }
  .clearfix:after {
    clear: both; }

/**
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden; }

.hidden-heading {
  font-size: 0;
  width: 1px;
  height: 1px;
  display: inline-block;
  overflow: hidden;
  position: absolute !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px); }

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.visually-shown {
  position: inherit !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0; }

.label-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }
  .no-placeholder .label-hidden {
    position: inherit !important;
    overflow: auto;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0; }

/**
 * IE and Edge general styles
 * Allowed !important
 */
/**
 * IE 10+ Fallback
 */
/**
 * Microsoft Edge Browser 13+ - @supports method
 */
/**
 * Microsoft Edge Browser 12
 */