﻿:root {
  --font_family: 'Source Sans Pro', sans-serif;
  --font_icon: 'Font Awesome 5 Pro';
  --background: #fff;
  --foreground: #000;
  --anchor: #36c;
  --anchorHover: #036;
  --primary: #bfe1ea;
  --primaryForeground: #36c;
  --secondary: #fe6;
  --secondaryForeground: #36c;
  --tertiary: #36c;
  --tertiaryForeground: #fff;
  --callToAction: #36c;
  --callToActionForeground: #fff;
  --buyAction: #393;
  --buyActionForeground: #fff;
  --priceList: #999;
  --priceOur: #090;
  --priceOr: #36c;
  --priceSave: #999;
  --highlight1: #c33;
  --highlight1Foreground: #fff;
  --highlight2: #36c;
  --highlight2Foreground: #fff;
  --highlight3: #36c;
  --highlight3Foreground: #fff;
  --border: #ddd;
  --swiper-theme-color: #999;
  --swiper-navigation-size: 22px;
}
html {
  font-size: 14px;
}
@media screen and (min-width: 480px) {
  html {
    font-size: calc(14px + 2 * ((100vw - 480px) / 920));
  }
}
@media screen and (min-width: 1400px) {
  html {
    font-size: 16px;
  }
}
body {
  background: var(--background);
  text-align: center;
  font-family: var(--font_family);
  font-size: 1rem;
  color: var(--foreground);
  scroll-behavior: smooth;
}
body * {
  scroll-margin-top: 2rem;
}
h1,
h2,
h3,
h4,
h5 {
  display: block;
  margin: 0.5rem 0;
  font-weight: 600;
}
h1 {
  font-size: 1.6em;
  font-weight: 400;
}
h2 {
  font-size: 1.4em;
}
h3 {
  font-size: 1.2em;
}
h4 {
  font-size: 1.1em;
}
@media only screen and (min-width: 481px) {
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.6em;
  }
  h3 {
    font-size: 1.4em;
  }
  h4 {
    font-size: 1.2em;
  }
}
a {
  font-weight: 600;
  color: var(--anchor);
  text-decoration: none;
}
a:hover {
  color: var(--anchorHover);
}
b,
strong {
  font-weight: 600;
}
table {
  width: 100%;
}
td {
  padding: 2px;
}
input,
select {
  height: 40px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  line-height: 40px;
  font-size: 16px;
  color: #000;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
button,
.button {
  display: inline-block;
  padding: 0 1rem;
  background: var(--callToAction);
  border: none;
  outline: none;
  border-radius: 3px;
  line-height: 40px;
  font-size: 1em;
  font-weight: 400;
  color: var(--callToActionForeground);
  cursor: pointer;
  -webkit-appearance: none;
  transition: all 0.3s ease-in-out;
}
button:hover,
.button:hover {
  filter: brightness(1.2);
  color: var(--callToActionForeground);
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.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;
}
@media only screen and (max-width: 1080px) {
  #shop_nav label[for="nav_toggle"]:before {
    content: '\F0C9';
    font-family: var(--font_icon);
  }
  #shop_nav .nav-lvl-0 {
    position: fixed;
    top: 0;
    right: 50px;
    bottom: 0;
    left: 0;
    z-index: 100000;
    padding: 1rem 2rem;
    background: #fff;
    text-align: left;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }
  #shop_nav .nav-lvl-0 li {
    position: relative;
    line-height: 40px;
  }
  #shop_nav .nav-lvl-0 > ul > li {
    border-top: 1px solid var(--border);
  }
  #shop_nav .nav-lvl-2 a {
    font-weight: 400;
  }
  #shop_nav .parent label {
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
  }
  #shop_nav .parent label:before {
    content: '\F054';
    font-family: var(--font_icon);
  }
  #shop_nav .parent input ~ .wrapper {
    height: 0;
    overflow: hidden;
  }
  #shop_nav .parent input:checked ~ label {
    transform: rotateZ(180deg);
  }
  #shop_nav .parent input:checked ~ label:before {
    content: '\F00D';
  }
  #shop_nav .parent input:checked ~ .nav-lvl-1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: rgba(0,0,0,0.03);
  }
  #shop_nav .parent input:checked ~ .wrapper {
    height: auto;
  }
  #shop_nav .parent input:checked ~ .wrapper li {
    padding-left: 1.5rem;
  }
  #shop_nav #nav_toggle:checked ~ label[for="nav_toggle"]:after {
    content: '\F00D';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2100;
    width: auto;
    height: 100%;
    padding: 5px 15px;
    background: rgba(0,0,0,0.8);
    text-align: right;
    font-family: var(--font_icon);
    font-size: 1.2em;
    color: rgba(255,255,255,0.75);
  }
  #shop_nav #nav_toggle:checked ~ .nav-lvl-0 {
    transform: translateX(0);
  }
}
@media only screen and (min-width: 1081px) {
  #shop_nav {
    position: relative;
    padding: 0 20px;
    font-size: 0.85em;
  }
  #shop_nav .fluid-wrapper {
    width: 100%;
    margin: 0 auto;
  }
  #shop_nav .icon-toggle {
    display: none;
  }
  #shop_nav a {
    display: block;
  }
  #shop_nav .nav-lvl-0 > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #shop_nav .nav-lvl-0 > ul > li > a {
    padding: 0 0.75rem;
    line-height: 60px;
  }
  #shop_nav .nav-lvl-1 {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 0.5rem 1rem 1rem;
    background: var(--background);
    border-right: 1px solid var(--border);
    border-bottom: 3px solid var(--secondary);
    border-left: 1px solid var(--border);
    transform-origin: top center;
    transform: scaleY(0);
    transition: all 0.3s ease-in-out;
  }
  #shop_nav .nav-lvl-1 > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #shop_nav .nav-lvl-1 > ul > li {
    width: 220px;
    margin: 0 15px;
    text-align: left;
    break-inside: avoid;
  }
  #shop_nav .nav-lvl-1 > ul > li > a {
    margin-top: 0.5rem;
    line-height: 2em;
    text-transform: uppercase;
  }
  #shop_nav .nav-lvl-2 a {
    line-height: 2em;
    font-weight: normal;
  }
  #shop_nav .parent:hover > .wrapper {
    transform: scaleY(1);
  }
}
@media only screen and (min-width: 1025px) {
  #shop_nav .parent {
    position: relative;
  }
  #shop_nav .nav-lvl-0 > ul .align-right {
    left: auto;
    right: 0;
  }
  #shop_nav .nav-lvl-1 {
    right: auto;
    padding-top: 1rem;
    border-right: 1px solid var(--border);
    border-left: 1px solid var(--border);
  }
  #shop_nav .nav-lvl-1 > ul {
    display: block;
  }
}
.fluid-wrapper {
  max-width: 1400px !important;
}
header {
  background: var(--primary);
  color: var(--primaryForeground);
}
header .fluid-wrapper {
  position: relative;
}
#logo img {
  display: block;
}
.nav-logout {
  margin-left: 5px;
  font-size: 0.85em;
}
#quicksearch-container {
  position: relative;
}
#quicksearch-container input {
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: 1px solid var(--primaryForeground);
  outline: none;
  box-shadow: none;
  line-height: 50px;
  font-size: 1.1em;
}
#quicksearch-button {
  position: absolute;
  top: 7px;
  right: 7px;
  padding: 0 15px;
  line-height: 36px;
}
.autoComplete_wrapper h3 {
  color: #000;
}
.autoComplete_wrapper > ul {
  margin-top: 10px;
  background: #f5f5f5;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transform: scaleY(1);
}
.autoComplete_wrapper .product_suggestion {
  padding: 5px 10px;
  border-bottom: 1px solid var(--border);
}
.autoComplete_wrapper .product_suggestion + .term_suggestion {
  margin-top: 1rem;
}
.autoComplete_wrapper .product_suggestion a {
  display: flex;
  align-items: center;
}
.autoComplete_wrapper .product_suggestion img {
  flex: 0 0 70px;
  width: 100%;
  margin-right: 15px;
}
.autoComplete_wrapper .quickSearch_product_price {
  display: block;
  color: var(--priceOur);
}
.autoComplete_wrapper .term_suggestion p {
  margin: 0;
}
@media screen and (max-width: 1080px) {
  header {
    padding: 10px 1.5rem;
  }
  #logo {
    margin: 0 0 10px 0;
    padding-top: 5px;
  }
  #logo a:before {
    content: url("https://www.pontocheio.com.br/octopus/design/images/86/logo_mobile.png");
  }
  #logo img {
    display: none;
  }
  #menu0 {
    display: none;
  }
  #menuU {
    position: absolute;
    top: 5px;
    right: 50px;
  }
  #menuU label[for="mnU_toggle"] {
    width: 40px;
    line-height: 40px;
    font-size: 1.7em;
  }
  #menuU label[for="mnU_toggle"]:before {
    content: '\F007';
  }
  #menuU input ~ ul {
    position: absolute;
    right: -50px;
    z-index: 1000;
    width: 200px;
    padding: 0;
    background: var(--secondary);
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 0.3s ease-in-out, padding 0.3s ease-in-out;
    color: var(--secondaryForeground);
  }
  #menuU a {
    line-height: 2em;
    font-weight: 400;
  }
  #menuU input:checked ~ label[for="mnU_toggle"]:before {
    content: '\F00D';
  }
  #menuU input:checked ~ ul {
    transform: scaleY(1);
    padding: 1rem;
  }
  #nav_cart {
    position: absolute;
    top: 5px;
    right: 0;
  }
  #nav_cart a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.7em;
  }
  #nav_cart a span {
    display: none;
  }
  #nav_cart_total_items {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    line-height: 18px;
    background: var(--callToAction);
    border-radius: 50%;
    font-size: 0.7em;
    font-weight: 600;
    color: var(--callToActionForeground);
  }
  label[for="nav_toggle"] {
    position: absolute;
    top: 15px;
    left: 1.5rem;
    width: 40px;
    background: var(--callToAction);
    border-radius: 50%;
    line-height: 40px;
    font-size: 1.2em;
    color: var(--callToActionForeground);
  }
  #ban_televendas {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  header {
    padding: 10px;
  }
  #logo {
    position: relative;
    left: 50px;
    width: 200px;
  }
  #logo a {
    display: block;
    transform: scale(0.75);
    transform-origin: left center;
  }
  #menuU {
    right: 40px;
  }
  label[for="nav_toggle"] {
    left: 10px;
  }
}
@media only screen and (min-width: 1081px) {
  header {
    padding: 0 1.5rem;
  }
  header:before {
    content: '';
    display: block;
    height: 50px;
    margin: 0 -1.5rem;
    background: var(--secondary);
    border-bottom: 1px solid var(--secondaryForeground);
  }
  header .fluid-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 10px;
  }
  #logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: -30px 0 5px;
  }
  #logo:before,
  #logo:after {
    content: url("https://www.pontocheio.com.br/octopus/design/images/86/logo_decor.png");
    transform: translateX(-5px);
  }
  #logo:before {
    transform: rotateY(180deg) translateX(-5px);
  }
  #logo img {
    width: 250px;
    margin-bottom: 15px;
  }
  #menu0,
  #menuU {
    position: absolute;
    top: -20px;
  }
  #menu0 ul,
  #menuU ul {
    display: flex;
    align-items: center;
  }
  #menu0 li,
  #menuU li {
    line-height: 50px;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: capitalize;
  }
  #menu0 {
    order: -2;
  }
  #menu0 li {
    margin-right: 10px;
  }
  #menu0 li:nth-of-type(1) {
    display: none;
  }
  #menuU {
    right: 0;
  }
  #menuU li {
    margin-left: 10px;
  }
  #nav_cart {
    position: absolute;
    top: 50px;
    right: 0;
    text-align: right;
  }
  #nav_cart a {
    align-items: flex-start;
    color: var(--primaryForeground);
  }
  #nav_cart a:before {
    margin-right: 10px;
    font-size: 2.1em;
  }
  #nav_cart a span {
    font-family: var(--font_family);
    font-weight: 600;
  }
  #nav_cart_total_items {
    position: relative;
    top: -17px;
    font-size: 0.9em;
  }
  #nav_cart_total_items:after {
    content: ' itens';
  }
  #shop_nav {
    min-height: 70px;
    background: var(--secondary);
  }
  #shop_nav .nav-lvl-0 {
    max-width: 1200px;
    padding: 5px 0;
  }
  #shop_nav .nav-lvl-0 > ul {
    flex-wrap: wrap;
  }
  #shop_nav .nav-lvl-0 > ul > li > a {
    line-height: 30px;
    text-transform: uppercase;
    padding: 0 10px;
    font-size: 0.9em;
  }
  #shop_nav .nav-lvl-0 > ul > li:hover > a {
    background: var(--tertiary);
    color: var(--tertiaryForeground);
  }
  #shop_nav .nav-lvl-1 {
    border-top: 3px;
    border-top-style: solid;
    border-color: var(--tertiary);
  }
  #shop_nav .nav-lvl-1 > ul {
    column-count: 2;
  }
  #shop_nav .nav-lvl-1 > ul > li {
    max-width: 200px;
    margin: 0;
    border-top: 1px dotted var(--tertiary);
  }
  #shop_nav .nav-lvl-1 > ul > li > a {
    font-size: 0.95em;
  }
  #shop_nav .nav-lvl-2 {
    padding-bottom: 5px;
  }
  #shop_nav .nav-lvl-2 a {
    font-size: 1em;
  }
  #shop_nav .nav-lvl-2 a:before {
    content: '- ';
  }
  #ban_televendas {
    position: absolute;
    top: 50px;
    left: 0;
    margin: 0;
    text-align: left;
    visibility: hidden;
    color: var(--primaryForeground);
  }
  #ban_televendas .tel_num {
    font-weight: 600;
  }
  #ban_televendas .tel_num i {
    font-weight: normal;
  }
  #ban_televendas .tel_hr {
    display: block;
    line-height: 2em;
    font-size: 0.85em;
  }
}
@media only screen and (min-width: 1081px) {
  #shop_nav {
    font-size: 0.95em;
  }
}
.breadcrumb {
  font-size: 0.8em;
  color: var(--anchor);
}
.breadcrumb a {
  font-weight: 400;
}
.breadcrumb a:first-child {
  text-transform: capitalize;
}
.breadcrumb-div:before {
  content: '/';
  padding: 0 10px;
}
.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(--callToAction);
  font-weight: 600;
  color: var(--callToActionForeground);
}
.paginator .paginator-view-all {
  display: none;
}
.paginator .paginator-previous a:before {
  content: '\F100';
  margin-right: 5px;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 300;
}
.paginator .paginator-next a:after {
  content: '\F101';
  margin-left: 5px;
  font-family: 'Font Awesome 5 Pro';
  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;
  }
}
#product_tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
#product_tags > div {
  margin: 0.5rem 0.5rem 0 0;
  padding: 0 10px;
  line-height: 20px;
  font-size: 0.7em;
  font-weight: 600;
  text-transform: uppercase;
}
#product_tags .product-status-1,
#product_tags .product-status-4 {
  display: none;
}
#product_tags .product-status-2 {
  background: var(--highlight1);
  color: var(--highlight1Foreground);
}
#product_tags .product-status-3 {
  background: var(--highlight2);
  color: var(--highlight2Foreground);
}
#product_tags #product_promotion {
  display: flex;
  align-items: center;
  padding: 0;
}
#product_tags #product_promotion img {
  width: auto;
  max-height: 30px;
}
#product_tags .promotion-name {
  margin: 0 5px;
}
#product_tags #product_availability_shipping {
  background: var(--highlight3);
  color: var(--highlight3Foreground);
}
#product_tags #product_availability_shipping_restricted {
  display: none;
}
#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;
  background: var(--highlight3);
  color: var(--highlight3Foreground);
}
#product_dynamics h1 {
  line-height: 1.5;
}
#product_gallery_big .swiper-container {
  max-width: 600px;
  margin: 0 auto;
}
#product_gallery_thumbs {
  margin-top: 10px;
}
#product_texts > * {
  margin-top: 10px;
}
#product_review {
  font-size: 0.9em;
}
#product_review a {
  display: flex;
}
#product_review .rating-stars {
  margin-right: 0.5rem;
}
#product_description {
  line-height: 2em;
  font-size: 0.9em;
}
#product_description > div {
  display: none;
}
#product_availability {
  margin-top: 0;
}
#product_availability> span {
  display: none;
}
#product_buy_form {
  display: flex;
  padding: 2rem 0;
}
#product_buy_form label {
  font-size: 0.85em;
}
#product_buy_form select {
  display: block;
  width: 80px;
  margin-top: 5px;
}
#product_buy_form button {
  margin-left: 1rem;
}
#product_extra_grid_link {
  padding: 1rem 0;
}
#product_extra_grid_link a,
#product_extra_grid_link button {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 50px;
}
#product_internal_links > a {
  display: flex;
  line-height: 2em;
  font-size: 0.8em;
  font-weight: 400;
}
#product_internal_links > a:before {
  width: 25px;
  font-family: var(--font_icon);
  font-size: 1.1em;
}
#product_internal_links #wishlist_link:before {
  content: '\F004';
}
#product_internal_links #shippingSimulator_link:before {
  content: '\F0D1';
}
#product_internal_links #review_link:before {
  content: '\F005';
}
#product_internal_links #asq_link:before {
  content: '\F059';
}
#product_internal_links #foundCheaper_link:before {
  content: '\F4D3';
}
.product-extra-grid #product_selects,
.product-extra-grid #product_availability {
  display: none;
}
#product_details h2,
.details-content {
  text-align: left;
}
.items_container {
  display: flex;
  max-width: 100%;
  overflow-x: auto;
}
.items_container li {
  flex: 0 0 45%;
  margin: 1rem 0;
  padding: 1rem;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  main {
    padding: 15px;
  }
  #product_gallery_thumbs {
    display: none;
  }
  #product_tags,
  #product_review a,
  .price-exception,
  #product_buy_form,
  #product_internal_links a {
    justify-content: center;
  }
}
@media only screen and (min-width: 481px) {
  main {
    padding: 20px;
  }
  main .fluid-wrapper {
    max-width: 1600px;
    margin: 0 auto;
  }
  #product_description > div {
    display: block;
  }
}
@media only screen and (min-width: 801px) {
  .items_container {
    flex-wrap: wrap;
  }
  .items_container li {
    flex: 0 0 auto;
    width: 33.333%;
  }
}
@media only screen and (min-width: 1025px) {
  #product_dynamics > .fluid-wrapper {
    display: grid;
    grid-template-columns: 50% auto;
    grid-template-rows: 1rem 2.5rem auto;
    grid-template-areas: "breadcrumb breadcrumb" "gallery h1" "gallery texts" "together together";
    grid-gap: 1rem;
    text-align: left;
  }
  .breadcrumb {
    grid-area: breadcrumb;
  }
  #product_dynamics h1 {
    grid-area: h1;
    margin: 0;
    font-size: 1.5em;
  }
  #product_gallery {
    grid-area: gallery;
    padding-right: 1rem;
  }
  #product_texts {
    grid-area: texts;
  }
  #product_buy_together {
    grid-area: together;
  }
  #product_gallery_big .swiper-pagination {
    display: none;
  }
  #product_tags {
    margin-top: 0;
  }
  .items_container li {
    width: 25%;
  }
}
@media only screen and (min-width: 1401px) {
  #product_dynamics > .fluid-wrapper {
    grid-template-columns: 600px auto;
  }
  .items_container li {
    width: 20%;
  }
}
#product_prices {
  position: relative;
  padding: 1.5rem;
  background: #f5f5f5;
  border: 1px solid var(--border);
}
#product_prices .label {
  margin-right: 5px;
}
.product-price-list {
  margin: 25px 0 10px;
  color: var(--priceList);
  text-transform: capitalize;
}
.product-price-list acronym {
  display: none;
}
.product-price-our {
  color: var(--priceOur);
}
.product-price-our .value {
  font-weight: 600;
  font-size: 2em;
}
.product-price-save,
.product-price-discount {
  position: absolute;
  top: 0;
  line-height: 30px;
}
.product-price-save {
  left: 40px;
  right: 0;
  padding-left: 10px;
  background: rgba(0,0,0,0.05);
  color: var(--priceSave);
  font-size: 0.9em;
  text-transform: capitalize;
}
.product-price-discount {
  left: 0;
  width: 40px;
  text-align: center;
  background: var(--highlight1);
  font-size: 0.8em;
  font-weight: 600;
  color: var(--highlight1Foreground);
}
.product-price-discount .label {
  display: none;
}
.product-price-discount:before {
  content: '-';
}
.product-price-or {
  margin-top: 10px;
  color: var(--priceOur);
}
.product-price-or .value {
  font-size: 1.1em;
  font-weight: 600;
}
.price-exception {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
  color: var(--priceOr);
}
.price-exception .label {
  padding-bottom: 5px;
}
.price-exception .value {
  margin-right: 5px;
  font-size: 2em;
}
.price-exception .value:after {
  content: ' \E0   vista';
  font-size: 0.7em;
  font-weight: 400;
}
.price-exception .payment {
  flex: 0 0 100%;
  margin-top: 10px;
  font-size: 0.95em;
  color: var(--foreground);
  opacity: 0.75;
}
.price-exception .payment:before {
  content: 'V\E1lido para ';
}
.price-exception .percent {
  padding-bottom: 5px;
  color: var(--foreground);
  opacity: 0.75;
}
.price-exception .percent:before {
  content: '(';
}
.price-exception .percent:after {
  content: ')';
}
#product_selects,
#inStockNotification {
  position: relative;
  margin-top: -1px;
  background: #f0f0f0;
  border: 1px solid var(--border);
}
#product_selects {
  padding: 1.5rem;
}
#product_selects .product-select + .product-select {
  margin-top: 1rem;
}
#product_selects h2 {
  margin: 0 0 5px;
  font-size: 1em;
  font-weight: 600;
}
#product_selects select {
  width: 100%;
}
#inStockNotification {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  text-align: center;
}
#inStockNotification fieldset {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 0.95em;
}
#inStockNotification legend {
  width: 100%;
  background: rgba(0,0,0,0.1);
  line-height: 40px;
  font-weight: 600;
}
#inStockNotification p {
  padding: 0 1rem;
  line-height: 1.75em;
}
#inStockNotification table {
  padding: 0 1rem;
  text-align: left;
}
#inStockNotification table td:nth-of-type(1) {
  width: 70px;
}
#inStockNotification input,
#inStockNotification button {
  width: 100%;
}
#product_buy_together ul {
  display: flex;
  justify-content: flex-start;
  max-width: 100%;
  overflow-x: auto;
}
#product_buy_together li {
  position: relative;
  display: flex;
  flex: 0 0 230px;
  margin: 1rem 0;
  padding: 1rem 0;
}
#product_buy_together li:after {
  content: '\F055';
  order: -1;
  align-self: center;
  flex: 0 0 30px;
  margin: 0 1rem;
  font-family: var(--font_icon);
  font-size: 2em;
  opacity: 0.25;
}
#product_buy_together li:nth-of-type(1) {
  flex: 0 0 200px;
  padding: 1rem;
  background: #f5f5f5;
}
#product_buy_together li:nth-of-type(1) label {
  display: none;
}
#product_buy_together li:nth-of-type(1):after {
  display: none;
}
#product_buy_together li label {
  position: absolute;
  top: 5px;
  right: -10px;
  z-index: 100;
  width: 25px;
  height: 25px;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 3px;
  text-align: center;
  line-height: 21px;
  font-family: var(--font_icon);
  font-size: 1.1em;
  color: var(--callToAction);
  cursor: pointer;
}
#product_buy_together li a {
  opacity: 0.5;
}
#product_buy_together li img {
  display: block;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
}
#product_buy_together .product-description {
  margin: 10px 0;
  line-height: 20px;
  font-size: 0.8em;
}
#product_buy_together .product-prices {
  color: var(--priceOur);
}
#product_buy_together .product-prices .label {
  display: none;
}
#product_buy_together input:checked ~ label {
  border-color: var(--callToAction);
}
#product_buy_together input:checked ~ label:before {
  content: '\F00C';
}
#product_buy_together input:checked ~ a {
  opacity: 1;
}
#buy_together_totals {
  margin: 1rem;
}
#buy_together_price_our {
  font-weight: 600;
  color: var(--priceOur);
}
#buy_together_price_our .value {
  margin-left: 5px;
  font-size: 1.5em;
}
#buy_together_buy {
  margin-top: 20px;
}
#buy_together_buy button {
  max-width: 350px;
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  #product_buy_together li {
    flex: 0 0 170px !important;
  }
  #product_buy_together li:after {
    flex: 0 0 18px;
    margin: 0 0.5rem;
    font-size: 1.2em;
  }
}
#product_extra_grid ul {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}
#product_extra_grid li {
  position: relative;
  width: 50%;
  margin: -1px 0 0 -1px;
  padding: 15px;
  border: 1px solid var(--border);
  text-align: center;
}
#product_grid_buy_top,
#product_grid_buy_bottom {
  padding: 10px 0;
  text-align: right;
}
.grid-image {
  padding-bottom: 10px;
}
.grid-image img {
  display: block;
  margin: auto;
}
.grid_text {
  line-height: 1.5em;
  font-size: 0.8em;
  font-weight: 600;
}
.grid_availability .label {
  display: none;
}
.grid_availability label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
}
.grid_availability label:before {
  content: 'Qtd';
  margin-right: 10px;
  font-size: 0.9rem;
  opacity: 0.5;
}
.grid_availability select {
  width: 70px;
}
.grid-instocknotification:before {
  content: 'Esgotado';
  display: block;
  margin-bottom: 5px;
  color: var(--foreground);
  opacity: 0.5;
}
.grid-name {
  font-size: 1em;
}
.grid-price {
  color: var(--priceOur);
}
@media only screen and (min-width: 768px) {
  #product_extra_grid li {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1025px) {
  #product_extra_grid li {
    width: 25%;
  }
}
@media only screen and (min-width: 1201px) {
  #product_extra_grid li {
    width: 20%;
  }
}
@media only screen and (min-width: 1401px) {
  #product_extra_grid li {
    width: 16.666%;
  }
}
#product_buy_together,
#product_dynamics ~ div {
  margin: 4rem 0 0 0;
}
#product_buy_together .section-title,
#product_dynamics ~ div .section-title {
  position: relative;
  display: block;
  padding: 30px 2rem 0 0;
  border-top: 1px solid var(--tertiary);
  text-align: center;
  line-height: 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--tertiary);
}
#product_buy_together .section-title:before,
#product_dynamics ~ div .section-title:before {
  content: url("/assets/images/pontocheio/h2_decor.png");
  position: absolute;
  top: -12px;
  left: 50%;
  margin-left: -13px;
}
#product_buy_together .product-name,
#product_dynamics ~ div .product-name {
  display: block;
  padding: 0 !important;
  opacity: 0.5;
  line-height: 2em;
  font-size: 1rem;
  font-weight: 400;
}
#product_details {
  padding-bottom: 1.5rem;
  background: #f5f5f5;
}
#product_details .section-title {
  margin: 0 -1.5rem !important;
  padding: 0 1rem !important;
  background: var(--tertiary);
  line-height: 3rem !important;
  color: var(--tertiaryForeground) !important;
}
#product_details .section-title:before {
  display: none;
}
#product_details .fluid-wrapper {
  padding: 0 1.5rem;
}
#product_details .fluid-wrapper > div {
  margin-top: 2rem;
}
#product_details h2 {
  line-height: 3rem;
  font-size: 1.1em;
}
#product_details .details-title {
  display: block;
  border-bottom: 1px solid var(--foreground);
  font-weight: 600;
  text-transform: uppercase;
}
#product_details .product-name {
  margin-top: 5px;
  font-style: oblique;
}
#product_details .details-content {
  line-height: 2em;
}
#product_details .youtube-container {
  max-width: 750px;
}
#review_invitation,
#asq_invitation {
  margin: 5px 0;
  text-align: center;
}
#review_invitation a,
#asq_invitation a {
  margin: 10px 5px;
  line-height: 35px;
  font-size: 0.9em;
  font-weight: 600;
}
#review_invitation a {
  margin: 0.5rem 5px;
  line-height: 35px;
  font-size: 0.9em;
  font-weight: 600;
}
#GR_dynamic_index_top {
  display: none;
}
#GR_dynamic_index_bottom {
  padding: 30px 0;
  text-align: right;
}
.GR_dynamic_node {
  position: relative;
  padding: 10px 0;
  text-align: left;
}
.GR_dynamic_node_header div {
  display: inline-block;
  margin-right: 5px;
}
.GR_dynamic_node_header p {
  display: inline;
  margin: 0;
  line-height: 30px;
  font-size: 0.9em;
  vertical-align: middle;
}
.GR_dynamic_node_header b {
  font-size: 1.1em;
  text-transform: capitalize;
}
.GR_dynamic_node_header img {
  margin-right: 10px;
}
.GR_dynamic_node_header_author > span:first-child {
  display: none;
}
.GR_dynamic_node_header_author b {
  margin-right: 5px;
}
.GR_dynamic_node_header_author b:before {
  content: '\F2BD';
  display: inline-block;
  margin: 0 5px 0 15px;
  font-family: 'Font Awesome 5 Pro';
  font-size: 1.25em;
  font-weight: 300;
  vertical-align: top;
}
.GR_dynamic_node_header_status {
  position: absolute;
  right: 255px;
  bottom: 15px;
  margin: 0;
  color: #666;
}
.GR_dynamic_node_body,
.GR_dynamic_node_footer {
  position: relative;
}
.GR_dynamic_node_body:before,
.GR_dynamic_node_footer:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--border);
}
.GR_dynamic_node_body {
  margin-top: 5px;
  padding: 20px;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  line-height: 1.75em;
}
.GR_dynamic_node_body:before {
  opacity: 0.15;
}
.GR_dynamic_node_footer {
  padding-right: 10px;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 5px 5px;
  text-align: right;
  height: 40px;
}
.GR_dynamic_node_footer:before {
  opacity: 0.3;
}
.GR_dynamic_node_footer span {
  display: inline-block;
  line-height: 39px;
  font-size: 0.9em;
  color: #666;
  vertical-align: middle;
}
.GR_dynamic_node_footer a {
  margin-left: 10px;
  font-weight: 400;
  opacity: 0.5;
}
.GR_dynamic_node_footer a svg {
  width: 18px;
}
.GR_dynamic_node_footer .vote-no {
  position: relative;
  top: 5px;
}
@media only screen and (max-width: 640px) {
  .GR_dynamic_node_header_status {
    left: 0;
    right: 0;
    text-align: center;
  }
  .GR_dynamic_node_footer {
    height: 70px;
    text-align: center;
  }
}
@media only screen and (min-width: 801px) {
  .GR_dynamic_node {
    font-size: 0.9em;
  }
}
#asq_invitation a {
  margin: 10px 5px;
  line-height: 35px;
  font-size: 0.9em;
  font-weight: 600;
}
#ASQ_dynamic_index_top {
  display: none;
}
#ASQ_dynamic_index_bottom {
  padding: 30px 0;
  text-align: right;
}
.ASQ_dynamic_node {
  position: relative;
  margin-top: 10px;
  padding: 1px 20px 20px;
  border: 1px solid var(--border);
  text-align: left;
  line-height: 1.75em;
}
.ASQ_dynamic_node:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--border);
  opacity: 0.15;
}
.ASQ_dynamic_node_answer {
  position: relative;
  margin-left: 5%;
  padding: 1px 20px;
  border-left: 3px solid var(--border);
}
.ASQ_dynamic_node_answer:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--border);
  opacity: 0.3;
}
.ASQ_dynamic_node_question_signature,
.ASQ_dynamic_node_answer_signature {
  margin-top: 0;
  font-size: 0.9em;
  opacity: 0.5;
}
.ASQ_dynamic_node_question_signature b,
.ASQ_dynamic_node_answer_signature b {
  font-size: 1.1em;
}
.ASQ_dynamic_node_question_content,
.ASQ_dynamic_node_answer_content {
  margin-bottom: 10px;
}
@media only screen and (min-width: 801px) {
  .ASQ_dynamic_node {
    font-size: 0.9em;
  }
}
.btn-buy {
  position: relative;
  margin-bottom: 25px !important;
  background-color: var(--buyAction);
  border-bottom: 5px solid rgba(255,255,255,0.25);
  line-height: 60px;
  font-size: 1.5em;
  font-weight: 400;
  color: var(--buyActionForeground);
  text-transform: capitalize;
}
.btn-buy:before {
  display: inline-block;
  width: 30px;
  margin-right: 1rem;
}
#main_container .btn-buy:after {
  content: 'Compra 100% Segura';
  position: absolute;
  bottom: -30px;
  right: 5px;
  line-height: 25px;
  font-size: 0.8rem;
  color: var(--buyAction);
  text-transform: uppercase;
}
#item_added_actions button:nth-of-type(1) {
  margin-bottom: 10px;
  background: var(--callToAction);
  line-height: 50px;
  color: var(--callToActionForeground);
}
#item_added_actions .btn-buy:not(.btn-loading) {
  font-size: 1.3em !important;
  text-transform: none;
}
#item_added_actions .btn-buy:not(.btn-loading):before {
  display: none;
}
#nav_cart a:before,
.btn-buy:before {
  content: '\F291';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 300;
}
.item_box {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.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;
}
.item_box .item_img img {
  display: block;
  width: 100%;
}
.item_box .item_txt {
  text-align: left;
}
.item_box .item_name {
  display: block;
  margin-top: 10px;
  line-height: 1.8em;
}
.item_box .item_name strong {
  font-weight: 400;
}
.item_box .item_listPrice {
  display: inline-block;
  margin: 10px 10px 0 0;
  font-size: 0.85em;
  color: var(--priceList);
}
.item_box .item_ourPrice {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--priceOur);
}
.item_box .item_ourPrice label {
  font-size: 0.75em;
  font-weight: 400;
}
.item_box .item_or {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--priceOr);
}
.item_box .item_or label {
  font-size: 0.9em;
  font-weight: 400;
}
.item_box .item_or:after {
  content: ' sem juros';
  font-size: 0.9em;
  font-weight: 400;
}
.item_box .item_prices_payment_conditions {
  margin-top: 10px;
}
.item_box .item_prices_payment_conditions span {
  padding-right: 4px;
  font-size: 0.9em;
  opacity: 0.5;
}
.item_box .item_prices_payment_conditions .products-text-price-final {
  font-size: 1em;
  font-weight: 600;
  color: var(--priceOr);
  opacity: 1;
}
.item_box .item_availability_2 {
  display: block;
  margin-top: 10px;
  line-height: 1.5em;
  font-size: 0.9em;
  text-transform: capitalize;
}
.item_box .item_availability_2 label {
  display: none;
}
.item_box .item_availability_2 a {
  display: block;
  margin-top: 5px;
  font-weight: 400;
}
.item_box .item_aggregateRating {
  order: -1;
  margin-top: 10px;
  text-align: left;
}
@media only screen and (max-width: 480px) {
  .item_box {
    font-size: 0.85em;
  }
  .item_box .item_name {
    margin-top: 5px;
    line-height: 1.6em;
  }
}
#frmNewsletter {
  background: var(--primary);
  color: var(--primaryForeground);
  overflow: hidden;
}
#newsletter {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
#newsletter h5 {
  line-height: 20px;
  font-size: 1rem;
  font-weight: 400;
}
#newsletter ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
}
#newsletter li {
  margin: 5px;
}
#newsletter #newsletter_i2 {
  text-align: right;
}
#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;
}
#f-infos {
  margin: 1.5rem;
  line-height: 1.75em;
  font-size: 0.9em;
  opacity: 0.5;
}
#f-sec {
  display: flex;
  padding: 0.5rem;
}
#f-sec > * {
  margin: 0 1rem;
}
#f-sec img {
  display: block;
}
#shop_footer_mobile {
  background: #f5f5f5;
}
#shop_footer_mobile #f-atendimento {
  display: flex;
  flex-wrap: wrap;
  padding: 1.5rem;
  color: var(--primaryForeground);
}
#shop_footer_mobile #f-atendimento p {
  flex: 0 0 98%;
  margin: 0 1% 1%;
}
#shop_footer_mobile #f-atendimento p a {
  display: block;
  padding: 1rem 0;
  background: var(--callToAction);
  color: var(--callToActionForeground);
}
#shop_footer_mobile #f-atendimento > a {
  position: relative;
  flex: 1 0 31%;
  margin: 1%;
  line-height: 30px;
  font-size: 0.7em;
  color: inherit;
  text-transform: uppercase;
}
#shop_footer_mobile #f-atendimento > a:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--primaryForeground);
  opacity: 0.2;
}
#shop_footer_mobile #f-redes {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
}
#shop_footer_mobile #f-redes > span {
  margin-right: 5px;
}
#shop_footer_mobile #f-redes a {
  display: inline-block;
  width: 40px;
  margin: 0 5px;
  background: var(--tertiary);
  border-radius: 50%;
  line-height: 40px;
  font-size: 1.3em;
  font-weight: 300;
  color: var(--tertiaryForeground);
  vertical-align: middle;
}
#shop_footer_mobile #f-redes a:hover {
  filter: brightness(1.2);
}
#shop_footer_mobile #f-sec {
  justify-content: space-between;
  background: var(--tertiary);
}
#shop_footer_mobile #f-sec > * {
  max-width: 30%;
}
#goto_top {
  position: fixed;
  bottom: 20px;
  right: 10px;
  display: none;
}
#goto_top i {
  font-size: 3em;
  color: rgba(0,0,0,0.25);
}
#shop_footer_desktop {
  padding: 1.5rem;
}
#shop_footer_desktop .fluid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#shop_footer_desktop a {
  display: block;
}
#shop_footer_desktop #f-menu {
  display: flex;
  flex-wrap: wrap;
  color: var(--primaryForeground);
}
#shop_footer_desktop #f-menu > div {
  flex: 1 0 auto;
  padding: 1rem;
  border-left: 1px solid var(--primary);
  text-align: left;
}
#shop_footer_desktop #f-menu > div:nth-of-type(1) {
  border-left: none;
}
#shop_footer_desktop #f-inst li {
  margin-bottom: 20px;
  font-size: 1.1em;
}
#shop_footer_desktop #f-inst li:nth-last-of-type(1) {
  margin-bottom: 0;
}
#shop_footer_desktop #f-inst span {
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
  font-weight: 400;
}
#shop_footer_desktop #f-help .f-title {
  display: block;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 15px;
}
#shop_footer_desktop #f-help ul {
  column-count: 2;
  column-gap: 1rem;
}
#shop_footer_desktop #f-help a {
  line-height: 22px;
  font-size: 0.9em;
  font-weight: 400;
}
#shop_footer_desktop #f-pay p {
  position: relative;
  font-size: 0.8em;
}
#shop_footer_desktop #f-pay p:before {
  content: '';
  position: absolute;
  top: 0;
  display: block;
  width: 200px;
  background: url("/octopus/design/images/86/footer-imgs.png") no-repeat;
}
#shop_footer_desktop #f-pay .f-cc {
  margin-top: 0;
  padding-top: 45px;
}
#shop_footer_desktop #f-pay .f-cc:before {
  height: 40px;
  background-position: 0 -10px;
}
#shop_footer_desktop #f-pay .f-vista {
  margin-bottom: 0;
  padding-top: 40px;
}
#shop_footer_desktop #f-pay .f-vista:before {
  height: 35px;
  background-position: 0 -63px;
}
#shop_footer_desktop #f-facebook iframe {
  margin-bottom: 1rem;
}
#shop_footer_desktop #f-facebook p {
  margin: 0;
}
#shop_footer_desktop #f-sec {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
#shop_footer_desktop #f-sec a {
  background: url("/octopus/design/images/86/footer-imgs.png") no-repeat;
}
#shop_footer_desktop #f-sec a span {
  display: none;
}
#shop_footer_desktop #f-sec #f-ssl {
  width: 63px;
  height: 49px;
  margin-right: 20px;
  background-position: 0 -104px;
}
#shop_footer_desktop #f-sec #f-lojcomm {
  width: 153px;
  height: 36px;
  background-position: 0 -173px;
}
@media only screen and (max-width: 1080px) {
  #shop_footer_desktop #f-menu > div {
    flex: 0 0 50%;
    border-left: none;
    border-bottom: 1px solid var(--primary);
  }
}
@media only screen and (max-width: 480px) {
  #newsletter {
    padding-top: 10px;
  }
  #newsletter li {
    flex: 0 0 100%;
  }
  #newsletter input {
    width: 100%;
  }
  #shop_footer_desktop #f-menu > div {
    flex: 0 0 100%;
    border-left: none;
    border-bottom: 1px solid var(--primary);
  }
}
#foundCheaper_link,
#shippingSimulator_link {
  display: none !important;
}
#product_dynamics .breadcrumb,
#product_dynamics h1 {
  text-align: center;
}
#product_extra_grid li {
  padding: 0;
  background: #f5f5f5;
}
#product_extra_grid .grid-image {
  padding-top: 1rem;
  background: #fff;
}
#product_extra_grid .grid-image img {
  width: 150px;
}
#product_extra_grid .grid_text {
  padding: 1rem;
}
@media screen and (max-width: 640px){
.btn-buy::after{display: none}
#product_btn_buy,
#product_grid_buy_top {position: fixed; right: 0; bottom: 0; left: 0; z-index: 2090; width: 100%; margin: 0 !important; padding: 0}
#product_grid_buy_top .btn-buy{position:relative; width: 100%; margin: 0 !important;}
#product_grid_buy_bottom{display: none}
#f-whatsapp{bottom: 80px !important;}
}
#product_texts.sold-out #product_prices{display:none}
#product_texts.sold-out #product_availability{margin-top: 10px}