@charset "UTF-8";
/**
 * Settings
 */
/**
 * Colors
 */
/**
 * Typography
 */
/**
 * Font Weight
 */
/**
 * Settings alerts boxes
 */
/**
 * Social Media Colors
 */
/**
 * General Variables
 * Call on every SASS files
 */
/**
 * Tools
 */
/**
 * Registros dos z-indexes
 * Ordem decrescente
 */
/**
 * 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
 */
/**
 * Mixin 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
*/
/**
 * Vendor | Mixins
 */
/* ----------------------------------------------------------------------------------------------------

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

input {
  @extend %form-reset-input;
}

label {
  @extend %form-reset-label;
}

select {
  @extend %form-reset-select;
}

button {
  @extend %form-reset-button;
}

textarea {
  @extend %form-reset-textarea;
}

----------------------------------------------------------------------------------------------------*/
input, label, select, button, 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; }

input[type=reset], input[type=button], input[type=submit], input[type=checkbox], input[type=radio], select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

input {
  /* 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; }
  input[type=reset], input[type=button], input[type=submit] {
    overflow: visible; }

select {
  /* Move the label to the top */ }
  select[multiple] {
    vertical-align: top; }

button {
  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; }

textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto; }

/**
 * https://github.com/pierreburel/sass-rem
 */
/**
 * $count: Determina o número de vezes que a animação vai se repetir. Para deixar a animação repetindo infinitamente, informe o valor 'infinite'. Default: 1
 * $duration: Quanto tempo, em segundos (s) ou milisegundos (ms), durará um ciclo da animação. Default: 1s
 * $delay: Define a partir de quanto tempo a animação vai se iniciar. Default: 0
 * $function: Forma como a animação progride no tempo. Default: ease
 * $fill: Especifica como uma animação CSS deve aplicar estilos ao seu destino antes e depois que ele está sendo executado. Default: both
 * $visibility: Determina se deve ser exibido ou não a parte de trás do elemento para o usuário. Default: hidden
 */
/**
 * Placeholder Components
 */
.x-form__submit input, .x-form__file-control:before, .x-home__error-btn, .x-newsletter__error-btn, .x-minicart__btn-checkout, .x-minicart__empty .vve-container a, .x-search__result-list .search__show-more-btn, .x-minicart__btn-keeping-buying {
  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 .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border: 1px solid transparent;
  color: #fff;
  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;
  letter-spacing: 1px; }
  .x-form__submit input, .x-form__file-control:before, .x-home__error-btn, .x-newsletter__error-btn, .x-minicart__btn-checkout, .x-minicart__empty .vve-container a, .x-search__result-list .search__show-more-btn {
    background-color: #03afba;
    color: #FFF;
    font-weight: 600;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
    font-family: "Open Sans", sans-serif;
    height: 40px;
    height: 2.5rem;
    line-height: 35px;
    line-height: 2.1875rem;
    letter-spacing: 2px;
    letter-spacing: 0.125rem;
    font-size: 14px;
    font-size: 0.875rem; }
  .x-minicart__btn-keeping-buying {
    color: #000;
    border-color: #000; }
    .x-minicart__btn-keeping-buying:hover {
      color: #000;
      background-color: #fff; }
  .has--two-columns.x-form__group .x-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 #860000 !important; }
    .x-form__group label.error {
      color: #860000;
      font-size: 10px;
      font-size: 0.625rem;
      position: absolute;
      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__submit input {
    width: 100%; }
  .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, .vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control input,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd input,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field input,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code input,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field input {
    color: #818181;
    border: 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #FFF;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    width: 100%;
    font-size: 15px;
    font-size: 0.9375rem;
    padding-left: 14px;
    padding-left: 0.875rem;
    padding-right: 14px;
    padding-right: 0.875rem;
    height: 30px;
    height: 1.875rem;
    line-height: 40px;
    line-height: 2.5rem;
    min-height: 40px;
    min-height: 2.5rem;
    border: 1px solid #dadada;
    -webkit-box-shadow: none;
    box-shadow: none; }
    .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, .vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control input::-webkit-input-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd input::-webkit-input-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field input::-webkit-input-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code input::-webkit-input-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field input::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #818181;
      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, .vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control input::-moz-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd input::-moz-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field input::-moz-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code input::-moz-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field input::-moz-placeholder {
      /* Firefox 19+ */
      color: #818181;
      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, .vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control input:-ms-input-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd input:-ms-input-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field input:-ms-input-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code input:-ms-input-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field input:-ms-input-placeholder {
      /* IE 10+ */
      color: #818181;
      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, .vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control input:-moz-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd input:-moz-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field input:-moz-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code input:-moz-placeholder,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field input:-moz-placeholder {
      /* Firefox 18- */
      color: #818181;
      opacity: 1; }
    @media only screen and (max-width: 767px) {
      .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, .vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control input,
      .vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd input,
      .vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field input,
      .vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code input,
      .vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field input {
        font-size: 15px;
        font-size: 0.9375rem;
        height: 40px;
        height: 2.5rem;
        line-height: 39px;
        line-height: 2.4375rem; } }
    .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, .vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control input:focus,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd input:focus,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field input:focus,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code input:focus,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field input: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: #818181;
    border: 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #FFF;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    width: 100%;
    font-size: 15px;
    font-size: 0.9375rem;
    padding-left: 14px;
    padding-left: 0.875rem;
    padding-right: 14px;
    padding-right: 0.875rem;
    height: 30px;
    height: 1.875rem;
    line-height: 40px;
    line-height: 2.5rem;
    padding-top: 12px;
    padding-top: 0.75rem;
    padding-bottom: 12px;
    padding-bottom: 0.75rem;
    transition: all .3s; }
    .x-form__group textarea::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #818181;
      opacity: 1; }
    .x-form__group textarea::-moz-placeholder {
      /* Firefox 19+ */
      color: #818181;
      opacity: 1; }
    .x-form__group textarea:-ms-input-placeholder {
      /* IE 10+ */
      color: #818181;
      opacity: 1; }
    .x-form__group textarea:-moz-placeholder {
      /* Firefox 18- */
      color: #818181;
      opacity: 1; }
    @media only screen and (max-width: 767px) {
      .x-form__group textarea {
        font-size: 15px;
        font-size: 0.9375rem;
        height: 40px;
        height: 2.5rem;
        line-height: 39px;
        line-height: 2.4375rem; } }
  .x-form__group label {
    display: block;
    font-size: 15px;
    font-size: 0.9375rem;
    margin-bottom: 3px;
    margin-bottom: 0.1875rem;
    color: #656667; }
    @media only screen and (max-width: 767px) {
      .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 + .x-form__checkbox-label:before,
    .x-form__checkbox:checked + .x-form__checkbox-label:before {
      background: #8e8168; }
  .x-form__checkbox-label {
    width: 16px;
    width: 1rem;
    height: 16px;
    height: 1rem;
    display: block;
    position: relative;
    text-indent: -999px;
    overflow: hidden;
    border: 1px solid #860000;
    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 .4s ease;
      -o-transition: all .4s ease;
      transition: all .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: 32px; }
    .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: 32px;
    height: 2rem; }
    .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: 32px;
    width: 100%; }
  .x-form__file-control {
    border: none;
    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 .3s ease-out;
      -o-transition: background-color .3s ease-out;
      transition: background-color .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-minicart__item-qty-btn:before, .x-main-menu__item:after, .x-main-menu__submenu-content .vve-container__inner a:after, .x-footer__social a:before {
  font-family: "jequiti-iconfonts";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.x-shelf__installments {
  display: inline-block;
  font-size: 11px;
  font-size: 0.6875rem;
  margin-right: 14px;
  margin-right: 0.875rem;
  text-decoration: none;
  position: relative;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  -webkit-transform: perspective(1px) translate3d(0, 0, 0);
  transform: perspective(1px) translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased; }

.x-shelf__installments {
  margin-right: 0;
  font-size: 14px;
  font-size: 0.875rem; }

.x-home__title, .x-newsletter__title {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase; }

.x-home__form-group input[type="text"], .x-newsletter__form-group input[type="text"] {
  background: #FFF;
  -webkit-border-radius: 13px;
  border-radius: 13px;
  color: #818181;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 0 13px;
  padding: 0 0.8125rem;
  height: 30px;
  height: 1.875rem; }

.x-home__form-submit > input, .x-newsletter__form-submit > input {
  background: #03afba;
  color: #FFF;
  font-weight: 600;
  -webkit-border-radius: 13px;
  border-radius: 13px;
  text-transform: uppercase;
  display: block;
  height: 30px;
  height: 1.875rem;
  line-height: 30px;
  line-height: 1.875rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  font-size: 14px;
  font-size: 0.875rem; }

.x-home__checkbox-text, .x-newsletter__checkbox-text {
  color: #656667;
  max-width: 168px;
  max-width: 10.5rem; }

.x-home__loading, .x-newsletter__loading {
  display: none; }
  .is--active.x-home__loading, .is--active.x-newsletter__loading {
    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; }

.x-home__error, .x-home__success, .x-newsletter__error, .x-newsletter__success {
  display: none;
  text-align: center; }
  .x-home__error h2, .x-home__success h2, .x-newsletter__error h2, .x-newsletter__success h2 {
    display: block;
    font-family: "Permanent Marker", cursive;
    line-height: 1; }
  .x-home__error p, .x-home__success p, .x-newsletter__error p, .x-newsletter__success p {
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-top: 5px;
    padding-top: 0.3125rem; }
  .is--active.x-home__error, .is--active.x-home__success, .is--active.x-newsletter__error, .is--active.x-newsletter__success {
    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-home__error h2, .x-newsletter__error h2 {
  font-size: 32px;
  font-size: 2rem; }

.x-home__error p, .x-newsletter__error p {
  font-size: 10px;
  font-size: 0.625rem; }

.x-home__error-btn, .x-newsletter__error-btn {
  margin-top: 12px;
  margin-top: 0.75rem; }

.x-home__success h2, .x-newsletter__success h2 {
  font-size: 48px;
  font-size: 3rem; }

.x-home__success p, .x-newsletter__success p {
  font-size: 12px;
  font-size: 0.75rem; }

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

.x-minicart__item-qty-val {
  width: 3ch;
  text-align: center;
  font-weight: bold;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  width: 100%;
  color: #6a266a;
  font-weight: 300;
  margin: 0 5px;
  margin: 0 0.3125rem;
  max-width: 73px;
  max-width: 4.5625rem;
  font-size: 16px;
  font-size: 1rem;
  height: 48px;
  height: 3rem; }
  @media only screen and (max-width: 767px) {
    .x-minicart__item-qty-val {
      margin: 0;
      height: 38px;
      height: 2.375rem; } }

.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;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  width: 100%;
  color: #6a266a;
  max-width: 32px;
  max-width: 2rem;
  height: 48px;
  height: 3rem; }
  @media only screen and (max-width: 767px) {
    .x-minicart__item-qty-btn {
      height: 38px;
      height: 2.375rem;
      max-width: 38px;
      max-width: 2.375rem; } }
  .x-minicart__item-qty-btn:before {
    font-weight: 300;
    font-size: 10px;
    font-size: 0.625rem; }
  .has--minus.x-minicart__item-qty-btn:before {
    content: '\EA01'; }
  .has--plus.x-minicart__item-qty-btn:before {
    content: '\EA02'; }

@media only screen and (min-width: 768px) {
  .x-footer-menu a {
    position: relative; }
    .x-footer-menu a:after {
      content: '';
      display: block;
      width: 0;
      height: 1px;
      background: #000;
      position: absolute;
      right: 100%;
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      transition: all .5s; }
    .x-footer-menu a.is--active:after, .x-footer-menu a:hover:after {
      right: 0;
      width: 100%; } }

.x-minicart, .x-newsletter {
  background-color: rgba(239, 234, 227, 0.9);
  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-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  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: 5017; }
  .is--active.x-minicart, .is--active.x-newsletter {
    will-change: transform; }

/**
 * Settings
 */
@font-face {
  font-family: 'Fortunates December';
  src: url("FortunatesDecember.eot");
  src: url("/arquivos/FortunatesDecember.eot.css?#iefix") format("embedded-opentype"), url("/arquivos/FortunatesDecember.woff2.css") format("woff2"), url("/arquivos/FortunatesDecember.woff.css") format("woff"), url("/arquivos/FortunatesDecember.ttf.css") format("truetype");
  font-weight: normal;
  font-style: normal; }

/**
 * Fonts Imports
 * jequiti-iconfonts Webfont
 */
@font-face {
  font-family: 'jequiti-iconfonts';
  src: url("/arquivos/jequiti-iconfonts.eot.css");
  src: url("/arquivos/jequiti-iconfonts.eot.css") format("embedded-opentype"), url("/arquivos/jequiti-iconfonts.ttf.css") format("truetype"), url("/arquivos/jequiti-iconfonts.woff2.css") format("woff2"), url("/arquivos/jequiti-iconfonts.woff.css") format("woff"), url("/arquivos/jequiti-iconfonts.svg.css") format("svg");
  font-weight: normal;
  font-style: normal; }

/**
 * Remove and import this part on:
 * /scss/components/_iconfonts.scss
 *
@mixin iconfont-styles {
    font-family: "jequiti-iconfonts";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    // speak: none; // only necessary if not using the private unicode range (firstGlyph option)
    text-decoration: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

%iconfont {
    @include iconfont-styles;
}
 */
/**
 * Generic
 */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block; }

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

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* Hand cursor on clickable input elements */
a,
input[type="button"],
input[type="submit"],
input[type="file"],
input[type="image"],
button {
  cursor: pointer; }

/**!
 * Initialize.css (v1.3.2) 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
 */
/**
 * Predefined values
 */
/**
 * Options
 */
/**
 * Mixin for optional properties
 */
/* ==========================================================================
   General
   ========================================================================== */
/**
 * 1. Set default font family to $initialize-font-family (default: sans-serif)
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 * 3. Configurable defaults
 */
html {
  -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: 1em;
  /* 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,
summary {
  display: block; }

/**
     * Add the correct display in IE 9-.
     */
audio,
canvas,
progress,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * 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 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.
 */
/**
    * 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
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
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 font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold; }

/**
 * 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; }

/**
     * Change the border, margin, and padding in all browsers (opinionated).
     */
/**
 * 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 */ }

/**
 * 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 OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
 * 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
 */
/**
 * Block elements
 */
/* ==========================================================================
   Print styles
   ========================================================================== */
/**
 * Elements
 */
html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%; }

body {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* stop WebKit and Windows mobile changing text size */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #000;
  background-color: #fff;
  font-family: "Source Sans Pro", sans-serif; }

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0; }

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 {
  width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle; }

strong {
  font-weight: bold; }

em {
  font-style: italic; }

/**
 * Forms Reset
 */
/**
 * Vendors includes
 */
/**
 * Slider
 */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: '';
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  min-height: 1px;
  outline: none;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/**
 * Unicode for Dots type
 *
 * "\25B3" equilateral triangle "△"
 * "\22BF" right triangle "⊿"
 * "\2B1C" square "⬜"
 * "\2662" rhombus, diamond "♢"
 * "\25AD" rectangle "▭"
 * "\2B20" pentagon "⬠"
 * "\2B21" hexagon "⬡"
 * "\2022" dot "•"
 * "\25CB" circle "○"
 * "\25CF" full circle "●"
 * "\2B2D" ellipse  "⬭"
 * "\25C9" Fisheye "◉"
 * "\25CE" Bullseye "◎"
 */
/**
 * Unicode for Arrows types
 *
 * "\2190" left arrow "←"
 * "\2192" right arrow "→"
 * "\2329" left open arrow "〈"
 * "\232A" right open arrow "〉"
 * "\221F" needed rotate for L type "∟"
 */
/**
 * Arrows
 */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 1; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-size: 28px;
    line-height: 1;
    color: #425264;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: 25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: 25px; }
  .slick-prev:before {
    content: "〈"; }
    [dir="rtl"] .slick-prev:before {
      content: "〉"; }

.slick-next {
  right: 25px; }
  [dir="rtl"] .slick-next {
    left: 25px;
    right: auto; }
  .slick-next:before {
    content: "〉"; }
    [dir="rtl"] .slick-next:before {
      content: "〈"; }

/**
 * Dots
 */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/**
 * Module Globals
 */
body.has--loader .x-ajax-loader {
  opacity: 1;
  visibility: visible; }

body.has--no-scroll {
  height: 100%;
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    body.has--no-scroll {
      margin-right: 17px;
      margin-right: 1.0625rem; } }

body main:not(.x-maintenance__main) {
  margin-top: 184px;
  margin-top: 11.5rem; }
  @media only screen and (max-width: 767px) {
    body main:not(.x-maintenance__main) {
      margin-top: 8px;
      margin-top: 0.5rem; } }

#vtexIdUI-global-loader {
  height: 0 !important;
  width: 0 !important; }

#vtexIdContainer {
  position: fixed !important;
  z-index: 9999 !important; }

#ajaxBusy {
  position: absolute !important;
  opacity: 0 !important;
  visibility: hidden !important;
  -webkit-transform: translate(100%, 100%) !important;
  -ms-transform: translate(100%, 100%) !important;
  transform: translate(100%, 100%) !important;
  will-change: transform; }

/**
 * Slick prevent rendering
 */
.x-main-banner__small,
.x-main-banner__big {
  opacity: 0;
  visibility: hidden; }
  .x-main-banner__small.slick-initialized,
  .x-main-banner__big.slick-initialized {
    opacity: 1;
    visibility: visible; }

.x-home__main-shelf ul:not(.slick-initialized),
.x-product__main-shelf ul:not(.slick-initialized),
.x-empty-search__suggestion-shelf ul:not(.slick-initialized) {
  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; }
  .x-home__main-shelf ul:not(.slick-initialized) li,
  .x-product__main-shelf ul:not(.slick-initialized) li,
  .x-empty-search__suggestion-shelf ul:not(.slick-initialized) li {
    width: 30%;
    margin: 0 1.5%;
    width: -webkit-calc(33.33% - 20px);
    width: calc(33.33% - 20px);
    margin: 0 10px;
    margin: 0 0.625rem; }
    @media only screen and (max-width: 767px) {
      .x-home__main-shelf ul:not(.slick-initialized) li,
      .x-product__main-shelf ul:not(.slick-initialized) li,
      .x-empty-search__suggestion-shelf ul:not(.slick-initialized) li {
        width: -webkit-calc(50% - 16px);
        width: calc(50% - 16px);
        margin: 0 8px;
        margin: 0 0.5rem; } }

.x-main-menu__link, .x-main-menu__submenu-content li > a {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300; }
  @media only screen and (max-width: 767px) {
    .x-main-menu__link, .x-main-menu__submenu-content li > a {
      font-size: 17px;
      font-size: 1.0625rem; } }

@media only screen and (min-width: 768px) {
  .x-main-menu {
    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-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: height .25s ease-in;
    -o-transition: height .25s ease-in;
    transition: height .25s ease-in; } }

@media only screen and (max-width: 767px) {
  .x-main-menu {
    width: 85%;
    margin: 0 auto; } }

@media only screen and (min-width: 768px) {
  .x-main-menu__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; } }

.x-main-menu__item {
  cursor: pointer; }
  @media only screen and (min-width: 768px) {
    .x-main-menu__item {
      padding-right: 6px; }
      .x-main-menu__item:hover .x-main-menu__submenu-wrapper {
        opacity: 1;
        visibility: visible; } }
  .x-main-menu__item:first-child .x-main-menu__link {
    margin-left: 0 !important; }
  .x-main-menu__item.is--last {
    position: relative; }
    @media only screen and (min-width: 768px) {
      .x-main-menu__item.is--last {
        margin-left: 42px;
        margin-left: 2.625rem; }
        .x-main-menu__item.is--last:before {
          content: '';
          width: 36px;
          height: 1px;
          position: absolute;
          top: 41px;
          left: -36px;
          background-color: #bfbfbf; } }
    .x-main-menu__item.is--last .x-main-menu__link {
      font-family: "Permanent Marker", cursive;
      font-size: 17px;
      font-size: 1.0625rem;
      font-style: italic;
      letter-spacing: 0;
      text-transform: initial;
      text-transform: inherit; }
      @media only screen and (max-width: 767px) {
        .x-main-menu__item.is--last .x-main-menu__link {
          font-size: 24px;
          font-size: 1.5rem; } }
  @media only screen and (max-width: 767px) {
    .x-main-menu__item {
      position: relative;
      -webkit-border-radius: 10px;
      border-radius: 10px;
      -webkit-box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.3);
      box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      margin-bottom: 9px;
      margin-bottom: 0.5625rem;
      padding: 0 37px;
      padding: 0 2.3125rem;
      line-height: 50px;
      line-height: 3.125rem; }
      .x-main-menu__item.has--drop:after {
        content: '\EA06';
        position: absolute;
        top: 8px;
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        -o-transition: transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s;
        will-change: transform;
        color: #692569;
        pointer-events: none;
        font-size: 6px;
        font-size: 0.375rem;
        right: 22px;
        right: 1.375rem; }
      .x-main-menu__item.has--drop.is--active:after {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg); }
      .x-main-menu__item.is--active {
        height: auto; } }

.x-main-menu__link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold; }
  @media only screen and (min-width: 768px) {
    .x-main-menu__link {
      margin-left: 12px;
      margin-left: 0.75rem;
      margin-right: 12px;
      margin-right: 0.75rem; }
      .x-main-menu__link:after {
        bottom: 32px;
        bottom: 2rem; } }
  @media only screen and (max-width: 767px) {
    .x-main-menu__link {
      display: block;
      padding-top: 7px;
      padding-top: 0.4375rem;
      padding-bottom: 7px;
      padding-bottom: 0.4375rem;
      position: relative;
      z-index: 2; }
      .x-main-menu__link.is--small {
        text-align: center;
        font-size: 15px;
        font-size: 0.9375rem;
        line-height: 35px;
        line-height: 2.1875rem; } }
  .x-main-menu__link .x-svg {
    margin-right: 15px;
    margin-right: 0.9375rem; }
    @media only screen and (max-width: 767px) {
      .x-main-menu__link .x-svg {
        display: inline-block;
        vertical-align: middle;
        width: 35px;
        width: 2.1875rem;
        height: 35px;
        height: 2.1875rem; }
        .x-main-menu__link .x-svg svg {
          width: 32px;
          width: 2rem;
          height: 32px;
          height: 2rem; } }
  .x-main-menu__link.is--last {
    font-style: italic;
    font-family: serif;
    text-transform: inherit;
    text-transform: initial;
    letter-spacing: 0;
    font-size: 14px;
    position: relative; }
    .x-main-menu__link.is--last:before {
      content: '';
      width: 36px;
      height: 1px;
      background-color: #000;
      position: absolute;
      top: 50%;
      left: 0; }
    @media only screen and (min-width: 768px) {
      .x-main-menu__link.is--last {
        padding-left: 52px;
        padding-left: 3.25rem; } }

@media only screen and (min-width: 768px) {
  .x-main-menu__submenu-wrapper {
    background-color: #fff;
    -webkit-box-shadow: 0 3px 4px 0 rgba(101, 102, 103, 0.4);
    box-shadow: 0 3px 4px 0 rgba(101, 102, 103, 0.4);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    position: absolute;
    top: -webkit-calc(100% + 10px);
    top: calc(100% + 10px);
    left: 1%;
    width: 98%;
    opacity: 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;
    visibility: hidden;
    -webkit-transition: opacity .15s, visibility .1s;
    -o-transition: opacity .15s, visibility .1s;
    transition: opacity .15s, visibility .1s;
    will-change: opacity;
    z-index: 5005;
    padding: 18px;
    padding: 1.125rem; }
    .x-main-menu__submenu-wrapper::before {
      content: '';
      position: absolute;
      top: -22px;
      left: 0;
      height: 30px;
      background: transparent;
      width: 100%; }
    .x-main-menu__submenu-wrapper.is--active {
      opacity: 1;
      visibility: visible; }
    .x-main-menu__submenu-wrapper--left {
      max-width: 65%;
      width: 100%;
      margin-right: 7%; }
    .x-main-menu__submenu-wrapper .js--shelf-category {
      width: 70%;
      margin: 0 auto; } }

@media only screen and (max-width: 767px) {
  .x-main-menu__submenu-wrapper {
    display: none;
    padding-bottom: 10px;
    padding-bottom: 0.625rem; } }

.x-main-menu__logo {
  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;
  position: relative;
  width: -webkit-calc(20% - 48px);
  width: calc(20% - 48px); }

.x-main-menu__logo-link {
  margin-top: 64px;
  margin-top: 4rem; }
  .x-main-menu__logo-link .icon-logo {
    width: 130px;
    width: 8.125rem; }

@media only screen and (min-width: 768px) {
  .x-main-menu__submenu-container {
    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-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1; } }

.x-main-menu__submenu-items {
  background: #f7f7f6;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
  height: 50px;
  height: 3.125rem;
  line-height: 50px;
  line-height: 3.125rem;
  margin: 10px 0 20px;
  margin: 0.625rem 0 1.25rem; }
  .x-main-menu__submenu-items ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .x-main-menu__submenu-items ul li a {
      color: #90297d;
      font-weight: 600;
      padding: 10px;
      padding: 0.625rem;
      font-size: 16px;
      font-size: 1rem; }
      .x-main-menu__submenu-items ul li a::after {
        content: '';
        height: 15px;
        width: 1px;
        background: #90297d;
        display: inline-block;
        vertical-align: middle;
        margin-left: 20px; }
    .x-main-menu__submenu-items ul li:last-child a::after {
      display: none; }

@media only screen and (min-width: 768px) {
  .x-main-menu__submenu--flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex; } }

.x-main-menu__submenu-departament p {
  display: block;
  color: #03afba;
  text-transform: uppercase;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  font-size: 18px;
  font-size: 1.125rem; }

.x-main-menu__submenu-content .vve-container__inner {
  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 only screen and (max-width: 767px) {
    .x-main-menu__submenu-content .vve-container__inner {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
      -moz-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start; } }
  .x-main-menu__submenu-content .vve-container__inner h1 {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 900;
    padding-right: 24px;
    padding-right: 1.5rem;
    position: relative; }
    .x-main-menu__submenu-content .vve-container__inner h1:before {
      content: '';
      background-color: #000;
      position: absolute;
      left: 0;
      bottom: -12px;
      bottom: -0.75rem;
      height: 1px;
      width: 24px;
      width: 1.5rem; }
      @media only screen and (max-width: 767px) {
        .x-main-menu__submenu-content .vve-container__inner h1:before {
          height: 2px;
          bottom: -8px;
          bottom: -0.5rem; } }
  .x-main-menu__submenu-content .vve-container__inner h2 {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 900;
    padding-right: 24px;
    padding-right: 1.5rem;
    position: relative; }
    .x-main-menu__submenu-content .vve-container__inner h2:before {
      content: '';
      background-color: #000;
      position: absolute;
      left: 0;
      bottom: -12px;
      bottom: -0.75rem;
      height: 1px;
      width: 24px;
      width: 1.5rem; }
      @media only screen and (max-width: 767px) {
        .x-main-menu__submenu-content .vve-container__inner h2:before {
          height: 2px;
          bottom: -8px;
          bottom: -0.5rem; } }
  .x-main-menu__submenu-content .vve-container__inner h3 {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 900;
    padding-right: 24px;
    padding-right: 1.5rem;
    position: relative; }
    .x-main-menu__submenu-content .vve-container__inner h3:before {
      content: '';
      background-color: #000;
      position: absolute;
      left: 0;
      bottom: -12px;
      bottom: -0.75rem;
      height: 1px;
      width: 24px;
      width: 1.5rem; }
      @media only screen and (max-width: 767px) {
        .x-main-menu__submenu-content .vve-container__inner h3:before {
          height: 2px;
          bottom: -8px;
          bottom: -0.5rem; } }
  .x-main-menu__submenu-content .vve-container__inner h4 {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 900;
    padding-right: 24px;
    padding-right: 1.5rem;
    position: relative; }
    .x-main-menu__submenu-content .vve-container__inner h4:before {
      content: '';
      background-color: #000;
      position: absolute;
      left: 0;
      bottom: -12px;
      bottom: -0.75rem;
      height: 1px;
      width: 24px;
      width: 1.5rem; }
      @media only screen and (max-width: 767px) {
        .x-main-menu__submenu-content .vve-container__inner h4:before {
          height: 2px;
          bottom: -8px;
          bottom: -0.5rem; } }
  .x-main-menu__submenu-content .vve-container__inner h5 {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 900;
    padding-right: 24px;
    padding-right: 1.5rem;
    position: relative; }
    .x-main-menu__submenu-content .vve-container__inner h5:before {
      content: '';
      background-color: #000;
      position: absolute;
      left: 0;
      bottom: -12px;
      bottom: -0.75rem;
      height: 1px;
      width: 24px;
      width: 1.5rem; }
      @media only screen and (max-width: 767px) {
        .x-main-menu__submenu-content .vve-container__inner h5:before {
          height: 2px;
          bottom: -8px;
          bottom: -0.5rem; } }
  .x-main-menu__submenu-content .vve-container__inner h6 {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 900;
    padding-right: 24px;
    padding-right: 1.5rem;
    position: relative; }
    .x-main-menu__submenu-content .vve-container__inner h6:before {
      content: '';
      background-color: #000;
      position: absolute;
      left: 0;
      bottom: -12px;
      bottom: -0.75rem;
      height: 1px;
      width: 24px;
      width: 1.5rem; }
      @media only screen and (max-width: 767px) {
        .x-main-menu__submenu-content .vve-container__inner h6:before {
          height: 2px;
          bottom: -8px;
          bottom: -0.5rem; } }
  .x-main-menu__submenu-content .vve-container__inner a {
    font-size: 9px;
    font-size: 0.5625rem;
    color: #656667;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 0;
    position: relative;
    padding-right: 16px;
    padding-right: 1rem; }
    .x-main-menu__submenu-content .vve-container__inner a:after {
      content: '\EA04';
      position: absolute;
      top: 0;
      right: 0;
      font-size: 8px;
      font-size: 0.5rem; }
    @media only screen and (max-width: 767px) {
      .x-main-menu__submenu-content .vve-container__inner a {
        margin-left: 8px;
        margin-left: 0.5rem;
        text-decoration: underline; } }

@media only screen and (max-width: 767px) {
  .x-main-menu__submenu-content .vve-container {
    padding-top: 10px;
    padding-top: 0.625rem; } }

@media only screen and (min-width: 768px) {
  .x-main-menu__submenu-content ul {
    margin-top: 24px;
    margin-top: 1.5rem; } }

@media only screen and (max-width: 767px) {
  .x-main-menu__submenu-content ul li {
    text-align: center;
    cursor: pointer;
    line-height: 30px;
    line-height: 1.875rem; } }

.x-main-menu__submenu-content li > a {
  display: inline-block; }
  @media only screen and (min-width: 768px) {
    .x-main-menu__submenu-content li > a {
      padding-top: 3px;
      padding-top: 0.1875rem;
      padding-bottom: 3px;
      padding-bottom: 0.1875rem; } }
  @media only screen and (max-width: 767px) {
    .x-main-menu__submenu-content li > a {
      font-weight: 300;
      color: #222;
      font-size: 15px;
      font-size: 0.9375rem; } }

.x-main-menu .x-mobile {
  display: none; }
  @media only screen and (max-width: 767px) {
    .x-main-menu .x-mobile {
      display: block; } }

.x-main-menu .x-title-line {
  display: none; }
  @media only screen and (max-width: 767px) {
    .x-main-menu .x-title-line {
      display: block;
      text-align: center;
      color: #62adb8;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 1px;
      letter-spacing: 0.0625rem;
      padding: 0 0 10px;
      padding: 0 0 0.625rem;
      font-size: 16px;
      font-size: 1rem; } }

/**
 * Markup
 *
 * <div class="x-ajax-loader__loading">
 *     <span class="x-ajax-loader__loading-dot">
 *     <span class="x-ajax-loader__loading-dot">
 *     <span class="x-ajax-loader__loading-dot">
 * </div>
 */
@-webkit-keyframes ajax-loader {
  0 {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }
@keyframes ajax-loader {
  0 {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

.x-ajax-loader__loading {
  margin-top: 5px;
  margin-top: 0.3125rem;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem; }

.x-ajax-loader__loading-dot {
  display: inline-block;
  height: 12px;
  height: 0.75rem;
  width: 12px;
  width: 0.75rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: 7px;
  margin-left: 0.4375rem;
  background-color: #8e8168; }
  .x-ajax-loader__loading-dot:nth-last-child(1) {
    -webkit-animation: ajax-loader .6s .1s linear infinite;
    animation: ajax-loader .6s .1s linear infinite; }
  .x-ajax-loader__loading-dot:nth-last-child(2) {
    -webkit-animation: ajax-loader .6s .2s linear infinite;
    animation: ajax-loader .6s .2s linear infinite; }
  .x-ajax-loader__loading-dot:nth-last-child(3) {
    -webkit-animation: ajax-loader .6s .3s linear infinite;
    animation: ajax-loader .6s .3s linear infinite; }

.x-breadcrumb {
  margin-bottom: 16px;
  margin-bottom: 1rem; }
  .x-breadcrumb .bread-crumb ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -moz-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    @media only screen and (max-width: 767px) {
      .x-breadcrumb .bread-crumb ul {
        padding: 4px 16px;
        padding: 0.25rem 1rem;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start; }
        body.is--category .x-breadcrumb .bread-crumb ul,
        body.is--departament .x-breadcrumb .bread-crumb ul,
        body.is--serach-result .x-breadcrumb .bread-crumb ul {
          padding: 0; } }
  .x-breadcrumb .bread-crumb 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; }
    .x-breadcrumb .bread-crumb li:first-child a {
      margin-left: 0;
      padding-left: 0;
      color: #119fb1;
      font-weight: 700; }
      .x-breadcrumb .bread-crumb li:first-child a:before {
        content: "";
        font-size: 12px;
        font-size: 0.75rem; }
      @media only screen and (max-width: 767px) {
        .x-breadcrumb .bread-crumb li:first-child a {
          margin-right: 26px;
          margin-right: 1.625rem;
          font-size: 0px !important;
          font-size: 0rem !important; }
          .x-breadcrumb .bread-crumb li:first-child a:before {
            content: "Home"; } }
    .x-breadcrumb .bread-crumb li.last strong {
      font-weight: 400; }
  .x-breadcrumb .bread-crumb a, .x-breadcrumb .bread-crumb p {
    color: #818181;
    font-size: 14px;
    font-size: 0.875rem;
    padding-left: 5px;
    padding-left: 0.3125rem;
    padding-right: 5px;
    padding-right: 0.3125rem;
    margin-left: 5px;
    margin-left: 0.3125rem;
    margin-right: 5px;
    margin-right: 0.3125rem;
    text-align: center;
    position: relative; }
    .x-breadcrumb .bread-crumb a:before, .x-breadcrumb .bread-crumb p:before {
      content: '\25CF';
      position: absolute;
      font-size: 8px;
      font-size: 0.5rem;
      top: 50%;
      left: -10px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
      @media only screen and (max-width: 767px) {
        .x-breadcrumb .bread-crumb a:before, .x-breadcrumb .bread-crumb p:before {
          font-size: 6px;
          font-size: 0.375rem; } }
    body.is--category .x-breadcrumb .bread-crumb a,
    body.is--departament .x-breadcrumb .bread-crumb a,
    body.is--serach-result .x-breadcrumb .bread-crumb a, body.is--category .x-breadcrumb .bread-crumb p,
    body.is--departament .x-breadcrumb .bread-crumb p,
    body.is--serach-result .x-breadcrumb .bread-crumb p {
      font-size: 11px;
      font-size: 0.6875rem;
      color: #656667;
      letter-spacing: 1.5px; }
      @media only screen and (max-width: 767px) {
        body.is--category .x-breadcrumb .bread-crumb a,
        body.is--departament .x-breadcrumb .bread-crumb a,
        body.is--serach-result .x-breadcrumb .bread-crumb a, body.is--category .x-breadcrumb .bread-crumb p,
        body.is--departament .x-breadcrumb .bread-crumb p,
        body.is--serach-result .x-breadcrumb .bread-crumb p {
          font-size: 12px;
          font-size: 0.75rem; }
          body.is--category .x-breadcrumb .bread-crumb a:first-child,
          body.is--departament .x-breadcrumb .bread-crumb a:first-child,
          body.is--serach-result .x-breadcrumb .bread-crumb a:first-child, body.is--category .x-breadcrumb .bread-crumb p:first-child,
          body.is--departament .x-breadcrumb .bread-crumb p:first-child,
          body.is--serach-result .x-breadcrumb .bread-crumb p:first-child {
            margin-right: 6px;
            margin-right: 0.375rem; }
            body.is--category .x-breadcrumb .bread-crumb a:first-child:before,
            body.is--departament .x-breadcrumb .bread-crumb a:first-child:before,
            body.is--serach-result .x-breadcrumb .bread-crumb a:first-child:before, body.is--category .x-breadcrumb .bread-crumb p:first-child:before,
            body.is--departament .x-breadcrumb .bread-crumb p:first-child:before,
            body.is--serach-result .x-breadcrumb .bread-crumb p:first-child:before {
              font-size: 10px;
              font-size: 0.625rem; } }
      body.is--category .x-breadcrumb .bread-crumb a:before,
      body.is--departament .x-breadcrumb .bread-crumb a:before,
      body.is--serach-result .x-breadcrumb .bread-crumb a:before, body.is--category .x-breadcrumb .bread-crumb p:before,
      body.is--departament .x-breadcrumb .bread-crumb p:before,
      body.is--serach-result .x-breadcrumb .bread-crumb p:before {
        font-size: 8px;
        font-size: 0.5rem;
        left: -7px; }
  .x-breadcrumb .bread-crumb strong {
    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; }
    body.is--category .x-breadcrumb .bread-crumb strong,
    body.is--departament .x-breadcrumb .bread-crumb strong,
    body.is--serach-result .x-breadcrumb .bread-crumb strong {
      font-weight: 400; }

@media only screen and (min-width: 768px) {
  .x-copyright {
    padding-top: 42px;
    padding-top: 2.625rem;
    padding-bottom: 42px;
    padding-bottom: 2.625rem; } }

.x-copyright__container {
  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; }
  @media only screen and (min-width: 768px) {
    .x-copyright__container {
      width: 100%;
      max-width: 93%;
      margin-left: auto;
      margin-right: auto;
      padding-left: 16px;
      padding-left: 1rem;
      padding-right: 16px;
      padding-right: 1rem; } }
  @media only screen and (min-width: 768px) and (max-width: 767px) {
    .x-copyright__container {
      max-width: 100%;
      padding-left: 0;
      padding-left: 0;
      padding-right: 0;
      padding-right: 0; } }
  @media only screen and (max-width: 767px) {
    .x-copyright__container {
      -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 only screen and (max-width: 767px) {
  .x-copyright__left, .x-copyright__right {
    padding: 16px;
    padding: 1rem;
    width: 100%; } }

.x-copyright__text {
  color: #6d6e6f; }
  @media only screen and (max-width: 767px) {
    .x-copyright__text {
      text-align: center; } }
  .x-copyright__text p {
    font-size: 10px;
    font-size: 0.625rem; }
  .x-copyright__text strong {
    color: #000;
    font-size: 11px;
    font-size: 0.6875rem;
    font-weight: 900; }

@media only screen and (min-width: 768px) {
  .x-copyright__left {
    width: 42.5%; } }

@media only screen and (max-width: 767px) {
  .x-copyright__left {
    background-color: #eee; } }

.x-copyright__right {
  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: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }
  @media only screen and (min-width: 768px) {
    .x-copyright__right {
      width: 55%; } }
  @media only screen and (max-width: 767px) {
    .x-copyright__right {
      -webkit-box-ordinal-group: 0;
      -webkit-order: -1;
      -moz-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
      -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-copyright__security, .x-copyright__devs, .x-copyright__payments {
  margin-bottom: 8px;
  margin-bottom: 0.5rem; }

@media only screen and (min-width: 768px) {
  .x-copyright__security, .x-copyright__devs {
    margin-right: 24px;
    margin-right: 1.5rem; } }

.x-copyright__devs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex; }

.x-copyright__security .x-copyright__security-link:first-child {
  margin-right: 8px;
  margin-right: 0.5rem; }

.x-copyright__security .x-copyright__security-link:nth-child(2) {
  display: inline-block;
  width: 65px;
  width: 4.0625rem; }

.x-copyright__enext {
  margin-right: 16px;
  margin-right: 1rem; }

.x-copyright__credit-cards-items {
  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; }

.x-copyright__credit-cards-item {
  margin-left: 10px;
  margin-left: 0.625rem; }
  .x-copyright__credit-cards-item:first-child {
    margin-left: 0; }

.x-footer .x-footer__container {
  position: relative;
  z-index: 2; }

.x-footer__social {
  margin-top: 24px;
  margin-top: 1.5rem; }
  @media only screen and (max-width: 767px) {
    .x-footer__social {
      margin-top: 32px;
      margin-top: 2rem;
      margin-bottom: 32px;
      margin-bottom: 2rem;
      padding-bottom: 32px;
      padding-bottom: 2rem;
      border-bottom: 2px solid #eee; } }
  .x-footer__social ul {
    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; }
    @media only screen and (max-width: 767px) {
      .x-footer__social ul {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; } }
  .x-footer__social li {
    margin-right: 16px;
    margin-right: 1rem; }
    @media only screen and (max-width: 767px) {
      .x-footer__social li {
        margin-right: 32px;
        margin-right: 2rem; }
        .x-footer__social li:last-child {
          margin-right: 0; } }
    .x-footer__social li:first-child a:before {
      content: '\EB01';
      font-size: 14px;
      font-size: 0.875rem; }
      @media only screen and (max-width: 767px) {
        .x-footer__social li:first-child a:before {
          font-size: 22px;
          font-size: 1.375rem; } }
    .x-footer__social li:nth-child(2) a:before {
      content: '\EB02';
      font-size: 15px;
      font-size: 0.9375rem; }
      @media only screen and (max-width: 767px) {
        .x-footer__social li:nth-child(2) a:before {
          font-size: 22px;
          font-size: 1.375rem; } }
    .x-footer__social li:nth-child(3) a:before {
      content: '\EB03';
      font-size: 15px;
      font-size: 0.9375rem; }
      @media only screen and (max-width: 767px) {
        .x-footer__social li:nth-child(3) a:before {
          font-size: 24px;
          font-size: 1.5rem; } }
    .x-footer__social li:last-child a:before {
      content: '\EB04';
      font-size: 14px;
      font-size: 0.875rem; }
      @media only screen and (max-width: 767px) {
        .x-footer__social li:last-child a:before {
          font-size: 24px;
          font-size: 1.5rem; } }
  .x-footer__social a {
    font-size: 0; }
    .x-footer__social a:before {
      color: #000; }

.x-footer-menu li {
  margin-top: 5px;
  margin-top: 0.3125rem;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem; }
  @media only screen and (max-width: 767px) {
    .x-footer-menu li {
      margin-bottom: 12px;
      margin-bottom: 0.75rem; } }

.x-footer-menu a {
  color: #000;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  padding-top: 2px;
  padding-top: 0.125rem;
  padding-bottom: 2px;
  padding-bottom: 0.125rem;
  text-transform: uppercase;
  letter-spacing: 2px; }
  @media only screen and (max-width: 767px) {
    .x-footer-menu a {
      display: block;
      text-align: center; } }

@media only screen and (min-width: 768px) {
  .x-home__title-container {
    margin-right: 54px;
    margin-right: 3.375rem;
    max-width: 250px;
    max-width: 15.625rem;
    width: 100%; } }

@media only screen and (max-width: 767px) {
  .x-home__title-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;
    margin-top: 16px;
    margin-top: 1rem;
    margin-bottom: 16px;
    margin-bottom: 1rem; } }

@media only screen and (max-width: 767px) {
  .x-home__title-icon {
    margin-bottom: 24px;
    margin-bottom: 1.5rem; } }

.x-home__title {
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .x-home__title h1 {
      font-size: 32px;
      font-size: 2rem;
      font-family: "Permanent Marker", cursive;
      text-transform: none;
      letter-spacing: 0; }
    .x-home__title h2 {
      font-size: 32px;
      font-size: 2rem;
      font-family: "Permanent Marker", cursive;
      text-transform: none;
      letter-spacing: 0; }
    .x-home__title h3 {
      font-size: 32px;
      font-size: 2rem;
      font-family: "Permanent Marker", cursive;
      text-transform: none;
      letter-spacing: 0; }
    .x-home__title h4 {
      font-size: 32px;
      font-size: 2rem;
      font-family: "Permanent Marker", cursive;
      text-transform: none;
      letter-spacing: 0; }
    .x-home__title h5 {
      font-size: 32px;
      font-size: 2rem;
      font-family: "Permanent Marker", cursive;
      text-transform: none;
      letter-spacing: 0; }
    .x-home__title h6 {
      font-size: 32px;
      font-size: 2rem;
      font-family: "Permanent Marker", cursive;
      text-transform: none;
      letter-spacing: 0; } }

.x-home__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

@media only screen and (min-width: 768px) {
  .x-home__form {
    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-home__form.is--inactive {
  display: none; }

@media only screen and (min-width: 768px) {
  .x-home__form-group {
    margin-right: 16px;
    margin-right: 1rem; } }

.x-home__form-group:nth-child(3) label.error {
  left: 0; }

@media only screen and (min-width: 768px) {
  .x-home__form-group:last-child {
    margin-left: 16px;
    margin-left: 1rem;
    max-width: 158px;
    max-width: 9.875rem; } }

@media only screen and (max-width: 767px) {
  .x-home__form-group {
    margin-bottom: 16px;
    margin-bottom: 1rem; } }

.x-home__form-input, .x-home__form-submit {
  min-height: 42px !important;
  min-height: 2.625rem !important; }

@media only screen and (max-width: 767px) {
  .x-home__form-input {
    border-color: #fff !important;
    min-height: 48px !important;
    min-height: 3rem !important; } }

.x-form {
  /**
     * Checkbox default
     */
  /**
     * Checkbox custom
     */ }
  .x-form__group-left, .x-form__group-right {
    position: relative; }

.icon {
  fill: #000; }

.icon-we-love {
  display: block;
  height: 40px;
  height: 2.5rem;
  width: 178px;
  width: 11.125rem;
  fill: #8e8168;
  margin: 0 auto 10px;
  margin: 0 auto 0.625rem; }

.icon-card-bank,
.icon-card-amex,
.icon-card-mastercard,
.icon-card-visa,
.icon-card-paypal,
.icon-card-hipercard,
.icon-card-diners,
.icon-card-elo,
.icon-enext-logo,
.icon-facebook,
.icon-vtex-logo,
.icon-internet-security-logo,
.icon-card-visa {
  fill: #2f2f2f; }

.icon-card-amex {
  width: 26px;
  width: 1.625rem; }

.icon-card-bank,
.icon-card-diners,
.icon-card-mastercard,
.icon-card-visa,
.icon-card-paypal,
.icon-card-hipercard,
.icon-card-elo,
.icon-card-diners {
  height: 32px;
  height: 2rem;
  width: 32px;
  width: 2rem; }

.icon-card-visa {
  height: 36px;
  height: 2.25rem; }

.icon-facebook {
  height: 24px;
  height: 1.5rem;
  width: 24px;
  width: 1.5rem; }

.icon-enext-logo {
  height: 18px;
  height: 1.125rem;
  width: 54px;
  width: 3.375rem; }

.icon-vtex-logo {
  height: 16px;
  height: 1rem;
  width: 68px;
  width: 4.25rem; }

.icon-internet-security-logo {
  height: 24px;
  height: 1.5rem;
  width: 64px;
  width: 4rem; }

.icon-minus,
.icon-plus {
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem; }

.icon-minicart-close {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem; }

.icon-close-popup {
  width: 32px;
  width: 2rem; }

.icon-wishlist-product__outline, .icon-wishlist-product__full, .icon-wishlist-product__loader {
  height: 20px;
  height: 1.25rem;
  width: 20px;
  width: 1.25rem;
  position: relative;
  top: 1px; }
  .icon-wishlist-product__outline path, .icon-wishlist-product__full path, .icon-wishlist-product__loader path {
    fill: #90297d; }

.icon-wishlist-product__full, .icon-wishlist-product__loader {
  display: none; }

.icon-hamburger-menu {
  width: 16px;
  width: 1rem; }

.x-header__logo-link .icon-logo {
  width: 124px;
  width: 7.75rem; }
  @media only screen and (max-width: 767px) {
    .x-header__logo-link .icon-logo {
      width: 82px;
      width: 5.125rem; } }

.x-main-banner__logo-link .icon-logo {
  width: 140px;
  width: 8.75rem; }

.icon-store {
  height: 16px;
  height: 1rem;
  width: 16px;
  width: 1rem; }

.icon-search {
  height: 16px;
  height: 1rem;
  width: 16px;
  width: 1rem; }

.icon-close {
  height: 14px;
  height: 0.875rem;
  width: 14px;
  width: 0.875rem; }

.icon-wishlist,
.icon-wishlist-loader {
  fill: #7b216d;
  width: 21px;
  width: 1.3125rem;
  height: 21px;
  height: 1.3125rem; }

.icon-login {
  height: 16px;
  height: 1rem;
  width: 16px;
  width: 1rem; }

.icon-minicart {
  height: 16px;
  height: 1rem;
  width: 16px;
  width: 1rem;
  fill: #000; }

.icon-how-to-care {
  width: 16px;
  width: 1rem; }

.icon-size-chart {
  width: 16px;
  width: 1rem; }

.icon-product-zoom {
  height: 20px;
  height: 1.25rem;
  width: 20px;
  width: 1.25rem; }
  .icon-product-zoom__cls-1 {
    fill: none;
    stroke: #000;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 8px; }

.icon-grid {
  height: 16px;
  height: 1rem;
  width: 16px;
  width: 1rem; }
  .icon-grid__one {
    height: 18px;
    height: 1.125rem;
    width: 18px;
    width: 1.125rem; }

.icon-account-logout {
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem; }

.icon-wishlist-remove {
  display: none; }

body.is--wishlist .icon-wishlist-remove {
  display: block;
  height: 20px;
  height: 1.25rem;
  width: 20px;
  width: 1.25rem; }

body.is--wishlist .icon-wishlist,
body.is--wishlist .icon-wishlist-loader {
  display: none; }

.x-credit__view {
  position: fixed;
  bottom: 10px;
  left: 10px;
  display: block;
  color: #fff;
  background: #03afba;
  font-weight: 700;
  font-size: 15px;
  height: auto;
  line-height: 35px;
  width: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  z-index: 1;
  padding: 0 15px; }

.x-credit__logout {
  cursor: pointer;
  font-size: 13px;
  margin-left: 5px;
  text-decoration: underline; }
  .x-credit__logout:hover {
    color: #90297d; }

.x-instafeed__container {
  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; }
  @media only screen and (max-width: 767px) {
    .x-instafeed__container {
      padding-left: 16px;
      padding-left: 1rem;
      padding-right: 16px;
      padding-right: 1rem;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; } }

@media only screen and (max-width: 767px) {
  .x-instafeed__title {
    font-size: 42px;
    font-size: 2.625rem;
    margin-top: 24px;
    margin-top: 1.5rem;
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
    text-align: center; } }

@media only screen and (max-width: 767px) {
  .x-instafeed__item-wrapper {
    width: 47.5%;
    width: -webkit-calc(50% - 8px);
    width: calc(50% - 8px); }
    .x-instafeed__item-wrapper:first-child .x-instafeed__item:first-child {
      margin-bottom: 16px;
      margin-bottom: 1rem; } }

@media only screen and (min-width: 768px) {
  .x-instafeed__item:first-child {
    max-width: 160px;
    max-width: 10rem; }
  .x-instafeed__item:nth-child(2) {
    max-width: 220px;
    max-width: 13.75rem; }
  .x-instafeed__item:nth-child(3) {
    max-width: 280px;
    max-width: 17.5rem; }
  .x-instafeed__item:last-child {
    margin-top: auto;
    margin-bottom: 42px;
    margin-bottom: 2.625rem;
    max-width: 120px;
    max-width: 7.5rem; } }

.x-instafeed__logo {
  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;
  margin-bottom: 12px;
  margin-bottom: 0.75rem; }
  @media only screen and (max-width: 767px) {
    .x-instafeed__logo {
      margin-top: 16px;
      margin-top: 1rem; } }

.x-instafeed__logo-left {
  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;
  border: 1px solid #bfbfbf;
  margin-right: 12px;
  margin-right: 0.75rem;
  height: 48px;
  height: 3rem;
  width: 48px;
  width: 3rem; }
  @media only screen and (min-width: 768px) {
    .x-instafeed__logo-left {
      margin-left: 12px;
      margin-left: 0.75rem; } }
  .x-instafeed__logo-left .icon-instagram-mini {
    width: 24px;
    width: 1.5rem;
    fill: #000; }

.x-instafeed__logo-right {
  color: #000;
  font-weight: 900;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase; }

.x-instafeed__link {
  display: block; }
  @media only screen and (min-width: 768px) {
    .x-instafeed__link {
      padding-left: 12px;
      padding-left: 0.75rem; }
      .x-instafeed__link:hover .x-instafeed__img {
        -webkit-transform: rotate(4deg) translate3d(0, 0, 0);
        transform: rotate(4deg) translate3d(0, 0, 0); } }

@media only screen and (min-width: 768px) {
  .x-instafeed__img {
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -o-transition: transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
    will-change: transition, transform; } }

@-webkit-keyframes placeloader-shimmer {
  0% {
    background-position: -468px 0; }
  100% {
    background-position: 468px 0; } }

@keyframes placeloader-shimmer {
  0% {
    background-position: -468px 0; }
  100% {
    background-position: 468px 0; } }

/**
 * Edge support
 */
img[data-src],
img[data-srcset] {
  display: block;
  min-height: 1px; }

/**
 * General
 */
img.has--placeloader,
.x-shelf__placeloader.has--placeloader {
  -webkit-background-size: 800px 104px;
  background-size: 800px 104px;
  background: #f6f7f8;
  background: -webkit-gradient(linear, left top, right top, color-stop(8%, #f1f1f1), color-stop(18%, #ededed), color-stop(33%, #f1f1f1));
  background: -webkit-linear-gradient(left, #f1f1f1 8%, #ededed 18%, #f1f1f1 33%);
  background: -o-linear-gradient(left, #f1f1f1 8%, #ededed 18%, #f1f1f1 33%);
  background: linear-gradient(to right, #f1f1f1 8%, #ededed 18%, #f1f1f1 33%);
  height: 0;
  position: relative;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: placeloader-shimmer;
  animation-name: placeloader-shimmer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.x-home__main-shelf img.has--placeloader,
.x-home__main-shelf .x-shelf__placeloader.has--placeloader, .x-home__suggestion-shelf img.has--placeloader,
.x-home__suggestion-shelf .x-shelf__placeloader.has--placeloader,
.x-product__main-shelf img.has--placeloader,
.x-product__main-shelf .x-shelf__placeloader.has--placeloader,
.x-product__suggestion-shelf img.has--placeloader,
.x-product__suggestion-shelf .x-shelf__placeloader.has--placeloader,
.x-empty-search__main-shelf img.has--placeloader,
.x-empty-search__main-shelf .x-shelf__placeloader.has--placeloader,
.x-empty-search__suggestion-shelf img.has--placeloader,
.x-empty-search__suggestion-shelf .x-shelf__placeloader.has--placeloader {
  padding: 75% 50%; }

.x-home__main-shelf .x-shelf__img-back.has--placeloader, .x-home__suggestion-shelf .x-shelf__img-back.has--placeloader,
.x-product__main-shelf .x-shelf__img-back.has--placeloader,
.x-product__suggestion-shelf .x-shelf__img-back.has--placeloader,
.x-empty-search__main-shelf .x-shelf__img-back.has--placeloader,
.x-empty-search__suggestion-shelf .x-shelf__img-back.has--placeloader {
  padding: 0; }

@media only screen and (min-width: 768px) {
  .x-main-banner__big img.has--placeloader {
    padding: 28% 100%; }
  .x-main-banner__small img.has--placeloader {
    padding: 57% 100%; } }

@media only screen and (max-width: 767px) {
  .x-main-banner img.has--placeloader {
    padding: 44% 50%; } }

@media only screen and (min-width: 768px) {
  .x-banners-collection__left .x-banners-collection__img-wrapper:first-child img.has--placeloader {
    padding: 68% 47%; }
  .x-banners-collection__left .x-banners-collection__img-wrapper:last-child img.has--placeloader {
    padding: 50% 47%; }
  .x-banners-collection__right .x-banners-collection__img-wrapper img.has--placeloader {
    padding: 71% 49%; } }

@media only screen and (max-width: 767px) {
  .x-banners-collection__img-wrapper img.has--placeloader {
    padding: 68% 50%; } }

@media only screen and (min-width: 768px) {
  .x-product__img-main img.has--placeloader {
    padding: 29.5% 100%; }
  .x-product__img-nav img.has--placeloader {
    padding: 18.5% 100%; } }

@media only screen and (max-width: 767px) {
  .x-product__img-main img.has--placeloader {
    padding: 70% 50%; } }

@media only screen and (min-width: 768px) {
  .x-category__banner img.has--placeloader {
    padding: 12% 100%; }
  .x-category__products img.has--placeloader,
  .x-category__products .x-shelf__placeloader.has--placeloader {
    padding: 75% 50%; }
  .x-category__products .x-shelf__img-back.has--placeloader {
    padding: 0; } }

@media only screen and (max-width: 767px) {
  .x-category__banner img.has--placeloader {
    padding: 30% 50%; }
  .x-category__products img.has--placeloader,
  .x-category__products .x-shelf__placeloader.has--placeloader {
    padding: 75% 50%; } }

.x-lookbook__banner img.has--placeloader {
  padding: 22% 50%; }

.x-lookbook__list img.has--placeloader {
  padding: 75% 50%; }

.x-lookbook__more-collection-nav img.has--placeloader {
  padding: 21% 50%; }

.x-rewards__banner img.has--placeloader {
  padding: 20% 100%; }

@media only screen and (min-width: 768px) {
  .x-instafeed__img.has--placeloader {
    padding: 50%; } }

.x-ajax-loader {
  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;
  background: rgba(255, 255, 255, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-perspective: 600;
  perspective: 600;
  z-index: 5018; }
  .x-ajax-loader .icon-loader__spinner, .x-ajax-loader .icon-loader__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .x-ajax-loader .icon-loader__spinner {
    height: 160px;
    height: 10rem;
    width: 160px;
    width: 10rem; }
  .x-ajax-loader .icon-loader__logo {
    height: 60px;
    height: 3.75rem;
    width: 60px;
    width: 3.75rem; }

.x-minicart__top {
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem; }
  .x-minicart__top .x-minicart__title {
    display: block;
    text-align: center;
    text-transform: uppercase;
    color: #03afba;
    font-weight: 600;
    padding-top: 10px;
    padding-top: 0.625rem;
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 2px;
    letter-spacing: 0.125rem; }

.x-minicart__empty-btn-close {
  position: absolute;
  top: 0;
  right: 0;
  background: #90297d;
  cursor: pointer;
  -webkit-border-radius: 10px 0 10px 10px;
  border-radius: 10px 0 10px 10px;
  display: block !important;
  width: 55px;
  width: 3.4375rem;
  height: 45px;
  height: 2.8125rem; }
  .x-minicart__empty-btn-close:hover span:first-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .x-minicart__empty-btn-close:hover span:last-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .x-minicart__empty-btn-close span {
    background: #FFF;
    width: 20px;
    height: 2px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    position: absolute;
    top: 20px;
    left: 18px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .x-minicart__empty-btn-close span:first-child {
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
    .x-minicart__empty-btn-close span:last-child {
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }

.x-minicart__amount-wrapper {
  background: #f4f4f4;
  display: block;
  text-align: center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  line-height: 67px;
  line-height: 4.1875rem; }
  .x-minicart__amount-wrapper svg {
    width: 30px;
    width: 1.875rem;
    height: 30px;
    height: 1.875rem; }
    .x-minicart__amount-wrapper svg path {
      stroke: #90297d; }

.x-minicart__title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase; }

.x-minicart__amount {
  color: #fff;
  background: #00b0ca;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  width: 23px;
  width: 1.4375rem;
  height: 23px;
  height: 1.4375rem;
  line-height: 23px;
  line-height: 1.4375rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700; }

.x-minicart__empty-btn-close .icon-close-popup {
  height: 16px;
  height: 1rem;
  width: 16px;
  width: 1rem; }

.x-minicart {
  background: #FFF;
  height: 90vh;
  -webkit-transform: translateX(130%);
  -ms-transform: translateX(130%);
  transform: translateX(130%);
  overflow: hidden;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
  max-width: 380px;
  max-width: 23.75rem;
  top: 28px;
  top: 1.75rem;
  right: 49px;
  right: 3.0625rem; }
  @media only screen and (max-width: 767px) {
    .x-minicart {
      background: #FFF;
      width: 92%;
      right: 0;
      margin: 0 4%; } }
  .x-minicart.is--active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  .x-minicart__middle {
    padding-left: 10px;
    padding-left: 0.625rem;
    padding-right: 10px;
    padding-right: 0.625rem; }
  .x-minicart__bottom, .x-minicart__empty {
    padding-left: 36px;
    padding-left: 2.25rem;
    padding-right: 36px;
    padding-right: 2.25rem; }
    @media only screen and (max-width: 767px) {
      .x-minicart__bottom, .x-minicart__empty {
        padding-left: 16px;
        padding-left: 1rem;
        padding-right: 16px;
        padding-right: 1rem; } }

.x-minicart__items {
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  height: -webkit-calc(100vh - 72px - 219px);
  height: calc(100vh - 72px - 219px);
  overflow: auto; }
  @media only screen and (max-width: 767px) {
    .x-minicart__items {
      height: -webkit-calc(95vh - 54px - 170px);
      height: calc(95vh - 54px - 170px); } }
  .x-minicart__items::-webkit-scrollbar {
    width: 2px;
    height: 2px; }
  .x-minicart__items::-webkit-scrollbar-thumb {
    background: #90297d; }
  .x-minicart__items::-webkit-scrollbar-track {
    background: #f4f4f4; }
  body .x-minicart__items {
    scrollbar-face-color: #90297d;
    scrollbar-track-color: #f4f4f4; }

.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;
  border-bottom: 1px solid #f4f4f4;
  max-width: 94%;
  width: 100%;
  margin: 0 3%;
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem; }

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

.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: 8px;
  margin-bottom: 0.5rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.x-minicart__item-title {
  width: 94%;
  width: -webkit-calc(100% - 24px);
  width: calc(100% - 24px);
  color: #818181;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 15px;
  line-height: 0.9375rem; }
  @media only screen and (max-width: 767px) {
    .x-minicart__item-title {
      font-size: 12px;
      font-size: 0.75rem; } }

.x-minicart__item-remove {
  margin-left: 12px;
  margin-left: 0.75rem;
  height: 24px;
  height: 1.5rem;
  width: 24px;
  width: 1.5rem; }
  .x-minicart__item-remove svg {
    height: 17px;
    height: 1.0625rem;
    width: 17px;
    width: 1.0625rem; }

.x-minicart__item-old-price {
  color: #818181;
  display: block;
  text-decoration: line-through;
  padding-top: 5px;
  padding-top: 0.3125rem;
  font-size: 12px;
  font-size: 0.75rem; }

.x-minicart__item-best-price {
  color: #d13383;
  display: block;
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem; }

.x-minicart__item-installments-wrapper {
  text-transform: normal;
  font-size: 12px;
  font-size: 0.75rem; }

.x-minicart__item-actions {
  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-top: auto; }
  @media only screen and (max-width: 767px) {
    .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: #656667;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase; }
  .x-minicart__item-variant span {
    display: block;
    color: #000;
    font-size: 13px;
    font-size: 0.8125rem; }
    @media only screen and (min-width: 768px) {
      .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: 767px) {
    .x-minicart__item-variant {
      font-size: 11px;
      font-size: 0.6875rem; }
      .x-minicart__item-variant:first-child {
        margin-right: 10px;
        margin-right: 0.625rem; }
      .x-minicart__item-variant span {
        font-size: 14px;
        font-size: 0.875rem; } }

@media only screen and (max-width: 767px) {
  .x-minicart__item-qty-wrapper {
    display: none; } }

.x-minicart__item-qty-wrapper .has--minus,
.x-minicart__item-qty-wrapper .has--plus {
  width: 27px;
  width: 1.6875rem; }

.x-minicart__item-qty-wrapper .has--minus,
.x-minicart__item-qty-wrapper .has--plus,
.x-minicart__item-qty-wrapper input[type="text"] {
  border: 1px solid #999;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 30px;
  height: 1.875rem; }

.x-minicart__item-qty-wrapper input[type="text"] {
  width: 100%;
  max-width: 50px;
  max-width: 3.125rem; }

.x-minicart__item-qty-btn {
  width: 20px;
  width: 1.25rem; }
  .x-minicart__item-qty-btn:before {
    font-size: 8px;
    font-size: 0.5rem; }

.x-minicart__footer {
  height: auto;
  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 #f4f4f4;
  padding-top: 40px;
  padding-top: 2.5rem; }
  @media only screen and (max-width: 767px) {
    .x-minicart__footer {
      padding-top: 0; } }

.x-minicart__total-price {
  display: none; }

.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: 32px;
  margin-bottom: 2rem; }

.x-minicart__subtotal-text {
  font-size: 13px;
  font-size: 0.8125rem;
  text-transform: uppercase;
  font-weight: 700; }
  @media only screen and (max-width: 767px) {
    .x-minicart__subtotal-text {
      font-size: 16px;
      font-size: 1rem; } }

.x-minicart__subtotal-price {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  font-style: italic; }
  @media only screen and (max-width: 767px) {
    .x-minicart__subtotal-price {
      font-size: 26px;
      font-size: 1.625rem; } }

.x-minicart__actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex; }
  @media only screen and (max-width: 767px) {
    .x-minicart__actions {
      -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__btn-keeping-buying, .x-minicart__btn-checkout {
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 500;
  margin: 0;
  font-size: 17px;
  font-size: 1.0625rem;
  height: 50px;
  height: 3.125rem;
  line-height: 47px;
  line-height: 2.9375rem; }

@media only screen and (max-width: 767px) {
  .x-minicart__btn-keeping-buying {
    height: 36px;
    height: 2.25rem;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; } }

@media only screen and (min-width: 768px) {
  .x-minicart__btn-checkout {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 16px;
    margin-left: 1rem; } }

.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-family: "Permanent Marker", cursive;
      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-family: "Permanent Marker", cursive;
      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-family: "Permanent Marker", cursive;
      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-family: "Permanent Marker", cursive;
      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-family: "Permanent Marker", cursive;
      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-family: "Permanent Marker", cursive;
      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-newsletter {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  max-width: 494px;
  max-width: 30.875rem;
  max-height: 664px;
  max-height: 41.5rem;
  -webkit-transition: none;
  -o-transition: none;
  transition: none; }
  .x-newsletter__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;
    -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;
    height: 100%; }
  .x-newsletter__title {
    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;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    line-height: 1;
    width: 100%; }
    .x-newsletter__title p {
      font-size: 12px;
      font-size: 0.75rem;
      letter-spacing: 3px; }
    .x-newsletter__title h1 {
      font-size: 42px;
      font-size: 2.625rem;
      font-family: "Permanent Marker", cursive;
      color: #000;
      text-transform: inherit;
      text-transform: initial; }
    .x-newsletter__title h2 {
      font-size: 42px;
      font-size: 2.625rem;
      font-family: "Permanent Marker", cursive;
      color: #000;
      text-transform: inherit;
      text-transform: initial; }
    .x-newsletter__title h3 {
      font-size: 42px;
      font-size: 2.625rem;
      font-family: "Permanent Marker", cursive;
      color: #000;
      text-transform: inherit;
      text-transform: initial; }
    .x-newsletter__title h4 {
      font-size: 42px;
      font-size: 2.625rem;
      font-family: "Permanent Marker", cursive;
      color: #000;
      text-transform: inherit;
      text-transform: initial; }
    .x-newsletter__title h5 {
      font-size: 42px;
      font-size: 2.625rem;
      font-family: "Permanent Marker", cursive;
      color: #000;
      text-transform: inherit;
      text-transform: initial; }
    .x-newsletter__title h6 {
      font-size: 42px;
      font-size: 2.625rem;
      font-family: "Permanent Marker", cursive;
      color: #000;
      text-transform: inherit;
      text-transform: initial; }
  .x-newsletter__close {
    display: none; }
  .x-newsletter__title-icon {
    display: none; }
  .x-newsletter__form-container {
    width: 100%;
    margin: 0 auto 48px;
    margin: 0 auto 3rem;
    max-width: 320px;
    max-width: 20rem; }
    @media only screen and (max-width: 1023px) {
      .x-newsletter__form-container {
        margin: 0 auto 80px;
        margin: 0 auto 5rem; } }
  .x-newsletter__title.is--inactive, .x-newsletter__form.is--inactive {
    display: none; }
  .x-newsletter__form-group:last-child {
    max-width: 100%;
    margin-bottom: 0; }
  .x-newsletter__form-group label.error {
    display: block;
    width: 100%;
    text-align: center; }
  .x-newsletter__form-group input[type="text"] {
    border-color: #fff;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 300; }
  .x-newsletter__form-input {
    height: 48px;
    height: 3rem;
    padding-left: 24px !important;
    padding-left: 1.5rem !important; }
  .x-newsletter__checkbox-text {
    font-size: 11px;
    font-size: 0.6875rem;
    max-width: 100%; }
  .x-newsletter__form-submit {
    height: 42px;
    height: 2.625rem; }
    @media only screen and (min-width: 1024px) {
      .x-newsletter__form-submit {
        margin-top: 15px;
        margin-top: 0.9375rem; } }

.x-overlay,
.x-menu-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  cursor: pointer; }
  .x-overlay.is--active,
  .x-menu-overlay.is--active {
    opacity: 1;
    visibility: visible; }

.x-overlay {
  z-index: 5012; }

.x-menu-overlay {
  z-index: 5003; }

.vtexIdUI #vtexIdUI-auth-selector.vtexIdUI-page-active .vtexIdUI-heading:before, .vtexIdUI #vtexIdUI-auth-selector.vtexIdUI-page-active .vtexIdUI-heading:after {
  color: #000 !important;
  font-size: 24px !important;
  font-size: 1.5rem !important;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 32px;
  padding: 0 !important;
  margin: 0 !important;
  text-align: center;
  text-transform: uppercase; }
  @media only screen and (max-width: 767px) {
    .vtexIdUI #vtexIdUI-auth-selector.vtexIdUI-page-active .vtexIdUI-heading:before, .vtexIdUI #vtexIdUI-auth-selector.vtexIdUI-page-active .vtexIdUI-heading:after {
      font-size: 20px !important;
      font-size: 1.25rem !important; } }

.vtexIdUI .vtexIdUI-main-content .btn,
.vtexIdUI .vtexIdUI-main-content .btn-success,
.vtexIdUI .vtexIdUI-main-content .btn-large {
  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: 45px;
  height: 2.8125rem;
  padding: 8px 20px;
  background: #fff;
  border: 1px solid #000 !important;
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
  line-height: 16px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-shadow: none !important; }
  .vtexIdUI .vtexIdUI-main-content .btn i, .vtexIdUI .vtexIdUI-main-content .btn-success i, .vtexIdUI .vtexIdUI-main-content .btn-large i {
    display: none; }
  .vtexIdUI .vtexIdUI-main-content .btn,
  .vtexIdUI .vtexIdUI-main-content .btn-success,
  .vtexIdUI .vtexIdUI-main-content .btn-large,
  .vtexIdUI .vtexIdUI-main-content .btn span,
  .vtexIdUI .vtexIdUI-main-content .btn-success span,
  .vtexIdUI .vtexIdUI-main-content .btn-large span {
    font-size: 12px !important;
    font-size: 0.75rem !important;
    font-weight: 300;
    text-transform: uppercase !important;
    color: #000; }

#vtexIdUI-global-loader {
  z-index: 9999 !important; }

#vtexIdContainer {
  position: fixed !important;
  z-index: 9999 !important; }

.vtexIdUI {
  border: 0 !important;
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
  -webkit-box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.15) !important; }
  .vtexIdUI-providers-list li {
    margin-bottom: 22px !important; }
  .vtexIdUI .vtexid-icon-lock {
    display: none; }
  .vtexIdUI*:not(.vtexid-icon-arrow-left) {
    font-family: "Source Sans Pro", sans-serif; }
  .vtexIdUI .modal-header,
  .vtexIdUI .modal-body,
  .vtexIdUI .modal-footer {
    padding: 20px !important;
    padding: 1.25rem !important;
    border: 0 !important;
    background: #fff !important;
    text-align: center; }
    .vtexIdUI .modal-header .alert,
    .vtexIdUI .modal-body .alert,
    .vtexIdUI .modal-footer .alert {
      -webkit-border-radius: 0;
      border-radius: 0;
      font-weight: 300; }
    .vtexIdUI .modal-header .dead-link,
    .vtexIdUI .modal-header .dead-link span,
    .vtexIdUI .modal-body .dead-link,
    .vtexIdUI .modal-body .dead-link span,
    .vtexIdUI .modal-footer .dead-link,
    .vtexIdUI .modal-footer .dead-link span {
      font-size: 12px;
      font-size: 0.75rem;
      font-weight: 300;
      color: #656667;
      text-transform: none; }
    .vtexIdUI .modal-header .vtexIdUI-user-email,
    .vtexIdUI .modal-header .info-why,
    .vtexIdUI .modal-header .vtexid-password-requirements,
    .vtexIdUI .modal-body .vtexIdUI-user-email,
    .vtexIdUI .modal-body .info-why,
    .vtexIdUI .modal-body .vtexid-password-requirements,
    .vtexIdUI .modal-footer .vtexIdUI-user-email,
    .vtexIdUI .modal-footer .info-why,
    .vtexIdUI .modal-footer .vtexid-password-requirements {
      font-size: 12px;
      font-size: 0.75rem;
      font-weight: 300 !important;
      text-align: left; }
      .vtexIdUI .modal-header .vtexIdUI-user-email .vtexid-password-requirements-description,
      .vtexIdUI .modal-header .info-why .vtexid-password-requirements-description,
      .vtexIdUI .modal-header .vtexid-password-requirements .vtexid-password-requirements-description,
      .vtexIdUI .modal-body .vtexIdUI-user-email .vtexid-password-requirements-description,
      .vtexIdUI .modal-body .info-why .vtexid-password-requirements-description,
      .vtexIdUI .modal-body .vtexid-password-requirements .vtexid-password-requirements-description,
      .vtexIdUI .modal-footer .vtexIdUI-user-email .vtexid-password-requirements-description,
      .vtexIdUI .modal-footer .info-why .vtexid-password-requirements-description,
      .vtexIdUI .modal-footer .vtexid-password-requirements .vtexid-password-requirements-description {
        font-size: 13px;
        font-size: 0.8125rem; }
  .vtexIdUI .modal-header .vtexIdUI-user-email .vtexid-icon-user,
  .vtexIdUI .modal-header .vtexIdUI-user-email .vtexid-icon-arrow,
  .vtexIdUI .modal-header .vtexIdUI-back-link .vtexid-icon-user,
  .vtexIdUI .modal-header .vtexIdUI-back-link .vtexid-icon-arrow,
  .vtexIdUI .modal-footer .vtexIdUI-user-email .vtexid-icon-user,
  .vtexIdUI .modal-footer .vtexIdUI-user-email .vtexid-icon-arrow,
  .vtexIdUI .modal-footer .vtexIdUI-back-link .vtexid-icon-user,
  .vtexIdUI .modal-footer .vtexIdUI-back-link .vtexid-icon-arrow {
    padding-right: 4px;
    padding-right: 0.25rem; }
  .vtexIdUI .modal-header .vtexIdUI-user-email:hover,
  .vtexIdUI .modal-header .vtexIdUI-back-link:hover,
  .vtexIdUI .modal-footer .vtexIdUI-user-email:hover,
  .vtexIdUI .modal-footer .vtexIdUI-back-link:hover {
    text-decoration: none; }
  .vtexIdUI .modal-header .vtexIdUI-user-email span,
  .vtexIdUI .modal-header .vtexIdUI-back-link span,
  .vtexIdUI .modal-footer .vtexIdUI-user-email span,
  .vtexIdUI .modal-footer .vtexIdUI-back-link span {
    position: relative;
    top: -2px; }
  .vtexIdUI .modal-header {
    padding-top: 40px !important;
    padding-top: 2.5rem !important; }
    .vtexIdUI .modal-header .vtexIdUI-close {
      display: inline-block !important;
      background: #90297d !important;
      color: #FFF !important;
      cursor: pointer;
      top: 0 !important;
      right: 0 !important;
      -webkit-border-radius: 10px 0 10px 10px !important;
      border-radius: 10px 0 10px 10px !important;
      width: 60px !important;
      width: 3.75rem !important;
      font-size: 36px !important;
      font-size: 2.25rem !important;
      font-weight: 300;
      line-height: 40px !important;
      line-height: 2.5rem !important;
      height: 40px;
      height: 2.5rem; }
      .vtexIdUI .modal-header .vtexIdUI-close:hover, .vtexIdUI .modal-header .vtexIdUI-close:active {
        color: #000;
        text-shadow: 0 0 0 #000, 0 0 0 #000, 0 0 0 #000; }

.vtexIdUI #vtexIdUI-auth-selector.vtexIdUI-page-active .vtexIdUI-heading span {
  display: none; }

.vtexIdUI #vtexIdUI-auth-selector.vtexIdUI-page-active .vtexIdUI-heading:after {
  content: 'Faça seu login';
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1db0ba !important;
  font-size: 20px;
  font-size: 1.25rem; }

.vtexIdUI #vtexIdUI-auth-selector.vtexIdUI-page-active .vtexIdUI-heading:before {
  content: '';
  background: no-repeat url("/arquivos/iconUserLogin.png");
  -webkit-background-size: contain;
  background-size: contain;
  margin: 0 auto 10px !important;
  height: 50px;
  width: 80px; }

.vtexIdUI #vtexIdUI-auth-selector.vtexIdUI-page-active .vtexIdUI-heading:before, .vtexIdUI #vtexIdUI-auth-selector.vtexIdUI-page-active .vtexIdUI-heading:after {
  display: block; }

.vtexIdUI .modal-header h4 {
  margin: 0;
  padding: 0 40px;
  padding: 0 2.5rem; }
  @media only screen and (max-width: 767px) {
    .vtexIdUI .modal-header h4 {
      padding: 0 12px;
      padding: 0 0.75rem; } }

.vtexIdUI .modal-header .vtexIdUI-heading {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1db0ba !important;
  font-size: 20px;
  font-size: 1.25rem; }

.vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control label,
.vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd label,
.vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field label,
.vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code label,
.vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field label {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase; }
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control label.text-center,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd label.text-center,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field label.text-center,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code label.text-center,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field label.text-center {
    text-align: center; }
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control label.text-center strong,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd label.text-center strong,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field label.text-center strong,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code label.text-center strong,
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field label.text-center strong {
      font-weight: 900; }

.vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control input,
.vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd input,
.vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field input,
.vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code input,
.vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field input {
  padding-top: 0;
  padding-bottom: 0;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-weight: 600;
  height: 42px;
  height: 2.625rem; }
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control input::-webkit-input-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd input::-webkit-input-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field input::-webkit-input-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code input::-webkit-input-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #656667;
    opacity: 1; }
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control input::-moz-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd input::-moz-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field input::-moz-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code input::-moz-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field input::-moz-placeholder {
    /* Firefox 19+ */
    color: #656667;
    opacity: 1; }
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control input:-ms-input-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd input:-ms-input-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field input:-ms-input-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code input:-ms-input-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field input:-ms-input-placeholder {
    /* IE 10+ */
    color: #656667;
    opacity: 1; }
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control input:-moz-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd input:-moz-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field input:-moz-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code input:-moz-placeholder,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field input:-moz-placeholder {
    /* Firefox 18- */
    color: #656667;
    opacity: 1; }
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-classic-login-control input:focus,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-change-pswd input:focus,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-email-field input:focus,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code input:focus,
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field input:focus {
    border: 1px solid #bfbfbf;
    -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); }

.vtexIdUI .vtexIdUI-main-content .vtexIdUI-auth-code input,
.vtexIdUI .vtexIdUI-main-content .vtexIdUI-code-field input {
  font-size: 32px;
  font-size: 2rem;
  height: 54px;
  height: 3.375rem;
  line-height: 120%;
  text-align: center;
  font-weight: 900; }

.vtexIdUI .vtexIdUI-main-content .vtexIdUI-send-email {
  background: #FFF;
  border: 1px solid #90297d !important;
  -webkit-border-radius: 5px !important;
  border-radius: 5px !important; }
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-send-email span {
    color: #90297d;
    font-weight: 600; }
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-send-email:active, .vtexIdUI .vtexIdUI-main-content .vtexIdUI-send-email:focus, .vtexIdUI .vtexIdUI-main-content .vtexIdUI-send-email:hover {
    background-color: #90297d; }
    .vtexIdUI .vtexIdUI-main-content .vtexIdUI-send-email:active span, .vtexIdUI .vtexIdUI-main-content .vtexIdUI-send-email:focus span, .vtexIdUI .vtexIdUI-main-content .vtexIdUI-send-email:hover span {
      color: #FFF; }

.vtexIdUI .vtexIdUI-main-content #vtexIdUI-facebook {
  background: #FFF;
  border: 1px solid #526cac !important;
  -webkit-border-radius: 5px !important;
  border-radius: 5px !important; }
  .vtexIdUI .vtexIdUI-main-content #vtexIdUI-facebook:active, .vtexIdUI .vtexIdUI-main-content #vtexIdUI-facebook:focus, .vtexIdUI .vtexIdUI-main-content #vtexIdUI-facebook:hover {
    background: #637bb5; }
    .vtexIdUI .vtexIdUI-main-content #vtexIdUI-facebook:active span, .vtexIdUI .vtexIdUI-main-content #vtexIdUI-facebook:focus span, .vtexIdUI .vtexIdUI-main-content #vtexIdUI-facebook:hover span {
      color: #FFF; }
  .vtexIdUI .vtexIdUI-main-content #vtexIdUI-facebook span {
    color: #526cac;
    font-weight: 600; }

.vtexIdUI .vtexIdUI-main-content #vtexIdUI-google-plus {
  background: #fff;
  border: 1px solid #d85b5b !important;
  -webkit-border-radius: 5px !important;
  border-radius: 5px !important; }
  .vtexIdUI .vtexIdUI-main-content #vtexIdUI-google-plus:active, .vtexIdUI .vtexIdUI-main-content #vtexIdUI-google-plus:focus, .vtexIdUI .vtexIdUI-main-content #vtexIdUI-google-plus:hover {
    background: #dd7070; }
    .vtexIdUI .vtexIdUI-main-content #vtexIdUI-google-plus:active span, .vtexIdUI .vtexIdUI-main-content #vtexIdUI-google-plus:focus span, .vtexIdUI .vtexIdUI-main-content #vtexIdUI-google-plus:hover span {
      color: #fff; }
  .vtexIdUI .vtexIdUI-main-content #vtexIdUI-google-plus span {
    font-weight: 600;
    color: #d85b5b; }

.vtexIdUI .vtexIdUI-main-content .vtexIdUI-others-send-email {
  background-color: #1db0ba;
  border: 0 !important;
  -webkit-border-radius: 5px !important;
  border-radius: 5px !important; }
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-others-send-email span {
    color: #fff;
    font-weight: 600; }
  .vtexIdUI .vtexIdUI-main-content .vtexIdUI-others-send-email:active, .vtexIdUI .vtexIdUI-main-content .vtexIdUI-others-send-email:focus, .vtexIdUI .vtexIdUI-main-content .vtexIdUI-others-send-email:hover {
    background: #1db0ba; }

.vtexIdUI .vtexIdUI-main-content #confirmLoginAccessKeyBtn,
.vtexIdUI .vtexIdUI-main-content #tryChangePswdBtn,
.vtexIdUI .vtexIdUI-main-content #changePswdBtn,
.vtexIdUI .vtexIdUI-main-content #sendAccessKeyBtn,
.vtexIdUI .vtexIdUI-main-content #classicLoginBtn {
  background-color: #1db0ba;
  border: 0 !important;
  -webkit-border-radius: 5px !important;
  border-radius: 5px !important;
  color: #FFF !important;
  font-weight: 600 !important; }
  .vtexIdUI .vtexIdUI-main-content #confirmLoginAccessKeyBtn:active, .vtexIdUI .vtexIdUI-main-content #confirmLoginAccessKeyBtn:focus, .vtexIdUI .vtexIdUI-main-content #confirmLoginAccessKeyBtn:hover,
  .vtexIdUI .vtexIdUI-main-content #tryChangePswdBtn:active,
  .vtexIdUI .vtexIdUI-main-content #tryChangePswdBtn:focus,
  .vtexIdUI .vtexIdUI-main-content #tryChangePswdBtn:hover,
  .vtexIdUI .vtexIdUI-main-content #changePswdBtn:active,
  .vtexIdUI .vtexIdUI-main-content #changePswdBtn:focus,
  .vtexIdUI .vtexIdUI-main-content #changePswdBtn:hover,
  .vtexIdUI .vtexIdUI-main-content #sendAccessKeyBtn:active,
  .vtexIdUI .vtexIdUI-main-content #sendAccessKeyBtn:focus,
  .vtexIdUI .vtexIdUI-main-content #sendAccessKeyBtn:hover,
  .vtexIdUI .vtexIdUI-main-content #classicLoginBtn:active,
  .vtexIdUI .vtexIdUI-main-content #classicLoginBtn:focus,
  .vtexIdUI .vtexIdUI-main-content #classicLoginBtn:hover {
    background: #1db0ba; }

.x-search.js--search {
  width: 100%;
  padding: 0 60px;
  padding: 0 3.75rem; }

.x-search__btn {
  width: 16px;
  width: 1rem;
  display: none; }
  .x-search__btn.is--active {
    display: block; }

.x-search__drop {
  position: relative; }

.x-search__result {
  background-color: white;
  position: absolute;
  top: 24px;
  top: 1.5rem;
  left: 0;
  width: 100%;
  top: 24px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.175s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: opacity 0.175s cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 0.175s cubic-bezier(0.4, 0, 1, 1);
  will-change: transform;
  z-index: -1;
  -webkit-border-bottom-right-radius: 30px;
  border-bottom-right-radius: 30px;
  -webkit-border-bottom-right-radius: 1.875rem;
  border-bottom-right-radius: 1.875rem;
  -webkit-border-bottom-left-radius: 30px;
  border-bottom-left-radius: 30px;
  -webkit-border-bottom-left-radius: 1.875rem;
  border-bottom-left-radius: 1.875rem; }
  @media only screen and (max-width: 767px) {
    .x-search__result {
      position: fixed;
      top: 65px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      z-index: 5014;
      width: -webkit-calc(100% - 40px);
      width: calc(100% - 40px); } }
  .x-search__result.is--active {
    -webkit-transition: opacity 0.175s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: opacity 0.175s cubic-bezier(0, 0, 0.2, 1);
    transition: opacity 0.175s cubic-bezier(0, 0, 0.2, 1);
    opacity: 1;
    pointer-events: all; }
  @media only screen and (max-width: 767px) {
    .x-search__result .x-search__form {
      margin-top: 65px;
      margin-top: 4.0625rem;
      height: 52px;
      height: 3.25rem; }
      .x-search__result .x-search__form .x-search__icon svg {
        width: 34px;
        height: 34px; }
        .x-search__result .x-search__form .x-search__icon svg .iconSearch {
          stroke: #90297d; }
      .x-search__result .x-search__form .x-search__input {
        max-width: -webkit-calc(100% - 82px);
        max-width: calc(100% - 82px);
        border-bottom: 1px solid #BBDBE8;
        font-weight: 500;
        font-size: 18px;
        color: #ABABAB; } }

@media only screen and (max-width: 767px) {
  .x-search__close {
    position: absolute;
    top: -65px;
    right: 0;
    background: #90297d;
    cursor: pointer;
    -webkit-border-radius: 10px 0 10px 10px;
    border-radius: 10px 0 10px 10px;
    display: block !important;
    width: 55px;
    width: 3.4375rem;
    height: 45px;
    height: 2.8125rem; }
    .x-search__close:hover span:first-child {
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .x-search__close:hover span:last-child {
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
    .x-search__close span {
      background: #FFF;
      width: 20px;
      height: 2px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      position: absolute;
      top: 20px;
      left: 18px;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      .x-search__close span:first-child {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      .x-search__close span:last-child {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); } }

.x-search__form {
  position: relative;
  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; }
  @media only screen and (max-width: 767px) {
    .x-search__form {
      height: 40px;
      height: 2.5rem; } }

.x-search__input {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  padding: 10px 35px;
  padding: 0.625rem 2.1875rem;
  text-align: left;
  width: 100%; }
  .x-search__input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #939393;
    opacity: 1; }
  .x-search__input::-moz-placeholder {
    /* Firefox 19+ */
    color: #939393;
    opacity: 1; }
  .x-search__input:-ms-input-placeholder {
    /* IE 10+ */
    color: #939393;
    opacity: 1; }
  .x-search__input:-moz-placeholder {
    /* Firefox 18- */
    color: #939393;
    opacity: 1; }

.x-search__result-list {
  max-height: -webkit-calc(100vh - 24px - 82px - 72px);
  max-height: calc(100vh - 24px - 82px - 72px);
  overflow: auto; }
  @media only screen and (min-width: 768px) {
    .x-search__result-list {
      max-height: -webkit-calc(100vh - 70px);
      max-height: calc(100vh - 70px); } }
  .x-search__result-list ul {
    padding: 32px 16px 12px;
    padding: 2rem 1rem 0.75rem;
    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-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    @media only screen and (max-width: 767px) {
      .x-search__result-list ul {
        padding: 32px 0 12px;
        padding: 2rem 0 0.75rem; } }
  .x-search__result-list li {
    margin-left: 12px;
    margin-left: 0.75rem;
    margin-right: 12px;
    margin-right: 0.75rem; }
    @media only screen and (max-width: 767px) {
      .x-search__result-list li {
        margin: 0 auto;
        width: -webkit-calc(100% - 82px);
        width: calc(100% - 82px); } }
  .x-search__result-list .x-shelf {
    overflow-y: auto;
    height: 100%;
    max-height: -webkit-calc(100vh - 110px);
    max-height: calc(100vh - 110px); }
  @media only screen and (max-width: 767px) {
    .x-search__result-list .x-wishlist__add-btn {
      top: 0px;
      right: 0px; } }
  .x-search__result-list .x-shelf__item {
    max-width: 270px;
    max-width: 16.875rem; }
    @media only screen and (max-width: 767px) {
      .x-search__result-list .x-shelf__item {
        border: none;
        padding: 16px 0px;
        border-bottom: 1px solid #EDEDED;
        margin: 0;
        -webkit-border-radius: 0px;
        border-radius: 0px; } }
  @media only screen and (max-width: 767px) {
    .x-search__result-list .x-shelf__img-container {
      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;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; } }
  @media only screen and (max-width: 767px) {
    .x-search__result-list .x-shelf__best-price {
      font-size: 18px;
      font-size: 1.125rem; } }
  @media only screen and (max-width: 767px) {
    .x-search__result-list .x-shelf__title {
      max-width: 150px;
      min-height: unset !important;
      width: 100%; } }
  @media only screen and (max-width: 767px) {
    .x-search__result-list .x-shelf__link img {
      max-width: 110px;
      max-width: 6.875rem;
      height: auto; } }
  @media only screen and (max-width: 767px) {
    .x-search__result-list .x-shelf__content {
      margin-top: 0px; } }
  @media only screen and (max-width: 767px) {
    .x-search__result-list .x-shelf__price-container {
      min-height: initial; } }
  @media only screen and (max-width: 767px) {
    .x-search__result-list .x-shelf__buy-wrapper {
      display: none; } }
  .x-search__result-list .search__show-more-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: 16px;
    margin-top: 1rem;
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
    width: 100%; }

.x-search__not-found {
  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;
  margin-top: 32px;
  margin-top: 2rem;
  margin-bottom: 32px;
  margin-bottom: 2rem; }
  .x-search__not-found p {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 4px;
    text-align: center; }

.x-shelf > h2 {
  display: none; }

.x-shelf ul > li {
  background: #FFF; }

.x-shelf__item {
  margin: 0 5px;
  border: 1px solid #eee;
  -webkit-border-radius: 13px;
  border-radius: 13px;
  background: #FFF;
  position: relative;
  padding: 18px 20px 0;
  padding: 1.125rem 1.25rem 0; }
  @media only screen and (max-width: 767px) {
    .x-shelf__item {
      padding: 12px;
      padding: 0.75rem; } }
  @media only screen and (max-width: 767px) {
    .x-shelf__item.has--carousel {
      margin-left: 5px;
      margin-left: 0.3125rem;
      margin-right: 5px;
      margin-right: 0.3125rem; } }
  .x-shelf__item--percent {
    position: absolute;
    top: 0;
    right: 0;
    background: #90297d;
    text-align: center;
    font-weight: 600;
    color: #FFF;
    -webkit-border-radius: 10px 0 10px 10px;
    border-radius: 10px 0 10px 10px;
    z-index: 5000;
    width: 45px;
    width: 2.8125rem;
    height: 40px;
    height: 2.5rem;
    line-height: 40px;
    line-height: 2.5rem;
    font-size: 16px;
    font-size: 1rem; }
    .x-shelf__item--percent::after {
      content: ' %';
      display: inline-block;
      vertical-align: middle; }

.x-shelf__img-container {
  position: relative;
  overflow: hidden; }
  .x-shelf__img-container .x-shelf__img-back {
    display: none; }

.x-shelf .x-shelf_flag .flag {
  display: none; }
  .x-shelf .x-shelf_flag .flag.estreias-home {
    top: 0;
    left: 0;
    position: absolute;
    display: block;
    width: 50%;
    height: 20px;
    font-size: 0px;
    color: #fff;
    -webkit-background-size: cover;
    background-size: cover;
    background: #f9386a;
    text-align: center;
    font-weight: 600;
    -webkit-border-radius: 10px 10px 10px 0px;
    border-radius: 10px 10px 10px 0px;
    z-index: 5000;
    width: 45px;
    width: 2.8125rem;
    height: 40px;
    height: 2.5rem;
    line-height: 40px;
    line-height: 2.5rem;
    font-size: 16px;
    font-size: 1rem; }

.x-shelf__img-front, .x-shelf__img-back {
  -webkit-filter: blur(0px);
  filter: blur(0px);
  -webkit-transform: perspective(1px) translate3d(0, 0, 0);
  transform: perspective(1px) translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-transition: opacity .75s;
  -o-transition: opacity .75s;
  transition: opacity .75s;
  will-change: transition, transform;
  position: relative;
  z-index: 1; }

.x-shelf__img-back {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; }

.x-shelf__buy-wrapper {
  max-width: 50%;
  width: 100%;
  display: block; }

.x-shelf__buy, .x-shelf__buy--best-seller {
  border: 1px solid #03afba;
  display: block;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
  color: #03afba;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  min-height: 30px;
  min-height: 1.875rem;
  line-height: 30px;
  line-height: 1.875rem;
  padding: 5px 0;
  padding: 0.3125rem 0;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  font-size: 12px;
  font-size: 0.75rem; }
  .x-shelf__buy:hover, .x-shelf__buy--best-seller:hover {
    background: #03afba;
    color: #FFF; }

.x-shelf__content {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem; }

.x-shelf__title {
  overflow: hidden;
  text-align: left;
  width: 88%;
  color: #818181;
  font-size: 14px;
  font-size: 0.875rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  font-weight: 400;
  line-height: 20px;
  line-height: 1.25rem;
  min-height: 65px;
  min-height: 4.0625rem; }
  @media only screen and (max-width: 767px) {
    .x-shelf__title {
      font-size: 16px;
      font-size: 1rem;
      min-height: 75px;
      min-height: 4.6875rem; } }

.x-shelf__price-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;
  text-align: left;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 80px;
  min-height: 5rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem; }

.x-shelf__old-price {
  color: #818181;
  display: block;
  text-transform: uppercase;
  text-decoration: line-through;
  letter-spacing: initial;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  font-size: 12px;
  font-size: 0.75rem; }
  @media only screen and (max-width: 767px) {
    .x-shelf__old-price {
      margin-right: 0;
      font-size: 14px;
      font-size: 0.875rem; } }

.x-shelf__best-price {
  display: block;
  color: #d13383;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: initial;
  font-size: 20px;
  font-size: 1.25rem; }
  @media only screen and (max-width: 767px) {
    .x-shelf__best-price {
      display: block;
      font-size: 24px;
      font-size: 1.5rem; } }

.x-shelf__installments-container {
  color: #000;
  display: block;
  letter-spacing: initial;
  font-size: 12px;
  font-size: 0.75rem; }

.x-shelf__out-of-stock-text {
  font-size: 11px;
  font-size: 0.6875rem; }

.x-wishlist__amount {
  color: #000;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  margin-left: 6px;
  margin-left: 0.375rem;
  position: absolute;
  top: -7px;
  left: 7px; }

.x-wishlist__add-btn {
  display: block;
  position: absolute;
  top: 38px;
  top: 2.375rem;
  right: 12px;
  right: 0.75rem;
  z-index: 5000; }
  @media only screen and (max-width: 767px) {
    .x-wishlist__add-btn svg {
      fill: #7c206d;
      width: 21px;
      width: 1.3125rem;
      height: 21px;
      height: 1.3125rem; } }
  .x-wishlist__add-btn.has--wishlist-loader .icon-wishlist,
  .x-wishlist__add-btn.has--wishlist-loader .icon-wishlist-remove {
    display: none !important; }
  .x-wishlist__add-btn.has--wishlist-loader .icon-wishlist-loader {
    display: inline-block; }
  .x-wishlist__add-btn.is--active .icon-wishlist__full {
    display: block; }
  .x-wishlist__add-btn.is--active .icon-wishlist__outline {
    display: none; }
  .x-wishlist__add-btn .icon-wishlist__full,
  .x-wishlist__add-btn .icon-wishlist-loader {
    display: none; }

.is-active {
  display: block !important; }

.popup-firstbuy {
  display: none !important; }

.x-popup {
  width: 100%;
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9999; }
  .x-popup-lightbox {
    width: 27%;
    height: auto;
    margin: 0 auto;
    background: url("/arquivos/popup-redirect-bg.png") no-repeat;
    color: white;
    position: relative;
    top: 25%; }
    @media screen and (max-width: 1600px) {
      .x-popup-lightbox {
        width: 36%; } }
    .x-popup-lightbox--close {
      display: block;
      width: 5%;
      text-align: center;
      background: white;
      color: #72246c;
      position: relative;
      left: 455px;
      top: 30px;
      padding: 5px;
      -webkit-border-radius: 3px 0px 3px 3px;
      border-radius: 3px 0px 3px 3px;
      font-family: "Georgia", sans-serif;
      font-weight: bold;
      cursor: pointer; }
      @media screen and (min-width: 1400px) {
        .x-popup-lightbox--close {
          left: 455px; } }
      @media screen and (min-width: 1600px) {
        .x-popup-lightbox--close {
          left: 455px; } }
    .x-popup-lightbox--content__title {
      text-align: center;
      font-weight: 300;
      font-family: sans-serif;
      margin-top: 100px;
      line-height: 35px;
      font-size: 25px; }
    .x-popup-lightbox--content__options {
      position: relative;
      left: 10px;
      bottom: 70px; }
      .x-popup-lightbox--content__options > img {
        position: relative;
        z-index: 1;
        display: inline-block;
        width: 45%; }
    .x-popup-lightbox--content__button--consultant {
      z-index: 2;
      display: block;
      position: relative;
      top: 50px;
      left: 40px;
      color: white;
      font-weight: 600;
      text-decoration: none;
      font-size: 18px;
      font-family: sans-serif;
      cursor: pointer; }
    .x-popup-lightbox--content__button--close {
      width: 200px;
      text-align: center;
      z-index: 2;
      display: block;
      position: relative;
      top: 0px;
      left: 100px;
      color: white;
      font-weight: 600;
      text-decoration: none;
      font-size: 18px;
      font-family: sans-serif;
      cursor: pointer;
      margin: 0 auto; }
      @media screen and (min-width: 1400px) {
        .x-popup-lightbox--content__button--close {
          left: 100px; } }
      @media screen and (min-width: 1600px) {
        .x-popup-lightbox--content__button--close {
          left: 100px; } }

/**
 * Utils
 * Helper Classes & IE10+ Fallback
 */
.is--show {
  display: block !important; }

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

@media only screen and (min-width: 768px) {
  .is--mobile {
    display: none !important; } }

@media only screen and (min-width: 1024px) {
  .is--mobile-tablet {
    display: none !important; } }

@media only screen and (max-width: 767px) {
  .is--tablet {
    display: none !important; } }

@media only screen and (min-width: 1024px) {
  .is--tablet {
    display: none !important; } }

@media only screen and (max-width: 767px) {
  .is--tablet-desktop {
    display: none !important; } }

@media only screen and (max-width: 1023px) {
  .is--desktop {
    display: none !important; } }

.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
 */
