﻿html {
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: border-box;
  scroll-margin-top: 2rem;
}
body {
  margin: 0;
  background: var(--background);
  font-family: var(--fontFamily);
  font-size: var(--fontSize);
  color: var(--foreground);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  display: block;
  margin: 0.5rem 0;
  letter-spacing: 0;
}
h1 {
  font-size: 2em;
}
h2 {
  font-size: 1.6em;
}
h3 {
  font-size: 1.4em;
}
h4 {
  font-size: 1.2em;
}
h5 {
  font-size: 1.1em;
}
@media screen and (max-width: 1080px) {
  h1 {
    font-size: 1.4em;
  }
  h2 {
    font-size: 1.3em;
  }
  h3 {
    font-size: 1.2em;
  }
  h4 {
    font-size: 1.1em;
  }
  h5 {
    font-size: 1em;
  }
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  font-weight: inherit;
  color: var(--anchor);
  text-decoration: none;
}
a:hover {
  color: var(--anchorHover);
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
iframe {
  display: block;
  max-width: 100%;
  border: none;
}
table {
  width: 100%;
}
table th,
table td {
  padding: 5px 0;
}
input,
select,
textarea {
  padding: 5px;
  background: var(--background);
  border: 1px solid var(--border);
  line-height: 30px;
  font-family: var(--fontFamily);
  font-size: var(--fontSize);
  color: var(--foreground);
}
input,
select {
  height: 40px;
}
input[type=image] {
  height: unset;
  padding: 0;
  background: none !important;
  border: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
button,
.button,
input[type=submit],
input[type=button] {
  display: inline-flex;
  align-items: center;
  padding: 0 1em;
  background: var(--callToActionBg);
  border: none;
  outline: none;
  line-height: 40px;
  font-family: var(--fontFamily);
  font-weight: 600;
  color: var(--callToActionFg);
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.3s ease-in-out;
}
button:hover,
.button:hover,
input[type=submit]:hover,
input[type=button]:hover {
  filter: brightness(1.1);
  color: var(--callToActionFg);
}
#lgpd button {
  background: var(--callToActionBg);
  color: var(--callToActionFg);
}
.hidden {
  position: absolute;
  visibility: hidden;
  z-index: -1;
}
.loadingIndicator {
  display: none;
}
.hr, hr {
  display: none;
}
.rating,
.rating-stars {
  display: flex;
  gap: 3px;
}
.rating svg,
.rating-stars svg {
  width: 1rem;
}
.rating svg path,
.rating-stars svg path {
  fill: var(--ratingStar);
}
.rating .empty-star path,
.rating .half-star path:nth-of-type(1),
.rating-stars .empty-star path,
.rating-stars .half-star path:nth-of-type(1) {
  fill: var(--border);
}
.rating-stars {
  gap: 0;
}
.icon-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-toggle:before {
  font-family: var(--font_icon);
  font-weight: 300;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
#container_header .pad,
#container_body .pad,
header .fluid-wrapper,
#main_container .fluid-wrapper {
  position: relative;
  max-width: var(--frame);
  margin: 0 auto;
}
#floating_cart_header a:before,
#quickview-texts-availability-field .item_btn_buy:before,
#nav_cart a:before,
.btn-buy:before {
  content: "\f07a";
  font-family: var(--fontIcon);
  font-weight: 300;
}
.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 0.9em;
}
.breadcrumb a {
  font-weight: 400;
}
.breadcrumb a:first-letter {
  text-transform: uppercase;
}
.breadcrumb span:before {
  content: ">";
  padding: 0 0.5rem;
}
#container_body .breadcrumb a:first-child span {
  display: none;
}
#container_body .breadcrumb a:first-child:before {
  content: "Home";
}
.paginator {
  font-size: 0.9em;
}
.paginator li {
  display: inline-block;
  margin-right: 5px;
  padding: 0 8px;
  line-height: 25px;
}
.paginator li a {
  display: block;
  font-weight: 400;
}
.paginator .paginator-index {
  width: 25px;
  padding: 0;
  text-align: center;
}
.paginator .selected,
.paginator .selected:hover {
  background: var(--callToActionBg);
  font-weight: 600;
  color: var(--callToActionFg);
}
.paginator .paginator-view-all {
  display: none;
}
.paginator .paginator-previous a:before {
  content: "\f100";
  margin-right: 5px;
  font-family: var(--fontIcon);
  font-weight: 300;
}
.paginator .paginator-next a:after {
  content: "\f101";
  margin-left: 5px;
  font-family: var(--fontIcon);
  font-weight: 300;
}
@media only screen and (max-width: 480px) {
  .paginator {
    font-size: 0.85em;
  }
  .paginator .paginator-previous a span,
  .paginator .paginator-next a span {
    display: none;
  }
}
.items_container {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: var(--edgePadding);
  margin-top: 20px;
}
.items_container .item_box {
  height: 100%;
}
.item_box {
  padding: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease-in-out;
}
.item_box:hover {
  border-color: var(--callToActionBg);
}
#product_gallery_thumbs .swiper-wrapper {
  padding-bottom: 5px;
}
#product_gallery_thumbs .swiper-slide {
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
#product_gallery_thumbs .swiper-slide:hover {
  border-color: var(--callToActionBg);
}
#product_gallery_thumbs img {
  display: block;
  transform: scale(0.9);
}
@media screen and (min-width: 641px) {
  .item_box {
    padding: 20px;
  }
}
.item_box {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 70px;
}
.item_box .item_ref,
.item_box .item_status,
.item_box .item_description,
.item_box .item_availability,
.item_box .item_save,
.item_box .item_brand,
.item_box .item_similars {
  display: none;
}
.item_box .item_img {
  order: -2;
  text-align: center;
}
.item_box .item_aggregateRating {
  order: -1;
  margin-top: 10px;
}
.item_box .item_name {
  display: block;
  margin-top: 10px;
  line-height: 1.5;
}
.item_box .item_name strong {
  font-weight: 400;
}
.item_box .item_prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-top: 5px;
}
.item_box .item_listPrice {
  order: -2;
  margin: 5px 10px 0 0;
  color: var(--priceList);
}
.item_box .item_listPrice:after {
  content: "por:";
  margin-left: 10px;
}
.item_box .item_ourPrice {
  margin-top: 5px;
  margin-right: 5px;
}
.item_box .item_ourPrice label {
  display: none;
}
.item_box .item_ourPrice span {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--priceOr);
}
.item_box .item_or {
  margin-top: 5px;
}
.item_box .item_or label {
  display: none;
}
.item_box .item_or span {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--priceOr);
}
.item_box .item_or:before {
  content: "em até ";
}
.item_box .item_prices_payment_conditions {
  order: -1;
  margin-top: 5px;
}
.item_box .item_prices_payment_conditions > * {
  margin-right: 5px;
}
.item_box .item_prices_payment_conditions .products-text-price-final-label {
  display: none;
}
.item_box .item_prices_payment_conditions .products-text-price-final {
  margin-right: 5px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--priceOur);
  opacity: 1;
}
.item_box .item_btn_info a {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background-color: var(--callToActionBg);
  border-radius: 5px;
  color: var(--callToActionFg);
}
.item_box .item_btn_info a:before {
  content: "\f07a";
  font-family: var(--fontIcon);
  font-size: 1.5em;
  font-weight: 300;
}
.item_box .item_btn_info a:after {
  content: "Comprar";
  margin-left: 10px;
}
@media screen and (max-width: 640px) {
  .item_box .item_txt,
  .item_box .item_prices {
    font-size: 0.9em;
  }
  .item_box .item_discount {
    width: 30px;
    line-height: 20px;
    font-size: 0.95em;
  }
  .item_box .product_promotion {
    line-height: 15px;
    font-size: 0.7em;
  }
}
.item_box .item_discount_label,
.item_box .item_free_shipping_restricted,
.item_box .product_promotion_description {
  display: none;
}
.item_box .item_discount {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 40px;
  background: var(--highlight1Bg);
  border-radius: 0 0 0 5px;
  text-align: center;
  color: var(--highlight1Fg);
  line-height: 25px;
  font-size: 0.9em;
  font-weight: 500;
  text-transform: uppercase;
}
.item_box .product_promotion {
  position: absolute;
  left: -2px;
  top: -1px;
  padding: 0 7px;
  background: var(--background);
  border-left: 3px solid var(--highlight1Bg);
  line-height: 20px;
  font-weight: 700;
}
.item_box .product_promotion_thumbnail,
.item_box .product_promotion_description {
  display: none;
}
.item_box .item_status_3,
.item_box .free_shipping,
.item_box .free_shipping_restricted {
  display: inline-block;
  margin: 10px 10px 0 0;
  font-weight: 600;
  text-transform: capitalize;
}
.item_box .free_shipping:after {
  content: "Frete Grátis Brasil";
}
.item_box .free_shipping_restricted:after {
  content: "Frete Grátis*";
}
.item_box .item_availability_2,
.item_box .item_availability_3 {
  display: block;
  margin-top: 10px;
  font-size: 1.1em;
  color: var(--priceList);
  text-transform: capitalize;
}
.item_box .item_availability_2 label,
.item_box .item_availability_2 a,
.item_box .item_availability_3 label,
.item_box .item_availability_3 a {
  display: none;
}
#product_tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 600;
}
#product_tags #product_promotion {
  position: relative;
  width: 100%;
  padding: 0 0 0 60px;
  font-size: var(--fontSize);
}
#product_tags #product_promotion .promotion-description {
  display: block;
  font-size: 0.85em;
  font-weight: 400;
  text-transform: none;
}
#product_tags #product_promotion img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 50px;
  max-height: 50px;
}
#product_tags #free-shipping-restricted {
  display: flex;
  padding-left: 0 !important;
}
#product_tags #free-shipping-restricted ul {
  display: flex;
}
#product_tags #free-shipping-restricted li {
  margin-left: 3px;
  padding: 0 5px;
}
.item_box .product_promotion,
.promotion-name {
  color: var(--highlight1Bg);
}
.item_box .item_status_3,
.product-status-3 {
  color: var(--highlight2Bg);
}
.item_box .free_shipping,
.item_box .free_shipping_restricted,
#product_availability_shipping,
#free-shipping-restricted li {
  color: var(--highlight3Bg);
}
#quickview-add2cart,
.btn-buy {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 5px;
  background: var(--buyActionBg);
  border-radius: 10px;
  line-height: 60px;
  font-size: 1.4em;
  font-weight: 400;
  color: var(--buyActionFg);
  text-transform: capitalize;
}
#quickview-add2cart:before,
.btn-buy:before {
  display: grid;
  place-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  font-size: 1.3em;
}
#item_added_action_to_cart {
  margin-top: 10px;
  border-radius: 5px;
  text-transform: uppercase;
}
#item_added_action_to_cart:before {
  display: none;
}
#custom_CST_products {
  position: relative;
  text-align: center;
}
#custom_CST_products .breadcrumb {
  display: inline-block;
  padding: 0 var(--edgePadding);
  background: var(--background);
  line-height: 30px;
  font-size: 1.4em;
  font-weight: 600;
}
#custom_CST_products:before {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  left: 0;
  z-index: -1;
  display: block;
  height: 1px;
  background: var(--foreground);
}
#custom_CST_products .items_container {
  text-align: left;
}
.section-title {
  position: relative;
  margin-top: 4rem;
  text-align: center;
  font-size: 1.4em;
  font-weight: 600;
}
.section-title span:first-of-type {
  line-height: 30px;
  padding: 0 var(--edgePadding);
  background: var(--background);
}
.section-title:before {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  left: 0;
  z-index: -1;
  display: block;
  height: 1px;
  background: var(--foreground);
}
.product-name {
  display: block;
  margin-top: calc(var(--edgePadding) / 2);
  font-size: var(--fontSize);
  font-weight: 400;
  font-style: oblique;
  opacity: 0.6;
}
#product_details h2 {
  font-size: 1.2em;
  margin: 2rem 0 1rem;
}
#product_details .details-title {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
#product_details .details-title:before {
  content: "\f324";
  width: 20px;
  font-family: var(--fontIcon);
  font-size: 0.9em;
  font-weight: 300;
}
#review_invitation,
#asq_invitation {
  margin: calc(var(--edgePadding) / 2) 0;
  text-align: center;
}
#container_body #frmNewsletter {
  display: none;
}
#frmNewsletter {
  margin-top: calc(var(--edgePadding) * 2);
  padding: var(--edgePadding);
  background: var(--secondaryBg);
  color: var(--secondaryFg);
}
#newsletter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: var(--moduleFrame);
  margin: 0 auto;
}
#newsletter h5 {
  font-size: 1.2em;
  font-weight: 500;
  text-align: center;
}
#newsletter ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#newsletter label {
  display: none;
}
#newsletter input {
  width: 250px;
  border: 1px solid #fff;
}
#newsletter p {
  text-align: center;
  font-size: 1.5em;
  font-weight: 600;
}
#newsletter button {
  padding: 0 10px;
  line-height: 38px;
  font-size: 0.85em;
}
#container_footer,
#shop_footer_desktop {
  position: relative;
  padding: 0 var(--edgePadding);
  background: var(--primaryBg);
  overflow: hidden;
  text-align: center;
  font-size: 0.9em;
  color: var(--primaryFg);
}
#f-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: var(--moduleFrame);
  margin: var(--edgePadding) auto;
  gap: var(--edgePadding);
  text-align: left;
}
#f-foot > div {
  flex: 1;
  min-width: 280px;
  line-height: 1.6em;
}
#f-foot > div a {
  display: block;
  font-weight: 400;
}
#f-foot #f-dir {
  text-align: center;
}
#f-redes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: var(--edgePadding);
}
#f-infos {
  max-width: var(--moduleFrame);
  margin: 0 auto;
  padding: 0 var(--edgePadding);
}
#f-infos p {
  font-size: 0.9em;
}
#f-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: var(--moduleFrame);
  margin: 0 auto;
  padding: var(--edgePadding);
  gap: var(--edgePadding);
}
#f-sec img {
  display: block;
  width: auto;
  max-height: 25px;
}
#mobile_footer,
#shop_footer_mobile {
  background: var(--primaryBg);
  text-align: center;
  font-size: 0.9em;
  color: var(--primaryFg);
}
#mobile_footer #f-atendimento,
#shop_footer_mobile #f-atendimento {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: var(--edgePadding) var(--edgePadding) 0;
  color: var(--primaryFg);
  text-align: center;
}
#mobile_footer #f-atendimento a,
#shop_footer_mobile #f-atendimento a {
  border-radius: 3px;
}
#mobile_footer #f-atendimento a.button,
#shop_footer_mobile #f-atendimento a.button {
  display: block;
  flex: 0 0 100%;
  line-height: 50px;
}
#mobile_footer #f-atendimento a:not(.button),
#shop_footer_mobile #f-atendimento a:not(.button) {
  flex: 0 0 calc(50% - 0.25rem);
  background: var(--secondaryBg);
  line-height: 30px;
  font-size: 0.9em;
  color: var(--secondaryFg);
}
#mobile_footer #f-redes,
#shop_footer_mobile #f-redes {
  margin: calc(var(--edgePadding) * 2) 0;
}
@media only screen and (max-width: 640px) {
  #frmNewsletter {
    padding: calc(var(--edgePadding) * 1.5);
  }
  #newsletter #newsletter_i0 {
    flex: 0 0 100%;
  }
  #newsletter #newsletter_i1 {
    flex: 1 0 auto;
  }
  #newsletter #newsletter_i2 {
    flex: 0 0 60px;
  }
  #newsletter input,
  #newsletter button {
    width: 100%;
  }
}
.animated {
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.module_fullscreen {
  position: relative;
  margin-bottom: var(--modulePadding);
}
.module_fullscreen > div {
  position: relative;
}
.module_fullscreen img {
  display: block;
  width: 100%;
  max-width: none;
}
.slide_txt {
  position: absolute;
  top: 3rem;
  right: 3rem;
  bottom: 3rem;
  left: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.2em;
}
.landing_module {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: var(--modulePadding) calc(var(--modulePadding) / 2);
}
.landing_module > * {
  position: relative;
  padding: calc(var(--modulePadding) / 2) !important;
}
.landing_module .module_content {
  height: 100%;
}
.landing_module .module_content_img img {
  display: block;
  margin: auto;
  transition: transform 0.3s ease;
}
.landing_module .module_content_img a {
  display: block;
  overflow: hidden;
}
.landing_module .module_content_img a:hover img {
  transform: scale(1.03);
}
.landing_module .module_content_txt {
  padding-top: calc(var(--modulePadding) / 2);
}
.landing_module .module_content_txt p {
  margin-top: 0;
  line-height: 1.75;
}
.landing_module .swiper {
  min-width: 100%;
}
.landing_module .swiper-pagination {
  position: relative;
}
.landing_module .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
}
.module_frame {
  max-width: var(--moduleFrame);
  margin-right: auto;
  margin-left: auto;
}
.module_col_1 {
  flex: 100%;
}
.module_col_2 {
  flex: 50%;
}
.module_col_3 {
  flex: 33.333%;
}
.module_col_4 {
  flex: 25%;
}
.module_col_5 {
  flex: 20%;
}
.module_col_6 {
  flex: 16.666%;
}
.module_bg {
  height: 100%;
  background: rgba(204, 204, 204, 0.15);
}
.module_bg .module_content_txt {
  padding: var(--modulePadding);
}
.side_txt {
  display: flex;
  align-items: center;
}
.side_txt .module_content_img {
  flex: 0 0 66.666%;
}
.side_txt .module_content_txt {
  flex: 0 0 33.333%;
}
.side_txt.inverted_txt .module_content_img {
  flex: 0 0 33.333%;
}
.side_txt.inverted_txt .module_content_txt {
  flex: 0 0 66.666%;
}
.side_txt.half_txt .module_content_img,
.side_txt.half_txt .module_content_txt {
  flex: 0 0 50%;
}
.side_txt .module_content_txt {
  padding: var(--modulePadding) calc(2 * var(--modulePadding));
}
.module_icon .module_content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.module_icon .module_content_img {
  flex: 0 0 50px;
  display: grid;
  place-content: center;
  height: 50px;
}
.module_icon .module_content_img img,
.module_icon .module_content_img svg {
  width: 100%;
}
.module_icon .module_content_img i {
  font-size: 2.8em;
}
.module_icon .icon_bg {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  padding: 10px;
  background: var(--callToActionBg);
}
.module_icon .icon_bg i {
  font-size: 2em;
  color: var(--callToActionFg);
}
.module_icon .icon_bg svg {
  color: var(--callToActionFg);
}
.module_icon .module_content_txt {
  padding: 0 0 0 15px;
  text-align: left;
}
.module_icon .module_content_txt p {
  margin: 0;
}
.module_icon .icon_txt_title {
  font-size: 1.2em;
  font-weight: bold;
}
.module_icon .icon_txt_subtitle {
  font-size: 0.9em;
}
.module_icon .swiper-pagination {
  bottom: calc(var(--modulePadding) - 1.5 * var(--modulePadding));
}
.h_center {
  text-align: center;
}
.h_left {
  text-align: left;
}
.h_right {
  text-align: right;
}
.v_top {
  align-self: flex-start;
}
.v_bottom {
  align-self: flex-end;
}
.v_middle {
  align-self: center;
}
@media screen and (max-width: 1080px) {
  .landing_module.module_icon {
    display: block;
    padding-right: 0;
    padding-left: 0;
  }
  .landing_module.module_icon .icon_bg {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    padding: 5px;
  }
  .landing_module.module_icon .icon_bg i {
    font-size: 2em;
  }
}
@media screen and (max-width: 810px) {
  .landing_module .sm_col_1 {
    flex: 0 0 100%;
  }
  .landing_module .sm_col_2 {
    flex: 0 0 50%;
  }
  .landing_module .sm_col_3 {
    flex: 0 0 33.333%;
  }
  .module_col_1 .side_txt .module_content_img,
  .module_col_1 .side_txt .module_content_txt {
    flex: 0 0 50%;
  }
}
@media screen and (max-width: 640px) {
  .landing_module .xs_col_1 {
    flex: 0 0 100%;
  }
  .landing_module .xs_col_2 {
    flex: 0 0 50%;
  }
  .landing_module .xs_col_3 {
    flex: 0 0 33.333%;
  }
  .module_col_1 .side_txt {
    flex-direction: column;
  }
  .module_col_1 .side_txt .module_content_img {
    order: -1;
    flex: unset;
  }
  .module_col_1 .side_txt .module_content_txt {
    flex: unset;
    text-align: center;
  }
  .module_col_1 .side_txt:not(.module_bg) .module_content_txt {
    padding-right: 0;
    padding-left: 0;
  }
}
.mosaic_module {
  display: grid;
  grid-template-rows: auto;
  margin: auto;
  padding: 0 calc(var(--modulePadding) - var(--modulePadding) / 4);
  align-items: center;
}
.mosaic_module img {
  display: block;
}
.mosaic_module .mosaic_item {
  padding: calc(var(--modulePadding) / 4);
}
.mosaic_module .mosaic_content {
  display: grid;
}
.mosaic_module .mosaic_content.mosaic_grid_2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}
.mosaic_6_6 {
  grid-template-columns: 6fr 6fr;
}
.mosaic_4_8 {
  grid-template-columns: 4fr 8fr;
}
.mosaic_8_4 {
  grid-template-columns: 8fr 4fr;
}
.mosaic_3_9 {
  grid-template-columns: 3fr 9fr;
}
.mosaic_9_3 {
  grid-template-columns: 9fr 3fr;
}
.mosaic_3_6_3 {
  grid-template-columns: 3fr 6fr 3fr;
}
.mosaic_4_4_4 {
  grid-template-columns: 4fr 4fr 4fr;
}
.module_video {
  box-sizing: content-box;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.module_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.youtube-container {
  max-width: 800px;
}
.youtube-shorts {
  max-width: 405px !important;
  overflow: hidden;
}
.youtube-shorts .youtube-player {
  padding-bottom: 178.5%;
}
.youtube-shorts .youtube-thumb {
  width: auto !important;
  max-width: none;
  left: -108.6%;
}
.custom_list {
  max-width: 100vw;
  padding: var(--edgePadding);
}
.custom_list #custom_CST_products_header_dok,
.custom_list #custom_CST_products_header_index,
.custom_list #custom_CST_products_footer_dok,
.custom_list #custom_CST_products_footer_index {
  display: none;
}
.custom_list .items_container > li {
  text-align: left;
}
.custom_list_slider {
  position: relative;
}
.custom_list_slider .items_container {
  display: flex;
}
.tns-outer {
  padding: 0 !important;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}
.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}
.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}
.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}
.tns-no-calc {
  position: relative;
  left: 0;
}
.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}
.tns-autowidth {
  display: inline-block;
}
.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.tns-complete {
  opacity: 1;
}
.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}
.tns-ovh {
  overflow: hidden;
}
.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}
.tns-transparent {
  opacity: 0;
  visibility: hidden;
}
.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}
.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}
.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}
.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}
.tns-t-ct {
  width: 2333.3333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: 2333.3333333333%;
  position: absolute;
  right: 0;
}
.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: 1.4285714%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: 1.4285714286%;
  height: 10px;
  float: left;
}
.tns-outer {
  position: relative;
  max-width: 100vw;
  text-align: center;
}
*[data-controls=prev],
*[data-controls=next] {
  position: absolute;
  top: 50%;
  z-index: 200;
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  padding: 0;
}
*[data-controls=prev] {
  left: 0;
}
*[data-controls=next] {
  right: 0;
}
.tns-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
}
.tns-nav button {
  width: 20px;
  height: 3px;
  margin: 0 5px;
  padding: 0 !important;
  background: var(--border);
}
.tns-nav .tns-nav-active {
  background-color: var(--callToActionBg);
}
.tns-nav ~ .tns-ovh {
  margin-bottom: 13px;
}
:root {
  --swiper-navigation-size: 1.5rem !important;
  --swiper-theme-color: #999 !important;
}
h1 {
  font-weight: bold;
  color: var(--tertiaryBg);
}
#home-slider {
  margin: var(--edgePadding);
}
#home-slider .swiper-button-prev,
#home-slider .swiper-button-next {
  width: 40px;
  height: 40px;
}
#home-slider .swiper-button-prev.button:after,
#home-slider .swiper-button-next.button:after {
  font-size: 1rem;
}
.module_icon {
  position: relative;
}
.module_icon .icon_bg {
  border-radius: 5px;
  font-size: initial;
}
.module_icon div:nth-of-type(1) .icon_bg {
  background: #f80;
}
.module_icon div:nth-of-type(2) .icon_bg {
  background: #693;
}
.module_icon div:nth-of-type(3) .icon_bg {
  background: #19c;
}
.module_icon div:nth-of-type(4) .icon_bg {
  background: #c33;
}
.module_icon .swiper {
  overflow: visible;
}
.module_icon .swiper-pagination {
  bottom: -20px;
}
#home-categs img {
  display: block;
  border-radius: 5px;
}
#home-highlights,
.home_list {
  margin: calc(var(--edgePadding) * 2) 0;
  padding: 0 var(--edgePadding);
}
#home-highlights .slider {
  display: flex;
  padding: 0 calc(var(--edgePadding) * 2) !important;
}
#home-highlights a {
  display: block;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
}
#home-highlights img {
  display: block;
  margin: 0 auto 10px;
}
#home-highlights .swiper-button-prev {
  left: 0;
}
#home-highlights .swiper-button-next {
  right: 0;
}
.item_box {
  border-radius: 5px;
}
.custom_list_slider .breadcrumb,
.custom_list_slider #custom_CST_products::before {
  display: none !important;
}
.custom_list_slider .tns-outer {
  padding-bottom: 20px !important;
}
h1, h2, h3, h4, h5,
a, strong, b {
  font-weight: 500;
}
input,
button,
.button {
  border-radius: 5px;
}
@media screen and (min-width: 1081px) {
  #main_container {
    position: relative;
    max-width: var(--frame);
    margin: 0 auto;
  }
}
#logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#logo img {
  display: block;
  width: auto;
  height: 100px;
}
#menu0 {
  display: none;
}
#menuU label,
#h-atendimento label,
#floating_cart_header a,
#nav_cart_header a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 80px;
  font-weight: 500;
  color: var(--primaryFg);
  cursor: pointer;
}
#menuU label:before,
#h-atendimento label:before,
#floating_cart_header a:before,
#nav_cart_header a:before {
  margin-bottom: 5px;
  font-family: var(--fontIcon);
  font-weight: 300;
  font-size: 2rem;
}
#menuU label:hover,
#h-atendimento label:hover,
#floating_cart_header a:hover,
#nav_cart_header a:hover {
  color: var(--callToActionBg);
}
#menuU ul,
#h-atendimento ul {
  position: absolute;
  left: -50px;
  z-index: 100;
  width: 200px;
  padding: 10px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 5px;
  text-transform: capitalize;
  transform: scaleY(0);
  transition: transform 0.2s ease-in-out;
  transform-origin: center top;
}
#menuU ul:before,
#h-atendimento ul:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 1px;
  height: 1px;
  margin-left: -4px;
  border-bottom: 8px solid var(--border);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
#menuU li,
#h-atendimento li {
  line-height: 40px;
  border-top: 1px solid var(--border);
}
#menuU li:nth-of-type(1),
#h-atendimento li:nth-of-type(1) {
  border: none;
}
#menuU:hover label ~ ul,
#menuU input:checked ~ ul,
#h-atendimento:hover label ~ ul,
#h-atendimento input:checked ~ ul {
  transform: scaleY(1);
}
#menuU label:before {
  content: "\f2bd";
}
#menuU label:after {
  content: "Minha conta";
}
#menuU label:hover {
  color: var(--anchorHover);
}
#menuU .nav_logout a {
  margin-left: 5px;
  font-size: 0.95em;
  font-weight: 600;
}
#floating_cart_header a,
#nav_cart_header a {
  width: 80px;
}
#floating_cart_header a:after,
#nav_cart_header a:after {
  content: "Carrinho";
}
#floating_cart_header a:hover,
#nav_cart_header a:hover {
  color: var(--buyActionBg);
}
#floating_cart_body_total_items,
#nav_cart_total_items {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 25px;
  height: 25px;
  place-content: center;
  background: var(--buyActionBg);
  border-radius: 50%;
  font-size: 0.9em;
  font-weight: 600;
  color: var(--buyActionFg);
}
#floating_cart_body_total_items label,
#nav_cart_total_items label {
  display: none;
}
#quickSearch-field,
#quicksearch-search input[type=text],
#quicksearch-container input {
  height: 60px;
  line-height: 60px;
  font-size: 1.1em;
}
#quickSearch_i2,
#quicksearch-button {
  position: absolute;
  top: 7px;
  right: 7px;
}
#h-atendimento {
  position: absolute;
  right: 240px;
}
#h-atendimento label:before {
  content: "\f54e";
}
#h-atendimento label:after {
  content: "Atendimento";
}
#h-slider {
  position: absolute;
  right: 0;
  left: 0;
  text-align: center;
}
#h-slider p {
  margin: 0;
  line-height: 40px;
  font-size: var(--fontSize);
  color: var(--tertiaryFg);
  text-transform: uppercase;
}
#h-slider .swiper-button-prev:after,
#h-slider .swiper-button-next:after {
  font-size: 0.9em;
  color: var(--tertiaryFg);
}
@media screen and (max-width: 1080px) {
  #logo img {
    height: 60px;
  }
  #menuU label,
  #h-atendimento label,
  #floating_cart_header a,
  #nav_cart_header a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondaryBg);
  }
  #menuU label:before,
  #h-atendimento label:before,
  #floating_cart_header a:before,
  #nav_cart_header a:before {
    margin: 0;
    font-size: 1.5em;
  }
  #menuU label:after,
  #h-atendimento label:after,
  #floating_cart_header a:after,
  #nav_cart_header a:after {
    display: none;
  }
  #menuU ul {
    left: auto;
    right: 0;
    margin-top: 8px;
    text-align: center;
  }
  #menuU ul::before {
    left: auto;
    right: 12px;
  }
  #h-atendimento ul {
    left: 0;
    margin-top: 8px;
    text-align: center;
  }
  #h-atendimento ul::before {
    left: 15px;
  }
  #floating_cart_header a,
  #nav_cart_header a {
    background: var(--buyActionBg);
    color: var(--buyActionFg);
  }
  #floating_cart_body_total_items,
  #nav_cart_total_items {
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: var(--background);
    border: 1px solid var(--buyActionBg);
    font-size: 0.8em;
    color: var(--buyActionBg);
  }
  #quickSearch-field,
  #quicksearch-search input[type=text],
  #quicksearch-container input {
    height: 50px;
    line-height: 50px;
  }
  #h-slider p {
    line-height: 30px;
    font-size: calc(var(--fontSize) * 0.8);
  }
  #h-slider .swiper-button-prev:after,
  #h-slider .swiper-button-next:after {
    font-size: 0.7em;
  }
}
@media screen and (max-width: 640px) {
  #logo img {
    height: 50px;
    transform-origin: top center;
    transform: scale(0.9);
  }
}
#ddm a,
.nav-lvl-0 a {
  display: block;
}
#ddm h2, #ddm h3 {
  margin: 0 !important;
  font-size: 1em;
}
.nav-lvl-0 > ul > li > a,
#ddm h2 a {
  text-transform: uppercase;
}
.nav-lvl-2 a,
#ddm h3 + ul a {
  font-weight: 400;
}
.nav-lvl-2 a:before,
#ddm h3 + ul a:before {
  content: "- ";
}
@media screen and (max-width: 1080px) {
  #banner-menu {
    display: none;
  }
  label[for=menuDD-toggle],
  label[for=nav_toggle] {
    display: grid;
    place-content: center;
    width: 40px;
    height: 40px;
    background: var(--tertiaryBg);
    border-radius: 50%;
    color: var(--tertiaryFg);
    text-align: center;
    cursor: pointer;
  }
  label[for=menuDD-toggle]:before,
  label[for=nav_toggle]:before {
    content: "\f0c9";
    font-family: var(--fontIcon);
    font-size: 1.3em;
    font-weight: 300;
  }
  #ddm,
  .nav-lvl-0 {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 3000;
    width: 85vw;
    max-width: 400px;
    min-height: 100vh;
    padding: 1.5rem;
    background: var(--background);
    text-align: left;
    overflow-y: auto;
    scrollbar-width: thin;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
  }
  #ddm li,
  .nav-lvl-0 li {
    position: relative;
    line-height: 40px;
  }
  #menuDD-toggle:checked + label:after,
  #nav_toggle:checked + label:after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.85);
  }
  #menuDD-toggle:checked ~ #ddm, #menuDD-toggle:checked ~ .nav-lvl-0,
  #nav_toggle:checked ~ #ddm,
  #nav_toggle:checked ~ .nav-lvl-0 {
    transform: translateX(0);
  }
  #ddm h2 a,
  .nav-lvl-0 > ul > li > a {
    margin: 5px -10px;
    padding-left: 10px;
    background-color: var(--secondaryBg);
    color: var(--secondaryFg);
  }
  #ddm h2 + ul {
    max-height: 400px;
    overflow-y: auto;
  }
  .nav-lvl-0 .parent > label {
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
  }
  .nav-lvl-0 .parent > label:before {
    content: "\f054";
    font-family: var(--fontIcon);
  }
  .nav-lvl-0 .parent > .wrapper {
    position: absolute;
    height: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
  }
  .nav-lvl-0 .parent > input:checked + label {
    transform: rotateZ(180deg);
  }
  .nav-lvl-0 .parent > input:checked + label:before {
    content: "\f00d";
  }
  .nav-lvl-0 .parent > input:checked ~ .wrapper {
    position: relative;
    height: auto;
    max-height: 500px;
    transform: translateX(0);
    overflow-y: auto;
  }
}
@media screen and (min-width: 1081px) {
  #menuDD,
  #shop_nav {
    position: relative;
    min-height: 60px;
    background: var(--secondaryBg);
  }
  #menuDD:after,
  #shop_nav:after {
    content: "";
    position: absolute;
    top: 0;
    right: -30vw;
    bottom: 0;
    left: -30vw;
    z-index: -1;
    background: var(--secondaryBg);
  }
  label[for=menuDD-toggle],
  label[for=nav_toggle] {
    position: relative;
    z-index: 200;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    padding: 0 var(--edgePadding);
    height: 60px;
    font-size: 1.1em;
    color: var(--secondaryFg);
    cursor: pointer;
  }
  label[for=menuDD-toggle]:before,
  label[for=nav_toggle]:before {
    content: "\f0c9";
    display: grid;
    place-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background: var(--primaryBg);
    border-radius: 50%;
    font-size: 1.3em;
    font-family: var(--fontIcon);
    font-weight: 300;
    color: var(--primaryFg);
  }
  label[for=menuDD-toggle]:after,
  label[for=nav_toggle]:after {
    content: "Departamentos";
    font-weight: 600;
  }
  .nav-lvl-0,
  #ddm {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 100000;
    padding: 5px 0;
    background: var(--background);
    border: 1px solid var(--secondaryBg);
    border-top-width: 0;
    border-bottom-width: 5px;
    transform: scaleY(0);
    transition: transform 0.3s ease-in-out;
    transform-origin: center top;
    overflow: hidden;
  }
  .nav-lvl-0 li,
  #ddm li {
    width: 300px;
    line-height: 40px;
  }
  .nav-lvl-0 a,
  #ddm a {
    padding: 0 20px;
  }
  .nav-lvl-0 > ul > li > a,
  #ddm h2 a {
    color: var(--secondaryFg);
  }
  .nav-lvl-0 > ul > li > a:hover,
  #ddm h2 a:hover {
    background: rgba(0, 0, 0, 0.05);
  }
  .nav-lvl-1 > ul,
  #ddm h2 + ul {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 300px;
    column-count: var(--navCols);
    column-gap: var(--edgePadding);
    background: var(--primaryBg);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left 0;
    transition: opacity 0.3s ease-in-out;
    padding: 10px 0;
  }
  .nav-lvl-1 > ul li,
  #ddm h2 + ul li {
    break-inside: avoid;
  }
  #shop_nav:hover .fluid-wrapper > label,
  #menuDD:hover > label {
    background: var(--secondaryBg);
    color: var(--secondaryFg);
  }
  #shop_nav:hover .fluid-wrapper > div, #shop_nav:hover .fluid-wrapper > ul,
  #menuDD:hover > div,
  #menuDD:hover > ul {
    opacity: 1;
    transform: scaleY(1);
  }
  .nav-lvl-0 li:hover .nav-lvl-1 > ul,
  .nav-lvl-0 li:hover h2 + ul,
  #ddm li:hover .nav-lvl-1 > ul,
  #ddm li:hover h2 + ul {
    opacity: 1;
    transform: scaleX(1);
  }
  .nav-lvl-1 li:hover .nav-lvl-2 > ul,
  .nav-lvl-1 li:hover h3 + ul,
  #ddm ul li:hover .nav-lvl-2 > ul,
  #ddm ul li:hover h3 + ul {
    opacity: 1;
    transform: scaleX(1);
  }
  #ddm_33 h2 + ul, #mn_33 .nav-lvl-1 > ul {
    column-count: 6;
  }
  #ddm_33 h2 + ul > li, #mn_33 .nav-lvl-1 > ul > li {
    line-height: 38px;
  }
  #ddm_21 h2 + ul, #mn_21 .nav-lvl-1 > ul,
  #ddm_45 h2 + ul, #mn_45 .nav-lvl-1 > ul {
    column-count: 2;
  }
  #ddm_13 h2 + ul, #mn_13 .nav-lvl-1 > ul,
  #ddm_32 h2 + ul, #mn_32 .nav-lvl-1 > ul,
  #ddm_42 h2 + ul, #mn_42 .nav-lvl-1 > ul,
  #ddm_44 h2 + ul, #mn_44 .nav-lvl-1 > ul {
    column-count: 3;
  }
  #banner-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    margin-top: -60px;
    padding-left: 250px;
  }
  #banner-menu > ul {
    display: flex;
    justify-content: space-around;
  }
  #prd-ddm h2, #prd-ddm h3 {
    margin: 0 !important;
    font-size: var(--fontSize);
  }
  #prd-ddm h2 a {
    display: flex;
    align-items: center;
    padding: 0 10px;
    line-height: 60px;
    font-size: 1.1em;
    font-weight: 600;
  }
  #prd-ddm h2 a:after {
    font-size: 1em !important;
  }
  #prd-ddm > li > ul {
    display: none;
    position: absolute;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: var(--edgePadding);
    background: #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  }
  #prd-ddm .ddm_lvl2 a {
    font-weight: 400;
  }
  #prd-ddm .ddm_lvl2 a:before {
    content: "- ";
  }
  #prd-ddm li.ddm_parent:hover h2 a {
    background: #ccc;
  }
  #prd-ddm li.ddm_parent:hover > ul {
    display: block;
  }
  #prd-ddm li.ddm_parent:hover li {
    line-height: 35px !important;
  }
  #dtl-ddm > li > a {
    display: flex;
    align-items: center;
    padding: 0 10px;
    line-height: 60px;
    font-size: 1.1em;
    font-weight: 600;
  }
  #dtl-ddm > li > a:after {
    font-size: 16.5px;
  }
  #dtl-ddm .nav-lvl-1 > ul {
    display: none;
    top: unset;
    bottom: unset;
    left: 0;
    z-index: 1000;
    padding: var(--edgePadding);
    opacity: 1;
    background: #fff;
    transform: none;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  }
  #dtl-ddm > li:hover > a {
    background: #ccc;
  }
  #dtl-ddm > li:hover .nav-lvl-1 > ul {
    display: block !important;
  }
  #dtl-ddm > li:hover li {
    line-height: 35px !important;
  }
}
@media screen and (min-width: 1366px) {
  #banner-menu > ul h2 a:before,
  #banner-menu > ul > li > a:before {
    display: grid;
    place-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background: var(--primaryBg);
    border-radius: 50%;
    font-size: 1.5rem;
    font-family: var(--fontIcon);
    font-weight: 300;
    color: var(--primaryFg);
    transition: all 0.2s ease-in-out;
  }
  #banner-menu > ul h2 a:hover:before,
  #banner-menu > ul > li > a:hover:before {
    background: var(--callToActionBg);
    color: var(--callToActionFg);
  }
  #banner-menu > ul #ddm_21 h2 a:before, #banner-menu > ul #mn_21 > a:before {
    content: "\f75b";
  }
  #banner-menu > ul #ddm_32 h2 a:before, #banner-menu > ul #mn_32 > a:before {
    content: "\f544";
  }
  #banner-menu > ul #ddm_33 h2 a:before, #banner-menu > ul #mn_33 > a:before {
    content: "\f005";
  }
  #banner-menu > ul #ddm_34 h2 a:before, #banner-menu > ul #mn_34 > a:before {
    content: "\f1ae";
  }
  #banner-menu > ul #ddm_42 h2 a:before, #banner-menu > ul #mn_42 > a:before {
    content: "\f02d";
  }
  #banner-menu > ul #ddm_44 h2 a:before, #banner-menu > ul #mn_44 > a:before {
    content: "\f1e3";
  }
}
#ddm_24 h2 a span, #ddm_33 h2 a span, #ddm_38 h2 a span, #ddm_42 h2 a span, #ddm_43 h2 a span, #ddm_44 h2 a span, #ddm_45 h2 a span {
  display: none;
}
#ddm_24 h2 a:after, #ddm_33 h2 a:after, #ddm_38 h2 a:after, #ddm_42 h2 a:after, #ddm_43 h2 a:after, #ddm_44 h2 a:after, #ddm_45 h2 a:after {
  font-size: var(--fontSize);
}
#mn_24 > a, #mn_33 > a, #mn_38 > a, #mn_42 > a, #mn_43 > a, #mn_44 > a, #mn_45 > a {
  display: flex;
  font-size: 0 !important;
}
#mn_24 > a:after, #mn_33 > a:after, #mn_38 > a:after, #mn_42 > a:after, #mn_43 > a:after, #mn_44 > a:after, #mn_45 > a:after {
  font-size: var(--fontSize);
}
#ddm_24 h2 a:after, #mn_24 > a:after {
  content: "Infláveis";
}
#ddm_33 h2 a:after, #mn_33 > a:after {
  content: "Marcas";
}
#ddm_38 h2 a:after, #mn_38 > a:after {
  content: "Outlet";
}
#ddm_42 h2 a:after, #mn_42 > a:after {
  content: "Escolas";
}
#ddm_43 h2 a:after, #mn_43 > a:after {
  content: "Eletrônicos";
}
#ddm_44 h2 a:after, #mn_44 > a:after {
  content: "Esporte e Lazer";
}
#ddm_45 h2 a:after, #mn_45 > a:after {
  content: "Educativos";
}
#quicksearch-container,
#quickSearch {
  position: relative;
}
#quickSearch_i0 {
  display: none;
}
.twitter-typeahead {
  display: block;
  width: 100%;
}
#quickSearch-field,
#quicksearch-search input[type=text] {
  width: 100%;
  padding: 0 10px;
  outline: none;
  vertical-align: middle;
  box-shadow: none;
}
.tt-hint[type=text] {
  color: #ccc;
}
.tt-dropdown-menu {
  z-index: 2000;
  width: 100%;
  margin-top: -1px;
  padding: 15px;
  background: var(--background);
  border: 1px solid var(--border);
}
.tt-dropdown-menu h3 {
  display: none;
}
.tt-dropdown-menu a,
.tt-dropdown-menu .tt-dropdown-menu label {
  display: block;
  font-weight: normal;
  cursor: pointer;
}
.tt-dataset-quicksearch-products p {
  margin: 10px 0;
}
.tt-dataset-quicksearch-products a {
  overflow: hidden;
}
.tt-dataset-quicksearch-products img {
  float: left;
  display: block;
  width: 80px;
}
.tt-dataset-quicksearch-products label {
  display: block;
  margin-left: 90px;
}
.quickSearch-product-name {
  padding-top: 5px;
}
.quickSearch_product_price {
  color: var(--priceOur);
}
.tt-dataset-quicksearch-suggestions {
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.tt-dataset-quicksearch-suggestions a {
  line-height: 2;
}
.autocompleter-choices {
  z-index: 10000 !important;
}
#quicksearch-button #quickSearch-submit {
  background: var(--callToActionBg);
  border: none;
  color: var(--callToActionFg);
}
#logo {
  padding: 10px var(--edgePadding);
  background: var(--primaryBg);
  border-top: 40px solid var(--tertiaryBg);
}
#nav-account,
#menuU #mnU_2,
#quickSearch_i0,
#floating_cart h5,
#floating_cart ul,
#floating_cart_body_total_price,
#floating_cart_footer {
  display: none;
}
#menuU,
#h-atendimento,
#floating_cart {
  position: absolute;
  top: 60px;
  text-align: center;
}
#floating_cart {
  right: var(--edgePadding);
}
#quicksearch-button input {
  height: 46px;
  padding: 0 10px;
  line-height: 46px;
  font-size: 0.85em;
}
#h-slider {
  top: 0;
}
@media screen and (max-width: 1080px) {
  #logo {
    border-top-width: 30px;
    justify-content: center;
  }
  #menuU,
  #h-atendimento,
  #floating_cart,
  label[for=menuDD-toggle] {
    top: 50px;
  }
  #menuU {
    right: calc(50px + var(--edgePadding));
  }
  #frmQuickSearch,
  #quicksearch-form {
    padding: 5px var(--edgePadding);
    background-color: var(--secondaryBg);
  }
  #quicksearch-button input {
    height: 36px;
    line-height: 36px;
  }
  label[for=menuDD-toggle] {
    position: absolute;
    left: var(--edgePadding);
  }
  #h-atendimento {
    right: auto;
    left: calc(50px + var(--edgePadding));
  }
}
@media screen and (max-width: 640px) {
  #menuU,
  #h-atendimento,
  #floating_cart,
  label[for=menuDD-toggle] {
    top: 45px;
  }
}
@media screen and (min-width: 1081px) {
  #logo {
    position: relative;
  }
  #logo:after {
    content: "";
    position: absolute;
    top: -40px;
    right: -30vw;
    bottom: 0;
    left: -30vw;
    z-index: -1;
    background: var(--primaryBg);
    border-top: 40px solid var(--tertiaryBg);
  }
  #menuU {
    right: calc(100px + var(--edgePadding));
  }
  #frmQuickSearch,
  #quicksearch-form {
    position: absolute;
    top: 70px;
    left: 280px;
    right: 380px;
  }
}
#products .breadcrumb {
  display: none;
}
#creative {
  display: flex;
  flex-direction: column;
  padding: 0 var(--edgePadding);
}
#creative .breadcrumb {
  display: block;
  margin-top: var(--edgePadding);
}
#creative h1 {
  margin: var(--edgePadding) 0 0;
}
#creative img {
  order: -1;
  width: 100%;
  margin-top: var(--edgePadding);
}
#creative small {
  display: none;
}
#creative p {
  margin-bottom: 0;
  line-height: 1.75;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  #creative p {
    font-size: 0.9em;
  }
}
#products_header_index,
#products_footer_dok {
  display: none;
}
#products_header_dok,
#products_img,
#products_footer_index {
  margin-left: var(--edgePadding);
  margin-right: var(--edgePadding);
}
#products_footer_index {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 1081px) {
  #container_body {
    overflow: hidden;
  }
  #products-filters {
    float: left;
    width: 250px;
    display: none;
    padding: 15px 0;
    margin-left: var(--edgePadding);
  }
  #products-filters ~ * {
    margin-left: 290px;
  }
  #products_header_dok {
    margin-top: 15px;
    text-align: right;
  }
}
.active_filters,
label[for=products-filters-mobile-toogle] {
  display: none;
}
.solr_category > span {
  font-size: 0;
}
.solr_category label {
  display: flex;
  line-height: 20px;
  color: var(--anchor);
  cursor: pointer;
}
.solr_category label:before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 7px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 3px;
}
.solr_category label:hover {
  color: var(--callToActionBg);
}
.solr_category label i {
  margin-left: 3px;
  opacity: 0.5;
  font-size: 0.8em;
}
.solr_category input {
  display: none;
}
.solr_category input:checked + label {
  color: var(--callToActionBg);
}
.solr_category input:checked + label:before {
  background: var(--callToActionBg);
  border: 2px solid var(--callToActionBg);
  box-shadow: inset 0 0 0 3px var(--background);
}
.solr_category ul {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.solr_category li {
  padding: 5px 0;
}
#products-filters-selected li {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}
#products-filters-selected li button {
  display: grid;
  place-content: center;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  padding: 0;
  font-size: 0.9em;
}
@media screen and (max-width: 1080px) {
  label[for=products-filters-mobile-toogle] {
    display: flex;
    justify-content: center;
    width: calc(50% - var(--edgePadding) - 1px);
    margin: 15px 0 0 var(--edgePadding);
    background: var(--callToActionBg);
    line-height: 40px;
    font-size: 0;
    color: var(--callToActionFg);
    text-transform: uppercase;
    cursor: pointer;
  }
  label[for=products-filters-mobile-toogle]:before {
    content: "filtrar";
    font-size: 0.85rem;
    font-weight: 600;
  }
  #products_header_dok {
    position: relative;
    margin: -40px var(--edgePadding) 15px calc(50% + 1px);
    background: var(--callToActionBg);
    text-align: center;
    line-height: 40px;
    font-weight: 600;
    cursor: pointer;
  }
  #products_header_dok > span {
    display: none;
  }
  #products_header_dok select {
    padding: 0;
    background: none;
    border: none;
    text-align: center;
    font-size: 0.85rem;
    color: var(--callToActionFg);
    text-transform: uppercase;
    appearance: none;
  }
  #products_header_dok select option {
    color: initial;
  }
  #products-filters-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 3000;
    width: 85vw;
    max-width: 400px;
    height: 100vh;
    padding: 1rem 1rem 2rem;
    background: var(--background);
    text-align: left;
    overflow-y: auto;
    scrollbar-width: thin;
    transition: all 0.5s ease-in-out;
  }
  #products-filters-mobile-toogle:checked ~ label[for=products-filters-mobile-toogle]:after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.85);
  }
  #products-filters-mobile-toogle:checked ~ #products-filters-mobile {
    left: 0;
  }
}
@media screen and (max-width: 640px) {
  #products_header_dok {
    margin-top: -30px;
  }
  label[for=products-filters-mobile-toogle]:before,
  #products_header_dok select {
    height: 30px;
    overflow: hidden;
    font-size: 0.75rem;
  }
  label[for=products-filters-mobile-toogle],
  #products_header_dok {
    height: 30px;
    line-height: 30px;
  }
}
.solr_category {
  position: relative;
  margin-top: 15px;
}
.solr_category > span {
  display: block;
  padding-left: 15px;
  background: var(--secondaryBg);
  color: var(--secondaryFg);
  text-transform: capitalize;
}
.solr_category > span:before {
  line-height: 50px;
  font-size: 1.3rem;
}
.solr_category ul {
  padding: 15px;
}
.solr_category:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--border);
  opacity: 0.25;
}
#products-filters-selected {
  margin-top: 15px;
}
#products-filters-selected > button {
  margin-bottom: 5px;
  padding: 0;
  background: none;
  line-height: 1;
  font-size: 0.9em;
  color: var(--anchor);
  text-decoration: underline;
}
#products-filters-selected > button:hover {
  color: var(--callToActionBg);
}
#products-filters-selected li {
  margin-top: 5px;
}
@media screen and (max-width: 640px) {
  .items_container {
    grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
  }
}
#help,
#contact {
  max-width: var(--frame);
  margin: auto;
  padding: var(--edgePadding);
}
#help #creative,
#contact #creative {
  padding: 0;
}
#contact .success {
  padding: var(--edgePadding);
  border: none;
  font-size: 1.2em;
  font-weight: 600;
  color: #080;
}
#help_body {
  line-height: 2;
}
#help_body .title,
#help_body .subtitle {
  display: block;
  margin-top: 20px;
}
#help_body .title {
  font-size: 1.4em;
  font-weight: 600;
}
#help_body .subtitle {
  margin-bottom: 10px;
  border-bottom: 1px solid var(--foreground);
  font-size: 1.2em;
  font-weight: 600;
  color: var(--foreground);
}
#help_body > br {
  display: block;
  line-height: 0;
}
#help_body .button {
  margin-top: 20px;
}
#contact_body_form th {
  width: 100px;
  padding-right: 10px;
  text-align: right;
  font-weight: 600;
}
#contact_body_form input,
#contact_body_form textarea {
  width: 100%;
}
#contact_body_form textarea {
  min-height: 200px;
}
#cntRecaptcha,
#cntSubmit {
  display: inline-block;
  vertical-align: middle;
}
#cntSubmit {
  margin-left: 20px;
  line-height: 3.5em;
}
#extra_50 #extra_body {
  padding: 0 var(--edgePadding);
}
#brands-nav {
  padding: 20px 0;
}
#brands-nav ul {
  display: flex;
  flex-wrap: wrap;
}
#brands-nav a {
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  margin: 5px 5px 5px 0;
}
.brands-list {
  position: relative;
  min-height: 100px;
  padding: 20px 0 20px 80px;
  border-top: 1px dotted var(--border);
}
.brands-list h2 {
  position: absolute;
  top: 20px;
  left: 0;
  display: grid;
  place-content: center;
  width: 50px;
  height: 50px;
  background: var(--callToActionBg);
  color: var(--callToActionFg);
}
.brands-list-items {
  column-width: 300px;
}
.brands-list-items a {
  display: block;
  line-height: 2;
  font-weight: 400;
}
.brands-list-items a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 1366px) {
  #brands-nav ul {
    flex-wrap: nowrap;
  }
  #brands-nav a {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }
  .brands-list h2 {
    font-size: 1.2em;
  }
}
.solr_category label {
  font-size: 0.95em;
}