.alert-danger {
  padding: 1rem;
  border: none;
  border-radius: 0;
  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;
  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;
  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;
  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;
  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;
  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;
}
.cr-modal {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}
.cr-modal .cr-modal-dialog {
  position: relative;
  opacity: 0;
  margin: 2rem;
  height: calc(100vh - 4rem);
}
@media (min-width: 576px) {
  .cr-modal .cr-modal-dialog {
    width: 600px;
    margin: 2rem auto 2rem;
  }
}
.cr-modal.opened {
  display: block;
  animation: showModal 0.4s forwards;
}
.cr-modal.opened .cr-modal-dialog {
  opacity: 1;
  animation: showModalBody 0.4s;
}
@media (min-width: 576px) {
  .cr-modal.large .cr-modal-dialog {
    width: 1000px;
  }
}
.cr-modal.alert .cr-modal-dialog {
  text-align: center;
}
.cr-modal.alert .cr-modal-dialog ul {
  text-align: left;
}
@media (min-width: 576px) {
  .cr-modal.alert .cr-modal-dialog {
    width: 400px;
    margin-top: 30vh;
  }
}
.cr-modal.alert .cr-modal-footer {
  justify-content: center;
}
@keyframes showModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes showModalBody {
  from {
    top: -300px;
  }
  to {
    top: 0;
  }
}
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;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  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);
}
[data-toggle="cr-tooltip"] {
  position: relative;
}
.cr-tooltip {
  position: fixed;
  background-color: var(--color-default-5);
  padding: 0.5rem;
  border-radius: 0;
  max-width: 20rem;
  z-index: 115;
  pointer-events: none;
  margin: 0 !important;
  font-family: Roboto, '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);
}
.btn {
  text-transform: uppercase;
  font-size: 1.14em;
  background-color: var(--color-default-5);
  border: 1px solid var(--color-default-5);
  color: white;
}
@media (hover: hover) and (pointer: fine) {
  .btn:not([disabled]):not(.btn-disabled):hover {
    background-color: var(--color-default-4);
    border-color: var(--color-default-5);
    color: white;
  }
}
.btn:not([disabled]):not(.btn-disabled):active {
  background-color: var(--color-default-5);
  box-shadow: none;
}
.btn.btn-success:not([disabled]):not(.btn-disabled) {
  background-color: var(--color-default-5);
  border-color: var(--color-default-5);
}
.btn.btn-success:not([disabled]):not(.btn-disabled):hover {
  background-color: var(--color-primary-5) !important;
  border-color: var(--color-primary-5) !important;
}
.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>");
}
.icon-btn-true-fill .icon-cr.icon-btn-true-fill:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'><circle cx='8' cy='8.5' r='7' fill='white'/><path d='M7.99999 0.5C6.41821 0.500001 4.87193 0.968918 3.55657 1.84749C2.24122 2.72605 1.21584 3.97484 0.610014 5.43601C0.0041923 6.89718 -0.154873 8.50515 0.152922 10.0567C0.460716 11.6082 1.22155 13.0337 2.33928 14.153C3.457 15.2722 4.88144 16.035 6.43257 16.3449C7.98369 16.6549 9.59188 16.498 11.0539 15.8942C12.5159 15.2904 13.7661 14.2667 14.6464 12.9525C15.5268 11.6384 15.9978 10.0927 16 8.51096C16.0014 7.45946 15.7956 6.41799 15.3942 5.44612C14.9928 4.47425 14.4037 3.59105 13.6607 2.84702C12.9177 2.10299 12.0353 1.51273 11.064 1.11001C10.0927 0.707288 9.05149 0.499999 7.99999 0.5ZM8.43835 10.8671L7.01369 12.2984L5.58246 10.8671L2.82958 8.11425L4.26082 6.68301L7.01369 9.4337L11.7436 4.70164L13.1748 6.13287L8.44054 10.8649L8.43835 10.8671Z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'><circle cx='8' cy='8.5' r='7' fill='white'/><path d='M7.99999 0.5C6.41821 0.500001 4.87193 0.968918 3.55657 1.84749C2.24122 2.72605 1.21584 3.97484 0.610014 5.43601C0.0041923 6.89718 -0.154873 8.50515 0.152922 10.0567C0.460716 11.6082 1.22155 13.0337 2.33928 14.153C3.457 15.2722 4.88144 16.035 6.43257 16.3449C7.98369 16.6549 9.59188 16.498 11.0539 15.8942C12.5159 15.2904 13.7661 14.2667 14.6464 12.9525C15.5268 11.6384 15.9978 10.0927 16 8.51096C16.0014 7.45946 15.7956 6.41799 15.3942 5.44612C14.9928 4.47425 14.4037 3.59105 13.6607 2.84702C12.9177 2.10299 12.0353 1.51273 11.064 1.11001C10.0927 0.707288 9.05149 0.499999 7.99999 0.5ZM8.43835 10.8671L7.01369 12.2984L5.58246 10.8671L2.82958 8.11425L4.26082 6.68301L7.01369 9.4337L11.7436 4.70164L13.1748 6.13287L8.44054 10.8649L8.43835 10.8671Z' fill='black'/></svg>");
}
#reamaze-wrapper {
  bottom: 0 !important;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4) !important;
  border-radius: 0 !important;
  right: 1rem !important;
}
#reamaze-widget {
  display: none !important;
}
.anchored #reamaze-wrapper iframe,
.anchored #reamaze-wrapper #reamaze-container {
  border-radius: 0 !important;
}
#olark-tab {
  display: flex;
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  position: fixed;
  bottom: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  right: 1rem;
  background-color: var(--color-default-1);
  z-index: 2;
  box-shadow: none;
  align-items: center;
  transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
  font-size: 1rem;
}
#olark-tab:hover {
  text-decoration: none;
  background-color: var(--color-default-2);
  color: var(--color-info-3);
}
#olark-tab svg {
  width: 13rem;
  height: 3.5rem;
}
#olark-tab .st0 {
  fill: var(--color-white);
}
#olark-tab .st1 {
  fill: none;
  stroke: var(--color-black);
  stroke-width: 1.4784;
  stroke-miterlimit: 10;
}
#olark-tab .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #29A619;
}
#olark-tab .st3 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: var(--color-white);
}
#olark-tab .st4 {
  fill-rule: evenodd;
  clip-rule: evenodd;
}
#olark-tab .st5 {
  fill: none;
  stroke: var(--color-black);
  stroke-width: 3.8162;
  stroke-miterlimit: 10;
}
#olark-tab .st6 {
  fill: none;
  stroke: var(--color-black);
  stroke-width: 4.1694;
  stroke-miterlimit: 10;
}
#olark-tab .st7 {
  fill: none;
  stroke: var(--color-black);
  stroke-width: 2.8917;
  stroke-miterlimit: 10;
}
#olark-tab .st8 {
  fill: none;
  stroke: var(--color-black);
  stroke-width: 3.9127;
  stroke-miterlimit: 10;
}
@media (max-width: 767px) {
  #olark-tab {
    display: none !important;
  }
}
@-moz-document url-prefix() {
  #olark-tab a:after {
    margin-top: -70px;
  }
}
html {
  background-color: var(--color-default-2);
}
body {
  background-color: white;
}
#footer {
  font-weight: 300;
  position: relative;
  margin-top: 2rem;
  background-color: var(--color-default-2);
}
#footer #footer-main-content {
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  text-align: center;
}
#footer.footer-special {
  background-color: var(--color-white);
  padding-top: 0;
}
#footer.footer-special #footer-main-content {
  padding-top: 0;
}
#footer.footer-special #footer-main-content .footer-brand {
  margin-top: 0;
}
#footer #footer-seo-content {
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-weight: 300;
}
#footer #footer-seo-content a {
  text-decoration: underline;
}
@media (max-width: 1199px) {
  #footer #footer-seo-content {
    padding-top: 0;
  }
}
#footer #footer-achievements {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#footer #footer-achievements > *,
#footer #footer-achievements img {
  height: 6rem;
}
#footer #footer-achievements > *.img-gptw,
#footer #footer-achievements img.img-gptw {
  height: 6rem;
}
#footer #footer-achievements > *.img-pacto,
#footer #footer-achievements img.img-pacto {
  height: 4.5rem;
}
#footer #footer-achievements > *.img-capitalismo,
#footer #footer-achievements img.img-capitalismo {
  height: 4rem;
}
#footer #footer-achievements > *.img-reciclo,
#footer #footer-achievements img.img-reciclo {
  height: 4.5rem;
}
#footer #footer-achievements > *.img-peta,
#footer #footer-achievements img.img-peta {
  height: 4rem;
}
#footer #footer-achievements > *.img-algodao,
#footer #footer-achievements img.img-algodao {
  height: 3.5rem;
}
#footer #footer-achievements > :nth-child(n + 2) {
  margin-top: 1rem;
}
#footer #footer-achievements > :not(#footer-change-world) img {
  padding: 0.5rem 0;
}
#footer #footer-achievements #footer-humanizadas img {
  padding: 0;
}
#footer #footer-achievements .cr-popover-content {
  min-width: 300px;
}
@media (min-width: 576px) {
  #footer #footer-achievements {
    justify-content: start;
    padding-left: 0;
  }
  #footer #footer-achievements > * {
    margin-right: 2rem;
  }
  #footer #footer-achievements > *:nth-child(n + 2) {
    margin-top: 0;
  }
}
#footer #footer-main-content > :not(:last-child) {
  margin-top: 2rem;
}
#footer #footer-main-content > :last-child > div {
  margin-top: 2rem;
}
#footer #footer-main-content > :not(:first-child) {
  padding-left: 2rem;
}
#footer #footer-logo {
  width: 9rem;
  height: 3rem;
  display: block;
  -webkit-mask-position: center;
          mask-position: center;
  margin: 0 auto;
}
#footer #footer-social {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}
#footer #footer-social a {
  height: 2rem;
  width: 2rem;
  background-position: left;
  margin: 0 0.75rem 1rem;
}
@media (hover: hover) and (pointer: fine) {
  #footer #footer-social a {
    height: 1.5rem;
    width: 1.5rem;
  }
}
#footer #footer-contact {
  max-width: 15rem;
  margin-left: auto;
  margin-right: auto;
}
#footer .footer-advantages-items > .d-flex {
  flex-basis: 50%;
  flex-direction: column;
  align-items: center;
}
#footer .footer-advantages-items > .d-flex > .icon-cr {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  margin-right: 0.5rem;
}
#footer #footer-payments {
  align-items: center;
}
#footer #footer-payments .footer-payment {
  max-height: 35px;
}
#footer #footer-certificates img {
  height: 35px;
}
#footer #footer-certificates,
#footer #footer-payments {
  position: relative;
  top: -0.5rem;
  left: -0.5rem;
  margin-bottom: -1rem;
  width: calc(100% + 1rem);
}
#footer #footer-certificates > *,
#footer #footer-payments > * {
  margin: 0.5rem;
  flex: 0 0 auto;
}
#footer ul.inline-list {
  list-style-type: none;
  padding-left: 0;
}
#footer ul.inline-list li {
  display: inline;
}
#footer ul.inline-list li:not(:first-child) {
  position: relative;
  padding-left: 1rem;
}
#footer ul.inline-list li:not(:first-child):before {
  content: '-';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1rem;
  text-align: center;
  transform: translateY(-0.25em);
}
#footer .seo-items-group {
  margin-top: 0.5rem;
}
@media (min-width: 576px) {
  #footer #footer-main-content {
    align-items: normal;
    flex-direction: row;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    text-align: left;
  }
  #footer #footer-main-content > * {
    flex: 0 0 50%;
  }
  #footer #footer-logo {
    background-position: left;
    position: relative;
    margin-left: 0;
  }
  #footer #footer-social {
    justify-content: start;
  }
  #footer #footer-social a {
    margin-left: 0;
    margin-right: 1rem;
  }
  #footer #footer-contact {
    margin: 0;
  }
  #footer .footer-advantages-items > .d-flex {
    flex-direction: row;
    align-items: normal;
  }
  #footer .collapsible-footer {
    display: none !important;
  }
  #footer .form-newsletter {
    max-width: 18.572rem;
  }
}
@media (min-width: 768px) {
  #footer .seo-items-group {
    display: flex;
    align-items: baseline;
  }
  #footer .seo-items-group > :first-child {
    width: 16rem;
  }
  #footer .footer-advantages-items {
    max-width: 15rem;
  }
  #footer .footer-advantages-items > .d-flex {
    flex-basis: 40%;
  }
  #footer .footer-advantages-items > .d-flex:not(:first-child) {
    margin-top: 2rem;
  }
}
@media (min-width: 768px) {
  #footer #footer-main-content {
    flex-wrap: nowrap;
  }
  #footer #footer-main-content > * {
    flex: 0 0 25%;
  }
}
#footer.footer-special .empresa-item {
  float: left;
  margin-top: 0 !important;
}
@media (max-width: 991px) {
  #footer.footer-special .empresa-item {
    padding-left: 17px;
  }
}
#footer.footer-special .logo-footer {
  float: right;
  margin-top: 1.5rem;
}
@media (max-width: 575px) {
  #footer #footer-newsletter input,
  #footer #footer-newsletter select,
  #footer #footer-newsletter .btn {
    margin-bottom: 0.5rem;
    width: 100%;
  }
  #footer #footer-newsletter input:last-child,
  #footer #footer-newsletter select:last-child,
  #footer #footer-newsletter .btn:last-child {
    margin-bottom: 0;
  }
  #footer #footer-payments,
  #footer #footer-certificates {
    justify-content: center;
  }
  #footer .footer-advantages-items {
    display: flex;
    flex-wrap: wrap;
  }
  #footer #footer-main-content {
    display: none !important;
  }
  #footer .back-store-footer {
    width: 100%;
    padding: 2rem 0;
    background: #f3f0ec;
  }
  #footer .back-store-footer .icon-cr {
    width: 3rem;
    height: 3rem;
    /* float: right; */
    margin-bottom: 1rem;
  }
  #footer .back-store-footer .back-store {
    float: right;
    position: relative;
    margin: 1rem 2rem 2rem;
  }
  #footer #footer-payments {
    padding-bottom: 20px;
  }
  #footer .footer-payment {
    margin: 0.8rem !important;
  }
  #footer .collapsible-footer {
    width: 100%;
    margin: 0 !important;
    display: block;
  }
  #footer .content {
    padding: 0;
  }
  #footer .collapsible-button {
    border: 0;
    background-color: #f3f0ec;
    color: #1e1e1d;
    cursor: pointer;
    width: 100%;
    border-bottom: 1px solid white;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.02em;
    margin: 0;
    padding: 1.5rem 20px;
  }
  #footer .active {
    border-bottom: none !important;
  }
  #footer .collapsible-icon {
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 1rem;
    transition: all 0.2s ease;
  }
  #footer .active .collapsible-icon {
    transform: rotate(90deg);
  }
  #footer .collapsible-text {
    padding: 0 1.25rem 0 3.2rem;
    max-height: 0;
    text-align: left;
    overflow: hidden;
    color: #1e1e1d;
    background-color: #f3f0ec;
    border-bottom: 2px solid white;
    transition: max-height 0.2s ease;
    line-height: 3;
    font-size: 14px;
  }
  #footer .sub-content {
    max-width: calc(1250px + 2 * 1rem);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #footer #footer-social a {
    width: 3rem;
    height: 3rem;
    margin: 0 3.5rem 2rem 0;
  }
}
@media (min-width: 576px) {
  #footer #footer-newsletter {
    display: block;
    align-items: center;
    padding: 0 1.3rem;
    font-family: Roboto, 'Trebuchet MS', Arial, Helvetica, sans-serif;
  }
  #footer #footer-newsletter > label {
    font-size: 1rem;
    font-weight: bold;
    line-height: 2.2rem;
  }
  #footer #footer-newsletter > * {
    margin-top: 0;
    margin-bottom: 0;
  }
  #footer #footer-newsletter > input {
    margin-right: 0;
  }
  #footer #footer-newsletter > .btn {
    line-height: 2.4rem;
    letter-spacing: 0.06rem;
  }
  #footer #footer-newsletter select:not([type='submit']):not([type='button']):not([type='file']),
  #footer #footer-newsletter input:not([type='submit']):not([type='button']):not([type='file']),
  #footer #footer-newsletter textarea:not([type='submit']):not([type='button']):not([type='file']) {
    width: 100%;
    background: var(--color-default-1);
  }
  #footer #footer-newsletter > input:not(.btn):not(label) {
    flex: 1 1 auto;
  }
}
@media (min-width: 992px) {
  .a2hs {
    display: none;
  }
}
@media (max-width: 991px) {
  .a2hs {
    display: block;
  }
  .a2hs .banner {
    display: none;
    color: white;
    background-color: var(--color-default-4);
    margin: 0;
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 50px;
    z-index: 10000;
  }
  .a2hs .banner .accept {
    width: 86%;
    height: 100%;
    float: left;
    padding: 11px 0 0 3px;
  }
  .a2hs .banner .deny {
    width: 14%;
    height: 100%;
    float: right;
    padding: 11px 3px 0 0;
  }
  .a2hs .banner .deny .icon-cr {
    width: 30px;
    height: 30px;
    float: right;
  }
  .a2hs .banner .icone-logo {
    width: 32px;
    height: 32px;
    margin-left: 6px;
    float: left;
  }
  .a2hs .banner .message {
    float: left;
    margin: 4px 0 5px 8px;
    font-size: 14px;
  }
}
.input-newsletter input::-moz-placeholder {
  color: var(--color-default-5);
  font-weight: bold;
  text-align: left;
}
.input-newsletter input::placeholder {
  color: var(--color-default-5);
  font-weight: bold;
  text-align: left;
}
@media (max-width: 768px) {
  .cr-modal.modal-regulamento .cr-modal-header {
    padding: 0;
  }
  .cr-modal.modal-regulamento ul {
    padding: 15px;
  }
  .cr-modal.modal-regulamento img.banner-regulamento {
    width: 100%;
  }
  .cr-modal.modal-regulamento.modal-black .cr-modal-header {
    border-bottom: 1px solid #353535;
  }
  .cr-modal.modal-regulamento.modal-black .cr-modal-footer {
    border-top: 1px solid #353535;
  }
  .cr-modal.modal-regulamento.modal-black .cr-modal-dialog {
    background-color: #282828;
    color: white;
  }
}
@media (min-width: 769px) {
  .cr-modal.modal-regulamento .cr-modal-header {
    border-bottom: 1px solid #353535;
    padding: 0;
  }
  .cr-modal.modal-regulamento img.banner-regulamento {
    width: 100%;
    -o-object-fit: none;
       object-fit: none;
  }
  .cr-modal.modal-regulamento.modal-black .cr-modal-footer {
    border-top: 1px solid #353535;
  }
  .cr-modal.modal-regulamento.modal-black .cr-modal-body {
    background-color: #282828;
    color: white;
  }
}
@font-face {
  font-family: 'Proxima Nova';
  src: url("https://d37qth7w71a0im.cloudfront.net/fonts/proxima-nova/proxima_nova_regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url("https://d37qth7w71a0im.cloudfront.net/fonts/proxima-nova/proxima_nova_bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
.cr-popover-left-top {
  position: relative;
}
.cr-popover-left-top .cr-popover-content {
  position: absolute;
  display: none;
  background-color: var(--color-default-1);
  padding: 1rem;
  border: 2px solid var(--color-default-2);
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  z-index: 11;
}
.cr-popover-left-top .cr-popover-content:before {
  position: absolute;
  content: "";
}
.cr-popover-left-top .cr-popover-content:after {
  position: absolute;
  content: '';
  left: 0;
  height: 1rem;
  width: 100%;
}
.cr-popover-left-top.debug .cr-popover-content {
  display: block;
}
.cr-popover-left-top .cr-popover-content {
  left: 0;
}
.cr-popover-left-top .cr-popover-content:before {
  border-left: 0 solid transparent;
  border-right: 1rem solid transparent;
  left: 0.5rem;
}
.cr-popover-left-top .cr-popover-content {
  bottom: calc(100% - 0.5rem);
  margin-bottom: 1rem;
}
.cr-popover-left-top .cr-popover-content:before {
  border-top: 1rem solid var(--color-default-2);
  bottom: -1rem;
}
.cr-popover-left-top .cr-popover-content:after {
  bottom: -1rem;
}
.cr-popover-right-top {
  position: relative;
}
.cr-popover-right-top .cr-popover-content {
  position: absolute;
  display: none;
  background-color: var(--color-default-1);
  padding: 1rem;
  border: 2px solid var(--color-default-2);
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  z-index: 11;
}
.cr-popover-right-top .cr-popover-content:before {
  position: absolute;
  content: "";
}
.cr-popover-right-top .cr-popover-content:after {
  position: absolute;
  content: '';
  left: 0;
  height: 1rem;
  width: 100%;
}
.cr-popover-right-top.debug .cr-popover-content {
  display: block;
}
.cr-popover-right-top .cr-popover-content {
  right: 0;
}
.cr-popover-right-top .cr-popover-content:before {
  border-left: 1rem solid transparent;
  border-right: 0 solid transparent;
  right: 0.5rem;
}
.cr-popover-right-top .cr-popover-content {
  bottom: calc(100% - 0.5rem);
  margin-bottom: 1rem;
}
.cr-popover-right-top .cr-popover-content:before {
  border-top: 1rem solid var(--color-default-2);
  bottom: -1rem;
}
.cr-popover-right-top .cr-popover-content:after {
  bottom: -1rem;
}
.cr-popover-left-bottom {
  position: relative;
}
.cr-popover-left-bottom .cr-popover-content {
  position: absolute;
  display: none;
  background-color: var(--color-default-1);
  padding: 1rem;
  border: 2px solid var(--color-default-2);
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  z-index: 11;
}
.cr-popover-left-bottom .cr-popover-content:before {
  position: absolute;
  content: "";
}
.cr-popover-left-bottom .cr-popover-content:after {
  position: absolute;
  content: '';
  left: 0;
  height: 1rem;
  width: 100%;
}
.cr-popover-left-bottom.debug .cr-popover-content {
  display: block;
}
.cr-popover-left-bottom .cr-popover-content {
  left: 0;
}
.cr-popover-left-bottom .cr-popover-content:before {
  border-left: 0 solid transparent;
  border-right: 1rem solid transparent;
  left: 0.5rem;
}
.cr-popover-left-bottom .cr-popover-content {
  top: calc(100% - 0.5rem);
  margin-top: 1rem;
}
.cr-popover-left-bottom .cr-popover-content:before {
  border-bottom: 1rem solid var(--color-default-2);
  top: -1rem;
}
.cr-popover-left-bottom .cr-popover-content:after {
  top: -1rem;
}
.cr-popover-right-bottom,
.cr-popover-right-bottom-sm-up {
  position: relative;
}
.cr-popover-right-bottom .cr-popover-content,
.cr-popover-right-bottom-sm-up .cr-popover-content {
  position: absolute;
  display: none;
  background-color: var(--color-default-1);
  padding: 1rem;
  border: 2px solid var(--color-default-2);
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  z-index: 11;
}
.cr-popover-right-bottom .cr-popover-content:before,
.cr-popover-right-bottom-sm-up .cr-popover-content:before {
  position: absolute;
  content: "";
}
.cr-popover-right-bottom .cr-popover-content:after,
.cr-popover-right-bottom-sm-up .cr-popover-content:after {
  position: absolute;
  content: '';
  left: 0;
  height: 1rem;
  width: 100%;
}
.cr-popover-right-bottom.debug .cr-popover-content,
.cr-popover-right-bottom-sm-up.debug .cr-popover-content {
  display: block;
}
.cr-popover-right-bottom .cr-popover-content,
.cr-popover-right-bottom-sm-up .cr-popover-content {
  right: 0;
}
.cr-popover-right-bottom .cr-popover-content:before,
.cr-popover-right-bottom-sm-up .cr-popover-content:before {
  border-left: 1rem solid transparent;
  border-right: 0 solid transparent;
  right: 0.5rem;
}
.cr-popover-right-bottom .cr-popover-content,
.cr-popover-right-bottom-sm-up .cr-popover-content {
  top: calc(100% - 0.5rem);
  margin-top: 1rem;
}
.cr-popover-right-bottom .cr-popover-content:before,
.cr-popover-right-bottom-sm-up .cr-popover-content:before {
  border-bottom: 1rem solid var(--color-default-2);
  top: -1rem;
}
.cr-popover-right-bottom .cr-popover-content:after,
.cr-popover-right-bottom-sm-up .cr-popover-content:after {
  top: -1rem;
}
@media (hover: hover) and (pointer: fine) {
  .cr-popover-left-top:hover .cr-popover-content,
  .cr-popover-left-top.cr-popover-show .cr-popover-content,
  .cr-popover-left-top .cr-popover-content:hover {
    display: block;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cr-popover-right-top:hover .cr-popover-content,
  .cr-popover-right-top.cr-popover-show .cr-popover-content,
  .cr-popover-right-top .cr-popover-content:hover {
    display: block;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cr-popover-left-bottom:hover .cr-popover-content,
  .cr-popover-left-bottom.cr-popover-show .cr-popover-content,
  .cr-popover-left-bottom .cr-popover-content:hover {
    display: block;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cr-popover-right-bottom:hover .cr-popover-content,
  .cr-popover-right-bottom.cr-popover-show .cr-popover-content,
  .cr-popover-right-bottom .cr-popover-content:hover {
    display: block;
  }
}
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .cr-popover-right-bottom-sm-up:hover .cr-popover-content,
  .cr-popover-right-bottom-sm-up.cr-popover-show .cr-popover-content,
  .cr-popover-right-bottom-sm-up .cr-popover-content:hover {
    display: block;
  }
}
.text-accent {
  color: var(--color-default-4) !important;
}
.text-yanone {
  font-family: Roboto, 'Trebuchet MS', Arial, Helvetica, sans-serif;
}
.icon-cr.icon-logo:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500.15'><g id='Camada_2' data-name='Camada 2'><g id='Camada_1-2' data-name='Camada 1'><path fill='black' d='M474.42,260.3a144.63,144.63,0,0,0-16.88,1.54c-4.36.64-10.2.85-14.11,3.11-5.26,3-6.43,13.47-7.61,18.73-2.35,10.47-4.77,21.29-14.37,26.1-15.78,7.88-31.19-4.09-47.5-16.76-15-11.62-31.91-24.8-52.55-28.35-20.1-3.46-39.9,2.27-57.56,11.74-16.23,8.7-30.48,21.19-45.88,31.47-31.49,21-69.68,33.34-106.93,39-35.07,5.32-57.67,5.08-90,2.23a.41.41,0,0,0-.41.56A248.64,248.64,0,0,0,34.05,376a.84.84,0,0,0,.69.4c6.49.08,12.95.27,19.35.66,8,.48,14.59,1.11,20.36,1.66,25,2.41,52.47,1.14,76.37-7.42,21.56-7.73,41.09-20.68,59.29-34.35,39.74-29.86,70-44.57,90.64-43.9,42.9,1.55,75.19,29.32,94.72,52.35,18.07,21.31,47.23,40.29,60.1,46a.82.82,0,0,0,1-.29A248.65,248.65,0,0,0,499.82,263C499.93,260.72,476.66,260.23,474.42,260.3Z'/><path fill='black' d='M396.19,418.72c-18.54-11.72-37.3-23.17-57.35-32-12.48-5.49-25.61-9.54-39.37-7.2-9.8,1.67-19.14,5.36-28.38,9C243.49,399.48,216,410.71,188,420.43c-16.63,5.77-33.6,11.45-51,14.46-14.75,2.57-33,2.29-52.88,1.22a.4.4,0,0,0-.3.7c3.33,3,6.76,5.82,10.24,8.6a.82.82,0,0,0,.52.18,119.51,119.51,0,0,1,14.32.41c31.85,2.78,63.56,7.35,95.12,12.44,9.83,1.59,19.79,3.26,29.79,2.7s19.79-3.56,29.41-5.92c30.74-7.53,63.36-14.76,95.16-13.29a108.44,108.44,0,0,1,25.13,3.94c4.71,1.37,9.67,3.19,14.72,5.2a.86.86,0,0,0,.79-.1,253.32,253.32,0,0,0,20.07-16.61.8.8,0,0,0-.11-1.27C411.34,428.36,403.78,423.52,396.19,418.72Z'/><path fill='black' d='M380.19,463.62a.82.82,0,0,0-.16-1.46c-.73-.25-1.45-.5-2.15-.7-12.58-3.66-26.15-3.61-39.12-2.73a287.39,287.39,0,0,0-43.68,6.33c-6.35,1.44-12.79,2.46-19.12,4.12-6.82,1.78-13.58,3.78-20.46,5.33-12.22,2.76-24.92,4.05-37.4,2.47-31.08-3.93-61.91-9.44-93-12.88l-3.47-.37a.41.41,0,0,0-.25.75,250.08,250.08,0,0,0,258.86-.86Z'/><path fill='black' d='M381,355.36c-17.17-20.24-45.16-44.63-81-45.92-15.13-.58-43.62,14.06-78.27,40.1-19.63,14.76-40.75,28.45-64,36.87-27,9.78-56.95,11.32-85.27,8.61-5.63-.54-11.92-1.14-19.64-1.6-2.34-.15-4.71-.2-7.07-.28a.41.41,0,0,0-.35.64A252.35,252.35,0,0,0,65,418.27a.83.83,0,0,0,.55.27c15.89,1.06,31.77,2.74,47.72,2a174.93,174.93,0,0,0,20.16-2.17c24.43-4,48.23-12.55,71.19-21.42,19.5-7.54,38.93-15.29,58.39-22.94s38.64-13.87,59.81-10c12.83,2.33,24.57,8,36.23,13.63,16.69,8,32,18,47.67,27.75,6.93,4.44,15.73,10.07,24.85,15.68a.82.82,0,0,0,1-.13q6.64-7.11,12.73-14.71a.8.8,0,0,0-.28-1.23C428.17,396.84,399.47,377.11,381,355.36Z'/><path fill='black' d='M113,268.47a334.28,334.28,0,0,1,38.14-4.26c12.55-.71,25.26-.33,37.66-2.63,16-3,26.87-10.42,35-24.41,9.27-16,23.82-26.18,38.9-36,16.82-10.94,39.12-26.11,60.21-21.81,12.87,2.63,25.09,8,37.2,13,39.71,16.19,84.68,19.46,127.12,21.51q4.68.22,9.36.39a.81.81,0,0,0,.83-.93C479.62,92.62,375.68,0,250.07,0,112,0,0,112,0,250.07a251.71,251.71,0,0,0,2.19,32.69.82.82,0,0,0,.82.71,365.05,365.05,0,0,0,55.15-4.58C76.53,275.87,94.67,271.65,113,268.47Z'/><path fill='black' d='M108,330.71c42.5-6.47,81.88-22.4,115.86-48.82,24.59-19.12,56.19-35.21,88-34.55a87.2,87.2,0,0,1,12.91,1.23c25.42,4.38,45.15,19.72,61,32,4.65,3.62,20.12,18.81,26.9,14.76a3.56,3.56,0,0,0,1.42-1.71c5-12.05,5.09-26.91,13.57-37.43,5.5-6.82,14-8.37,22.16-9.7,3.48-.57,38.31-4.16,47.8-2h0c.47.11.9.22,1.28.33a.8.8,0,0,0,1-.79q-.15-6.26-.6-12.43a.82.82,0,0,0-.79-.75c-47-1.23-94.2-5.9-139-20.83l-3.54-1.2q-12.56-4.29-24.87-9.25c-8.33-3.35-16.92-5.84-25.78-2.82-9.84,3.38-18.89,9.66-27.82,14.9a163.12,163.12,0,0,0-24.05,16.75c-7.65,6.58-11.86,13.94-16.49,22.83-12.7,24.34-45.87,28.18-70.22,28.73-15.51.35-36.76.83-65.75,7.36-12.36,2.79-25.7,5.36-39.66,7.65a382.16,382.16,0,0,1-56,4.84.41.41,0,0,0-.39.49,247.76,247.76,0,0,0,8.55,31.13.8.8,0,0,0,.69.54C50.48,335.49,71.88,336.21,108,330.71Z'/></g></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500.15'><g id='Camada_2' data-name='Camada 2'><g id='Camada_1-2' data-name='Camada 1'><path fill='black' d='M474.42,260.3a144.63,144.63,0,0,0-16.88,1.54c-4.36.64-10.2.85-14.11,3.11-5.26,3-6.43,13.47-7.61,18.73-2.35,10.47-4.77,21.29-14.37,26.1-15.78,7.88-31.19-4.09-47.5-16.76-15-11.62-31.91-24.8-52.55-28.35-20.1-3.46-39.9,2.27-57.56,11.74-16.23,8.7-30.48,21.19-45.88,31.47-31.49,21-69.68,33.34-106.93,39-35.07,5.32-57.67,5.08-90,2.23a.41.41,0,0,0-.41.56A248.64,248.64,0,0,0,34.05,376a.84.84,0,0,0,.69.4c6.49.08,12.95.27,19.35.66,8,.48,14.59,1.11,20.36,1.66,25,2.41,52.47,1.14,76.37-7.42,21.56-7.73,41.09-20.68,59.29-34.35,39.74-29.86,70-44.57,90.64-43.9,42.9,1.55,75.19,29.32,94.72,52.35,18.07,21.31,47.23,40.29,60.1,46a.82.82,0,0,0,1-.29A248.65,248.65,0,0,0,499.82,263C499.93,260.72,476.66,260.23,474.42,260.3Z'/><path fill='black' d='M396.19,418.72c-18.54-11.72-37.3-23.17-57.35-32-12.48-5.49-25.61-9.54-39.37-7.2-9.8,1.67-19.14,5.36-28.38,9C243.49,399.48,216,410.71,188,420.43c-16.63,5.77-33.6,11.45-51,14.46-14.75,2.57-33,2.29-52.88,1.22a.4.4,0,0,0-.3.7c3.33,3,6.76,5.82,10.24,8.6a.82.82,0,0,0,.52.18,119.51,119.51,0,0,1,14.32.41c31.85,2.78,63.56,7.35,95.12,12.44,9.83,1.59,19.79,3.26,29.79,2.7s19.79-3.56,29.41-5.92c30.74-7.53,63.36-14.76,95.16-13.29a108.44,108.44,0,0,1,25.13,3.94c4.71,1.37,9.67,3.19,14.72,5.2a.86.86,0,0,0,.79-.1,253.32,253.32,0,0,0,20.07-16.61.8.8,0,0,0-.11-1.27C411.34,428.36,403.78,423.52,396.19,418.72Z'/><path fill='black' d='M380.19,463.62a.82.82,0,0,0-.16-1.46c-.73-.25-1.45-.5-2.15-.7-12.58-3.66-26.15-3.61-39.12-2.73a287.39,287.39,0,0,0-43.68,6.33c-6.35,1.44-12.79,2.46-19.12,4.12-6.82,1.78-13.58,3.78-20.46,5.33-12.22,2.76-24.92,4.05-37.4,2.47-31.08-3.93-61.91-9.44-93-12.88l-3.47-.37a.41.41,0,0,0-.25.75,250.08,250.08,0,0,0,258.86-.86Z'/><path fill='black' d='M381,355.36c-17.17-20.24-45.16-44.63-81-45.92-15.13-.58-43.62,14.06-78.27,40.1-19.63,14.76-40.75,28.45-64,36.87-27,9.78-56.95,11.32-85.27,8.61-5.63-.54-11.92-1.14-19.64-1.6-2.34-.15-4.71-.2-7.07-.28a.41.41,0,0,0-.35.64A252.35,252.35,0,0,0,65,418.27a.83.83,0,0,0,.55.27c15.89,1.06,31.77,2.74,47.72,2a174.93,174.93,0,0,0,20.16-2.17c24.43-4,48.23-12.55,71.19-21.42,19.5-7.54,38.93-15.29,58.39-22.94s38.64-13.87,59.81-10c12.83,2.33,24.57,8,36.23,13.63,16.69,8,32,18,47.67,27.75,6.93,4.44,15.73,10.07,24.85,15.68a.82.82,0,0,0,1-.13q6.64-7.11,12.73-14.71a.8.8,0,0,0-.28-1.23C428.17,396.84,399.47,377.11,381,355.36Z'/><path fill='black' d='M113,268.47a334.28,334.28,0,0,1,38.14-4.26c12.55-.71,25.26-.33,37.66-2.63,16-3,26.87-10.42,35-24.41,9.27-16,23.82-26.18,38.9-36,16.82-10.94,39.12-26.11,60.21-21.81,12.87,2.63,25.09,8,37.2,13,39.71,16.19,84.68,19.46,127.12,21.51q4.68.22,9.36.39a.81.81,0,0,0,.83-.93C479.62,92.62,375.68,0,250.07,0,112,0,0,112,0,250.07a251.71,251.71,0,0,0,2.19,32.69.82.82,0,0,0,.82.71,365.05,365.05,0,0,0,55.15-4.58C76.53,275.87,94.67,271.65,113,268.47Z'/><path fill='black' d='M108,330.71c42.5-6.47,81.88-22.4,115.86-48.82,24.59-19.12,56.19-35.21,88-34.55a87.2,87.2,0,0,1,12.91,1.23c25.42,4.38,45.15,19.72,61,32,4.65,3.62,20.12,18.81,26.9,14.76a3.56,3.56,0,0,0,1.42-1.71c5-12.05,5.09-26.91,13.57-37.43,5.5-6.82,14-8.37,22.16-9.7,3.48-.57,38.31-4.16,47.8-2h0c.47.11.9.22,1.28.33a.8.8,0,0,0,1-.79q-.15-6.26-.6-12.43a.82.82,0,0,0-.79-.75c-47-1.23-94.2-5.9-139-20.83l-3.54-1.2q-12.56-4.29-24.87-9.25c-8.33-3.35-16.92-5.84-25.78-2.82-9.84,3.38-18.89,9.66-27.82,14.9a163.12,163.12,0,0,0-24.05,16.75c-7.65,6.58-11.86,13.94-16.49,22.83-12.7,24.34-45.87,28.18-70.22,28.73-15.51.35-36.76.83-65.75,7.36-12.36,2.79-25.7,5.36-39.66,7.65a382.16,382.16,0,0,1-56,4.84.41.41,0,0,0-.39.49,247.76,247.76,0,0,0,8.55,31.13.8.8,0,0,0,.69.54C50.48,335.49,71.88,336.21,108,330.71Z'/></g></g></svg>");
}
.product-list {
  padding-left: 0;
  list-style: none;
}
.product-list.slider {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.product-list.slider:not(.slider-ready) > * {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.product-list.slider .slide {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (min-width: 576px) {
  .product-list.slider {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .product-list.slider:not(.slider-ready) > * {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .product-list.slider .slide {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.btn-buy-close {
  height: 2.4rem;
}
@media (max-width: 575px) {
  .product-list-3 > *,
  .product-list-4 > *,
  .product-list-5 > *,
  .product-list-6 > *,
  .product-list-8 > * {
    flex: 0 0 50%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .product-list-3 > *,
  .product-list-4 > *,
  .product-list-5 > *,
  .product-list-6 > * {
    flex: 0 0 33.333%;
  }
}
@media (min-width: 576px) {
  .product-list-8 > * {
    flex: 0 0 25%;
  }
}
@media (min-width: 768px) {
  .product-list-3 > *,
  .product-list-6 > * {
    flex: 0 0 33.333%;
  }
  .product-list-4 > * {
    flex: 0 0 25%;
  }
  .product-list-5 > * {
    flex: 0 0 20%;
  }
}
@media (min-width: 992px) {
  .product-list-8 > * {
    flex: 0 0 12.5%;
  }
}
@media (min-width: 1200px) {
  .product-list-6 > * {
    flex: 0 0 16.6666%;
  }
}
.product-list:not(.slider) {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: calc(100% + 1rem);
}
.product-list:not(.slider).product-list-placeholder p,
.product-list:not(.slider).product-list-placeholder .aspect {
  position: relative;
}
.product-list:not(.slider).product-list-placeholder p:after,
.product-list:not(.slider).product-list-placeholder .aspect:after {
  content: "";
  position: absolute;
  background-color: var(--color-default-1);
  left: 0;
  bottom: 0;
}
.product-list:not(.slider).product-list-placeholder .aspect:after {
  top: 0;
  width: 100%;
}
.product-list:not(.slider).product-list-placeholder p:after {
  top: 0.5rem;
  width: 60%;
}
.product-list:not(.slider).product-list-placeholder .product-list-item-title:after {
  width: 90%;
}
.product-list:not(.slider).product-list-placeholder .product-list-item-price:after {
  width: 45%;
}
.product-list:not(.slider) > * {
  padding: 0 0.5rem 0;
}
@media (min-width: 768px) {
  .product-list:not(.slider).product-list-gap-x-2 {
    width: calc(100% + 2rem);
  }
  .product-list:not(.slider).product-list-gap-x-2 > * {
    padding: 0 0.25rem 0;
  }
  .product-list:not(.slider).bigger-product-list li {
    flex: 0 0 33.333%;
  }
}
.product-list:not(.slider).product-list-gap-y-1 > * {
  padding-bottom: 1rem;
}
.product-list:not(.slider).product-list-gap-y-2 > * {
  padding-bottom: 2rem;
}
.product-list:not(.slider).product-list-gap-y-4 > * {
  padding-bottom: 2rem;
}
.product-horizontal-list {
  list-style: none;
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-left: 1rem;
  padding-bottom: 1rem;
  width: calc(100% + 2rem);
  /* Media query para que a listagem de produtos nao seja sempre scroll em todos os casos, só será no mobile
  @media (pointer: coarse) {
    position: relative;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-left: 1rem;
    padding-bottom: 1rem;
    width: calc(100% + 2rem);

    > * {
      flex: 0 0 calc(50% - 2rem);
    }
  }

  @media (pointer: fine) {
    padding-left: 0;
    flex-wrap: wrap;
    overflow-x: hidden;
    position: relative;
    left: -1rem;
    right: -1rem;
    width: calc(100% + 2rem);

    > * {
      flex: 0 0 50%;
    }
  }*/
}
.product-horizontal-list .product-list-item:first-child {
  margin-left: -1rem;
}
.product-horizontal-list > * {
  flex: 0 0 calc(55% - 2rem);
}
.product-horizontal-list > * {
  margin-right: 0.5rem;
}
.product-horizontal-list::after {
  content: '';
  flex: 0 0 1px;
}
@media (min-width: 768px), (pointer: fine) {
  .product-horizontal-list {
    padding-left: 0.6rem;
  }
  .product-horizontal-list::after {
    content: none;
  }
}
@media (min-width: 768px), (pointer: fine) {
  .product-horizontal-list > * {
    padding: 0 0.45rem;
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .product-horizontal-list-3 > *,
  .product-horizontal-list-4 > *,
  .product-horizontal-list-6 > * {
    flex: 0 0 33.333%;
  }
}
@media (min-width: 576px) and (pointer: coarse) {
  .product-horizontal-list-4 > *,
  .product-horizontal-list-6 > * {
    flex: 0 0 calc(33.333% - 2rem);
  }
}
@media (min-width: 768px) {
  .product-horizontal-list-4 > * {
    flex: 0 0 24%;
  }
}
@media (min-width: 992px) {
  .product-horizontal-list-6 > * {
    flex: 0 0 16.6666%;
  }
}
@media (min-width: 768px) {
  .product-horizontal-list-5 > * {
    flex: 0 0 20%;
  }
}
@media (min-width: 576px) {
  .product-horizontal-list-8 > * {
    flex: 0 0 25%;
  }
}
@media (min-width: 992px) {
  .product-horizontal-list-8 > * {
    flex: 0 0 12.5%;
  }
}
#product-history-list > * {
  flex: 0 0 50%;
}
@media (min-width: 768px) {
  #product-history-list > * {
    flex-basis: 25%;
  }
}
@media (min-width: 992px) {
  #product-history-list > * {
    flex-basis: 14.28571429%;
  }
}
.badge-product-color {
  border-radius: 50%;
  display: inline-block;
  height: 19px;
  width: 19px;
  border-style: none;
  border-width: 1px;
}
a.product-list-item {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a.product-list-item:hover .product-list-item-title,
  a.product-list-item:hover .product-list-item-price {
    color: var(--color-default-4);
  }
}
.product-list-item {
  position: relative;
  font-size: 1rem;
  text-decoration: none;
}
.product-list-item p {
  margin-top: 0;
  margin-bottom: 0;
}
.product-list-item .product-list-item-title {
  font-family: Roboto, 'Trebuchet MS', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  min-height: 1rem;
  width: 100%;
}
@media (max-width: 991px) {
  .product-list-item .product-list-item-title {
    min-height: 2rem;
  }
}
.product-list-item .product-list-item-subtitle {
  font-size: 0.86rem;
  font-family: Roboto, 'Trebuchet MS', Arial, Helvetica, sans-serif;
}
.product-list-item .product-list-item-subtitle:hover {
  font-size: 0.75rem;
}
.product-list-item .product-list-item-price {
  font-size: 1rem;
  font-weight: bold;
  flex-shrink: 0;
}
.product-list-item .product-list-item-title,
.product-list-item .product-list-item-price {
  transition: color 0.1s ease-in-out;
}
.product-list-item img.product-list-item-photo {
  max-width: 100%;
  height: auto;
  min-height: 1px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-list-item img.product-list-item-photo,
.product-list-item .aspect-shirt,
.product-list-item .product-list-item-image-hover {
  position: relative;
  margin-bottom: 0.5rem;
}
.product-list-item .product-list-item-image-hover {
  position: relative;
}
.product-list-item .product-list-item-image-hover img.product-list-item-photo {
  margin-bottom: 0;
}
.product-list-item .product-list-item-image-hover img.product-list-item-art {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity 0.1s ease-in-out;
  margin-bottom: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-list-item .product-list-item-image-hover .fast-buy {
  display: none;
  position: relative;
  font-family: "Proxima Nova", sans-serif;
  z-index: 1;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 10px 0;
}
.product-list-item .icon-add-to-cart {
  position: absolute;
  bottom: 0;
  margin-bottom: 2%;
  margin-left: 73%;
}
@media (max-width: 320px) {
  .product-list-item .icon-add-to-cart {
    margin-left: 70%;
  }
}
.product-list-item .icon-add-to-cart .icon-cr {
  width: 30px;
  height: 30px;
  background-color: whitesmoke;
  border-radius: 20px;
  padding: 18px;
}
.product-list-item .product-list-item-colors {
  z-index: 2;
  display: flex;
  gap: 0.3rem;
}
@media (max-width: 767px) {
  .product-list-item .product-list-item-colors {
    display: flex;
    gap: 0.3rem;
  }
}
.product-list-item .product-list-item-colors .product-list-item-color {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.25rem;
  border: 1px solid var(--color-default-3);
}
@media (max-width: 767px) {
  .product-list-item .product-list-item-colors .product-list-item-color {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.product-list-item .product-list-item-colors .with-border {
  border: 2px solid var(--color-default-5);
}
@media (hover: hover) and (pointer: fine) {
  .product-list-item a:hover {
    color: var(--color-default-4);
    text-decoration: none;
  }
  .product-list-item a:hover .product-list-item-subtitle {
    color: var(--color-default-5);
    font-size: 0.86rem;
  }
  .product-list-item a:hover .product-list-item-subtitle .color-name {
    font-size: 12px;
  }
  .product-list-item a:hover .product-list-item-title,
  .product-list-item a:hover .product-list-item-price {
    color: var(--color-default-4);
  }
  .product-list-item a:hover img.product-list-item-art {
    display: block;
  }
  .product-list-item a:hover .fast-buy {
    display: flex;
    flex-wrap: wrap;
    text-transform: uppercase;
    font-size: 18px;
  }
  .product-list-item a:hover .fast-buy .select-add-to-cart {
    transition: transform 0.3s ease;
    /* Adicionando transição */
    display: inline-block;
  }
  .product-list-item a:hover .fast-buy .select-add-to-cart:hover {
    transform: scale(1.2);
  }
  .product-list-item a:hover .first-color {
    background-color: var(--color-default-5);
    color: var(--color-white);
  }
}
.second-color {
  background-color: var(--color-default-2);
  color: var(--color-black);
}
@media (min-width: 513px) {
  .product-list-item-top-border {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: darkgray;
  }
}
.product-seal {
  text-align: center;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0;
  overflow: hidden;
  padding: 0.25rem 1rem;
  color: var(--color-white);
  width: -moz-fit-content;
  width: fit-content;
}
.product-seal.product-seal-primary,
.product-seal > .product-seal-primary {
  background: linear-gradient(to right, var(--color-default-5), var(--color-default-5));
}
.product-seal.product-seal-new {
  color: var(--color-black);
  background-color: var(--color-default-1);
}
@media (max-width: 1200px) {
  .product-list .product-seal-promo > :not(:last-child) {
    display: none;
  }
}
.tag-new {
  position: absolute;
  bottom: 0;
  margin-bottom: 0.8rem;
  margin-left: 0.8rem;
}
#artists h1 {
  font-size: 2.25rem;
}
#artists h2 {
  font-size: 1.875rem;
}
#artists p {
  text-align: justify;
  font-size: 1rem;
}
@media (max-width: 575px) {
  #artists p {
    text-align: start;
  }
}
#artists .artists-list {
  background-color: var(--color-backgound-default);
}
#artists .artists-list p {
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 0.5rem;
}
#artists .art-image-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1.5rem;
}
#artists .art-image-list img {
  width: 279px;
  height: 263px;
}
#artists .view-options {
  display: flex;
  justify-content: right;
  margin: 2rem 2rem 2rem 0;
}
#artists .blocks-view {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
#artists .list-view {
  box-sizing: border-box;
  margin: 0 0 0.6rem 0;
  display: flex;
  justify-content: space-between;
  background-color: var(--color-default-1);
}
#artists .list-view p {
  font-size: 1.3rem;
  line-height: 1rem;
}
#artists .list-view .img-cut {
  width: 123px;
  height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.product-list-item.banner {
  flex: 0 0 100%;
}
.product-list-item.banner .banner-wrapper {
  padding-bottom: 100%;
}
@media (min-width: 576px) {
  .product-list-item.banner .banner-wrapper {
    padding-bottom: 74.11%;
  }
}
@media (min-width: 768px) {
  .product-list-item.banner {
    flex: 0 0 50%;
  }
}
.icon-cr.icon-gift:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg style='fill:black' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 154.29 145.01'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><polygon class='cls-1' points='75.29 44.8 117.16 0 126.09 29.33 75.29 44.8'/><polygon class='cls-1' points='79 44.8 37.12 0 28.19 29.33 79 44.8'/><rect class='cls-1' y='41.69' width='154.29' height='29.06'/><polygon class='cls-1' points='68.99 84.74 13.03 84.74 13.03 145.01 68.84 145.01 68.99 84.74'/><path class='cls-1' d='M85.14,84.74,85,145H120.4a20.72,20.72,0,0,0,20.72-20.71V84.74Z'/></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 154.29 145.01'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><polygon class='cls-1' points='75.29 44.8 117.16 0 126.09 29.33 75.29 44.8'/><polygon class='cls-1' points='79 44.8 37.12 0 28.19 29.33 79 44.8'/><rect class='cls-1' y='41.69' width='154.29' height='29.06'/><polygon class='cls-1' points='68.99 84.74 13.03 84.74 13.03 145.01 68.84 145.01 68.99 84.74'/><path class='cls-1' d='M85.14,84.74,85,145H120.4a20.72,20.72,0,0,0,20.72-20.71V84.74Z'/></g></g></svg>");
}
.icon-cr.icon-offer-gift:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg width='23' height='23' viewBox='0 0 23 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.3959 3.16664H1.6042C1.39705 3.15937 1.19062 3.19481 0.997759 3.27075C0.804896 3.3467 0.62973 3.46153 0.483162 3.6081C0.336595 3.75467 0.221763 3.92984 0.145815 4.1227C0.0698664 4.31556 0.034427 4.52199 0.0417022 4.72914V18.2708C0.034427 18.478 0.0698664 18.6844 0.145815 18.8773C0.221763 19.0701 0.336595 19.2453 0.483162 19.3918C0.62973 19.5384 0.804896 19.6532 0.997759 19.7292C1.19062 19.8051 1.39705 19.8406 1.6042 19.8333H21.3959C21.603 19.8406 21.8094 19.8051 22.0023 19.7292C22.1952 19.6532 22.3703 19.5384 22.5169 19.3918C22.6635 19.2453 22.7783 19.0701 22.8543 18.8773C22.9302 18.6844 22.9656 18.478 22.9584 18.2708V4.72914C22.9656 4.52199 22.9302 4.31556 22.8543 4.1227C22.7783 3.92984 22.6635 3.75467 22.5169 3.6081C22.3703 3.46153 22.1952 3.3467 22.0023 3.27075C21.8094 3.19481 21.603 3.15937 21.3959 3.16664ZM20.875 17.75H2.12504V5.24997H20.875V17.75Z' fill='%23201F1E'/%3E%3Cpath d='M7.90005 15.1L6.30005 9.89999L9.50005 11.5L11.5 8.29999L13.5 11.5L17.1 9.89999L15.1 15.1H7.90005Z' fill='%23201F1E'/%3E%3Cpath d='M15.21 15.5H7.74157C7.65217 15.5008 7.56484 15.4738 7.49222 15.423C7.41962 15.3722 7.3655 15.3002 7.33771 15.2174L5.52323 9.82711C5.49543 9.7496 5.49251 9.66568 5.51486 9.58652C5.53721 9.50735 5.58378 9.43668 5.64836 9.38392C5.71215 9.32941 5.79137 9.29495 5.87562 9.28507C5.95986 9.27518 6.04522 9.29032 6.12047 9.32852L9.43092 10.9351L11.1373 7.71086C11.1767 7.64659 11.2325 7.59336 11.2993 7.5564C11.3661 7.51943 11.4416 7.5 11.5184 7.5C11.5953 7.5 11.6708 7.51943 11.7376 7.5564C11.8044 7.59336 11.8602 7.64659 11.8995 7.71086L13.6059 10.9406L16.9221 9.33406C16.9965 9.29633 17.0808 9.28143 17.1641 9.29132C17.2474 9.30121 17.3256 9.33542 17.3885 9.38946C17.4429 9.44757 17.4793 9.51957 17.4934 9.59704C17.5076 9.67452 17.4988 9.7543 17.4681 9.82711L15.6138 15.2119C15.587 15.2957 15.5333 15.3689 15.4607 15.4208C15.388 15.4726 15.3001 15.5004 15.21 15.5ZM8.08285 14.669H14.9085L16.3362 10.5196L13.5661 11.8603C13.5165 11.885 13.4624 11.8999 13.4068 11.904C13.3513 11.9082 13.2954 11.9016 13.2425 11.8846C13.1896 11.8676 13.1407 11.8405 13.0986 11.805C13.0565 11.7694 13.0221 11.7261 12.9973 11.6774L11.4957 8.80776L9.99972 11.6774C9.97497 11.7261 9.94054 11.7694 9.89846 11.805C9.85637 11.8405 9.80745 11.8676 9.75454 11.8846C9.70163 11.9016 9.64578 11.9082 9.59022 11.904C9.53467 11.8999 9.48052 11.885 9.43092 11.8603L6.64946 10.503L8.08285 14.669Z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;utf8,%3Csvg width='23' height='23' viewBox='0 0 23 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.3959 3.16664H1.6042C1.39705 3.15937 1.19062 3.19481 0.997759 3.27075C0.804896 3.3467 0.62973 3.46153 0.483162 3.6081C0.336595 3.75467 0.221763 3.92984 0.145815 4.1227C0.0698664 4.31556 0.034427 4.52199 0.0417022 4.72914V18.2708C0.034427 18.478 0.0698664 18.6844 0.145815 18.8773C0.221763 19.0701 0.336595 19.2453 0.483162 19.3918C0.62973 19.5384 0.804896 19.6532 0.997759 19.7292C1.19062 19.8051 1.39705 19.8406 1.6042 19.8333H21.3959C21.603 19.8406 21.8094 19.8051 22.0023 19.7292C22.1952 19.6532 22.3703 19.5384 22.5169 19.3918C22.6635 19.2453 22.7783 19.0701 22.8543 18.8773C22.9302 18.6844 22.9656 18.478 22.9584 18.2708V4.72914C22.9656 4.52199 22.9302 4.31556 22.8543 4.1227C22.7783 3.92984 22.6635 3.75467 22.5169 3.6081C22.3703 3.46153 22.1952 3.3467 22.0023 3.27075C21.8094 3.19481 21.603 3.15937 21.3959 3.16664ZM20.875 17.75H2.12504V5.24997H20.875V17.75Z' fill='%23201F1E'/%3E%3Cpath d='M7.90005 15.1L6.30005 9.89999L9.50005 11.5L11.5 8.29999L13.5 11.5L17.1 9.89999L15.1 15.1H7.90005Z' fill='%23201F1E'/%3E%3Cpath d='M15.21 15.5H7.74157C7.65217 15.5008 7.56484 15.4738 7.49222 15.423C7.41962 15.3722 7.3655 15.3002 7.33771 15.2174L5.52323 9.82711C5.49543 9.7496 5.49251 9.66568 5.51486 9.58652C5.53721 9.50735 5.58378 9.43668 5.64836 9.38392C5.71215 9.32941 5.79137 9.29495 5.87562 9.28507C5.95986 9.27518 6.04522 9.29032 6.12047 9.32852L9.43092 10.9351L11.1373 7.71086C11.1767 7.64659 11.2325 7.59336 11.2993 7.5564C11.3661 7.51943 11.4416 7.5 11.5184 7.5C11.5953 7.5 11.6708 7.51943 11.7376 7.5564C11.8044 7.59336 11.8602 7.64659 11.8995 7.71086L13.6059 10.9406L16.9221 9.33406C16.9965 9.29633 17.0808 9.28143 17.1641 9.29132C17.2474 9.30121 17.3256 9.33542 17.3885 9.38946C17.4429 9.44757 17.4793 9.51957 17.4934 9.59704C17.5076 9.67452 17.4988 9.7543 17.4681 9.82711L15.6138 15.2119C15.587 15.2957 15.5333 15.3689 15.4607 15.4208C15.388 15.4726 15.3001 15.5004 15.21 15.5ZM8.08285 14.669H14.9085L16.3362 10.5196L13.5661 11.8603C13.5165 11.885 13.4624 11.8999 13.4068 11.904C13.3513 11.9082 13.2954 11.9016 13.2425 11.8846C13.1896 11.8676 13.1407 11.8405 13.0986 11.805C13.0565 11.7694 13.0221 11.7261 12.9973 11.6774L11.4957 8.80776L9.99972 11.6774C9.97497 11.7261 9.94054 11.7694 9.89846 11.805C9.85637 11.8405 9.80745 11.8676 9.75454 11.8846C9.70163 11.9016 9.64578 11.9082 9.59022 11.904C9.53467 11.8999 9.48052 11.885 9.43092 11.8603L6.64946 10.503L8.08285 14.669Z' fill='black'/%3E%3C/svg%3E");
}
.icon-cr.icon-chevron-right:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg style='fill:black' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 86.28 136'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path class='cls-1' d='M81.36,56.12,68,42.76,25.24,0,0,25.24,42.76,68,0,110.75,25.24,136,68,93.24,81.36,79.87A16.79,16.79,0,0,0,81.36,56.12Z'/></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 86.28 136'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path class='cls-1' d='M81.36,56.12,68,42.76,25.24,0,0,25.24,42.76,68,0,110.75,25.24,136,68,93.24,81.36,79.87A16.79,16.79,0,0,0,81.36,56.12Z'/></g></g></svg>");
}
.icon-cr.icon-info:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M11.0469 8.0752V16H8.93018V8.0752H11.0469ZM8.79834 6.00977C8.79834 5.70215 8.90576 5.44824 9.12061 5.24805C9.33545 5.04785 9.62354 4.94775 9.98486 4.94775C10.3413 4.94775 10.627 5.04785 10.8418 5.24805C11.0615 5.44824 11.1714 5.70215 11.1714 6.00977C11.1714 6.31738 11.0615 6.57129 10.8418 6.77148C10.627 6.97168 10.3413 7.07178 9.98486 7.07178C9.62354 7.07178 9.33545 6.97168 9.12061 6.77148C8.90576 6.57129 8.79834 6.31738 8.79834 6.00977Z' fill='black'/><circle cx='10' cy='10' r='9' stroke='black' stroke-width='2'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M11.0469 8.0752V16H8.93018V8.0752H11.0469ZM8.79834 6.00977C8.79834 5.70215 8.90576 5.44824 9.12061 5.24805C9.33545 5.04785 9.62354 4.94775 9.98486 4.94775C10.3413 4.94775 10.627 5.04785 10.8418 5.24805C11.0615 5.44824 11.1714 5.70215 11.1714 6.00977C11.1714 6.31738 11.0615 6.57129 10.8418 6.77148C10.627 6.97168 10.3413 7.07178 9.98486 7.07178C9.62354 7.07178 9.33545 6.97168 9.12061 6.77148C8.90576 6.57129 8.79834 6.31738 8.79834 6.00977Z' fill='black'/><circle cx='10' cy='10' r='9' stroke='black' stroke-width='2'/></svg>");
}
.icon-cr.icon-tag:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg style='fill:black' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 126.86 149.14'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path class='cls-1' d='M107.69,0,45.06,13.8,4,84.69,2.17,87.81A16.1,16.1,0,0,0,8,109.8l67.88,39.34,9.88-17,41.07-70.9Zm-12,43.82a11.62,11.62,0,1,1-4.11-15.91A11.63,11.63,0,0,1,95.73,43.82Z'/></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 126.86 149.14'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path class='cls-1' d='M107.69,0,45.06,13.8,4,84.69,2.17,87.81A16.1,16.1,0,0,0,8,109.8l67.88,39.34,9.88-17,41.07-70.9Zm-12,43.82a11.62,11.62,0,1,1-4.11-15.91A11.63,11.63,0,0,1,95.73,43.82Z'/></g></g></svg>");
}
.icon-cr.icon-close:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg style='fill:black' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 136 135.81'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><rect class='cls-1' x='16.15' y='3.77' width='35.7' height='60.47' transform='translate(-14.08 34) rotate(-45)'/><rect class='cls-1' x='71.76' y='16.15' width='60.47' height='35.7' transform='translate(5.83 82.08) rotate(-45)'/><rect class='cls-1' x='50.15' y='50.15' width='35.7' height='35.7' transform='translate(-28.17 68) rotate(-45)'/><path class='cls-1' d='M12.2,122.77,0,110.57,42.76,67.81,68,93.05,38.29,122.77A18.46,18.46,0,0,1,12.2,122.77Z'/><rect class='cls-1' x='84.15' y='71.58' width='35.7' height='60.47' transform='translate(-42.12 101.94) rotate(-45)'/><rect class='cls-1' x='50.15' y='49.96' width='35.7' height='35.7' transform='translate(-28.03 67.94) rotate(-45)'/></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 136 135.81'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><rect class='cls-1' x='16.15' y='3.77' width='35.7' height='60.47' transform='translate(-14.08 34) rotate(-45)'/><rect class='cls-1' x='71.76' y='16.15' width='60.47' height='35.7' transform='translate(5.83 82.08) rotate(-45)'/><rect class='cls-1' x='50.15' y='50.15' width='35.7' height='35.7' transform='translate(-28.17 68) rotate(-45)'/><path class='cls-1' d='M12.2,122.77,0,110.57,42.76,67.81,68,93.05,38.29,122.77A18.46,18.46,0,0,1,12.2,122.77Z'/><rect class='cls-1' x='84.15' y='71.58' width='35.7' height='60.47' transform='translate(-42.12 101.94) rotate(-45)'/><rect class='cls-1' x='50.15' y='49.96' width='35.7' height='35.7' transform='translate(-28.03 67.94) rotate(-45)'/></g></g></svg>");
}
.icon-cr.icon-chevron-down:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg width='18' height='11' viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M10.5724 10.3727L12.3406 8.66941L18 3.21788L14.6594 0L9 5.45153L3.34191 0L0 3.21788L5.65941 8.66941L7.42897 10.3727C7.63533 10.5716 7.88035 10.7293 8.15003 10.837C8.4197 10.9446 8.70875 11 9.00066 11C9.29257 11 9.58162 10.9446 9.85129 10.837C10.121 10.7293 10.366 10.5716 10.5724 10.3727Z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg width='18' height='11' viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M10.5724 10.3727L12.3406 8.66941L18 3.21788L14.6594 0L9 5.45153L3.34191 0L0 3.21788L5.65941 8.66941L7.42897 10.3727C7.63533 10.5716 7.88035 10.7293 8.15003 10.837C8.4197 10.9446 8.70875 11 9.00066 11C9.29257 11 9.58162 10.9446 9.85129 10.837C10.121 10.7293 10.366 10.5716 10.5724 10.3727Z' fill='black'/></svg>");
}
.icon-cr.icon-chevron-down-2:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg style='fill:black' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 86.28 136'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path class='cls-1' d='M81.36,56.12,68,42.76,25.24,0,0,25.24,42.76,68,0,110.75,25.24,136,68,93.24,81.36,79.87A16.79,16.79,0,0,0,81.36,56.12Z'/></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 86.28 136'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path class='cls-1' d='M81.36,56.12,68,42.76,25.24,0,0,25.24,42.76,68,0,110.75,25.24,136,68,93.24,81.36,79.87A16.79,16.79,0,0,0,81.36,56.12Z'/></g></g></svg>");
}
.icon-cr.icon-chevron-down-2:before {
  transform: rotate(90deg);
}
.icon-cr.icon-chevron-up:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg width='18' height='11' viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M7.42765 0.627303L5.65941 2.33059L0 7.78212L3.34059 11L9 5.54847L14.6581 11L18 7.78212L12.3406 2.33059L10.571 0.627303C10.3647 0.42843 10.1196 0.27067 9.84997 0.163035C9.5803 0.0554008 9.29125 0 8.99934 0C8.70743 0 8.41838 0.0554008 8.14871 0.163035C7.87903 0.27067 7.63401 0.42843 7.42765 0.627303Z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg width='18' height='11' viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M7.42765 0.627303L5.65941 2.33059L0 7.78212L3.34059 11L9 5.54847L14.6581 11L18 7.78212L12.3406 2.33059L10.571 0.627303C10.3647 0.42843 10.1196 0.27067 9.84997 0.163035C9.5803 0.0554008 9.29125 0 8.99934 0C8.70743 0 8.41838 0.0554008 8.14871 0.163035C7.87903 0.27067 7.63401 0.42843 7.42765 0.627303Z' fill='black'/></svg>");
}
.icon-cr.icon-chevron-up-2:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg style='fill:black' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 86.28 136'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path class='cls-1' d='M81.36,56.12,68,42.76,25.24,0,0,25.24,42.76,68,0,110.75,25.24,136,68,93.24,81.36,79.87A16.79,16.79,0,0,0,81.36,56.12Z'/></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 86.28 136'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path class='cls-1' d='M81.36,56.12,68,42.76,25.24,0,0,25.24,42.76,68,0,110.75,25.24,136,68,93.24,81.36,79.87A16.79,16.79,0,0,0,81.36,56.12Z'/></g></g></svg>");
}
.icon-cr.icon-chevron-up-2:before {
  transform: rotate(-90deg);
}
.icon-cr.icon-chevron-left:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg style='fill:black' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 86.28 136'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path class='cls-1' d='M81.36,56.12,68,42.76,25.24,0,0,25.24,42.76,68,0,110.75,25.24,136,68,93.24,81.36,79.87A16.79,16.79,0,0,0,81.36,56.12Z'/></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 86.28 136'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path class='cls-1' d='M81.36,56.12,68,42.76,25.24,0,0,25.24,42.76,68,0,110.75,25.24,136,68,93.24,81.36,79.87A16.79,16.79,0,0,0,81.36,56.12Z'/></g></g></svg>");
}
.icon-cr.icon-chevron-left:before {
  transform: rotate(180deg);
}
.icon-cr.icon-arrow-right:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M12.4243 5.42426C12.6586 5.18995 12.6586 4.81005 12.4243 4.57574L8.60589 0.757359C8.37157 0.523044 7.99167 0.523044 7.75736 0.757359C7.52305 0.991674 7.52305 1.37157 7.75736 1.60589L11.1515 5L7.75736 8.39411C7.52304 8.62843 7.52304 9.00833 7.75736 9.24264C7.99167 9.47696 8.37157 9.47696 8.60589 9.24264L12.4243 5.42426ZM-1.33518e-07 5.6L12 5.6L12 4.4L1.33518e-07 4.4L-1.33518e-07 5.6Z' fill='white'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M12.4243 5.42426C12.6586 5.18995 12.6586 4.81005 12.4243 4.57574L8.60589 0.757359C8.37157 0.523044 7.99167 0.523044 7.75736 0.757359C7.52305 0.991674 7.52305 1.37157 7.75736 1.60589L11.1515 5L7.75736 8.39411C7.52304 8.62843 7.52304 9.00833 7.75736 9.24264C7.99167 9.47696 8.37157 9.47696 8.60589 9.24264L12.4243 5.42426ZM-1.33518e-07 5.6L12 5.6L12 4.4L1.33518e-07 4.4L-1.33518e-07 5.6Z' fill='white'/></svg>");
}
.icon-cr.icon-arrow-left:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M12.4243 5.42426C12.6586 5.18995 12.6586 4.81005 12.4243 4.57574L8.60589 0.757359C8.37157 0.523044 7.99167 0.523044 7.75736 0.757359C7.52305 0.991674 7.52305 1.37157 7.75736 1.60589L11.1515 5L7.75736 8.39411C7.52304 8.62843 7.52304 9.00833 7.75736 9.24264C7.99167 9.47696 8.37157 9.47696 8.60589 9.24264L12.4243 5.42426ZM-1.33518e-07 5.6L12 5.6L12 4.4L1.33518e-07 4.4L-1.33518e-07 5.6Z' fill='white'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M12.4243 5.42426C12.6586 5.18995 12.6586 4.81005 12.4243 4.57574L8.60589 0.757359C8.37157 0.523044 7.99167 0.523044 7.75736 0.757359C7.52305 0.991674 7.52305 1.37157 7.75736 1.60589L11.1515 5L7.75736 8.39411C7.52304 8.62843 7.52304 9.00833 7.75736 9.24264C7.99167 9.47696 8.37157 9.47696 8.60589 9.24264L12.4243 5.42426ZM-1.33518e-07 5.6L12 5.6L12 4.4L1.33518e-07 4.4L-1.33518e-07 5.6Z' fill='white'/></svg>");
}
.icon-cr.icon-arrow-left:before {
  transform: rotate(180deg);
}
.icon-cr.icon-carrier: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>");
}
.icon-cr.icon-t-shirt:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 181.61 153.12'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path fill='black' d='M181.61,68.85H147.92v49.4a34.87,34.87,0,0,1-34.87,34.87H32.78V68.85H0l21.63-49.6A38.64,38.64,0,0,1,55,0H66c0,.19,0,.39,0,.59a24.34,24.34,0,1,0,48.67,0,5.72,5.72,0,0,0,0-.59h11a38.64,38.64,0,0,1,33.41,19.25Z'/></g></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 181.61 153.12'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path fill='black' d='M181.61,68.85H147.92v49.4a34.87,34.87,0,0,1-34.87,34.87H32.78V68.85H0l21.63-49.6A38.64,38.64,0,0,1,55,0H66c0,.19,0,.39,0,.59a24.34,24.34,0,1,0,48.67,0,5.72,5.72,0,0,0,0-.59h11a38.64,38.64,0,0,1,33.41,19.25Z'/></g></g></svg>");
}
.icon-cr.icon-heart:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='5 5 54 54'><path fill='black' d='M53.33 14.69a14.19 14.19 0 0 0-20.18-.11L32 15.7l-1.1-1.12a14.19 14.19 0 0 0-20.07 20.07L28.16 52a5.47 5.47 0 0 0 7.73 0l17.22-17.24a14.33 14.33 0 0 0 .22-20.07zm-1 9.35a1.11 1.11 0 0 1-1 1.18 1.12 1.12 0 0 1-1.17-1 7 7 0 0 0-2-4.5 6.92 6.92 0 0 0-3-1.79 1.08 1.08 0 0 1-.67-.53 1.07 1.07 0 0 1-.1-.84 1.12 1.12 0 0 1 .52-.67 1.14 1.14 0 0 1 .54-.14 1 1 0 0 1 .3 0A9.2 9.2 0 0 1 52.36 24z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='5 5 54 54'><path fill='black' d='M53.33 14.69a14.19 14.19 0 0 0-20.18-.11L32 15.7l-1.1-1.12a14.19 14.19 0 0 0-20.07 20.07L28.16 52a5.47 5.47 0 0 0 7.73 0l17.22-17.24a14.33 14.33 0 0 0 .22-20.07zm-1 9.35a1.11 1.11 0 0 1-1 1.18 1.12 1.12 0 0 1-1.17-1 7 7 0 0 0-2-4.5 6.92 6.92 0 0 0-3-1.79 1.08 1.08 0 0 1-.67-.53 1.07 1.07 0 0 1-.1-.84 1.12 1.12 0 0 1 .52-.67 1.14 1.14 0 0 1 .54-.14 1 1 0 0 1 .3 0A9.2 9.2 0 0 1 52.36 24z'/></svg>");
}
.icon-cr.icon-exchange:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 148.07 196.35'><g id='Layer_2' data-name='Layer 2'><g id='Layer_2-2' data-name='Layer 2'><path fill='black' d='M27.29,60.71H89.68L75.05,75.34,92.22,92.51,121.3,63.43l9.1-9.09a11.43,11.43,0,0,0,0-16.16l-9.1-9.09L92.22,0,75.05,17.17,91.3,33.43H26.85A26.85,26.85,0,0,0,0,60.28V113.1H27.29Z'/><path fill='black' d='M120.78,83.25v52.39H59.28L73.91,121,56.74,103.84,27.66,132.93,18.56,142a11.43,11.43,0,0,0,0,16.16l9.1,9.09,29.08,29.08,17.17-17.17L57.66,162.93h63.55a26.87,26.87,0,0,0,26.86-26.86V83.25Z'/></g></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 148.07 196.35'><g id='Layer_2' data-name='Layer 2'><g id='Layer_2-2' data-name='Layer 2'><path fill='black' d='M27.29,60.71H89.68L75.05,75.34,92.22,92.51,121.3,63.43l9.1-9.09a11.43,11.43,0,0,0,0-16.16l-9.1-9.09L92.22,0,75.05,17.17,91.3,33.43H26.85A26.85,26.85,0,0,0,0,60.28V113.1H27.29Z'/><path fill='black' d='M120.78,83.25v52.39H59.28L73.91,121,56.74,103.84,27.66,132.93,18.56,142a11.43,11.43,0,0,0,0,16.16l9.1,9.09,29.08,29.08,17.17-17.17L57.66,162.93h63.55a26.87,26.87,0,0,0,26.86-26.86V83.25Z'/></g></g></svg>");
}
.icon-cr.icon-credit-card:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' style='fill:black' viewBox='0 0 128.35 97.23'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path class='cls-1' d='M128.35,24.83V0H24.83A24.83,24.83,0,0,0,0,24.83H128.35Z'/><path class='cls-1' d='M0,38.67V97.23H104.35a24,24,0,0,0,24-24V38.67Zm23,42A12.19,12.19,0,1,1,35.18,68.52,12.19,12.19,0,0,1,23,80.71Z'/></g></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' style='fill:black' viewBox='0 0 128.35 97.23'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path class='cls-1' d='M128.35,24.83V0H24.83A24.83,24.83,0,0,0,0,24.83H128.35Z'/><path class='cls-1' d='M0,38.67V97.23H104.35a24,24,0,0,0,24-24V38.67Zm23,42A12.19,12.19,0,1,1,35.18,68.52,12.19,12.19,0,0,1,23,80.71Z'/></g></g></svg>");
}
.icon-cr.icon-of-people:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 151.93 187.14'><g id='Layer_2' data-name='Layer 2'><g id='Layer_2-2' data-name='Layer 2'><path fill='black' d='M93.26,0A20.37,20.37,0,0,0,74.84,11.7a20.52,20.52,0,0,0-38.9,8c0,.35,0,.7,0,1.05h0v.06c0,.26,0,.51,0,.77s0,.52.05.77a.37.37,0,0,0,0,.11c0,.28,0,.54.08.81a2.51,2.51,0,0,0,0,.27c0,.3.08.59.13.88l0,.15a20.49,20.49,0,0,0,7.93,12.66L75,64.82l31.12-28.61h0a20.33,20.33,0,0,0,7.45-13.86c.06-.53.08-1.06.1-1.6,0-.12,0-.25,0-.38A20.37,20.37,0,0,0,93.26,0Z'/><circle fill='black' cx='75.87' cy='99.34' r='21.95'/><path fill='black' d='M151.53,72.85H124.58c-.09.45-.16.9-.21,1.37-.24,2.36-.08,4.76-.17,7.14-.2,5.36.16,10.83-.78,16.07-4.74,26.5-28.76,43.44-55.51,39.36-23.07-3.51-40-23.61-40.28-46.95-.07-4.77.07-9.55-.06-14.33a15.36,15.36,0,0,0-.32-2.66H.31a10.58,10.58,0,0,0-.16,1.6c-.25,8.75-.32,17.64.91,26.27,2.79,19.72,12.63,35.66,28.23,48a6.83,6.83,0,0,1,2.56,5.39c-.07,11,0,22-.06,33h87.43c-.1-10.66,0-21.32-.09-32a8,8,0,0,1,3.07-6.4,76.82,76.82,0,0,0,25.22-34.94c4.72-12.83,4.86-26.15,4.27-39.49A11.76,11.76,0,0,0,151.53,72.85Z'/></g></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 151.93 187.14'><g id='Layer_2' data-name='Layer 2'><g id='Layer_2-2' data-name='Layer 2'><path fill='black' d='M93.26,0A20.37,20.37,0,0,0,74.84,11.7a20.52,20.52,0,0,0-38.9,8c0,.35,0,.7,0,1.05h0v.06c0,.26,0,.51,0,.77s0,.52.05.77a.37.37,0,0,0,0,.11c0,.28,0,.54.08.81a2.51,2.51,0,0,0,0,.27c0,.3.08.59.13.88l0,.15a20.49,20.49,0,0,0,7.93,12.66L75,64.82l31.12-28.61h0a20.33,20.33,0,0,0,7.45-13.86c.06-.53.08-1.06.1-1.6,0-.12,0-.25,0-.38A20.37,20.37,0,0,0,93.26,0Z'/><circle fill='black' cx='75.87' cy='99.34' r='21.95'/><path fill='black' d='M151.53,72.85H124.58c-.09.45-.16.9-.21,1.37-.24,2.36-.08,4.76-.17,7.14-.2,5.36.16,10.83-.78,16.07-4.74,26.5-28.76,43.44-55.51,39.36-23.07-3.51-40-23.61-40.28-46.95-.07-4.77.07-9.55-.06-14.33a15.36,15.36,0,0,0-.32-2.66H.31a10.58,10.58,0,0,0-.16,1.6c-.25,8.75-.32,17.64.91,26.27,2.79,19.72,12.63,35.66,28.23,48a6.83,6.83,0,0,1,2.56,5.39c-.07,11,0,22-.06,33h87.43c-.1-10.66,0-21.32-.09-32a8,8,0,0,1,3.07-6.4,76.82,76.82,0,0,0,25.22-34.94c4.72-12.83,4.86-26.15,4.27-39.49A11.76,11.76,0,0,0,151.53,72.85Z'/></g></g></svg>");
}
.icon-cr.icon-vegan:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160.93 167.4'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><rect fill='black' x='65.78' y='71.34' width='28.22' height='96.06'/><path fill='black' d='M160.42,76.81a48,48,0,0,1-77.08,44.71Z'/><path fill='black' d='M.51,76.81A48,48,0,0,0,77.6,121.52Z'/><path fill='black' d='M109.89,27.63c0,.62.06,1.24.06,1.87a29.5,29.5,0,0,1-59,0c0-.63,0-1.25.07-1.87H19.76a60.7,60.7,0,0,0,121.39,0Z'/><path fill='black' d='M80.45,0A29.49,29.49,0,0,0,51,27.63h58.87A29.5,29.5,0,0,0,80.45,0Z'/></g></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160.93 167.4'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><rect fill='black' x='65.78' y='71.34' width='28.22' height='96.06'/><path fill='black' d='M160.42,76.81a48,48,0,0,1-77.08,44.71Z'/><path fill='black' d='M.51,76.81A48,48,0,0,0,77.6,121.52Z'/><path fill='black' d='M109.89,27.63c0,.62.06,1.24.06,1.87a29.5,29.5,0,0,1-59,0c0-.63,0-1.25.07-1.87H19.76a60.7,60.7,0,0,0,121.39,0Z'/><path fill='black' d='M80.45,0A29.49,29.49,0,0,0,51,27.63h58.87A29.5,29.5,0,0,0,80.45,0Z'/></g></g></svg>");
}
.icon-cr.icon-create-is-our-soul:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 161.81 134.95'><g id='Layer_2' data-name='Layer 2'><g id='Layer_2-2' data-name='Layer 2'><path fill='black' d='M28.28,122.94h0A14.42,14.42,0,0,0,48.64,124l10.24-9.2L37.28,95.46l-7.91,7.11A14.41,14.41,0,0,0,28.28,122.94Z'/><path fill='black' d='M119.4,0A42.41,42.41,0,0,0,81,24.35,42.71,42.71,0,0,0,.06,41C0,41.74,0,42.47,0,43.2H0v.12c0,.54,0,1.07,0,1.59S.1,46,.15,46.54a1.79,1.79,0,0,0,0,.23q.07.84.18,1.68c0,.19,0,.38.07.56.08.61.18,1.22.28,1.82l.06.32A42.76,42.76,0,0,0,17.27,77.52l20,17.94L91.26,47l19.28,21.46-51.66,46.4L81.32,135l64.79-59.57h0A42.33,42.33,0,0,0,161.6,46.54c.11-1.1.17-2.21.19-3.33,0-.27,0-.53,0-.79A42.42,42.42,0,0,0,119.4,0Zm.23,60.28L100.48,39l28-5.92Z'/></g></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 161.81 134.95'><g id='Layer_2' data-name='Layer 2'><g id='Layer_2-2' data-name='Layer 2'><path fill='black' d='M28.28,122.94h0A14.42,14.42,0,0,0,48.64,124l10.24-9.2L37.28,95.46l-7.91,7.11A14.41,14.41,0,0,0,28.28,122.94Z'/><path fill='black' d='M119.4,0A42.41,42.41,0,0,0,81,24.35,42.71,42.71,0,0,0,.06,41C0,41.74,0,42.47,0,43.2H0v.12c0,.54,0,1.07,0,1.59S.1,46,.15,46.54a1.79,1.79,0,0,0,0,.23q.07.84.18,1.68c0,.19,0,.38.07.56.08.61.18,1.22.28,1.82l.06.32A42.76,42.76,0,0,0,17.27,77.52l20,17.94L91.26,47l19.28,21.46-51.66,46.4L81.32,135l64.79-59.57h0A42.33,42.33,0,0,0,161.6,46.54c.11-1.1.17-2.21.19-3.33,0-.27,0-.53,0-.79A42.42,42.42,0,0,0,119.4,0Zm.23,60.28L100.48,39l28-5.92Z'/></g></g></svg>");
}
.icon-cr.icon-no-plastic:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 159 181.27'><g id='Layer_2' data-name='Layer 2'><g id='Layer_2-2' data-name='Layer 2'><path fill='black' d='M71.47,143.46a50.21,50.21,0,0,1,61.12-49V0H90.12V52.83H42.47V0H0V154.34a26.93,26.93,0,0,0,26.93,26.93H88.65A50.12,50.12,0,0,1,71.47,143.46Z'/><path fill='black' d='M121.71,106.17A37.29,37.29,0,1,0,159,143.46,37.3,37.3,0,0,0,121.71,106.17ZM132,162.42l-10-10-9.8,9.8-9.13-9.14,9.79-9.79-10.09-10.09,8.66-8.67,10.09,10.09,9.79-9.79,9.14,9.14-9.79,9.79,10,10Z'/></g></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 159 181.27'><g id='Layer_2' data-name='Layer 2'><g id='Layer_2-2' data-name='Layer 2'><path fill='black' d='M71.47,143.46a50.21,50.21,0,0,1,61.12-49V0H90.12V52.83H42.47V0H0V154.34a26.93,26.93,0,0,0,26.93,26.93H88.65A50.12,50.12,0,0,1,71.47,143.46Z'/><path fill='black' d='M121.71,106.17A37.29,37.29,0,1,0,159,143.46,37.3,37.3,0,0,0,121.71,106.17ZM132,162.42l-10-10-9.8,9.8-9.13-9.14,9.79-9.79-10.09-10.09,8.66-8.67,10.09,10.09,9.79-9.79,9.14,9.14-9.79,9.79,10,10Z'/></g></g></svg>");
}
.icon-cr.icon-wishlist:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 145.85 121.63'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path fill='black' d='M145.85,38.23A38.23,38.23,0,0,0,72.76,22.52,38.23,38.23,0,1,0,14.42,68.84l58.87,52.79L131.7,68h0A38.16,38.16,0,0,0,145.85,38.23Z'/></g></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 145.85 121.63'><g id='Layer_2' data-name='Layer 2'><g id='Layer_1-2' data-name='Layer 1'><path fill='black' d='M145.85,38.23A38.23,38.23,0,0,0,72.76,22.52,38.23,38.23,0,1,0,14.42,68.84l58.87,52.79L131.7,68h0A38.16,38.16,0,0,0,145.85,38.23Z'/></g></g></svg>");
}
.icon-cr.icon-trash:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 145.4 165.08'><g id='Layer_2' data-name='Layer 2'><g id='Layer_2-2' data-name='Layer 2'><path fill='black' d='M145.4,25.93.42,55.69h0C-2,43.75,6.6,31.88,19.74,29.19l97.39-20c13.14-2.69,25.8,4.8,28.27,16.74Z'/><path fill='black' d='M90.2,16.14,47.63,24.85h0C45.36,13.82,52.9,3,64.48.59l.63-.13C76.7-1.91,87.93,5.11,90.2,16.14Z'/><path fill='black' d='M9.91,65.74l10.93,99.34H106c11.28,0,20.76-7.69,22-17.88l12.33-81.46ZM61.62,144h-16V85h16Zm43,0h-16V85h16Z'/></g></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 145.4 165.08'><g id='Layer_2' data-name='Layer 2'><g id='Layer_2-2' data-name='Layer 2'><path fill='black' d='M145.4,25.93.42,55.69h0C-2,43.75,6.6,31.88,19.74,29.19l97.39-20c13.14-2.69,25.8,4.8,28.27,16.74Z'/><path fill='black' d='M90.2,16.14,47.63,24.85h0C45.36,13.82,52.9,3,64.48.59l.63-.13C76.7-1.91,87.93,5.11,90.2,16.14Z'/><path fill='black' d='M9.91,65.74l10.93,99.34H106c11.28,0,20.76-7.69,22-17.88l12.33-81.46ZM61.62,144h-16V85h16Zm43,0h-16V85h16Z'/></g></g></svg>");
}
.icon-cr.icon-block-view:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'><rect x='0.5' y='0.5' width='7' height='7' fill='black' stroke='black'/><rect x='10.5' y='0.5' width='7' height='7' fill='black' stroke='black'/><rect x='0.5' y='10.5' width='7' height='7' fill='black' stroke='black'/><rect x='10.5' y='10.5' width='7' height='7' fill='black' stroke='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'><rect x='0.5' y='0.5' width='7' height='7' fill='black' stroke='black'/><rect x='10.5' y='0.5' width='7' height='7' fill='black' stroke='black'/><rect x='0.5' y='10.5' width='7' height='7' fill='black' stroke='black'/><rect x='10.5' y='10.5' width='7' height='7' fill='black' stroke='black'/></svg>");
}
.icon-cr.icon-list-view:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg width='65' height='40' viewBox='0 0 65 40' fill='none' xmlns='http://www.w3.org/2000/svg'><rect x='24.5' y='11.5' width='10' height='4' fill='black' stroke='black'/><rect x='37.5' y='11.5' width='4' height='4' fill='black' stroke='black'/><rect x='24.5' y='24.5' width='10' height='4' fill='black' stroke='black'/><rect x='24.5' y='18' width='10' height='4' fill='black' stroke='black'/><rect x='37.5' y='24.5' width='4' height='4' fill='black' stroke='black'/><rect x='37.5' y='18' width='4' height='4' fill='black' stroke='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg width='65' height='40' viewBox='0 0 65 40' fill='none' xmlns='http://www.w3.org/2000/svg'><rect x='24.5' y='11.5' width='10' height='4' fill='black' stroke='black'/><rect x='37.5' y='11.5' width='4' height='4' fill='black' stroke='black'/><rect x='24.5' y='24.5' width='10' height='4' fill='black' stroke='black'/><rect x='24.5' y='18' width='10' height='4' fill='black' stroke='black'/><rect x='37.5' y='24.5' width='4' height='4' fill='black' stroke='black'/><rect x='37.5' y='18' width='4' height='4' fill='black' stroke='black'/></svg>");
}
.icon-cr.icon-cashback:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'><g stroke='green' stroke-width='1.3' stroke-linecap='square'><path d='m2.827 1.906-.091 2.499 2.498.09m11.951 13.547-.178-2.493-2.494.178'/><path d='M18.49 7A9 9 0 0 0 3.64 3.64m12.72 12.72A9 9 0 0 1 1.51 13M10 6v8m2.084-7H8.959c-.387 0-.758.158-1.032.44A1.522 1.522 0 0 0 7.5 8.5c0 .398.154.78.427 1.06.274.282.645.44 1.032.44h2.083c.387 0 .758.158 1.031.44.274.28.427.662.427 1.06s-.153.78-.427 1.06c-.273.282-.644.44-1.031.44H7.5'/></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'><g stroke='green' stroke-width='1.3' stroke-linecap='square'><path d='m2.827 1.906-.091 2.499 2.498.09m11.951 13.547-.178-2.493-2.494.178'/><path d='M18.49 7A9 9 0 0 0 3.64 3.64m12.72 12.72A9 9 0 0 1 1.51 13M10 6v8m2.084-7H8.959c-.387 0-.758.158-1.032.44A1.522 1.522 0 0 0 7.5 8.5c0 .398.154.78.427 1.06.274.282.645.44 1.032.44h2.083c.387 0 .758.158 1.031.44.274.28.427.662.427 1.06s-.153.78-.427 1.06c-.273.282-.644.44-1.031.44H7.5'/></g></svg>");
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-default-5);
}
::-webkit-scrollbar-thumb:active {
  background: var(--color-default-5);
}
.frame,
.frame-hover,
.frame-inverse,
.frame-support {
  background: transparent;
  border-radius: 0;
  padding: 1rem;
}
.full-size {
  width: 100%;
}
.frame-outline {
  background-color: transparent;
  border-radius: 0;
  padding: 1rem;
  border: 2px solid var(--color-default-2);
}
.titleOrderConfirmation {
  font-family: Roboto, 'Trebuchet MS', Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-style: italic;
  line-height: 23.44px;
}
@media (hover: hover) and (pointer: fine) {
  .frame-hover {
    transition: background-color 0.1s ease-in-out;
    cursor: pointer;
  }
  .frame-hover:hover {
    background-color: var(--color-default-2);
  }
}
.frame-inverse {
  background-color: var(--color-default-5);
  color: var(--color-default-1);
}
.frame-inverse h1,
.frame-inverse h2,
.frame-inverse h3,
.frame-inverse h4 {
  color: var(--color-default-1);
}
.frame-support {
  background-color: var(--color-info-4);
  color: var(--color-default-1);
}
.frame-support h1,
.frame-support h2,
.frame-support h3,
.frame-support h4,
.frame-support a {
  color: var(--color-default-1);
}
.icon-cr.icon-instagram:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88.65 88.65'><defs><style>.cls-1{fill:black;}</style></defs><title>instagram</title><g id='Layer_2' data-name='Layer 2'><g id='Camada_1' data-name='Camada 1'><path class='cls-1' d='M67.49,0H21.16A21.16,21.16,0,0,0,0,21.16V67.49A21.16,21.16,0,0,0,21.16,88.65H67.49A21.16,21.16,0,0,0,88.65,67.49V21.16A21.16,21.16,0,0,0,67.49,0ZM79.65,67.49A12.17,12.17,0,0,1,67.49,79.65H21.16A12.17,12.17,0,0,1,9,67.49V21.16A12.17,12.17,0,0,1,21.16,9H67.49A12.17,12.17,0,0,1,79.65,21.16Z'/><path class='cls-1' d='M44.32,19.84A24.48,24.48,0,1,0,68.81,44.32,24.48,24.48,0,0,0,44.32,19.84Zm0,40A15.48,15.48,0,1,1,59.81,44.32,15.5,15.5,0,0,1,44.32,59.81Z'/><circle class='cls-1' cx='67.81' cy='19.47' r='4.69'/></g></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88.65 88.65'><defs><style>.cls-1{fill:black;}</style></defs><title>instagram</title><g id='Layer_2' data-name='Layer 2'><g id='Camada_1' data-name='Camada 1'><path class='cls-1' d='M67.49,0H21.16A21.16,21.16,0,0,0,0,21.16V67.49A21.16,21.16,0,0,0,21.16,88.65H67.49A21.16,21.16,0,0,0,88.65,67.49V21.16A21.16,21.16,0,0,0,67.49,0ZM79.65,67.49A12.17,12.17,0,0,1,67.49,79.65H21.16A12.17,12.17,0,0,1,9,67.49V21.16A12.17,12.17,0,0,1,21.16,9H67.49A12.17,12.17,0,0,1,79.65,21.16Z'/><path class='cls-1' d='M44.32,19.84A24.48,24.48,0,1,0,68.81,44.32,24.48,24.48,0,0,0,44.32,19.84Zm0,40A15.48,15.48,0,1,1,59.81,44.32,15.5,15.5,0,0,1,44.32,59.81Z'/><circle class='cls-1' cx='67.81' cy='19.47' r='4.69'/></g></g></svg>");
}
.icon-cr.icon-facebook:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88.65 88.65'><defs><style>.cls-1{fill:black;}</style></defs><title>facebook</title><g id='Layer_2' data-name='Layer 2'><g id='Camada_1' data-name='Camada 1'><path class='cls-1' d='M83.75,0H4.89A4.89,4.89,0,0,0,0,4.89V83.76a4.89,4.89,0,0,0,4.89,4.89H47.35V54.32H35.8V40.94H47.35V31.07c0-11.45,7-17.68,17.21-17.68a94.9,94.9,0,0,1,10.32.53v12H67.8c-5.55,0-6.63,2.64-6.63,6.51v8.54H74.41L72.69,54.32H61.17V88.65H83.75a4.89,4.89,0,0,0,4.89-4.89V4.89A4.89,4.89,0,0,0,83.75,0Z'/></g></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88.65 88.65'><defs><style>.cls-1{fill:black;}</style></defs><title>facebook</title><g id='Layer_2' data-name='Layer 2'><g id='Camada_1' data-name='Camada 1'><path class='cls-1' d='M83.75,0H4.89A4.89,4.89,0,0,0,0,4.89V83.76a4.89,4.89,0,0,0,4.89,4.89H47.35V54.32H35.8V40.94H47.35V31.07c0-11.45,7-17.68,17.21-17.68a94.9,94.9,0,0,1,10.32.53v12H67.8c-5.55,0-6.63,2.64-6.63,6.51v8.54H74.41L72.69,54.32H61.17V88.65H83.75a4.89,4.89,0,0,0,4.89-4.89V4.89A4.89,4.89,0,0,0,83.75,0Z'/></g></g></svg>");
}
.icon-cr.icon-twitter:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90.81 73.8'><defs><style>.cls-1{fill:black;}</style></defs><title>twitter</title><g id='Layer_2' data-name='Layer 2'><g id='Camada_1' data-name='Camada 1'><path class='cls-1' d='M90.81,8.74a37.24,37.24,0,0,1-10.7,2.93A18.68,18.68,0,0,0,88.3,1.36,37.3,37.3,0,0,1,76.47,5.88a18.65,18.65,0,0,0-31.75,17A52.89,52.89,0,0,1,6.32,3.41a18.65,18.65,0,0,0,5.76,24.87A18.55,18.55,0,0,1,3.65,26c0,.08,0,.16,0,.23A18.64,18.64,0,0,0,18.59,44.45a18.67,18.67,0,0,1-8.41.32,18.65,18.65,0,0,0,17.4,12.94,37.38,37.38,0,0,1-23.14,8A38,38,0,0,1,0,65.43,52.73,52.73,0,0,0,28.56,73.8c34.27,0,53-28.39,53-53q0-1.21-.05-2.41A37.85,37.85,0,0,0,90.81,8.74Z'/></g></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90.81 73.8'><defs><style>.cls-1{fill:black;}</style></defs><title>twitter</title><g id='Layer_2' data-name='Layer 2'><g id='Camada_1' data-name='Camada 1'><path class='cls-1' d='M90.81,8.74a37.24,37.24,0,0,1-10.7,2.93A18.68,18.68,0,0,0,88.3,1.36,37.3,37.3,0,0,1,76.47,5.88a18.65,18.65,0,0,0-31.75,17A52.89,52.89,0,0,1,6.32,3.41a18.65,18.65,0,0,0,5.76,24.87A18.55,18.55,0,0,1,3.65,26c0,.08,0,.16,0,.23A18.64,18.64,0,0,0,18.59,44.45a18.67,18.67,0,0,1-8.41.32,18.65,18.65,0,0,0,17.4,12.94,37.38,37.38,0,0,1-23.14,8A38,38,0,0,1,0,65.43,52.73,52.73,0,0,0,28.56,73.8c34.27,0,53-28.39,53-53q0-1.21-.05-2.41A37.85,37.85,0,0,0,90.81,8.74Z'/></g></g></svg>");
}
.icon-cr.icon-youtube:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 103.7 73.38'><defs><style>.cls-1{fill:black;}</style></defs><title>youtube</title><g id='Layer_2' data-name='Layer 2'><g id='Camada_1' data-name='Camada 1'><path class='cls-1' d='M82.16,0H21.54A21.54,21.54,0,0,0,0,21.54V51.84A21.54,21.54,0,0,0,21.54,73.38H82.16A21.54,21.54,0,0,0,103.7,51.84V21.54A21.54,21.54,0,0,0,82.16,0ZM67.6,38.17,39.24,51.69a1.14,1.14,0,0,1-1.63-1V22.77a1.14,1.14,0,0,1,1.65-1L67.62,36.12a1.14,1.14,0,0,1,0,2Zm0,0'/></g></g></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 103.7 73.38'><defs><style>.cls-1{fill:black;}</style></defs><title>youtube</title><g id='Layer_2' data-name='Layer 2'><g id='Camada_1' data-name='Camada 1'><path class='cls-1' d='M82.16,0H21.54A21.54,21.54,0,0,0,0,21.54V51.84A21.54,21.54,0,0,0,21.54,73.38H82.16A21.54,21.54,0,0,0,103.7,51.84V21.54A21.54,21.54,0,0,0,82.16,0ZM67.6,38.17,39.24,51.69a1.14,1.14,0,0,1-1.63-1V22.77a1.14,1.14,0,0,1,1.65-1L67.62,36.12a1.14,1.14,0,0,1,0,2Zm0,0'/></g></g></svg>");
}
.icon-cr.icon-prosa:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 109.71 75.19'><defs><style>.cls-1{fill:black;}</style></defs><path d='M108.63,38.47a23.39,23.39,0,0,0-.56-4.15A24.76,24.76,0,0,0,106.66,30,31.91,31.91,0,0,0,98.2,18.7c-.9-.78-1.84-1.53-2.84-2.26a53,53,0,0,0-10.22-5.78C74,5.8,60.16,3.59,46.57,4.82A109.35,109.35,0,0,0,28.44,7.91l-1.06.29A65.19,65.19,0,0,0,19.47,11h0q-2.27,1-4.27,2.08a36.29,36.29,0,0,0-4.73,3.06c-.78.59-1.52,1.21-2.21,1.85a22.74,22.74,0,0,0-5.81,8.3c-.19.48-.36,1-.52,1.48a19.84,19.84,0,0,0-.83,5.8c0,.22,0,.43,0,.64a22.42,22.42,0,0,0,.5,4,26.89,26.89,0,0,0,.82,2.94A28.18,28.18,0,0,0,3.6,44.06,41.44,41.44,0,0,0,15.27,58.44,64,64,0,0,0,41.39,70.82h0a70,70,0,0,0,15.44,1.71h1.32A73,73,0,0,0,90.8,64c.46-.23.91-.47,1.37-.72,6.57-3.6,11.36-8.33,14-13.69h0a23,23,0,0,0,2.38-8.71.86.86,0,0,0,0-.16c0-.44,0-.89,0-1.34S108.64,38.78,108.63,38.47ZM98.76,57.8a38,38,0,0,1-6.3,4.45l-.67.37a76.78,76.78,0,0,1-13,5.63c-24.68,8-48.61,1.33-63-10.42C8.92,52.27,4.4,45.72,2.67,39.29c-.17-.63-.31-1.24-.42-1.86a19.83,19.83,0,0,1-.37-4.31,18.39,18.39,0,0,1,.63-4.57,0,0,0,0,1,0,0L2.67,28a21.73,21.73,0,0,1,7-10.25A31.07,31.07,0,0,1,14,14.62a45.56,45.56,0,0,1,6.29-3.16L21.4,11C28.21,8.35,36.69,6.51,46.64,5.6c2.47-.23,5-.33,7.42-.33,13.1,0,26,3.1,35.77,8.57a45.66,45.66,0,0,1,7.85,5.45,36.33,36.33,0,0,1,3,2.94A30.64,30.64,0,0,1,105,28.36a24.72,24.72,0,0,1,2.29,6.12c.06.25.11.51.16.77a22.46,22.46,0,0,1,.37,3.25,16.26,16.26,0,0,1,0,1.71,21.35,21.35,0,0,1-.78,5,22.06,22.06,0,0,1-1.16,3.18A27.47,27.47,0,0,1,98.76,57.8Z'/><path d='M39.29,32a5.65,5.65,0,1,0,5.64,5.64A5.63,5.63,0,0,0,39.29,32Z'/><path d='M54.86,32a5.65,5.65,0,1,0,5.64,5.64A5.63,5.63,0,0,0,54.86,32Z'/><path d='M70.42,32a5.65,5.65,0,1,0,5.65,5.64A5.64,5.64,0,0,0,70.42,32Z'/><path d='M106.5,25a33.47,33.47,0,0,0-9.3-11.78A49.61,49.61,0,0,0,81.43,4.81a72.57,72.57,0,0,0-14-3.12c-14.89-1.84-31,.45-43.87,6.5-.85.4-1.69.82-2.5,1.26a49.88,49.88,0,0,0-5.83,3.6,40.65,40.65,0,0,0-5.48,4.67,32,32,0,0,0-7.19,10.8,0,0,0,0,0,0,0A26.72,26.72,0,0,0,1.32,32.4c-.08.38-.16.76-.23,1.14A25.69,25.69,0,0,0,3,48.78H3a31.33,31.33,0,0,0,6.29,9,43.45,43.45,0,0,0,8,6.37c9.79,6.2,23,9.89,36.56,10h.5a72,72,0,0,0,12-1c1.87-.31,3.72-.7,5.53-1.15a64.59,64.59,0,0,0,19-8,48.74,48.74,0,0,0,8-6.23,38.84,38.84,0,0,0,5.68-6.86c.53-.83,1-1.68,1.46-2.52s.74-1.48,1.06-2.23a27,27,0,0,0,1.63-5.28s0-.06,0-.08A25.51,25.51,0,0,0,106.5,25ZM58.15,72.53c-1.27.07-2.55.1-3.84.1h-.49c-13.28-.1-26.14-3.69-35.68-9.71l-.09-.05a42.32,42.32,0,0,1-7.65-6.13,30.09,30.09,0,0,1-6-8.56s0,0,0,0a24.15,24.15,0,0,1-2-7,22.82,22.82,0,0,1-.19-3c0-.14,0-.27,0-.41s0-.22,0-.33a23.77,23.77,0,0,1,.61-4.76c2-8.53,8.49-16.23,18.54-21.65l.35-.2c.88-.46,1.78-.91,2.7-1.34l.05,0q1.41-.66,2.88-1.26A82.28,82.28,0,0,1,67,3.21,70.78,70.78,0,0,1,79.25,5.76c.56.17,1.13.35,1.68.54a47.64,47.64,0,0,1,15.28,8.16l.06,0a32.07,32.07,0,0,1,8.82,11.19A27,27,0,0,1,106.66,30a23,23,0,0,1,.79,5c0,.09,0,.19,0,.29a23.2,23.2,0,0,1-.44,5.44,27,27,0,0,1-3.91,9.4C98.06,58,89.3,64.32,78.8,68.25a68.49,68.49,0,0,1-12.64,3.38,70.49,70.49,0,0,1-8,.9Z'/><path d='M97.2,13.25A53.3,53.3,0,0,0,82.08,5.4,67.78,67.78,0,0,0,70.83,2.61,84.72,84.72,0,0,0,54,1.58,89.2,89.2,0,0,0,33.37,4.72h0a75.49,75.49,0,0,0-9.83,3.47A57.85,57.85,0,0,0,13.18,14c-1,.69-1.86,1.39-2.72,2.13A36.52,36.52,0,0,0,7.07,19.4a29.27,29.27,0,0,0-4.63,6.86A24.3,24.3,0,0,0,0,36.85v.23a26.19,26.19,0,0,0,3,11.7H3a34.62,34.62,0,0,0,6.9,9.14,46.5,46.5,0,0,0,12.57,8.53,81.54,81.54,0,0,0,34.11,7.33,77.9,77.9,0,0,0,9.71-.59,69.41,69.41,0,0,0,8.25-1.52c1.21-.3,2.4-.63,3.57-1,13-4,22.93-11.43,28-20.54a29.86,29.86,0,0,0,2.66-6.49,27.55,27.55,0,0,0,1-6.21C110.08,28.11,105.59,19.65,97.2,13.25Zm-.93,1.25c7,5.38,11.18,12.24,11.8,19.82a25.58,25.58,0,0,1,.06,3,1.09,1.09,0,0,0,0,.18,26.25,26.25,0,0,1-.28,2.67,24.83,24.83,0,0,1-.69,3.19c-2.06,7.29-7.23,13.84-14.69,18.85a57.93,57.93,0,0,1-18.32,7.91,66.15,66.15,0,0,1-8,1.47,81.15,81.15,0,0,1-24.75-.8h0A75.65,75.65,0,0,1,23.12,65a45.18,45.18,0,0,1-12-8.13,33.63,33.63,0,0,1-6.64-8.73s0,0,0,0A25.1,25.1,0,0,1,1.6,38.21c0-.38,0-.76,0-1.14a22.64,22.64,0,0,1,.32-4A25.29,25.29,0,0,1,8.29,20.39a0,0,0,0,1,0,0,35.75,35.75,0,0,1,5.79-5.12,51.75,51.75,0,0,1,6.22-3.79c1.34-.71,2.72-1.36,4.14-2l.05,0c1.28-.56,2.6-1.07,3.94-1.55a86.57,86.57,0,0,1,42-3.79,67.45,67.45,0,0,1,11.1,2.74l.06,0a51.53,51.53,0,0,1,14.63,7.58Z'/><path d='M108.61,40.83a.25.25,0,0,0,0-.08,28,28,0,0,0-.48-3.21c-.18-.86-.4-1.72-.67-2.58,0-.16-.09-.32-.14-.48a39.48,39.48,0,0,0-6.63-12.25,50.24,50.24,0,0,0-5.32-5.79,54.81,54.81,0,0,0-4.21-3.56,61.46,61.46,0,0,0-9.63-6c-.74-.38-1.5-.75-2.27-1.1a63.85,63.85,0,0,0-8.42-3.15c-1.13-.34-2.28-.64-3.44-.92C52.76-1.77,35.33-.4,17.54,10.29A38.71,38.71,0,0,0,8.25,18c-.41.48-.8,1-1.18,1.44a28.63,28.63,0,0,0-5.75,13c-.09.59-.17,1.18-.22,1.78C1,35,1,35.86,1,36.71c0,.34,0,.67,0,1a31.59,31.59,0,0,0,8.89,20.2q.77.84,1.59,1.62a45.16,45.16,0,0,0,5.77,4.66c10.19,7,24.16,11,38.42,11,2.48,0,5-.12,7.47-.37,24.92-2.5,40.79-11.44,44.69-25.17a23.35,23.35,0,0,0,.88-6A24.23,24.23,0,0,0,108.61,40.83ZM78.1,70.67c-2,.52-4.1,1-6.29,1.37-2.79.5-5.74.91-8.83,1.22C46.63,74.9,29.82,70.92,18.14,62.92l-.09-.05a44,44,0,0,1-5.49-4.45c-.52-.5-1-1-1.49-1.51A31.87,31.87,0,0,1,3.6,44.06a26.28,26.28,0,0,1-.93-4.77c-.06-.55-.1-1.09-.11-1.63a25.12,25.12,0,0,1,.3-5A26.91,26.91,0,0,1,8.29,20.39a0,0,0,0,1,0,0A33.79,33.79,0,0,1,14,14.62a39.88,39.88,0,0,1,4.33-3L19.46,11h0A71.9,71.9,0,0,1,33.35,4.72h0A62.38,62.38,0,0,1,54,1.58,60.85,60.85,0,0,1,67,3.21c1.16.27,2.3.57,3.42.91a61.38,61.38,0,0,1,14.72,6.54c1.65,1,3.21,2.07,4.69,3.18l.37.28c9.89,7.57,15.92,17.34,16.83,26.57a20.63,20.63,0,0,1,.12,2.71c0,.62,0,1.23-.09,1.84,0,.32-.06.64-.1.95a22.33,22.33,0,0,1-.63,3l-.12.4h0c0,.17-.11.34-.16.51C102.86,59.77,93.14,66.84,78.1,70.67Z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 109.71 75.19'><defs><style>.cls-1{fill:black;}</style></defs><path d='M108.63,38.47a23.39,23.39,0,0,0-.56-4.15A24.76,24.76,0,0,0,106.66,30,31.91,31.91,0,0,0,98.2,18.7c-.9-.78-1.84-1.53-2.84-2.26a53,53,0,0,0-10.22-5.78C74,5.8,60.16,3.59,46.57,4.82A109.35,109.35,0,0,0,28.44,7.91l-1.06.29A65.19,65.19,0,0,0,19.47,11h0q-2.27,1-4.27,2.08a36.29,36.29,0,0,0-4.73,3.06c-.78.59-1.52,1.21-2.21,1.85a22.74,22.74,0,0,0-5.81,8.3c-.19.48-.36,1-.52,1.48a19.84,19.84,0,0,0-.83,5.8c0,.22,0,.43,0,.64a22.42,22.42,0,0,0,.5,4,26.89,26.89,0,0,0,.82,2.94A28.18,28.18,0,0,0,3.6,44.06,41.44,41.44,0,0,0,15.27,58.44,64,64,0,0,0,41.39,70.82h0a70,70,0,0,0,15.44,1.71h1.32A73,73,0,0,0,90.8,64c.46-.23.91-.47,1.37-.72,6.57-3.6,11.36-8.33,14-13.69h0a23,23,0,0,0,2.38-8.71.86.86,0,0,0,0-.16c0-.44,0-.89,0-1.34S108.64,38.78,108.63,38.47ZM98.76,57.8a38,38,0,0,1-6.3,4.45l-.67.37a76.78,76.78,0,0,1-13,5.63c-24.68,8-48.61,1.33-63-10.42C8.92,52.27,4.4,45.72,2.67,39.29c-.17-.63-.31-1.24-.42-1.86a19.83,19.83,0,0,1-.37-4.31,18.39,18.39,0,0,1,.63-4.57,0,0,0,0,1,0,0L2.67,28a21.73,21.73,0,0,1,7-10.25A31.07,31.07,0,0,1,14,14.62a45.56,45.56,0,0,1,6.29-3.16L21.4,11C28.21,8.35,36.69,6.51,46.64,5.6c2.47-.23,5-.33,7.42-.33,13.1,0,26,3.1,35.77,8.57a45.66,45.66,0,0,1,7.85,5.45,36.33,36.33,0,0,1,3,2.94A30.64,30.64,0,0,1,105,28.36a24.72,24.72,0,0,1,2.29,6.12c.06.25.11.51.16.77a22.46,22.46,0,0,1,.37,3.25,16.26,16.26,0,0,1,0,1.71,21.35,21.35,0,0,1-.78,5,22.06,22.06,0,0,1-1.16,3.18A27.47,27.47,0,0,1,98.76,57.8Z'/><path d='M39.29,32a5.65,5.65,0,1,0,5.64,5.64A5.63,5.63,0,0,0,39.29,32Z'/><path d='M54.86,32a5.65,5.65,0,1,0,5.64,5.64A5.63,5.63,0,0,0,54.86,32Z'/><path d='M70.42,32a5.65,5.65,0,1,0,5.65,5.64A5.64,5.64,0,0,0,70.42,32Z'/><path d='M106.5,25a33.47,33.47,0,0,0-9.3-11.78A49.61,49.61,0,0,0,81.43,4.81a72.57,72.57,0,0,0-14-3.12c-14.89-1.84-31,.45-43.87,6.5-.85.4-1.69.82-2.5,1.26a49.88,49.88,0,0,0-5.83,3.6,40.65,40.65,0,0,0-5.48,4.67,32,32,0,0,0-7.19,10.8,0,0,0,0,0,0,0A26.72,26.72,0,0,0,1.32,32.4c-.08.38-.16.76-.23,1.14A25.69,25.69,0,0,0,3,48.78H3a31.33,31.33,0,0,0,6.29,9,43.45,43.45,0,0,0,8,6.37c9.79,6.2,23,9.89,36.56,10h.5a72,72,0,0,0,12-1c1.87-.31,3.72-.7,5.53-1.15a64.59,64.59,0,0,0,19-8,48.74,48.74,0,0,0,8-6.23,38.84,38.84,0,0,0,5.68-6.86c.53-.83,1-1.68,1.46-2.52s.74-1.48,1.06-2.23a27,27,0,0,0,1.63-5.28s0-.06,0-.08A25.51,25.51,0,0,0,106.5,25ZM58.15,72.53c-1.27.07-2.55.1-3.84.1h-.49c-13.28-.1-26.14-3.69-35.68-9.71l-.09-.05a42.32,42.32,0,0,1-7.65-6.13,30.09,30.09,0,0,1-6-8.56s0,0,0,0a24.15,24.15,0,0,1-2-7,22.82,22.82,0,0,1-.19-3c0-.14,0-.27,0-.41s0-.22,0-.33a23.77,23.77,0,0,1,.61-4.76c2-8.53,8.49-16.23,18.54-21.65l.35-.2c.88-.46,1.78-.91,2.7-1.34l.05,0q1.41-.66,2.88-1.26A82.28,82.28,0,0,1,67,3.21,70.78,70.78,0,0,1,79.25,5.76c.56.17,1.13.35,1.68.54a47.64,47.64,0,0,1,15.28,8.16l.06,0a32.07,32.07,0,0,1,8.82,11.19A27,27,0,0,1,106.66,30a23,23,0,0,1,.79,5c0,.09,0,.19,0,.29a23.2,23.2,0,0,1-.44,5.44,27,27,0,0,1-3.91,9.4C98.06,58,89.3,64.32,78.8,68.25a68.49,68.49,0,0,1-12.64,3.38,70.49,70.49,0,0,1-8,.9Z'/><path d='M97.2,13.25A53.3,53.3,0,0,0,82.08,5.4,67.78,67.78,0,0,0,70.83,2.61,84.72,84.72,0,0,0,54,1.58,89.2,89.2,0,0,0,33.37,4.72h0a75.49,75.49,0,0,0-9.83,3.47A57.85,57.85,0,0,0,13.18,14c-1,.69-1.86,1.39-2.72,2.13A36.52,36.52,0,0,0,7.07,19.4a29.27,29.27,0,0,0-4.63,6.86A24.3,24.3,0,0,0,0,36.85v.23a26.19,26.19,0,0,0,3,11.7H3a34.62,34.62,0,0,0,6.9,9.14,46.5,46.5,0,0,0,12.57,8.53,81.54,81.54,0,0,0,34.11,7.33,77.9,77.9,0,0,0,9.71-.59,69.41,69.41,0,0,0,8.25-1.52c1.21-.3,2.4-.63,3.57-1,13-4,22.93-11.43,28-20.54a29.86,29.86,0,0,0,2.66-6.49,27.55,27.55,0,0,0,1-6.21C110.08,28.11,105.59,19.65,97.2,13.25Zm-.93,1.25c7,5.38,11.18,12.24,11.8,19.82a25.58,25.58,0,0,1,.06,3,1.09,1.09,0,0,0,0,.18,26.25,26.25,0,0,1-.28,2.67,24.83,24.83,0,0,1-.69,3.19c-2.06,7.29-7.23,13.84-14.69,18.85a57.93,57.93,0,0,1-18.32,7.91,66.15,66.15,0,0,1-8,1.47,81.15,81.15,0,0,1-24.75-.8h0A75.65,75.65,0,0,1,23.12,65a45.18,45.18,0,0,1-12-8.13,33.63,33.63,0,0,1-6.64-8.73s0,0,0,0A25.1,25.1,0,0,1,1.6,38.21c0-.38,0-.76,0-1.14a22.64,22.64,0,0,1,.32-4A25.29,25.29,0,0,1,8.29,20.39a0,0,0,0,1,0,0,35.75,35.75,0,0,1,5.79-5.12,51.75,51.75,0,0,1,6.22-3.79c1.34-.71,2.72-1.36,4.14-2l.05,0c1.28-.56,2.6-1.07,3.94-1.55a86.57,86.57,0,0,1,42-3.79,67.45,67.45,0,0,1,11.1,2.74l.06,0a51.53,51.53,0,0,1,14.63,7.58Z'/><path d='M108.61,40.83a.25.25,0,0,0,0-.08,28,28,0,0,0-.48-3.21c-.18-.86-.4-1.72-.67-2.58,0-.16-.09-.32-.14-.48a39.48,39.48,0,0,0-6.63-12.25,50.24,50.24,0,0,0-5.32-5.79,54.81,54.81,0,0,0-4.21-3.56,61.46,61.46,0,0,0-9.63-6c-.74-.38-1.5-.75-2.27-1.1a63.85,63.85,0,0,0-8.42-3.15c-1.13-.34-2.28-.64-3.44-.92C52.76-1.77,35.33-.4,17.54,10.29A38.71,38.71,0,0,0,8.25,18c-.41.48-.8,1-1.18,1.44a28.63,28.63,0,0,0-5.75,13c-.09.59-.17,1.18-.22,1.78C1,35,1,35.86,1,36.71c0,.34,0,.67,0,1a31.59,31.59,0,0,0,8.89,20.2q.77.84,1.59,1.62a45.16,45.16,0,0,0,5.77,4.66c10.19,7,24.16,11,38.42,11,2.48,0,5-.12,7.47-.37,24.92-2.5,40.79-11.44,44.69-25.17a23.35,23.35,0,0,0,.88-6A24.23,24.23,0,0,0,108.61,40.83ZM78.1,70.67c-2,.52-4.1,1-6.29,1.37-2.79.5-5.74.91-8.83,1.22C46.63,74.9,29.82,70.92,18.14,62.92l-.09-.05a44,44,0,0,1-5.49-4.45c-.52-.5-1-1-1.49-1.51A31.87,31.87,0,0,1,3.6,44.06a26.28,26.28,0,0,1-.93-4.77c-.06-.55-.1-1.09-.11-1.63a25.12,25.12,0,0,1,.3-5A26.91,26.91,0,0,1,8.29,20.39a0,0,0,0,1,0,0A33.79,33.79,0,0,1,14,14.62a39.88,39.88,0,0,1,4.33-3L19.46,11h0A71.9,71.9,0,0,1,33.35,4.72h0A62.38,62.38,0,0,1,54,1.58,60.85,60.85,0,0,1,67,3.21c1.16.27,2.3.57,3.42.91a61.38,61.38,0,0,1,14.72,6.54c1.65,1,3.21,2.07,4.69,3.18l.37.28c9.89,7.57,15.92,17.34,16.83,26.57a20.63,20.63,0,0,1,.12,2.71c0,.62,0,1.23-.09,1.84,0,.32-.06.64-.1.95a22.33,22.33,0,0,1-.63,3l-.12.4h0c0,.17-.11.34-.16.51C102.86,59.77,93.14,66.84,78.1,70.67Z'/></svg>");
}
.icon-cr.icon-tiktok:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path id='tiktok-share-icon-black-1' d='M92.1,4H15.9A11.918,11.918,0,0,0,4,15.9V92.1A11.918,11.918,0,0,0,15.9,104H92.1A11.918,11.918,0,0,0,104,92.1V15.9A11.918,11.918,0,0,0,92.1,4m-9.51,43.626q-.819.08-1.643.083a17.839,17.839,0,0,1-14.928-8.069V67.112a20.3,20.3,0,1,1-20.3-20.3c.424,0,.838.038,1.255.064v10a10.338,10.338,0,1,0-1.255,20.6c5.724,0,10.779-4.51,10.779-10.233l.1-46.652h9.571A17.829,17.829,0,0,0,82.6,36.507V47.626' transform='translate(-4 -4)'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path id='tiktok-share-icon-black-1' d='M92.1,4H15.9A11.918,11.918,0,0,0,4,15.9V92.1A11.918,11.918,0,0,0,15.9,104H92.1A11.918,11.918,0,0,0,104,92.1V15.9A11.918,11.918,0,0,0,92.1,4m-9.51,43.626q-.819.08-1.643.083a17.839,17.839,0,0,1-14.928-8.069V67.112a20.3,20.3,0,1,1-20.3-20.3c.424,0,.838.038,1.255.064v10a10.338,10.338,0,1,0-1.255,20.6c5.724,0,10.779-4.51,10.779-10.233l.1-46.652h9.571A17.829,17.829,0,0,0,82.6,36.507V47.626' transform='translate(-4 -4)'/></svg>");
}
.icon-cr.icon-pinterest:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 256 256' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' preserveAspectRatio='xMidYMid'><path d='M0,128.002 C0,180.416 31.518,225.444 76.619,245.241 C76.259,236.303 76.555,225.573 78.847,215.848 C81.308,205.457 95.317,146.1 95.317,146.1 C95.317,146.1 91.228,137.927 91.228,125.848 C91.228,106.879 102.222,92.712 115.914,92.712 C127.557,92.712 133.182,101.457 133.182,111.929 C133.182,123.633 125.717,141.14 121.878,157.355 C118.671,170.933 128.686,182.008 142.081,182.008 C166.333,182.008 182.667,150.859 182.667,113.953 C182.667,85.899 163.772,64.901 129.405,64.901 C90.577,64.901 66.388,93.857 66.388,126.201 C66.388,137.353 69.676,145.217 74.826,151.307 C77.194,154.104 77.523,155.229 76.666,158.441 C76.052,160.796 74.642,166.466 74.058,168.713 C73.206,171.955 70.579,173.114 67.649,171.917 C49.765,164.616 41.436,145.031 41.436,123.015 C41.436,86.654 72.102,43.054 132.918,43.054 C181.788,43.054 213.953,78.418 213.953,116.379 C213.953,166.592 186.037,204.105 144.887,204.105 C131.068,204.105 118.069,196.635 113.616,188.15 C113.616,188.15 106.185,217.642 104.611,223.337 C101.897,233.206 96.585,243.07 91.728,250.758 C103.24,254.156 115.401,256.007 128.005,256.007 C198.689,256.007 256.001,198.698 256.001,128.002 C256.001,57.309 198.689,0 128.005,0 C57.314,0 0,57.309 0,128.002 Z' fill='black'></path></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 256 256' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' preserveAspectRatio='xMidYMid'><path d='M0,128.002 C0,180.416 31.518,225.444 76.619,245.241 C76.259,236.303 76.555,225.573 78.847,215.848 C81.308,205.457 95.317,146.1 95.317,146.1 C95.317,146.1 91.228,137.927 91.228,125.848 C91.228,106.879 102.222,92.712 115.914,92.712 C127.557,92.712 133.182,101.457 133.182,111.929 C133.182,123.633 125.717,141.14 121.878,157.355 C118.671,170.933 128.686,182.008 142.081,182.008 C166.333,182.008 182.667,150.859 182.667,113.953 C182.667,85.899 163.772,64.901 129.405,64.901 C90.577,64.901 66.388,93.857 66.388,126.201 C66.388,137.353 69.676,145.217 74.826,151.307 C77.194,154.104 77.523,155.229 76.666,158.441 C76.052,160.796 74.642,166.466 74.058,168.713 C73.206,171.955 70.579,173.114 67.649,171.917 C49.765,164.616 41.436,145.031 41.436,123.015 C41.436,86.654 72.102,43.054 132.918,43.054 C181.788,43.054 213.953,78.418 213.953,116.379 C213.953,166.592 186.037,204.105 144.887,204.105 C131.068,204.105 118.069,196.635 113.616,188.15 C113.616,188.15 106.185,217.642 104.611,223.337 C101.897,233.206 96.585,243.07 91.728,250.758 C103.24,254.156 115.401,256.007 128.005,256.007 C198.689,256.007 256.001,198.698 256.001,128.002 C256.001,57.309 198.689,0 128.005,0 C57.314,0 0,57.309 0,128.002 Z' fill='black'></path></svg>");
}
.icon-cr.icon-spotify:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path id='spotify-logo-black' d='M79.575,44.325c-16.117-9.571-42.7-10.45-58.087-5.779a4.676,4.676,0,0,1-2.712-8.95C36.437,24.233,65.8,25.271,84.35,36.283a4.676,4.676,0,1,1-4.775,8.042ZM79.05,58.5a3.9,3.9,0,0,1-5.363,1.283C60.25,51.529,39.762,49.133,23.862,53.958A3.9,3.9,0,1,1,21.6,46.5c18.158-5.508,40.733-2.842,56.167,6.646A3.9,3.9,0,0,1,79.05,58.5ZM72.929,72.117a3.109,3.109,0,0,1-4.283,1.037c-11.742-7.175-26.521-8.8-43.925-4.821a3.116,3.116,0,0,1-1.388-6.075C42.379,57.9,58.717,59.779,71.9,67.833A3.111,3.111,0,0,1,72.929,72.117ZM50,0a50,50,0,1,0,50,50A50,50,0,0,0,50,0Z' fill-rule='evenodd'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path id='spotify-logo-black' d='M79.575,44.325c-16.117-9.571-42.7-10.45-58.087-5.779a4.676,4.676,0,0,1-2.712-8.95C36.437,24.233,65.8,25.271,84.35,36.283a4.676,4.676,0,1,1-4.775,8.042ZM79.05,58.5a3.9,3.9,0,0,1-5.363,1.283C60.25,51.529,39.762,49.133,23.862,53.958A3.9,3.9,0,1,1,21.6,46.5c18.158-5.508,40.733-2.842,56.167,6.646A3.9,3.9,0,0,1,79.05,58.5ZM72.929,72.117a3.109,3.109,0,0,1-4.283,1.037c-11.742-7.175-26.521-8.8-43.925-4.821a3.116,3.116,0,0,1-1.388-6.075C42.379,57.9,58.717,59.779,71.9,67.833A3.111,3.111,0,0,1,72.929,72.117ZM50,0a50,50,0,1,0,50,50A50,50,0,0,0,50,0Z' fill-rule='evenodd'/></svg>");
}
.icon-cr.icon-register:before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='5 5 54 54'><rect fill='black' x='16.08' y='18.36' width='16.67' height='3.02' rx='.99' ry='.99'/><rect fill='black' x='16.08' y='30.49' width='31.85' height='3.02' rx='.99' ry='.99'/><rect fill='black' x='16.08' y='42.63' width='31.85' height='3.02' rx='.99' ry='.99'/><path fill='black' d='M52 9.25H12A2.75 2.75 0 0 0 9.25 12v40A2.75 2.75 0 0 0 12 54.75h1.67a1.51 1.51 0 1 0 0-3h-1.15a.25.25 0 0 1-.25-.25v-39a.25.25 0 0 1 .25-.25h39a.25.25 0 0 1 .25.25v39a.26.26 0 0 1-.25.25H18.58a1.51 1.51 0 0 0 0 3H52A2.75 2.75 0 0 0 54.75 52V12A2.75 2.75 0 0 0 52 9.25z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='5 5 54 54'><rect fill='black' x='16.08' y='18.36' width='16.67' height='3.02' rx='.99' ry='.99'/><rect fill='black' x='16.08' y='30.49' width='31.85' height='3.02' rx='.99' ry='.99'/><rect fill='black' x='16.08' y='42.63' width='31.85' height='3.02' rx='.99' ry='.99'/><path fill='black' d='M52 9.25H12A2.75 2.75 0 0 0 9.25 12v40A2.75 2.75 0 0 0 12 54.75h1.67a1.51 1.51 0 1 0 0-3h-1.15a.25.25 0 0 1-.25-.25v-39a.25.25 0 0 1 .25-.25h39a.25.25 0 0 1 .25.25v39a.26.26 0 0 1-.25.25H18.58a1.51 1.51 0 0 0 0 3H52A2.75 2.75 0 0 0 54.75 52V12A2.75 2.75 0 0 0 52 9.25z'/></svg>");
}
.spaced-dots {
  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: 3px;
}
ul.d-flex,
ul.row,
ul.flex-grid {
  list-style: none;
  padding-left: 0;
}
table th,
table tfoot td {
  text-transform: uppercase;
}
[class*='alert-'] {
  font-family: Roboto, 'Trebuchet MS', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
}
[class*='alert-'] button.close {
  color: white;
}
[class*='alert-'] .icon-cr.icon-close {
  display: block;
  float: right;
  height: 1.8rem;
  width: 1.8rem;
  opacity: 0.7;
  cursor: pointer;
}
@keyframes openDrawer {
  0% {
    display: block;
    transform: translateX(-100%);
    box-shadow: none;
  }
  100% {
    display: block;
    transform: translateX(0);
    box-shadow: none;
  }
}
@keyframes closeDrawer {
  0% {
    display: block;
    transform: translateX(0);
    box-shadow: none;
  }
  100% {
    display: block;
    transform: translateX(-100%);
    box-shadow: none;
  }
}
@keyframes go-back {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(10px);
  }
}
@keyframes showOverlay {
  0% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 0.3;
  }
}
@keyframes hideOverlay {
  0% {
    display: block;
    opacity: 0.3;
  }
  100% {
    display: block;
    opacity: 0;
  }
}
@keyframes showFlashSearch {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.cart-display {
  display: flex !important;
  flex-direction: column-reverse !important;
}
.cart-display-AB {
  flex-direction: column !important;
}
.progress-scroll {
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background-color: rgba(184, 204, 215, 0.5);
}
.progress-scroll div {
  height: 100%;
  border-radius: 10px;
  background-color: #1eb3d6;
}
#cart-products .cart-product-info {
  display: flex;
  width: 100%;
}
#cart-products .badge-default,
#cart-products .badge-danger,
#cart-products .badge-primary,
#cart-products .badge-info {
  font-size: 0.86rem;
  min-width: 122px;
}
#cart-products .badge-product-color {
  border-radius: 50%;
  display: inline-block;
  height: 19px;
  width: 19px;
  border-style: solid;
  border-width: 1px;
}
#cart-products .product-list-item-subtitle {
  font-size: 14px;
}
#cart-products .product-list-item-subtitle .color-name {
  font-size: 12px;
}
@media (min-width: 576px) {
  #cart-finish {
    position: relative;
    width: auto;
    box-shadow: none;
    padding: 0;
  }
}
@media (max-width: 767px) {
  #cart-finish h3 {
    margin-top: 0;
  }
  #cart-finish .cart-security {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .cart-min-height {
    min-height: 30vh;
  }
}
#cart-finish {
  bottom: 0;
  left: 0;
  z-index: 1;
}
#cart-finish #cart-finish-price > :last-child:before {
  content: '\00a0 ';
}
.finish-cart-AB {
  width: 100vw;
  max-width: 550px;
  background-color: #F7F6F5;
  font-family: Roboto, 'Trebuchet MS', Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: space-around;
  z-index: 10;
}
.finish-cart-AB button {
  width: 63% !important;
  margin: 1rem !important;
}
.fixed-button {
  position: fixed;
  bottom: -1px;
  right: 0;
  box-shadow: 0 -5px 11px -11px black;
  transition: all 0.5s;
}
.positioned-button {
  bottom: -100px;
}
@media (max-width: 768px) {
  .ellipsis-text {
    width: 14ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (min-width: 513px) {
  .mobile-cart-deadline {
    display: none;
  }
}
@media (max-width: 513px) {
  .hidden-mobile {
    display: none;
  }
}
.hidden-lateral-cart {
  display: none;
}
.select-and-prices {
  margin-bottom: 2rem;
}
@media (max-width: 513px) {
  .select-and-prices {
    margin-bottom: 0;
  }
}
@media (max-width: 570px) {
  .select-and-prices {
    justify-content: space-between;
  }
}
.select-and-prices-special {
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .select-and-prices-special {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 575px) {
  .select-and-prices-special {
    display: flex;
  }
}
/*start barra de progresso sacola*/
.progress-scroll {
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background-color: rgba(184, 204, 215, 0.5);
}
.progress-scroll div {
  height: 100%;
  border-radius: 10px;
  background-color: #1eb3d6;
}
/*end*/
/*start barra vertical sacola vazia*/
.vertical-row {
  margin-top: 45%;
  width: 7px;
  height: 450px;
  background: linear-gradient(180deg, #efb758 3.88%, #ffdb9e 8.35%, #c94e36 13.37%, #ed8c9d 29.61%, #719fda 51.56%, #5a40a1 61.22%, #5a40a1 80.62%, #e94e3a 96.87%);
}
/*end*/
a:hover .animation-go-back,
button:hover .animation-go-back {
  animation: go-back 0.5s infinite alternate;
}
.flash-search {
  animation: showFlashSearch 3s linear 0s infinite normal backwards;
}
.select-mobile {
  border-style: solid;
  border-width: 1px;
  border-radius: 0;
  line-height: 1.7rem;
}
.text-or {
  font-family: Roboto, 'Trebuchet MS', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.02em;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-60 {
  margin-top: 70px;
}
.hr-1 {
  position: absolute;
  left: 0%;
  right: 1.04%;
  margin-left: 3%;
  margin-right: 3%;
  border: 0.5px solid #1e1e1d;
}
.hr-2 {
  width: 60%;
  border: 2px solid #1e1e1d;
  margin-left: 20%;
}
.hr-3 {
  width: 45%;
  border: 2px solid #1e1e1d;
  margin-left: 28%;
}
.hr-4 {
  width: 80%;
  height: 7px;
  margin-left: 10%;
  background: linear-gradient(90deg, #efb758 3.88%, #ffdb9e 8.35%, #c94e36 13.37%, #ed8c9d 29.61%, #719fda 51.56%, #5a40a1 61.22%, #5a40a1 80.62%, #e94e3a 96.87%);
}
.text-password-login {
  font-family: Roboto, 'Trebuchet MS', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.01em;
  margin-left: 40%;
  color: #1e1e1d;
}
.grid {
  display: grid;
  grid-column-gap: 3%;
  grid-template-columns: repeat(2, 1fr);
  max-width: calc(400px + 2 * 1rem);
}
.text-register {
  font-family: Roboto, 'Trebuchet MS', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.01em;
  text-align: left;
}
.text-register-login {
  font-family: Roboto, 'Trebuchet MS', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.01em;
}
.text-back {
  font-family: Roboto, 'Trebuchet MS', Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 13px;
}
.button-login {
  position: absolute;
  width: 100%;
  height: 47px;
}
.text-login {
  font-family: Roboto, 'Trebuchet MS', Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-align: center;
}
.button-close {
  float: right;
  font-weight: 800;
  color: #1a1a1a;
  font-size: 15px;
}
.div-social {
  margin-top: 8%;
  margin-bottom: 8%;
}
.login-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  margin: 0 auto;
  padding: 6px;
}
.social-signin > * {
  flex: 1 0 40%;
}
.facebook-login {
  display: flex;
  color: #444;
  background: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid #dadce0;
  cursor: pointer;
}
.facebook-login:hover {
  /*box-shadow: 0.5px 0.5px 0.5px #32b7e8;*/
  box-shadow: 0px 0px 0px 0.5px #1db2d6;
}
.facebook-icon {
  background: url(https://chico-rei.imgix.net/icones/icon-facebook.jpg) no-repeat;
  padding-left: 25px;
  height: 65px;
  margin-top: 18%;
  margin-left: 20%;
  margin-right: 2%;
}
.content-login {
  width: 500px;
}
.text-access {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 300;
  line-height: 10px;
  letter-spacing: 0em;
  text-align: left;
  flex: 1;
}
.button-container-login {
  display: flex;
  gap: 6px;
}
.title-login {
  height: 3vh;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  align-items: center;
}
.text-login-top {
  font-family: Roboto, 'Trebuchet MS', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.02em;
  text-align: left;
  align-items: center;
  display: flex;
}
.search-bar a {
  text-decoration: none;
}
.search-bar ul {
  list-style-type: none;
  padding-left: 0;
}
.search-bar li {
  font-size: 15px;
  line-height: 2rem;
}
.search-bar li:hover {
  cursor: pointer;
}
.scrollbar-box-shadow-right {
  width: 5rem;
  border: none;
  position: absolute;
  z-index: 2;
  right: 0;
  text-decoration: none;
  cursor: pointer;
  bottom: 0;
}
.scrollbar-box-shadow-left {
  width: 5rem;
  border: none;
  position: absolute;
  z-index: 2;
  left: 0;
  text-decoration: none;
  cursor: pointer;
  bottom: 0;
}
.scrollbar-button-right {
  width: 4rem;
  height: 2.5rem;
  border: none;
  background-color: white;
  opacity: 0.8;
  position: relative;
  z-index: 2;
  right: 0.625rem;
  text-decoration: none;
  cursor: pointer;
  text-align: right;
  top: 35%;
}
.scrollbar-button-left {
  width: 4rem;
  height: 2.5rem;
  border: none;
  background-color: white;
  opacity: 0.8;
  position: relative;
  z-index: 2;
  left: 0.625rem;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  top: 35%;
}
.horizontal-scrollbar {
  height: 2px;
  background-color: #a7a6a5;
}
ul.cart-products-list {
  padding-left: 0;
}
ul.cart-products-list li {
  display: flex;
  flex-wrap: wrap;
}
ul.cart-products-list li:not(:last-child) {
  margin-bottom: 2rem;
}
ul.cart-products-list li > :not(:last-child) {
  margin-right: 1rem;
}
ul.cart-products-list li > :not(.cart-product-info) {
  flex-shrink: 0;
  flex-grow: 0;
}
ul.cart-products-list li .cart-product-info {
  display: flex;
  width: 100%;
}
@media (max-width: 513px) {
  ul.cart-products-list li .product-list-item-price {
    flex-basis: auto;
  }
}
ul.cart-products-list li .cr-select {
  flex-basis: 50px;
  width: 4.5rem;
  -moz-text-align-last: center;
       text-align-last: center;
}
@media (min-width: 992px) {
  ul.cart-products-list li {
    flex-wrap: nowrap;
  }
  ul.cart-products-list li .cart-product-info {
    flex: 1 1 auto;
    width: auto;
  }
  ul.cart-products-list li input {
    flex-basis: 4rem;
    text-align: center;
  }
  ul.cart-products-list li .cart-product-remove {
    margin-left: 0;
  }
}
ul.cart-products-list .flex:not(.flex-column) {
  align-items: center;
}
ul.cart-products-list .aspect-shirt {
  padding-bottom: 50%;
}
@media (max-width: 513px) {
  ul.cart-products-list .aspect-shirt {
    padding-bottom: 75%;
  }
}
.cart-gift-button {
  background-color: white;
  color: black;
  font-size: 13px;
  border: 1px solid;
  border-radius: unset;
}
@media (max-width: 575px) {
  .cart-gift-button {
    text-wrap: normal;
    line-height: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cart-gift-button .gift-button-div {
    padding: 1rem 3rem;
  }
}
@media (max-width: 320px) {
  #cart-gift-options {
    padding: 0;
  }
}
#cart-gift-options .gift-options-ab {
  font-family: 'Proxima Nova', sans-serif;
  display: flex;
}
#cart-gift-options .gift-options-ab img {
  max-width: none !important;
}
#cart-gift-options .gift-options-ab .icon-add-to-cart {
  position: absolute;
  bottom: 0;
  margin-bottom: 2%;
  margin-left: 73%;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 320px) {
  #cart-gift-options .gift-options-ab .icon-add-to-cart {
    margin-left: 70%;
  }
}
#cart-gift-options .gift-options-ab .icon-add-to-cart .icon-cr {
  width: 30px;
  height: 30px;
  background-color: whitesmoke;
  border-radius: 20px;
  padding: 18px;
}
#cart-gift-options ul {
  padding-left: 0 !important;
}
#cart-gift-options .horizontal-list > * {
  flex: auto !important;
  margin-right: 0 !important;
}
.options-list-item {
  flex-wrap: nowrap !important;
}
.cart-special-options-image {
  display: flex;
  margin-right: 0.5rem !important;
}
.special-option-text {
  color: var(--color-default-5);
  font-size: 14px;
  gap: 0.5rem;
}
.special-option-text.max-fixed {
  max-width: 270px;
}
@media (max-width: 575px) {
  .special-option-text.max-fixed {
    max-width: 180px;
  }
}
@media (max-width: 575px) {
  .special-option-text {
    margin-bottom: 0 !important;
  }
}
.special-option-stock {
  font-weight: 700;
  font-size: 12px;
  color: var(--color-default-5);
}
.special-option-button {
  background-color: white;
  color: black;
  font-size: 13px;
  border: 1.8px solid;
  border-radius: unset;
  width: auto;
}
@media (max-width: 767px) {
  .special-option-button {
    line-height: 2.7rem;
  }
}
@media (max-width: 575px) {
  .special-option-button {
    padding: 0 5px !important;
  }
}
.cart-cashback-toggle {
  border: 1px solid var(--color-default-3);
  padding: 13px 0 9px 10px;
  background-color: var(--color-input-background);
}
.cart-cashback-toggle label::after {
  top: 50% !important;
}
.cart-cashback-toggle .cr-switch:not(:checked) + label::before {
  background-color: var(--color-default-4) !important;
}
.cart-cashback-toggle .cr-switch:checked + label::before {
  background-color: #6B8CC4 !important;
}
.cart-cashback-toggle .cr-switch + label {
  margin-top: -2px !important;
}
.checkout-cashback .cr-switch:not(:checked) + label::before {
  background-color: var(--color-default-4) !important;
}
.checkout-cashback .cr-switch:checked + label::before {
  background-color: #6B8CC4 !important;
}
.checkout-cashback .cr-switch + label {
  margin-left: -1rem;
}
.text-cashback {
  color: #0B6B07;
  margin: 0;
}
.cashback-checkout {
  border-left: 2px solid #0B6B07;
  background: #F4F4F4;
  padding: 8px;
}
.cashback-checkout p {
  color: #0B6B07;
}
span:hover .animation-go-back-wishlist {
  animation: go-back 0.5s infinite alternate;
}
.full-image img {
  margin: 0 auto;
}


/*# sourceMappingURL=base.96798b666164a24b5947.css.map*/