.cr-autocomplete {
  position: relative;
}
.cr-autocomplete.loading:after {
  display: block;
  margin: 0 auto;
  border-radius: 100%;
  border: 2px solid var(--color-default-2);
  border-top: 2px solid var(--color-primary-3);
  width: 1rem;
  height: 1rem;
  animation: cr-spinner-spin 0.8s linear infinite;
  flex: 0 0 1rem;
  content: '';
  position: absolute;
  right: 0.5rem;
  top: 50%;
  animation-name: autocomplete-spinner-spin;
}
.cr-autocomplete:not(.loading):not(.no-right-icon):after {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  content: '';
  font-size: 18px;
  pointer-events: none;
  background-color: var(--color-default-text-5);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path d='M30.34 40a2.39 2.39 0 0 0 3.31 0l12.73-12.7a2.37 2.37 0 0 0 .69-1.66 2.34 2.34 0 0 0-.69-1.64 2.4 2.4 0 0 0-3.32 0L32 35 20.94 24a2.34 2.34 0 0 0-3.32 0 2.36 2.36 0 0 0 0 3.32z'/></svg>") no-repeat 50% 50%;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path d='M30.34 40a2.39 2.39 0 0 0 3.31 0l12.73-12.7a2.37 2.37 0 0 0 .69-1.66 2.34 2.34 0 0 0-.69-1.64 2.4 2.4 0 0 0-3.32 0L32 35 20.94 24a2.34 2.34 0 0 0-3.32 0 2.36 2.36 0 0 0 0 3.32z'/></svg>") no-repeat 50% 50%;
}
.cr-autocomplete:not(.loading):not(.no-right-icon):not(.cr-autocomplete-static):after {
  background-color: var(--color-default-text-5);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path d='M50.91 48.6l-9.61-10 .52-.69a16.3 16.3 0 1 0-13 6.49 16.18 16.18 0 0 0 8.67-2.5l.69-.44 9.68 10.06a2.17 2.17 0 0 0 3 .07 2.14 2.14 0 0 0 .05-2.99zm-22.1-8.42a12.07 12.07 0 1 1 12.06-12.07 12.09 12.09 0 0 1-12.06 12.07z'/></svg>") no-repeat 50% 50%;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path d='M50.91 48.6l-9.61-10 .52-.69a16.3 16.3 0 1 0-13 6.49 16.18 16.18 0 0 0 8.67-2.5l.69-.44 9.68 10.06a2.17 2.17 0 0 0 3 .07 2.14 2.14 0 0 0 .05-2.99zm-22.1-8.42a12.07 12.07 0 1 1 12.06-12.07 12.09 12.09 0 0 1-12.06 12.07z'/></svg>") no-repeat 50% 50%;
}
.cr-autocomplete select {
  display: none;
}
.cr-autocomplete input {
  width: 100%;
  z-index: 1;
  padding-right: 2rem;
  padding-left: 0.5rem;
}
.cr-autocomplete .cr-autocomplete-input-wrapper {
  position: relative;
}
.cr-autocomplete input.input-sm + ul {
  top: 2.3rem;
}
@media (min-width: 768px) {
  .cr-autocomplete input.input-sm + ul {
    top: 1.8rem;
  }
}
.cr-autocomplete input.input-lg + ul {
  top: 3.3rem;
}
@media (min-width: 768px) {
  .cr-autocomplete input.input-lg + ul {
    top: 2.8rem;
  }
}
.cr-autocomplete input.input-xl + ul {
  top: 3.5rem;
}
@media (min-width: 768px) {
  .cr-autocomplete input.input-xl + ul {
    top: 3rem;
  }
}
@keyframes autocomplete-spinner-spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}
.alert-danger {
  padding: 1rem;
  border: none;
  border-radius: 0.2rem;
  background-color: var(--color-default-1);
  background-color: var(--color-danger-1);
  color: var(--color-danger-5);
}
.alert-danger a:not(.btn) {
  text-decoration: underline;
}
.alert-default {
  padding: 1rem;
  border: none;
  border-radius: 0.2rem;
  background-color: var(--color-default-1);
  color: var(--color-default-text-5);
}
.alert-default a:not(.btn) {
  text-decoration: underline;
}
.alert-primary {
  padding: 1rem;
  border: none;
  border-radius: 0.2rem;
  background-color: var(--color-default-1);
  background-color: var(--color-primary-1);
  color: var(--color-primary-5);
}
.alert-primary a:not(.btn) {
  text-decoration: underline;
}
.alert-info {
  padding: 1rem;
  border: none;
  border-radius: 0.2rem;
  background-color: var(--color-default-1);
  background-color: var(--color-info-1);
  color: var(--color-info-5);
}
.alert-info a:not(.btn) {
  text-decoration: underline;
}
.alert-success {
  padding: 1rem;
  border: none;
  border-radius: 0.2rem;
  background-color: var(--color-default-1);
  background-color: var(--color-success-1);
  color: var(--color-success-5);
}
.alert-success a:not(.btn) {
  text-decoration: underline;
}
.alert-warning {
  padding: 1rem;
  border: none;
  border-radius: 0.2rem;
  background-color: var(--color-default-1);
  background-color: var(--color-warning-1);
  color: var(--color-warning-5);
}
.alert-warning a:not(.btn) {
  text-decoration: underline;
}
table {
  width: 100%;
  border-collapse: collapse;
}
table td,
table th {
  padding: 0.5rem;
  text-align: left;
}
table thead {
  background-color: var(--color-default-1);
}
table th,
table tfoot td {
  color: var(--color-default-text-4);
  font-weight: var(--bold-weight);
}
table th {
  border-bottom: solid 2px var(--color-default-4);
}
table td {
  border-bottom: solid 1px var(--color-default-2);
  vertical-align: top;
}
table tbody tr {
  background-color: var(--color-table-row-1);
}
@media (hover: hover) and (pointer: fine) {
  table.table-hover tbody tr:hover {
    background-color: var(--color-table-row-hover);
  }
}
table.align-baseline td,
table td.align-baseline {
  vertical-align: baseline;
}
table.align-top td,
table td.align-top {
  vertical-align: top;
}
table.align-middle td,
table td.align-middle {
  vertical-align: middle;
}
table.align-bottom td,
table td.align-bottom {
  vertical-align: bottom;
}
table.table-dotted tbody tr {
  background-color: transparent;
}
table.table-dotted th,
table.table-dotted tbody tr td {
  border-bottom: none;
  position: relative;
}
table.table-dotted th:after,
table.table-dotted tbody tr td:after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, var(--color-default-4) 20%, transparent 0%);
  background-position: bottom;
  background-size: 5px 1px;
  background-repeat: repeat-x;
  height: 1px;
}
table.table-striped tfoot tr {
  background-color: var(--color-default-2);
  color: white;
}
table.table-striped tbody tr:nth-child(2n + 1) {
  background-color: var(--color-table-row-2);
}
@media (hover: hover) and (pointer: fine) {
  table.table-striped.table-hover tbody tr:nth-child(2n + 1):hover {
    background-color: var(--color-table-row-hover);
  }
}
table.expandable-table {
  width: 100%;
}
table.expandable-table > tbody > tr {
  border: 2px solid var(--color-default-2);
}
table.expandable-table > tbody > tr:nth-child(4n + 1) {
  background-color: var(--color-default-1);
}
table.expandable-table > tbody > tr:nth-child(4n + 3) {
  background-color: var(--color-default-2);
}
table.expandable-table > tbody > td {
  line-height: 2.5em;
}
table.data-table th {
  position: relative;
}
table.data-table th.has-filter {
  padding-right: 3rem !important;
}
table.data-table th .data-table-filter {
  background-color: var(--color-default-0);
  position: absolute;
  display: none;
  top: 50%;
  left: 2px;
  right: 2px;
  transform: translateY(-50%);
  border-radius: 0.2rem;
  box-shadow: none;
  padding: 0.25rem 3rem 0.25rem 0.25rem;
  z-index: 1;
}
.dark table.data-table th .data-table-filter {
  background-color: var(--color-default-2);
}
table.data-table th .data-table-filter.show {
  display: block;
}
table.data-table th .fa-filter {
  position: absolute;
  top: 50%;
  right: 0;
  width: 3rem;
  text-align: center;
  transform: translateY(-50%);
  z-index: 2;
}
table.data-table th .fa-filter.filtered {
  color: var(--color-primary-4);
}
table.data-table th .fa-filter:hover {
  color: var(--color-primary-2);
}
table.data-table thead {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
table.data-table thead tr th span.sortable {
  cursor: pointer;
}
table.data-table thead tr th span.sortable.sorted {
  color: var(--color-primary-4);
}
table.data-table thead tr th span.sortable:hover {
  color: var(--color-primary-2);
}
.image-pinch {
  position: relative;
}
.image-pinch .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
}
.image-pinch img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
.image-pinch.loading .cr-spinner {
  visibility: visible;
}
.image-pinch.loading img {
  visibility: hidden;
}
.fade-in {
  animation: fade forwards 3s;
}
.fade-out {
  animation: fade forwards reverse 3s;
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
section#product #product-price-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  min-height: 5rem;
  padding: 1rem 0 0 0;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  z-index: 9;
  transition: bottom 0.5s ease-in-out;
}
section#product #product-price-fixed .btn-xl {
  line-height: 3rem;
}
section#product #product-price-fixed.visible {
  bottom: 0;
}
section#product #product-price-fixed #product-price-promo {
  display: none;
}
section#product #product-price-fixed .h1,
section#product #product-price-fixed .product-price :first-child {
  margin-top: 0 !important;
}
section#product #product-price-fixed .product-price-installments {
  display: none;
}
section#product #product-price-fixed .product-price-warning {
  display: none;
}
section#product #product-price-fixed .btn {
  width: auto;
  margin-left: auto;
}
section#product .btn {
  border: 1px solid var(--color-default-3);
  font-weight: 400;
}
section#product #product-about {
  margin-top: 1rem;
}
@media (max-width: 991px) {
  section#product #product-about {
    margin-top: 0;
  }
}
section#product #tableModeling {
  overflow: hidden;
}
section#product #tableModeling th {
  border-bottom: 0;
}
section#product #tableModeling thead {
  background-color: transparent;
}
section#product #tableModeling thead th:not(:first-child) {
  position: relative;
}
section#product #tableModeling thead th:not(:first-child):hover::after {
  content: '';
  position: absolute;
  background-color: #201f1e17;
  left: 0;
  top: -1000px;
  height: 2000px;
  width: 100%;
  z-index: -1;
}
section#product #tableModeling tbody td:not(:first-child),
section#product #tableModeling tbody th {
  position: relative;
}
section#product #tableModeling tbody td:not(:first-child):hover::after,
section#product #tableModeling tbody th:hover::after {
  content: '';
  position: absolute;
  background-color: #201f1e17;
  left: 0;
  top: -1000px;
  height: 2000px;
  width: 100%;
  z-index: -1;
}
section#product #tableModeling tbody tr {
  background-color: transparent;
}
section#product #tableModeling tbody tr:hover {
  background-color: #201f1e17;
}
section#product #tableModeling .title {
  width: 10%;
}
section#product #product-about-collapsible:not(.opened) {
  position: relative;
  max-height: 250px;
}
section#product #product-about-collapsible:not(.opened):after {
  content: '';
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  position: absolute;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 50px);
}
@media (min-width: 576px) and (max-width: 991px) {
  section#product #product-about-collapsible:not(.opened):after {
    background: linear-gradient(0deg, var(--color-default-1) 0%, rgba(255, 255, 255, 0) 50px);
  }
}
section#product #product-campaign.d-flex {
  align-items: center;
  flex-direction: column;
}
section#product #product-campaign.d-flex i#product-campaign-badge {
  background-repeat: no-repeat;
  margin: 0 auto 1rem;
  width: 80px;
  height: 80px;
}
@media (min-width: 576px) {
  section#product #product-campaign.d-flex.d-flex {
    flex-direction: row;
  }
  section#product #product-campaign.d-flex.d-flex i#product-campaign-badge {
    margin: auto 1rem auto 0;
  }
}
section#product .hover-accordion {
  height: 30rem;
}
section#product .hover-accordion-expand-first:not(:hover) .accordion-item-wrapper:first-child {
  flex-grow: 5;
}
section#product .hover-accordion-expand-first .accordion-item-wrapper:hover {
  flex-grow: 5;
}
section#product .product-reviews-container {
  max-height: 30rem;
  overflow: auto;
  border: 2px solid var(--color-default-3);
  border-radius: 0.2rem;
  padding: 0 1rem;
  background-color: white;
}
section#product .product-review {
  display: flex;
  padding: 1rem 0;
}
section#product .product-review .icon-cr {
  margin-right: 1rem;
  margin-top: 0.5rem;
}
section#product .product-review:not(:first-child) {
  border-top: 1px solid var(--color-default-2);
}
section#product .product-review .product-review-info {
  color: var(--color-default-3);
}
section#product .product-review-reply {
  display: flex;
  padding: 1rem 0;
  margin-left: 1rem;
}
section#product .product-review-reply .icon-cr {
  margin-right: 1rem;
  margin-top: 0.5rem;
}
section#product .product-review-reply:not(:first-child) {
  border-top: 1px solid var(--color-default-2);
}
section#product .product-review-reply .product-review-info {
  color: var(--color-default-3);
}
section#product .product-review-reply:not(:first-child) {
  border-top: none;
}
section#product #product-gallery {
  align-items: stretch;
}
section#product #product-gallery > :first-child {
  width: calc(100% - 13rem);
}
section#product #product-gallery > :last-child {
  width: 13rem;
}
@media (max-width: 991px) {
  section#product .productBuyInfos {
    padding-bottom: 0;
  }
}
/* mobile */
@media (max-width: 565px) {
  /* 2 colunas */
  .product-list > * {
    flex: 0 0 50%;
  }
}
@media (min-width: 565px) and (max-width: 960px) {
  /* 3 colunas */
  .product-list > * {
    flex: 0 0 33.33%;
  }
}
/* desktop */
@media (min-width: 960px) {
  /* 5 colunas */
  .product-list > * {
    flex: 0 0 20%;
    padding-bottom: 0;
  }
}
.hover-figure {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.hover-figure figcaption {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  padding: 0.25em;
  bottom: -0.2em;
  left: 0;
  right: 0;
  text-transform: uppercase;
  text-align: center;
  color: white;
  opacity: 1;
  transition: all 0.2s ease-in-out;
  background-color: var(--color-default-5);
}
.hover-figure figcaption > * {
  margin: 0.5em 0;
}
@media (min-width: 992px) {
  .hover-figure:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    background-color: var(--color-default-4);
    transition: opacity 0.2s ease-in-out;
  }
  .hover-figure figcaption {
    opacity: 0;
  }
  :not(.hover-accordion-keep-state) .hover-figure:hover:after,
  .hover-accordion.hover-accordion-keep-state > .accordion-item-wrapper.keep-state .hover-figure:after {
    opacity: 0;
  }
  :not(.hover-accordion-keep-state) .hover-figure:hover figcaption,
  .hover-accordion.hover-accordion-keep-state > .accordion-item-wrapper.keep-state .hover-figure figcaption {
    bottom: 0;
    opacity: 0.9;
  }
}
.creator {
  display: block;
  position: relative;
  flex: 0 0 20%;
}
@media (max-width: 991px) {
  .creator {
    flex: 0 0 40%;
  }
}
.creator-line {
  width: 56px;
  height: 56px;
  align-items: center;
}
.creator-line img {
  border-radius: 50%;
}
.creator-line h2 {
  font-size: 1.2rem;
}
@media (max-width: 575px) {
  .creator-line h2 {
    font-size: 14px;
  }
}
.creator-link {
  text-decoration: underline;
  width: 25%;
  align-content: center;
  text-align: right;
}
@media (max-width: 575px) {
  .creator-link {
    font-size: 12px;
  }
}
.select-model-group {
  min-width: 250px;
  width: 70%;
}
@media (min-width: 768px) {
  .select-model-group {
    width: 50%;
  }
}
.select-model-group .select-model {
  padding: 0 10px !important;
  border: 1px solid;
}
.select-model-group .select-model option {
  background-color: var(--color-light-shade-gray);
}
.select-model-group.cr-select::after {
  background-color: #fff !important;
}
.price-mobile {
  float: left;
}
.price-old-mobile {
  padding-top: 2px;
}
.installment-mobile {
  font-size: 0.89rem;
  margin-top: 0.2rem;
  padding: 0 0 0 1.5rem;
}
.shipping-form {
  width: 80%;
}
@media (max-width: 767px) {
  .shipping-form {
    width: 100%;
  }
}
.product-shipping-table th,
.product-shipping-table td {
  text-align: left;
}
@media (max-width: 767px) {
  .product-shipping-table td:first-child {
    width: 28%;
  }
  .product-shipping-table td:last-child {
    width: 28%;
  }
}
@media (min-width: 768px) {
  .product-shipping-table td:first-child {
    width: 24%;
  }
}
.product-shipping-table th:last-child,
.product-shipping-table td:last-child {
  text-align: right;
}
.product-shipping-table label {
  margin: 0;
}
.list-size-table {
  gap: 1rem;
}
.info-size-table {
  flex-direction: column;
  gap: 1rem;
}
.list-icons {
  width: 2rem;
  height: 2rem;
  flex-basis: 2rem;
}
@media (max-width: 991px) {
  .list-icons {
    color: white;
  }
}
@media (max-width: 991px) {
  .link-size-guide {
    color: white !important;
  }
}
.slider-bullets-wrapper {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  display: flex;
  gap: 0.4vw;
  flex-flow: wrap;
}
.mobile-slider-bullet {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin-bottom: 0.25rem;
  margin-right: 0.25rem;
}
#size-table-gray {
  padding: 0 !important;
}
#size-table-gray #sizes-table-content {
  flex-direction: column;
}
@media (min-width: 992px) {
  #size-table-gray #sizes-table-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
  }
}
#size-table-gray #sizes-table-content .btn-title-sizes {
  float: left;
  font-size: 1.14em;
}
#size-table-gray #sizes-table-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 992px) {
  #size-table-gray #sizes-table-wrapper {
    align-items: flex-start;
  }
}
#size-table-gray #sizes-table-wrapper .table-size-img-background {
  background-color: #f7f7f7;
  flex-direction: column;
  padding: 1rem;
}
@media (min-width: 992px) {
  #size-table-gray #sizes-table-wrapper .table-size-img-background {
    width: 50%;
    justify-content: space-between;
  }
}
#size-table-gray #sizes-table-wrapper .table-size-img-background #img-wrapper {
  flex: 1;
  margin-bottom: 19px;
  flex-direction: column;
  justify-content: center;
}
#size-table-gray #sizes-table-wrapper .size-table {
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
}
@media (min-width: 992px) {
  #size-table-gray #sizes-table-wrapper .size-table {
    padding: 0;
  }
}
.desktop-badge {
  position: absolute;
  top: 12px;
  right: 2rem;
}
.mobile-badge {
  position: absolute;
  top: 12px;
  left: 9px;
}
.icon-cr.icon-select {
  align-self: center;
  border: 2px solid;
  z-index: 5;
  width: 24px;
  height: 24px;
  right: 8px;
  top: 8px;
  background-color: var(--color-default-3);
  color: white;
}
@media (max-width: 575px) {
  .icon-cr.icon-select {
    width: 16px;
    height: 16px;
    top: unset;
    bottom: 8px;
  }
}
.icon-cr.icon-select.selected {
  background-color: var(--color-default-5);
  color: white;
}
.link-title-size-guide {
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 575px) {
  .product-price-block {
    justify-content: space-evenly;
  }
}
@media (max-width: 991px) {
  .product-price-block {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .product-price-block {
    width: calc(50% - 0.5rem) !important;
    margin-left: 0.5rem !important;
  }
}
.color-badge-desktop {
  width: 35px;
  height: 14px;
  opacity: 0;
}
.color-badge-mobile {
  width: 14px;
  height: 14px;
  opacity: 0;
}
[data-toggle="cr-tooltip"] {
  position: relative;
}
.cr-tooltip {
  position: fixed;
  background-color: var(--color-default-5);
  padding: 0.5rem;
  border-radius: 0.2rem;
  max-width: 20rem;
  z-index: 115;
  pointer-events: none;
  margin: 0 !important;
  font-family: 'Roboto Condensed', "Trebuchet MS", Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 14px;
  color: white;
  text-transform: none;
  line-height: 1.2em;
  white-space: normal;
}
.cr-tooltip:after {
  position: absolute;
  content: '';
}
.cr-tooltip-top,
.cr-tooltip-bottom {
  transform: translateX(-50%);
}
.cr-tooltip-top:after,
.cr-tooltip-bottom:after {
  left: 50%;
  border-left: 0.5rem solid transparent;
  border-right: 0 solid transparent;
}
.cr-tooltip-top:after {
  top: 100%;
  border-bottom: 0.5rem solid var(--color-default-5);
  transform: translate(-50%, -50%) rotate(45deg);
}
.cr-tooltip-bottom:after {
  bottom: 100%;
  border-top: 0.5rem solid var(--color-default-5);
  transform: translate(-50%, 50%) rotate(-45deg);
}
.cr-tooltip-left,
.cr-tooltip-right {
  transform: translateY(-50%);
}
.cr-tooltip-left:after,
.cr-tooltip-right:after {
  top: 50%;
  border-top: 0.5rem solid transparent;
  border-bottom: 0 solid transparent;
}
.cr-tooltip-left:after {
  left: 100%;
  border-right: 0.5rem solid var(--color-default-5);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cr-tooltip-right:after {
  right: 100%;
  border-left: 0.5rem solid var(--color-default-5);
  transform: translate(50%, -50%) rotate(45deg);
}
.icon-carrier-car .icon-cr.icon-carrier-car:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg style='fill:black' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 166.74 127.02'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path class='cls-1' d='M52.74,108.72a18.3,18.3,0,1,1-36.59,0'/><path class='cls-1' d='M0,0V108.72H16.15a18.3,18.3,0,1,1,36.59,0H88.27V0Z'/><path class='cls-1' d='M152.1,108.72a18.3,18.3,0,1,1-36.6,0'/><path class='cls-1' d='M100.86,53.82v54.9H115.5a18.3,18.3,0,1,1,36.6,0h14.64V53.82Z'/><path class='cls-1' d='M100.86,20.71V54.9h33.36c0-.14,0-.28,0-.41A33.79,33.79,0,0,0,100.86,20.71Z'/></g></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg style='fill:black' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 166.74 127.02'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path class='cls-1' d='M52.74,108.72a18.3,18.3,0,1,1-36.59,0'/><path class='cls-1' d='M0,0V108.72H16.15a18.3,18.3,0,1,1,36.59,0H88.27V0Z'/><path class='cls-1' d='M152.1,108.72a18.3,18.3,0,1,1-36.6,0'/><path class='cls-1' d='M100.86,53.82v54.9H115.5a18.3,18.3,0,1,1,36.6,0h14.64V53.82Z'/><path class='cls-1' d='M100.86,20.71V54.9h33.36c0-.14,0-.28,0-.41A33.79,33.79,0,0,0,100.86,20.71Z'/></g></g></svg>");
}
.chip {
  font-family: Roboto, "Trebuchet MS", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  color: var(--color-default-text-5);
  padding: 0 0.75em 0 0.75em;
  text-align: center;
  cursor: pointer;
  transition: background-color ease-in-out 0.1s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-block;
  border-radius: 0.2rem;
  border: 2px solid var(--color-default-text-5);
  height: 2rem;
  line-height: 2rem;
}
.chip.chip-close {
  padding-right: 2.5rem;
  position: relative;
}
.chip.chip-close:before {
  content: '';
  width: 1.4em;
  height: 100%;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path d='M34.962 32.5l11.113-11.2a2.394 2.394 0 0 0 0-3.36 2.35 2.35 0 0 0-3.336 0L31.985 28.775 21.232 17.942a2.344 2.344 0 0 0-3.335 0 2.444 2.444 0 0 0 0 3.36l11.122 11.2L17.905 43.7a2.367 2.367 0 0 0 3.335 3.36L32 36.228 42.749 47.06a2.344 2.344 0 0 0 3.335 0 2.444 2.444 0 0 0 0-3.36z' fill-rule='evenodd'/></svg>");
  background-size: 100%;
  background-position-y: center;
  position: absolute;
  right: 0;
  top: 0;
}
.chip.compact {
  font-size: 0.9rem;
}
.chip.selected {
  background-color: var(--color-default-5);
  color: white;
}
@media (hover: hover) and (pointer: fine) {
  .chip:hover {
    color: white;
    background-color: var(--color-primary-4);
    text-decoration: none;
  }
  .chip:hover a {
    text-decoration: none;
  }
}
.chip:active {
  background-color: var(--color-primary-5);
}
.chip a {
  color: white;
}
#image-zoom {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 10;
}
#image-zoom #image-zoom-overlay {
  background: black;
  opacity: 0.7;
  width: 100%;
  height: 100%;
}
#image-zoom #image-zoom-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#image-zoom #image-zoom-loading > span {
  display: block;
  margin: 0 auto;
  border-radius: 100%;
  border: 2px solid white;
  border-top: 2px solid var(--color-primary-3);
  width: 3rem;
  height: 3rem;
  animation: cr-spinner-spin 0.8s linear infinite;
  flex: 0 0 3rem;
}
#image-zoom #image-zoom-previous,
#image-zoom #image-zoom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#image-zoom #image-zoom-previous .icon-cr,
#image-zoom #image-zoom-next .icon-cr {
  display: block;
  width: 3rem;
  height: 3rem;
}
#image-zoom #image-zoom-previous {
  left: 0.5rem;
}
@media (min-width: 768px) {
  #image-zoom #image-zoom-previous {
    left: 2rem;
  }
}
#image-zoom #image-zoom-next {
  right: 0.5rem;
}
@media (min-width: 768px) {
  #image-zoom #image-zoom-next {
    right: 2rem;
  }
}
#image-zoom #image-zoom-close {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
}
@media (min-width: 768px) {
  #image-zoom #image-zoom-close {
    top: 2rem;
  }
}
#image-zoom .image-zoom-item {
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}
#image-zoom .image-zoom-item img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 80vw;
  max-height: 80vh;
  transform: translate(-50%, -50%);
}
#image-zoom .image-zoom-item .image-zoom-item-info {
  position: absolute;
  left: 50%;
  bottom: 0.5rem;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  #image-zoom .image-zoom-item .image-zoom-item-info {
    bottom: 2rem;
  }
}
#image-zoom .image-zoom-item.active {
  opacity: 1;
}
.hover-accordion {
  display: flex;
}
.hover-accordion > .accordion-item-wrapper {
  flex: 1 1 auto;
  transition: flex 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
  border-right: 1px solid white;
  border-left: 1px solid white;
}
.hover-accordion > .accordion-item-wrapper > .accordion-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hover-accordion > .accordion-item-wrapper > .accordion-item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.hover-accordion:not(.hover-accordion-keep-state) > .accordion-item-wrapper:hover,
.hover-accordion.hover-accordion-keep-state > .accordion-item-wrapper.keep-state {
  flex: 4 1 auto;
  border-left: none;
  border-right: none;
}
.cr-tooltip-top,
.cr-tooltip-bottom {
  background-color: var(--color-default-4);
}
section#product #product-campaign.d-flex i#product-campaign-badge {
  background-image: url('https://mais-uni.imgix.net/images/site/2021/camisetas-mudam-o-mundo/selo_CMM_preenchido_1e1e1d.svg?auto=compress,format&q=65');
}


/*# sourceMappingURL=product.ef4d8af0806c8142876d.css.map*/