/*!******************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./public/templates/default/assets/scss/style.scss ***!
  \******************************************************************************************************************************************/
.breadcrumb {
  background: #fff;
  margin-bottom: 5px;
}

.detalhe-produto {
  display: flex;
  flex-direction: column;
  width: 73%;
}
@media (max-width: 1024px) {
  .detalhe-produto {
    width: 98%;
  }
}
.detalhe-produto h4 {
  margin: 20px 0;
  font-weight: bold;
}

.table-quantidade {
  border: 1px solid #ccc;
}
.table-quantidade th, .table-quantidade td {
  text-align: center;
  border: 1px solid #ccc;
}

.prod-voltar {
  background: #57A695;
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 50%;
  font-size: 30px;
  padding: 20px;
  position: absolute;
  z-index: 9;
  bottom: 10px;
  left: 10px;
}

.prod-avancar {
  background: #57A695;
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 50%;
  font-size: 30px;
  padding: 20px;
  position: absolute;
  z-index: 9;
  bottom: 10px;
  right: 10px;
}

.preview {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 996px) {
  .preview {
    margin-bottom: 20px;
  }
}
.preview-pic {
  position: relative;
  padding: 0;
}

.preview-pic img {
  width: 100%;
}

.preview-thumbnail {
  border: none;
  margin-top: 15px;
}
.preview-thumbnail .slick-slide img {
  width: 50px;
}

.preview-thumbnail li {
  width: 80px;
  margin-right: 2.5%;
}

.preview-thumbnail ul {
  list-style: none;
}

.preview-thumbnail.nav-tabs li a {
  padding: 0;
  margin: 0;
}

.preview-thumbnail.nav-tabs li:last-of-type {
  margin-right: 0;
}

.tab-content {
  overflow: hidden;
}

.tab-content img {
  width: 100%;
  -webkit-animation-name: opacity;
  animation-name: opacity;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

.action {
  display: flex;
  flex-direction: column;
}

.card {
  background: #f9f9f9;
  padding: 3em;
  line-height: 1.5em;
}

@media screen and (min-width: 997px) {
  .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.colors {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.product-title, .price, .sizes, .colors {
  text-transform: UPPERCASE;
  font-weight: bold;
}

.checked, .price span {
  color: #ff9f1a;
}

.product-title, .rating, .product-description, .price, .vote, .sizes {
  margin-bottom: 15px;
}

.product-description {
  margin-top: 20px;
}
.product-description span {
  color: #00a65a;
  font-weight: bold;
}

.product-title {
  margin-top: 0;
}

.size {
  margin-right: 10px;
}

.size:first-of-type {
  margin-left: 40px;
}

.color {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  height: 2em;
  width: 2em;
  border-radius: 2px;
}

.color:first-of-type {
  margin-left: 20px;
}

.add-to-cart, .like {
  background: #57A695;
  margin-bottom: 10px;
  padding: 1.2em 1.5em;
  border: none;
  text-transform: UPPERCASE;
  font-weight: bold;
  color: #fff;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.add-to-cart:hover, .like:hover {
  background: #b36800;
  color: #fff;
}

.not-available {
  text-align: center;
  line-height: 2em;
}

.not-available:before {
  font-family: fontawesome;
  content: "\f00d";
  color: #fff;
}

.orange {
  background: #ff9f1a;
}

.green {
  background: #85ad00;
}

.blue {
  background: #0076ad;
}

.tooltip-inner {
  padding: 1.3em;
}

.price {
  font-size: 40px;
  margin: 15px 0 30px 0;
}

@-webkit-keyframes opacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(3);
    transform: scale(3);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(3);
    transform: scale(3);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
h3 {
  margin-bottom: 30px;
  color: #57A695;
  font-weight: bold;
}

body {
  background: #fff;
}

.container-site {
  display: flex;
  flex-direction: column;
}

.barra-topo {
  background: #57A695;
  min-height: 50px;
  font-size: 0.75em;
  color: #fff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  padding: 7px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .barra-topo p {
    display: none;
  }
}

.barra-mobile {
  display: none;
}
@media (max-width: 1024px) {
  .barra-mobile {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  background: -webkit-linear-gradient(#fff, #f2f2f2); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#fff, #f2f2f2); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#fff, #f2f2f2); /* For Firefox 3.6 to 15 */
  background: linear-gradient(#fff, #f2f2f2); /* Standard syntax */
  box-shadow: 3px 3px 5px #ddd;
}
@media (max-width: 768px) {
  .header {
    align-items: center;
    flex-direction: column;
  }
}

.menu-institucional {
  margin-right: 15px;
}
@media (max-width: 768px) {
  .menu-institucional {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-right: 0;
  }
  .menu-institucional li {
    width: 100%;
  }
  .menu-institucional a {
    text-align: center;
    width: 100%;
  }
}

.logo {
  margin-top: 20px;
  display: inline-block;
  padding-left: 10px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .logo {
    width: 300px;
  }
}
.logo img {
  width: 100%;
}

.centro {
  margin: 0 5px;
}
@media (max-width: 768px) {
  .centro {
    width: 98%;
  }
}

.search {
  position: relative;
}
.search input {
  padding-left: 40px;
  box-sizing: border-box;
  background: #fff url(../f506cae1c4380bd0edeb.png) no-repeat 5px 4px;
}
.search .botao-buscar {
  background: #57A695;
  color: #fff;
}
.search .autocomplete-busca {
  display: none;
  height: 250px;
  overflow-x: hidden;
  position: absolute;
  z-index: 999;
  background: #fff;
  border-bottom: 5px solid #fff;
}
.search .autocomplete-busca ul {
  list-style: none;
  margin: 0;
  padding: 10px 5px;
  box-sizing: border-box;
}
.search .autocomplete-busca li {
  margin: 8px 0;
  cursor: pointer;
}
.search .autocomplete-busca li a {
  color: #000;
  text-decoration: none;
}
.search .autocomplete-busca li img {
  margin-right: 10px;
}
.search .autocomplete-busca li:hover {
  background: #f2f2f2;
}

.direita-header {
  width: 200px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .direita-header {
    width: 98%;
    align-items: center;
  }
}
.direita-header ul {
  padding: 0;
  margin: 10px 0 0 0;
  list-style: none;
}
.direita-header img {
  float: left;
  margin: 0 7px 0 0;
}
.direita-header li {
  display: flex;
  width: 100%;
  clear: both;
  align-items: center;
  margin-bottom: 10px;
}
.direita-header p {
  font-weight: bold;
  margin: 0;
}
.direita-header span {
  font-size: 1.5625em;
  line-height: 33px;
  margin-left: 5px;
}
.direita-header .fones {
  display: flex;
  flex-direction: column;
}
.direita-header .fones img {
  width: 20px;
}
.direita-header .fones p {
  display: flex;
  line-height: 33px;
  margin: 3px 0;
  align-items: center;
}

.navbar {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: flex-end;
  }
}

.navbar-header {
  margin-top: -77px;
}

.navbar-toggle {
  border: 1px solid #57A695 !important;
}
.navbar-toggle .icon-bar {
  border: 1px solid #57A695;
}

.navbar-nav {
  padding-top: 30px;
}
.navbar-nav .ico-empresa {
  background: url(../e8f66f01887381ada6f5.png) no-repeat center;
  display: inline-block;
  width: 20px;
  height: 15px;
}
.navbar-nav .ico-login {
  background: url(../e65dff0f2dabd096e497.png) no-repeat 5px 1px;
  display: inline-block;
  width: 20px;
  height: 15px;
}
.navbar-nav .ico-chat {
  background: url(../33c934fa241003d463a9.png) no-repeat 5px 1px;
  display: inline-block;
  width: 20px;
  height: 15px;
}
.navbar-nav .ico-cesta {
  background: url(../38d7fdde200cd7595c0d.png) no-repeat 5px 1px;
  display: inline-block;
  width: 20px;
  height: 15px;
}
.navbar-nav li {
  background: #f2f2f2;
  display: block;
  margin: 2px;
  border: 1px solid #ddd;
}
.navbar-nav li a {
  padding: 5px 30px;
  box-sizing: border-box;
  color: #57A695;
  font-weight: bold;
}

.navbar-collapse {
  padding-left: 0;
}

.content-home {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1024px) {
  .content-home {
    justify-content: center;
  }
}

.esquerda {
  width: 25%;
  background: #fff;
}
@media (max-width: 1024px) {
  .esquerda {
    position: absolute;
    left: -100%;
    top: 0;
    z-index: 999;
    width: 100%;
  }
}
.esquerda .topo-menu-mobile {
  display: none;
  padding: 10px;
  box-sizing: border-box;
  background: #57A695;
  color: #fff;
}
@media (max-width: 1024px) {
  .esquerda .topo-menu-mobile {
    display: block;
  }
}
.esquerda .topo-menu-mobile a {
  color: #fff;
}
.esquerda .topo-menu-mobile h4 {
  position: relative;
}
.esquerda .topo-menu-mobile .fecha-menu {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 0;
  top: -26px;
  font-size: 50px;
  cursor: pointer;
}
.esquerda ul {
  list-style: none;
  margin: 5px 0 0 0;
  padding: 0;
}
.esquerda ul li {
  box-sizing: border-box;
  min-width: 270px;
  text-align: left;
}
.esquerda ul li:first-child {
  margin-top: 0;
}
.esquerda ul li a {
  color: #888;
  font-weight: bold;
  background: -webkit-linear-gradient(#fff, #f2f2f2); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#fff, #f2f2f2); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#fff, #f2f2f2); /* For Firefox 3.6 to 15 */
  background: linear-gradient(#fff, #f2f2f2); /* Standard syntax */
  display: block;
  padding: 7px 10px;
  border: 1px solid #ddd;
}
.esquerda ul li ul {
  border: none;
  overflow: hidden;
}
.esquerda ul li ul li {
  border: none;
  padding: 3px 10px;
  box-sizing: border-box;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.esquerda ul li ul li:last-child {
  border-bottom: 1px solid #ddd;
}
.esquerda ul li ul li a {
  background: #fff;
  padding: 3px;
  border: none;
  font-weight: 200;
}

.direita {
  display: flex;
  flex-direction: column;
  width: 73%;
}
@media (max-width: 1024px) {
  .direita {
    width: 98%;
  }
}
.direita .banner-principal {
  display: flex;
  margin-bottom: 20px;
  padding: 0;
  box-sizing: border-box;
}
.direita .banner-principal img {
  width: 100%;
}
.direita .banner-sub-principal {
  display: flex;
  padding: 0;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}
.direita .banner-sub-principal .banner {
  width: 50%;
  margin: 10px 0;
}
@media (max-width: 768px) {
  .direita .banner-sub-principal .banner {
    width: 96%;
  }
}
.direita .banner-sub-principal a {
  height: auto;
}
.direita .banner-sub-principal img {
  width: 100%;
}

.prateleira {
  margin-top: 10px;
  display: block;
}
.prateleira ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.prateleira ul li {
  min-height: 150px;
  box-sizing: border-box;
  padding: 5px;
  text-align: center;
}
.prateleira ul li a {
  padding: 5px;
  box-sizing: border-box;
  display: block;
  text-decoration: none;
}
.prateleira ul li a h4 {
  color: #57A695;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 1em;
  font-weight: bold;
  height: 35px;
}
.prateleira ul li a img {
  display: block;
  margin: 0 auto;
  background: #fff;
  border: none;
  max-width: 200px;
  height: 100%;
}
.prateleira ul li a p {
  margin-top: 5px;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 1em;
  color: #57A695;
}

.box-endereco {
  border: 1px solid #57A695;
  border-radius: 5px;
  min-height: 200px;
  position: relative;
  padding: 10px;
  box-sizing: border-box;
  width: 48%;
  margin: 1%;
}
.box-endereco h3 {
  margin: 0 0 15px 0;
}
.box-endereco span {
  width: 60px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -35px;
  margin-left: -30px;
  color: #57A695;
  text-decoration: none;
  cursor: pointer;
}

.pedido-cliente {
  border-spacing: 0 5em;
}
.pedido-cliente tbody tr {
  background: #fff;
  margin: 2px 0;
  border: 1px solid #ccc;
}

.rodape {
  background: #000;
  text-align: center;
  padding: 0;
  margin-top: 30px;
}
.rodape h4 {
  background: #57A695;
  padding: 10px;
  box-sizing: border-box;
  color: #fff;
  font-weight: bold;
  font-size: 1em;
  margin: 0;
}
.rodape p {
  color: #727376;
  text-transform: uppercase;
  font-size: 0.875em;
  box-sizing: border-box;
  padding: 10px;
}
.rodape ul {
  list-style: none;
  padding: 0;
  padding-top: 20px;
  box-sizing: border-box;
}
.rodape ul li {
  display: inline-block;
  margin: 10px;
}

.login-cliente {
  margin: 0 auto;
  float: none;
  border: 1px solid #f2f2f2;
  display: flex;
  padding: 20px 5px;
  box-sizing: border-box;
  border-radius: 8px;
}
.login-cliente h4 {
  padding-bottom: 15px;
}
.login-cliente ul {
  padding: 10px 15px;
  box-sizing: border-box;
}

.cadastro-cliente {
  margin: 0 auto;
  float: none;
  border: 1px solid #f2f2f2;
  display: flex;
  padding: 20px 5px;
  box-sizing: border-box;
  border-radius: 8px;
}

.caixa {
  margin: 2px 3px;
  background: #fff;
}

.caixa-dados {
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  padding: 10px 15px;
  box-sizing: border-box;
}
.caixa-dados h3 {
  margin: 5px 0 15px 0;
  font-size: 18px;
}

.card {
  display: flow-root;
  height: auto;
}

.centralizadiv {
  margin: 0 auto;
  float: none;
}

/*# sourceMappingURL=site-styles.css.map*/