/* CB19 */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Roboto+Condensed:300,300i,400,400i,700,700i');

* {
  font-family: 'Open Sans', sans-serif;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  line-height: initial;
}

body {
  padding-top: 87px;
}

@media (min-width: 901px) {
  body {
    padding-top: 0;
  }
}

.container {
  width: 1340px;
  max-width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
  position: relative;
}

.h1, h1 {
  font-size: initial;
}

/*
**  `.chilli-header`
**  trata-se de todo o conteúdo
**  do header como menu, mobile etc.
**
**  A quebra para o menu maior
**  está sendo tratado com o vp
**  `@media (--vp-m)`
**
**  Você pode encontrar os estilos
**  do carrinho em `src/app/cart/index.css`
**
**/

.chilli-header {
  position: relative;
  z-index: 100;
}

/*
**  `.chilli-header__help`
**  é a classe da barra superior
**  com links úteis e institucionais.
**
**  Tudo está encapsulado num
**  `@media (--vp-m)`
**  # você pode encontrar todas as resoluções
**  setadas em src/css/vars.css
**  pois a barra é somente para
**  ser exibida em resoluções maiores.
**/

.chilli-header__help {
  display: none;
}

@media (min-width: 901px) {

  .chilli-header__help {
    background: #232323;
    width: 100%;
    padding: 9px 0;
    display: block;
    font-family: 'Open Sans', sans-serif;
  }

    .chilli-header__help .chilli-help {
      list-style: none;
    }

    .chilli-header__help .chilli-help__item {
      display: inline-block;
    }

      .chilli-header__help .chilli-help__item:last-child {
        float: right;
        position: relative;
      }

      .chilli-header__help .chilli-help__item:not(:first-child) {
        margin-left: 57px;
      }

      .chilli-header__help .chilli-help__item a {
        color: #fff;
        text-decoration: none;
        font-size: 12px;
      }
}

/*
**  `.chilli-help`
**  trata-se da lista
**  de items na barra do topo
*/

.chilli-help__item {
  vertical-align: middle;
  display: inline-block;
}

.chilli-help__item img {
    margin-right: 11px;
  }

.chilli-help__item img,
  .chilli-help__item span {
    vertical-align: middle;
  }

.chilli-help__item--sac {
  padding-bottom: 20px;
}

.chilli-help__item--sac:hover .chilli-help__subnav {
    visibility: visible;
  }

.chilli-help__subnav {
  background: #222;
  color: #fff;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: -20px;
  top: 32px;
  width: 210px;
  visibility: hidden;
  z-index: 25;
}

.chilli-help__subitem {
  display: inline-block;
  line-height: 1;
  padding: 10px 20px;
  text-align: right;
  width: 100%;
  z-index: 250;
}

.chilli-help__subitem:last-child {
    padding-bottom: 20px;
  }

.chilli-help__subitem:hover {
    background: #403f3f;
  }

.chilli-help__subitem > a {
    font-size: 14px !important;
  }

@media (min-width: 1201px) {
  .chilli-nav__subnav {
      width: 340px;
  }
}

/*
**  `.chilli-header__drawer` &&
**  `.chilli-drawer`
**  trata-se de tudo que envolve
**  a "gaveta" do menu no mobile.
**
**  Na versão desktop, é a barra
**  principal.
*/

.chilli-header__drawer {
  visibility: hidden;
  position: fixed;
  height: 100%;
  width: 87%;
  transform: translateX(-100%);
  transition: .5s all;
  top: 0;
  left: 0;
  z-index: 10;
}

@media (min-width: 901px) {
  .chilli-header__drawer {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    position: relative;
    width: 100%;
    z-index: 1;
    /* transition: none; */
  }
}

.chilli-header__drawer--filter {
  right: 0;
  left: auto;
  transform: translateX(100%);
}

.chilli-header__drawer--filter .chilli-drawer__prelude {
    box-shadow: 7px 16px 8px -2px #fff;
  }

.chilli-header__drawer--filter .chilli-drawer__account {
    color: #fff;
    padding: 15px 0 5px;
  }

.chilli-header__drawer--filter .chilli-nav__secondary {
    border-top: none;
  }

.chilli-header__drawer--filter .chilli-categories__toggle {
    padding: 0;
  }

.chilli-header__drawer--filter .chilli-categories__toggle span {
    font-family: 'Roboto Condensed', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    color: #131313;
    font-weight: 300;
    font-size: 18px;
    border-bottom: 1px solid #dedede;
    display: block;
    padding: 20px;
    margin: 0;
  }

.chilli-header__drawer--filter .chilli-categories__toggle span::after {
      right: 15px;
    }

/*
**  `.chilli-drawer__prelude`
**  é a parte escura do menu,
**  com destaque para minha conta.
*/

.chilli-drawer__prelude {
  background: #131313;
  padding: 10px 20px;
  position: relative;
  box-shadow: -7px 16px 8px -2px #fff;
}

@media (min-width: 901px) {
  .chilli-drawer__prelude {
    display: none;
  }
}

/*
**  `.chilli-drawer__search`
**  é a barra de pesquisa, vista
**  somente no desktop.
*/

.chilli-drawer__search {
  display: none;
}

/*
**  `.chilli-drawer__hold`
**  segura o logotipo da Chilli 🌶
**  e o botão de fechar menu.
*/

.chilli-drawer__hold {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #252525;
  padding: 0 0 10px;
}

/*
**  `.chilli-drawer__logo`
**  segura o logotipo da Chilli 🌶
*/

.chilli-drawer__logo {
  display: inline-block;
}

.chilli-drawer__logo svg {
    width: 140px;
  }

/*
**  `.chilli-header__close`
**  segura o ícone de fechar
**  menu. ⬅
*/

.chilli-header__close {}

.chilli-header__close svg {
  width: 15px;
  height: 21px;
  fill: #fff;
  transform: rotate3d(0,1,0,180deg);
  backface-visibility: visible;

  pointer-events: none;
}

/*
**  `.chilli-drawer__account`
**  segura o item `Minha conta`
**  no menu.
*/

.chilli-drawer__account {
  display: block;
}

.chilli-drawer__account a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    padding: 15px 0 10px;
    display: block;
  }

.chilli-drawer__account span {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    font-size: 14px;
  }

.chilli-drawer__account svg {
    vertical-align: middle;
    fill: #fff;
    width: 23px;
    height: 23px;
  }

/*
**  `.chilli-drawer__nav`
**  na prática, se tratam dos
**  itens genéricos de navegação
**  do menu 🍔
*/


.chilli-drawer__nav {
  height: 100%;
  background: #fff;
  overflow-y: auto;
  transition: .5s all;
}


.chilli-drawer__nav a {
    font-family: 'Roboto Condensed', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    color: #131313;
    font-weight: 300;
    font-size: 18px;
    border-bottom: 1px solid #dedede;
    display: block;
    padding: 20px;
  }


.chilli-drawer__nav span {
    font-family: 'Roboto Condensed', sans-serif;
    margin-left: 13px;
    font-weight: 300;
    color: #c8c8c8;
  }

@media(min-width: 901px) {
  .chilli-drawer__nav {
    width: 100%;
    height: auto;
    overflow-y: visible;
    overflow-y: initial;
    box-shadow: 0 0 20px -13px #333;
  }

    .chilli-drawer__nav li {
      display: inline-block;  
    }

    .chilli-drawer__nav a {
      display: inline-block;
      width: auto;
      font-size: 17px;
      padding: 10px 25px;
    }

    .chilli-drawer__nav span {
      display: none;
    }
}

/*
**  `.chilli-nav__main`
**  trata da lista principal
**  marcada com negrito nos
**  itens de navegação.
*/

.chilli-nav__main {}

@media(min-width: 901px) {
  .chilli-nav__main {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.chilli-nav__item {
  position: relative;
  z-index: 25;
}

.chilli-nav__item a {
    font-weight: 700;
    color: #262626;
  }

@media(min-width: 901px) {

    .chilli-nav__item a {
      font-weight: 400;
      border: none;
    }

    .chilli-nav__item:not(:last-child)::after {
      content: '|';
      position: absolute;
      top: 50%;
      right: -3.5px;
      font-size: 14px;
      transform: translateY(-50%);
    }

    .chilli-nav__item:hover > a {
      background: #444;
      color: #fff;
    }
}

.chilli-nav__item--highlight a {
    color: #fb2739;
  }

.chilli-nav__item--highlight a:hover {
      color: #fff;
      background: #ca1b2a;
    }

/*
**  `.chilli-nav__secondary`
**  trata da lista secundária
**  marcada com itens com fonte
**  light nos itens de navegação.
*/

.chilli-nav__secondary {
  border-top: 15px solid #f5f5f5;
}

@media(min-width: 901px) {
  .chilli-nav__secondary {
    display: none;
  }
}

/*
**  `.chilli-nav__subnav`
**  trata-se da subnavegação
**  do menu no desktop
*/

.chilli-nav__subnav {
  position: absolute;
  background: #444;
  color: #fff;
  visibility: hidden;
  display: flex;
  flex-wrap: wrap;
}

@media(min-width: 901px) {
    .chilli-nav__item:hover > .chilli-nav__subnav {
      visibility: visible;
    }

    .chilli-nav__item:nth-last-child(1) .chilli-nav__subnav,
    .chilli-nav__item:nth-last-child(2) .chilli-nav__subnav {
      right: 0;
    }
  
  .chilli-nav__subnav {
    padding: 30px 20px 15px;
    width: 280px;
  }

    .chilli-nav__subnav a {
      color: #fff;
      text-align: left;
      font-weight: 300;
      font-size: 17px;
      border-left: 3px solid transparent;
      padding: 0;
      transition: .5s padding, border;
    }

      .chilli-nav__subnav a:hover {
        color: #c7c7c7;
        border-left: 3px solid #ed1b23;
        padding-left: 16px;
      }

  .chilli-nav__subitem {
    display: inline-block;
    text-align: left;
    width: 50%;
    padding-bottom: 26px;
    line-height: 1;
    z-index: 250;
  }

    .chilli-nav__subitem::after {
      display: none;
    }

    .chilli-nav__subitem:nth-of-type(5) {
      width: 100%;
    }
}

@media(min-width: 1201px) {
    .chilli-nav__item:nth-last-child(1),
    .chilli-nav__item:nth-last-child(2) {
      left: 0;
    }

  .chilli-nav__subnav {
    width: 340px;
  }

}

.chilli-nav__subnav--big svg {
    height: 40px;
  }

.chilli-nav__draw {
  width: calc(100% / 3);
}

.chilli-nav__draw a {
    text-align: center;
    border-top: 1px solid #555;
    border-left: 0;
    padding: 15px 0;
    width: 100%;
    transition: border .5s, color .5s;
  }

.chilli-nav__draw a:hover {
      border-left: 0;
      border-top-color: #ed1b23;
      padding-left: 0;
    }

.chilli-nav__draw a:hover svg {
        fill: #c7c7c7;
      }

.chilli-nav__draw svg {
    fill: #fff;
    width: 70px;
    height: 25px;
    margin-bottom: 5px;
    transition: .5s fill;
  }

.chilli-nav__draw--big {
  width: 50%;
}

.chilli-nav__draw--clock svg {
    width: 44px;
    height: 55px;
    display: block;
    margin: 0 auto 10px;
  }

.chilli-nav__all {
  width: 100%;
  border: 0 none;
}

.chilli-nav__all a {
    text-align: right;
    border-top: 1px solid #555;
    padding-top: 10px;
    width: 100%;
    border-left: 0;
  }

.chilli-nav__all a:hover {
      border-left: 0;
      border-top-color: #ed1b23;
    }

/*
**  `.chilli-header__overlay`
**  trata-se do overlay com opacidade
**  preto com 74% de opacidade.
*/

.chilli-header__overlay {
  background: rgba(0,0,0,.74);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  visibility: hidden;
  opacity: 0;

  transition: .5s all;
}

/*
**  `.chilli-header__menu`
**  trata-se do ícone do menu
*/

.chilli-header__menu {
  display: inline-block;
  position: relative;
  padding: 10px;
  left: -10px;
}

.chilli-header__menu span {
    display: block;
    width: 22px;
    height: 3px;
    margin-bottom: 3px;
    border-radius: 2px;
    pointer-events: none;
    background: #444;
  }

.chilli-header__cart-hold {
  position: relative;
}

@media (min-width: 901px) {
  .chilli-header__menu {
    display: none;
  }
}

/*
**  `.chilli-logo__black`
**   trata o logotipo escuro da Chilli
**   usado no Header
*/

.chilli-logo__black {}

.chilli-logo__black svg {
  width: 126px;
  height: 25px;
}

@media(min-width: 901px) {
  .chilli-logo__black svg {
    width: 169px;
    height: 34px;
  }
}

/*
**  `.chilli-header__bar`
**   lida com a barra visível
**   no mobile.
*/

.chilli-header__bar {
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4;
  transition: .5s all;
}

@media (min-width: 901px) {
  .chilli-header__bar {
    padding: 19px 0;
    position: relative;
    border-bottom: 1px solid #f4f4f4;
  }
}

/*
**  `.chilli-header__bar .container`
**   lida com a container da barra
**   do menu mobile.
*/

.chilli-header__bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 0;
}

@media (min-width: 901px) {
  .chilli-header__bar .container {
    padding-right: 20px;
  }
}

/*
**  `.chilli-header__cart-bar`
**   lida com o ícone de carrinho
**   no header. 🛒
*/

.chilli-header__cart-bar {
  background: #eaeaea;
  height: 100%;
  padding: 10px;
  position: relative;
}

.chilli-header__cart-bar > * {
    pointer-events: none;
  }

@media (min-width: 901px) {
  .chilli-header__cart-bar {
    background: transparent;
  }
}

/*
**  `.chilli-header__cart-title`
**   descritivo
*/

.chilli-header__cart-title {
  display: none;
}

@media (min-width: 901px) {

  .chilli-header__cart-title {
    display: inline-block;
    vertical-align: middle;
    margin-left: 17px;
    font-size: 14px;
  }
  
}

/*
**  `.chilli-header__cart-quantity`
**   descritivo
*/

.chilli-header__cart-quantity {
  background: #f33;
  width: 14px;
  height: 13px;
  color: #fff;
  display: inline-block;
  text-align: center;
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 10px;
  border-radius: 50%;
}

/*
**  `.chilli-cart__toggle`
**   descritivo
*/

.chilli-cart__toggle {
  cursor: pointer;
}

/*
**  `.chilli-header__search`
**   lida com o form da busca
**   no header.
*/

.busca {
  position: relative;
}

.busca legend,
  .busca label,
  .busca select {
    display: none;
  }

.busca .btn-buscar {
    font-size: 0;
    background-image: url(http://chillibeans.vteximg.com.br/arquivos/glass-search.png);
    width: 20px;
    height: 21px;
    border: 0;
    border-radius: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
  }

@media(min-width: 901px) {
    .busca .btn-buscar {
      right: 20px;
    }
  }

.chilli-header__search {
  display: none;
}

@media (min-width: 901px) {
  .chilli-header__search {
    display: block;
    flex-grow: 1;
    max-width: 505px;
    transform: translateX(-8px);
  }

    .chilli-header__search input {
      background: #fff;
      font-size: 16px;
      font-family: 'Roboto Condensed', sans-serif;
      font-weight: 300;
      width: 100%;
      text-transform: uppercase;
      border: 1px solid #d3d3d3;
      padding: 12px 24px;
      border-radius: 20px;
    }
}

@media (min-width: 1201px) {
  .chilli-header__search {
    max-width: 724px;
  }
}

/*
**  `.chilli-header__account`
**   lida com o form da busca
**   no header MOBILE.
*/

.chilli-header__account {
  display: none;
}

@media (min-width: 901px) {
  .chilli-header__account {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    padding: 0 5px;
  }

    .chilli-header__account svg {
      display: inline-block;
      vertical-align: middle;
      width: 22px;
      height: 21px;
    }

    .chilli-header__account span {
      display: inline-block;
      vertical-align: middle;
      margin-left: 15px;
    }
}

/*
**  `.chilli-header__search-m`
**   lida com o form da busca
**   no header MOBILE.
*/

.chilli-header__search-m {
  display: block;
}

.chilli-header__search-m input {
    background: #f9f9f9;
    color: #444;
    width: 100%;
    position: relative;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    font-size: 18px;
    padding: 11px 10px;
    line-height: 1;
    font-weight: 300;
    box-shadow: 0px 6px 16px rgba(0,0,0,.05);
  }

.chilli-header__search-m input::placeholder {
      color: #757574;
    }

@media (min-width: 901px) {
  .chilli-header__search-m {
    display: none;
  }
}

/*
**  `.chilli-header__search-icon`
**   lida com o ícone de busca
**   no header. 🔎
*/

.chilli-header__search-icon {
  display: none;
}

/*
**  `.chilli-drawer__opened`
**  trata-se de quando a navegação
**  é aberta no mobile. 📱
*/

.chilli-header__opened .chilli-header__drawer--navigation {
    transform: translateX(0);
    visibility: visible;
  }

.chilli-header__opened .chilli-header__overlay {
    visibility: visible;
    opacity: 1;
  }

.chilli-filter__opened .chilli-header__drawer--filter {
    transform: translateX(0);
    visibility: visible;
  }

.chilli-filter__opened .chilli-header__overlay {
    visibility: visible;
    opacity: 1;
  }

.chilli-cart__opened .chilli-header__cart {
      transform: translateX(0);
  }

.chilli-cart__opened .chilli-header__overlay {
    visibility: visible;
    opacity: 1;
  }


  last 3 chrome versions, last 3 edge versions, last 3 firefox versions, last 3 safari versions, last 3 ios versions, last 3 android versions
  /*
  **  `.chilli-header__cart`
  **   lida com tudo relacionado
  **   ao carrinho, no header.
  */
  
  .chilli-header__cart {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 87%;
    transition: .5s all;
    z-index: 10;
    background: #fff;
    max-width: 400px;
    transform: translateX(100%);
  }
  
  .chilli-cart {}
  
  .chilli-cart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
    z-index: 10;
  }
  
  .chilli-cart__icon {
    position: relative;
    display: inline-block;
    height: 24px;
    vertical-align: middle;
  }
  
  .chilli-cart__icon .chilli-header__cart-quantity {
      bottom: -4px;
      right: -2px;
    }
  
  .chilli-cart__icon svg {
      width: 21px;
      height: 24px;
    }
  
  .chilli-cart__title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
  }
  
  .chilli-cart__close svg {
      width: 15px;
      height: 21px;
      transform: rotate3d(0,1,0,180deg);
      backface-visibility: visible;
  
      pointer-events: none;
    }
  
  .chilli-cart__items {
    padding: 10px 20px;
    scroll-behavior: smooth;
    overflow-y: auto;
    height: calc(100% - 175px);
  
  }
  
  .chilli-cart__items li {
      border: 1px solid #ddd;
      margin-bottom: 20px;
      position: relative;
      display: flex;
      align-items: center;
      background: #f5f5f5;
      user-select: none;
    }
  
  .chilli-cart__items img {
      width: 115px;
      height: 115px;
    }
  
  .chilli-cart__items span {
      margin-bottom: 10px;
      display: block;
    }
  
  .chilli-cart__items strong {
      font-weight: 700;
      font-size: 16px;
    }
  
  .chilli-cart__items .chilli-cart__about {
      padding: 0 20px;
      font-size: 14px;
    }
  
  .chilli-cart__items .chilli-cart__remove {
      position: absolute;
      top: 0;
      right: 0;
      width: 20px;
      height: 20px;
      background: #181818;
      cursor: pointer;
      padding: 13px;
    }
  
  .chilli-cart__remove::before,
  .chilli-cart__remove::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 12px;
    background: #fff;
    top: 50%;
    left: 50%;
  }
  
  .chilli-cart__remove::after {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  
  .chilli-cart__remove::before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  
  .chilli-cart__total {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    box-shadow: 29px 7px 11px 18px #fff;
  }
  
  .chilli-cart__subtotal {
    border-top: 1px solid #ededed;
    background: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .chilli-cart__subtotal span {
      font-size: 14px;
    }
  
  .chilli-cart__subtotal strong {
      font-size: 16px;
      font-weight: 700;
    }
  
  .chilli-cart__installment {
    font-weight: 400;
    display: block;
    font-size: 13px;
    color: #333;
    line-height: 1.3;
  }
  
  .chilli-cart__checkout {
    background: #00853b;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    padding: 25px 0;
  }

/*
**    `#ajaxBusy`
**  é o loading
**/

.loading {
    position: fixed;
    width: 50%;
    height: 2px;
    top: 0;
    left: 0;
    z-index: 15;
    animation: handleLoad 2s infinite backwards;
    background: red;
}

.loading p {
      display: none;
    }

@keyframes handleLoad {
  from {
      transform: translateX(-100%)
  }
  to {
      transform: translateX(200%)
  }
}

/*
** `.chilli-fixed`
**  trata-se da classe
**  adicionada no body quando
**  o usuário scrolla
**/

.chilli-fixed {}

@media (min-width: 901px) {
    .chilli-fixed .chilli-header__bar {
      padding: 8px 0;
      position: fixed;
    }  

    .chilli-fixed .chilli-header__drawer {
      position: fixed;
      height: auto;
    }

    .chilli-fixed .chilli-drawer__nav {
      position: fixed;
      transform: translateY(62px);
      width: 100%;
    }

}

/*
**  Removendo autocomplete
*/

.ui-autocomplete,
.ui-corner-all {
  display: none;
}

/*
**  `.chilli-newsletter`
**  descritivo
*/

.chilli-newsletter {
  background: #000;
  border-bottom: 1px solid #000;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  text-rendering: geometricPrecision;
  line-height: 1.6;
  color: #fff;
  z-index: 10;
}

.chilli-newsletter .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
}

.chilli-newsletter img {
  display: none;
}

.chilli-newsletter .container::after {
  content: '';
  width: 25px;
  height: 4px;
  background: #ed1b23;
  position: absolute;
  bottom: -1px;
  left: 3%;
  z-index: 2;
}

@media (min-width: 901px) {

  .chilli-newsletter .container {
    flex-direction: row;
    padding: 40px 20px;
  }

  .chilli-newsletter img {
    display: inline-block;
  }
}

.chilli-newsletter__form {}

@media (min-width: 901px) {
  .chilli-newsletter__form {
    max-width: 500px;
  }
}

/*
**  `.chilli-newsletter__title`
**  descritivo
*/

.chilli-newsletter__title {
  font-size: 15px;
  text-transform: uppercase;
  padding: 15px 0;
}

.chilli-newsletter__title strong {
  display: block;
  font-weight: 600;
}

@media (min-width: 901px) {
  .chilli-newsletter__title {
    font-size: 16px;
    padding: 0;
  }
}

@media (min-width: 1201px) {
  .chilli-newsletter__title {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 300;
  }
}

/*
**  `.chilli-newsletter__field`
**  descritivo
*/

.chilli-newsletter__field {
  position: relative;
  background: transparent;
  border-bottom: 1px solid #fff;
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  padding: 5px 0;
  margin: 8px 0;
  color: #fff;
  overflow: hidden;
  transition: .5s all;
  width: 100%;
  max-width: 495px;
}

.chilli-newsletter__field::placeholder {
  font-weight: 300;
  color: rgba(256, 256, 256, .3);
}

.chilli-newsletter__field:focus {
  outline: transparent;
}

/*
**  `.chilli-newsletter__field--submit`
**  descritivo
*/

.chilli-newsletter__field--submit {
  background: #fff;
  margin-right: 0;
  border: 0;
  width: 56px;
  height: 51px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMC41IDE2Ij4KICA8cGF0aCBkPSJNMi41IDBMMCAyLjUgNS41IDggMCAxMy41IDIuNSAxNmw4LTh6Ii8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px 25px;
  cursor: pointer;
  margin-left: 40px;
  font-size: 0;
}

.chilli-newsletter__field--submit::before {
  display: none;
}

.chilli-newsletter__gender {
  font-size: 10px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.chilli-newsletter__gender span {
  display: none;
}

.chilli-newsletter__gender input[type="radio"] {
  display: none;
  transition: .5s all;
}

.chilli-newsletter__gender input[type="radio"]:checked+label {
  background: #fff;
  color: #000;
}

.chilli-newsletter__gender input[type="radio"]:disabled+label {
  cursor: not-allowed;
  border-color: #666;
  color: #666;
}

.chilli-newsletter__gender input[type="radio"]:disabled+label:hover {
  color: #666;
  background: #000;
}

.chilli-newsletter__gender label {
  font-size: 12px;
  border: 1px solid #fff;
  border-radius: 1px;
  padding: 9px 23px;
  color: #fff;
  transition: .5s all;
  cursor: pointer;
  width: 50%;
  text-align: center;
  display: inline-block;
  margin: 10px;
}

.chilli-newsletter__gender label:hover {
  background: #fff;
  color: #000;
}

@media(min-width: 901px) {
  .chilli-newsletter__gender {
    display: block;
  }

  .chilli-newsletter__gender span {
    display: inline-block;
  }

  .chilli-newsletter__gender label {
    width: auto;
    margin: 0;
  }

  .chilli-newsletter__gender label:nth-of-type(1) {
    margin: 0 32px 0 0;
  }
}

/*
**  `.chilli-newsletter__success`
**  descritivo
*/

.chilli-newsletter__success {
  display: none;
  text-transform: none;
  text-transform: initial;
  color: #59bb00;
}

.chilli-newsletter--success {
  padding: 20px 20px 33px;
}

.chilli-newsletter--success form {
  display: none;
}

.chilli-newsletter--success .chilli-newsletter__success {
  display: block;
}

.chilli-newsletter--success .chilli-newsletter__error {
  display: none;
}

.chilli-newsletter__error {
  text-transform: none;
  text-transform: initial;
  color: red;
  display: none;
}

/*
**  `.chilli-newsletter__success`
**  descritivo
*/

.chilli-newsletter--error .chilli-newsletter__error {
  display: block;
}

@media (min-width: 901px) {

  .chilli-newsletter--error .chilli-newsletter__error {
    position: absolute;
  }

}

/*
**  `.chilli-footer`
**  segura todo o rodapé
**  do site, com exceção
**  da newsletter
*/

.chilli-footer {
  background: #fff;
  color: #0e0e0e;
  padding: 0 0 20px;
  z-index: 10;
}

.chilli-footer>.container {
  padding: 0;
}

@media (min-width: 901px) {
  .chilli-footer {
    padding: 47px 0 31px;
  }

  .chilli-footer>.container {
    padding: 0 1.25rem;
  }
}

/*
**  `.chilli-footer__title`
**  `.chilli-footer__text`
**  são conteúdos textuais
**  representaveis no rodapé
**  como título e texto corrido
*/

.chilli-footer__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 20px;
  font-weight: 700;
}

@media (min-width: 901px) {
  .chilli-footer__title {
    padding-bottom: 0;
  }
}

.chilli-footer__text {
  font-size: 10px;
  margin-top: 0;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/*
**  `.chilli-footer__main`
**  segura todo o primeiro
**  bloco de linha do footer
**  para aplicar resolver
**  o alinhamento e o flex
*/

.chilli-footer__main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 901px) {
  .chilli-footer__main {
    flex-direction: row;
  }
}

.chilli-footer__about {
  margin: 10px 0;
  text-align: left;
  line-height: 1.1;
}

.chilli-footer__about span {
  display: block;
  font-size: 10px;
  margin-top: 4px;
}

/*
**  `.chilli-footer__nav`
**  trata-se da divisória
**  que segura a navegação
**  de links úteis no footer
*/

.chilli-footer__nav {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
  padding-bottom: 40px;
}

@media (min-width: 901px) {
  .chilli-footer__nav {
    padding: 0;
    display: inline-flex;
    justify-content: space-between;
    max-width: 610px;
    max-height: 191px;
  }
}

/*
**  `.chilli-footer__list`
**  é a lista de links úteis
**  localizados no footer
*/

.chilli-footer__list {
  width: 100%;
  position: relative;
  list-style: none;
}

@media (min-width: 901px) {
  .chilli-footer__list:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 100%;
    background: #f6f6f6;
    top: 0;
    z-index: 1;
    position: absolute;
    left: 172px;
  }

  .chilli-footer__list:not(:last-child)::before {
    content: "";
    width: 9px;
    height: 9px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 168px;
    transform: translateY(-50%) rotate(45deg);
    border: 1px solid #ededed;
    z-index: 2;
  }
}

/*
**  `.chilli-footer__item`
**  é o item da lista de links
**  localizados no footer
*/
.chilli-footer__item {
  list-style: none;
}

.chilli-footer__item a {
  text-decoration: none;
  font-size: 13px;
  line-height: 2.7;
  text-transform: uppercase;
  color: #595959;
  border-left: 3px solid transparent;
  font-family: var(--open);
  font-weight: 300;
  transition: all .5s;
}

.chilli-footer__item a:hover {
  border-left: 3px solid #ed1b23;
  padding-left: 16px;
}

@media (min-width: 901px) {
  .chilli-footer__item {
    padding: 5px 0;
  }

  .chilli-footer__item a {
    line-height: 1.5;
  }
}

/*
**  `.chilli-footer__social`
**  é onde se encontram todos
**  os estilos relacionados a
**  redes sociais no footer
*/

.chilli-footer__social {
  display: inline-block;
  vertical-align: top;
  max-width: 240px;
  margin: 0 auto 40px;
}

.chilli-footer__social .chilli-social {
  display: flex;
  justify-content: space-between;

  list-style: none;
}

@media (min-width: 901px) {
  .chilli-footer__social {
    max-width: 180px;
    width: 100%;
    margin: 0 30px 0 0;
  }

  .chilli-footer__social .chilli-footer__title {
    padding-bottom: 47px;
  }
}

.chilli-social__item {
  display: inline-block;
}

.chilli-social__item svg {
  width: 26px;
  height: 26px;
}

/*
**  `.chilli-footer__security`
**  é onde se encontram todos
**  os estilos relacionados a
**  segurança da loja no footer
*/

.chilli-footer__security {
  display: inline-block;
}

.chilli-footer__security .chilli-security {
  list-style: none;
}

.chilli-footer__security .chilli-security__item {
  padding-bottom: 22px;
}

.chilli-footer__security .chilli-security__item img {
  margin: 0 auto;
  display: block;
}

@media (min-width: 901px) {

  .chilli-footer__security .chilli-security {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  .chilli-footer__security .chilli-security__item {
    max-width: 100%;
  }

  .chilli-footer__security .chilli-footer__title {
    padding-bottom: 22px;
  }
}

/*
**  `.chilli-footer__footer`
**  é onde se encontra a seção
**  de copyright e logos de 
**  meios de pagamentos
*/

.chilli-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  color: #595959;
}

.chilli-footer__bottom>svg {
  width: 188px;
  margin: 15px 0;
}

@media (min-width: 901px) {
  .chilli-footer__bottom {
    flex-direction: row;
    padding: 0;
  }

  .chilli-footer__bottom>svg {
    margin: 0;
  }
}

.chilli-footer__payments {
  width: 100%;
}

.chilli-footer__payments .chilli-footer__text {
  margin-bottom: 12px;
}

@media (min-width: 901px) {
  .chilli-footer__payments {
    width: auto;
  }
}

.chilli-payments {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 100%;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  padding: 10px 0;
  flex-wrap: wrap;
}

@media (min-width: 901px) {
  .chilli-payments {
    width: 491px;
  }
}

.chilli-payments__item {
  width: 35px;
  max-width: calc(100% / 3);
  margin: 5px;
}

.chilli-payments__item svg {
  vertical-align: middle;
}

@media (min-width: 901px) {
  .chilli-payments__item {
    margin: 0;
  }
}

.chilli-payments__item--visa {
  width: 50px;
}

.chilli-payments__item--diners {
  width: 86px;
}

.chilli-payments__item--amex {
  width: 29px;
}

.chilli-payments__item--elo {
  width: 51px;
}

.chilli-payments__item--hiper {
  width: 47px;
}

.chilli-payments__item--boleto {
  width: 46px;
}

/*
**
**
*/

.chilli-footer__toggle {
  width: 100%;
  display: block;
  text-transform: uppercase;
  font-weight: 300;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 20px;
  border-bottom: 1px solid #dedede;
  padding: 20px 23px;
  line-height: 1;
}

.chilli-footer__toggle>svg {
  fill: #ccc;
  width: 12px;
  height: 11px;
  float: right;
  vertical-align: middle;
  display: inline-block;
  transform: rotate(90deg) translateX(6px);
}

@media (min-width: 901px) {
  .chilli-footer__toggle {
    display: none;
  }
}

.chilli-footer__toggle--opened .chilli-footer__toggle>svg {
  transform: rotate(-90deg) translateX(-6px);
}

.chilli-footer__toggle--opened .chilli-footer__sublist {
  max-height: 500px;
}

.chilli-footer__sublist {
  max-height: 0;
  overflow: auto;
  transition: .5s max-height;
  background: #f4f4f4;
}

.chilli-footer__sublist a {
  padding: 10px 23px;
  display: block;
  transition: .5s all;
}

.chilli-footer__sublist a:hover {
  border-left: 0;
  padding: 10px 23px;
  background: #dedede;
}

@media (min-width: 901px) {
  .chilli-footer__sublist {
    max-height: 100%;
    overflow: visible;
    padding: 0;
    background: #fff;
  }

  .chilli-footer__sublist a {
    padding: 0;
    display: inline;
  }

  .chilli-footer__sublist a:hover {
    background: #fff;
    border-left: 3px solid #ed1b23;
    padding: 0 0 0 16px;
  }
}

/*
**  ÍCONE SITE BLINDADO
*/

#sb-shield {
  position: static;
  background-position: center;
  width: 130px;
  height: 40px;
}

#armored_website_02 {
  margin: 0 auto;
  text-align: center;
}
