@charset "UTF-8";
:root {
  --color-primary: #F88E24;
  --color-neultral: #fefefe;
  --color-neutral-100: #f7f7f7;
  --color-neutral-200: #dddddd;
  --color-neutral-300: #6E6E6E;
  --color-neutral-400: #444444;
  --color-neutral-500: #262626;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--color-neutral-300);
}
body h1,
body h2,
body h3 {
  font-weight: bold;
  color: var(--color-neutral-500);
}
body form {
  margin: 0;
}
body input[type=text],
body input[type=number],
body input[type=tel],
body input[type=password],
body input[type=email],
body select {
  padding: 0 1rem;
  width: 100%;
  outline: transparent;
  transition: all 0.2s ease-in-out;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
  height: 48px;
  border: 1px solid #D1D5DC;
}
body input[type=text]:focus,
body input[type=number]:focus,
body input[type=tel]:focus,
body input[type=password]:focus,
body input[type=email]:focus,
body select:focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
}
body input[type=text][readonly=readonly],
body input[type=number][readonly=readonly],
body input[type=tel][readonly=readonly],
body input[type=password][readonly=readonly],
body input[type=email][readonly=readonly],
body select[readonly=readonly] {
  pointer-events: none;
}
body select {
  padding-left: 0.675rem;
}
body del {
  color: #999;
}
body .input-group {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
body .input-group label {
  font-size: 0.875rem;
  color: var(--color-neutral-300);
}
body .input-group.error {
  border-color: #e53935;
}
body .input-group.error input,
body .input-group.error select {
  background-color: rgba(229, 57, 53, 0.5);
}
body .input-group.error input:focus,
body .input-group.error select:focus {
  box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.5);
}
body .input-group.error small {
  position: absolute;
  bottom: 0.25rem;
  right: 0.25rem;
  font-size: 0.675rem;
  color: red;
}
body .input-group.listsingle label {
  opacity: 1;
  top: 0.45rem;
  visibility: visible;
}
body .btn {
  padding: 0.75rem 1rem;
  background-color: var(--color-primary);
  color: white;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.2s ease-in-out;
  position: relative;
  border: 1px solid transparent;
  line-height: 22px;
}
body .btn.btn-outline {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
body .btn.btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}
body .btn:hover {
  background-color: #C7731F;
}
body .input-radio {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
}
body .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.675rem;
  position: relative;
  cursor: pointer;
}
body .icon small {
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease-in-out;
  height: 0;
  position: absolute;
  background-color: black;
  padding: 0.5rem;
  font-size: 0.75rem;
  color: white;
  font-weight: normal;
  width: 0px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  top: -80px;
  scale: 0.5;
  height: 120px;
  width: 130px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
body .icon small::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-color: black transparent transparent;
  border-width: 5px 5px 0 5px;
}
body .icon:hover small {
  opacity: 1;
  visibility: visible;
  scale: 1;
  top: -130px;
}
body .hint {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  position: relative;
  border: 1px solid #EEE;
  border-radius: 2px;
  padding: 0 0.25rem;
  cursor: pointer;
}
body .hint .more-info {
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease-in-out;
  position: absolute;
  background-color: #333;
  padding: 0.5rem;
  font-size: 0.75rem;
  color: white;
  font-weight: normal;
  width: 0px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  bottom: 0;
  scale: 0.5;
  min-width: 130px;
  max-width: 300px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  transform: scale(0);
  z-index: 1;
}
body .hint .more-info::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-color: #333 transparent transparent;
  border-width: 5px 5px 0 5px;
}
body .hint:hover .more-info {
  opacity: 1;
  visibility: visible;
  scale: 1;
  bottom: 1.5rem;
  transform: scale(1);
}
body .box, body #onepage #checkout .payment-options .options > li {
  border: 1px solid #D1D5DC;
  transition: all 0.2s ease-in-out;
}
body .box .option, body #onepage #checkout .payment-options .options > li .option {
  cursor: pointer;
}
body .box.selected, body #onepage #checkout .payment-options .options > li.selected {
  border-color: var(--color-primary);
  background-color: #FFF5EB;
}
body .box.selected .form, body #onepage #checkout .payment-options .options > li.selected .form {
  display: flex;
}
body .box:hover, body #onepage #checkout .payment-options .options > li:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
body .discount {
  background-color: #28a745;
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  font-style: normal;
}
body #onepage.empty #main {
  grid-column: 1/3;
  justify-content: center;
}
body #onepage[data-step=customer] {
  height: 100%;
}
body #onepage #main > .wp > header {
  background-color: white;
  position: sticky;
  top: 0;
  border-bottom: 1px solid #DDD;
  padding: 1rem 0;
  box-shadow: 0 15px 20px -20px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
body #onepage #main h1 {
  font-size: 1.5rem;
  font-weight: bold;
}
body #onepage #basket .items .products .nested .image img {
  max-height: 30px;
  width: auto;
}
body #onepage #basket .items .products.additionals .quantity {
  border: none;
}
body #onepage {
  /* campos de quantidade (carrinho e resumo): sem as setinhas nativas
     do input number — quem altera são os botões +/- ao lado */
}
body #onepage input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}
body #onepage input[type=number]::-webkit-outer-spin-button, body #onepage input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body #onepage #checkout .social-login a.btn-facebook {
  background-color: #3b5998;
}
body #onepage #checkout .social-login a.btn-google {
  padding: 0;
  background-color: transparent;
}
body #onepage #checkout .social-login .or {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
body #onepage #checkout .social-login .or::before, body #onepage #checkout .social-login .or::after {
  content: "";
  flex-grow: 1;
  border-bottom: 1px solid #EEE;
  height: 1px;
  width: unset;
}
body #onepage #checkout .social-login .or small {
  padding-left: 1rem;
  padding-right: 1rem;
}
body #onepage #checkout .payment-data .form {
  transition: all 0.2s ease-in-out;
}
body #onepage #checkout .payment-data .content {
  transition: all 0.2s ease-in-out;
}
body #onepage #checkout .payment-data .content ul {
  display: flex;
  flex-direction: column;
}
body #onepage #checkout .payment-data .content ul li {
  line-height: 120%;
}
body #onepage #checkout .payment-data.opened .form {
  display: flex;
}
body #onepage #checkout .payment-data.opened .content {
  display: none;
}
body #onepage #checkout .payment-options .form {
  padding: 1rem 0 0;
}
body #onepage #checkout .payment-options .option .group-title::first-letter {
  text-transform: uppercase;
}
body #onepage #checkout .payment-options .credit-card-form .input-card .card-flags {
  transform: translateY(-50%);
  top: 50%;
  right: 1rem;
  flex-direction: column;
}
body #onepage #checkout .payment-options .credit-card-form .input-card .card-flags li {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}
body #onepage #checkout .payment-options .credit-card-form .input-card .card-flags li.selected {
  opacity: 1;
  visibility: visible;
}
body #onepage #sales-representative .result.limit {
  max-height: 200px;
}
body #onepage #sales-representative .result.limit::-webkit-scrollbar {
  width: 5px;
}
body #onepage #sales-representative .result.limit::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 8px;
}
body #onepage #sales-representative .result.limit::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(68, 68, 68, 0.2);
  height: 40px;
}
body #onepage #sales-representative .result.limit {
  overflow: auto;
}
body #onepage #sales-representative .result.populated {
  background-color: white;
}
body #onepage .logo img {
  max-height: 4rem;
}
body #onepage .show-more-options {
  position: relative;
}
body #onepage .show-more-options .more-options {
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease-in-out;
  position: absolute;
  background-color: black;
  color: white;
  padding: 1rem;
  font-size: 0.75rem;
  font-weight: normal;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  top: -40px;
  right: 50%;
  transform: translate(50%, 0);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
body #onepage .show-more-options .more-options ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body #onepage .show-more-options .more-options::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-color: black transparent transparent;
  border-width: 5px 5px 0 5px;
}
body #onepage .show-more-options .more-options.show {
  opacity: 1;
  visibility: visible;
  top: -80px;
}
body #backdrop {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 4;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  position: fixed;
}
body .modal {
  transition: all 0.3s ease-in-out;
  z-index: 5;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  width: 90vw;
  max-width: 800px;
  max-height: calc(100vh - 2rem);
  overflow: auto;
}
body .modal .body .actions {
  padding-top: 1rem;
}
body .modal.show {
  opacity: 1;
  visibility: visible;
}
body.blocked #backdrop {
  opacity: 1;
  visibility: visible;
}
body.loading::after {
  content: "";
  position: fixed;
  z-index: 6;
  top: 50%;
  left: 50%;
  margin-left: calc(-48px / 2);
  margin-top: calc(-48px / 2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #999;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
body.loading::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 7;
}
body .loading::after {
  content: "";
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  margin-left: calc(-24px / 2);
  margin-top: calc(-24px / 2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #999;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
body .loading::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 7;
}
body .loading {
  opacity: 0.5;
}
body .loading-into::after {
  content: "";
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  margin-left: calc(-24px / 2);
  margin-top: calc(-24px / 2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #999;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
body .loading-into::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 7;
}
body .loading-into::before {
  display: none;
}
body .message {
  border: 1px solid orange;
  background-color: rgba(255, 165, 0, 0.5);
  font-size: 0.875rem;
}
body .message.alert {
  border-color: #e53935;
  background-color: rgba(229, 57, 53, 0.5);
  color: #e53935;
}
body .message.information {
  border-color: cornflowerblue;
  background-color: rgba(100, 149, 237, 0.5);
}
body .message.success {
  border-color: #a3cfbb;
  background-color: #d1e7dd;
}
body #bg-success {
  background-color: green;
  scale: 1;
  width: 0px;
  height: 0px;
  transition: all 1s ease-in-out;
  opacity: 1;
  visibility: visible;
  z-index: 5;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  border-radius: 100%;
}
body.success #bg-success {
  width: 3000px;
  height: 3000px;
  opacity: 1;
  visibility: visible;
  scale: 1;
  z-index: 8;
}
body.success.order-generated #order {
  opacity: 1;
  visibility: visible;
}
body #order {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  background-color: white;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  width: 90vw;
  max-width: 700px;
  z-index: 9;
  max-height: 90vh;
  overflow: hidden;
}
body #order header {
  font-size: 1.5rem;
  text-align: center;
  line-height: 120%;
}
body #order .body {
  overflow: auto;
}
body #order .body::-webkit-scrollbar {
  width: 5px;
}
body #order .body::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 8px;
}
body #order .body::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(68, 68, 68, 0.2);
  height: 40px;
}
body.show-checkout #checkout-wrapper {
  height: auto;
}
body.show-checkout #basket {
  display: none;
}
body.show-checkout #checkout-wrapper {
  display: flex;
}
body #notification {
  position: fixed;
  bottom: 20px;
  right: -200px;
  background: #333;
  color: #fff;
  padding: 12px 20px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 9999;
}
body #notification.show {
  opacity: 1;
  right: 1rem;
}
body .index {
  display: inline-flex;
  width: 20px;
  height: 20px;
  background: black;
  border-radius: 50%;
  color: white;
  justify-content: center;
  align-items: center;
  font-size: 0.675rem;
}
body .fade-enter-active,
body .fade-leave-active {
  transition: opacity 0.3s ease;
}
body .fade-enter,
body .fade-leave-to {
  opacity: 0;
}
body.options-grouped ul.options:not([data-length="1"]) {
  gap: 0;
}
body.options-grouped ul.options:not([data-length="1"]) > li {
  border-radius: 0 !important;
  border-bottom: none !important;
}
body.options-grouped ul.options:not([data-length="1"]) > li:first-child {
  border-radius: 0.5rem 0.5rem 0 0 !important;
  border-top: 1px solid #DDD !important;
  border-bottom: none !important;
}
body.options-grouped ul.options:not([data-length="1"]) > li:last-child {
  border-radius: 0 0 0.5rem 0.5rem !important;
  border-bottom: 1px solid #DDD !important;
}
body.options-grouped ul.options:not([data-length="1"]) > li.selected {
  border: 1px solid black !important;
}
body.options-grouped #onepage #sales-representative .result {
  padding: 0;
}
body .no-image {
  display: none;
}
body .shake {
  animation: shake 0.3s;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 8px;
}
body::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(68, 68, 68, 0.2);
  height: 40px;
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}
@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    transform: scale(1.2);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: scale(1);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.products.dashed {
  max-width: 1380px;
  margin: 0 auto;
  padding: 2rem 1rem;
  grid-column: 1/3;
  background-color: #F1F1F1;
  width: -webkit-fill-available;
}
.products.dashed .upsell-remover {
  justify-content: flex-end;
  max-width: 1380px;
  margin: 0 auto;
  padding-bottom: 0.5rem;
}
.products.dashed .swiper-slide .product-line {
  border: 2px dashed #232323;
}
.products.dashed .swiper-slide .product-line .link-product {
  padding: 20px 19px 15px;
  display: grid;
  grid-template-columns: 80px auto;
  column-gap: 12px;
  background-color: white;
}
.products.dashed .swiper-slide .product-line img {
  position: relative;
  top: 0;
  transition: top 0.2s ease-in-out;
}
.products.dashed .swiper-slide .product-line h3 {
  order: 1;
  line-height: 18px;
  min-height: 36px;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 8px;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.products.dashed .swiper-slide .product-line .medias figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
.products.dashed .swiper-slide .product-line .medias picture {
  max-width: 100%;
}
.products.dashed .swiper-slide .product-line .medias picture img {
  display: table;
  margin: 0 auto;
}
.products.dashed .swiper-slide .product-line .medias .info .add-to-cart {
  background-image: url("/Custom/Content/Themes/Clean/Svg/add-to-cart.svg");
  font-size: 0;
  width: 56px;
  height: 29px;
  display: flex;
}
.products.dashed .swiper-slide .product-line .medias .add-to-wishlist {
  position: absolute;
  right: 0;
  z-index: 1;
}
.products.dashed .swiper-slide .product-line .medias .flags {
  position: absolute;
  bottom: 0;
  left: 0;
}
.products.dashed .swiper-slide .product-line .medias .flags .flag {
  background-color: #dad7d7;
  font-size: 10px;
  line-height: 14px;
  padding: 3px 7px;
}
.products.dashed .swiper-slide .product-line .medias .flags .flag.novidades {
  display: none;
}
.products.dashed .swiper-slide .product-line .medias .flags.top {
  top: 0;
  left: 0;
}
.products.dashed .swiper-slide .product-line .medias .flags.top .flag.novidades {
  display: block;
  position: absolute;
  background-color: rgb(35, 35, 35);
  color: white;
  top: 0;
  left: 0;
}
.products.dashed .swiper-slide .product-line .variations {
  display: none;
}
.products.dashed .swiper-slide .product-line .variations .variation {
  display: none;
}
.products.dashed .swiper-slide .product-line .variations .variation[data-index="1"] {
  display: flex;
}
.products.dashed .swiper-slide .product-line .variations .variation .title {
  display: none;
}
.products.dashed .swiper-slide .product-line .variations .variation[data-label=Tamanho] {
  display: none;
}
.products.dashed .swiper-slide .product-line .variations .options {
  justify-content: center;
}
.products.dashed .swiper-slide .product-line .variations .options li {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.2s ease-in-out;
}
.products.dashed .swiper-slide .product-line .variations .options li button {
  text-indent: -9999px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  padding: 0;
  font-size: 0;
}
.products.dashed .swiper-slide .product-line .variations .options li.selected {
  font-weight: bold;
  opacity: 1;
}
.products.dashed .swiper-slide .product-line .variations .options li:not(.selected) {
  border-color: transparent !important;
}
.products.dashed .swiper-slide .product-line .bottom {
  flex-direction: column;
}
.products.dashed .swiper-slide .product-line .bottom .wp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.products.dashed .swiper-slide .product-line .bottom.has-variations .wp {
  flex-direction: column;
}
.products.dashed .swiper-slide .product-line .condition {
  display: none;
}
.products.dashed .swiper-slide .product-line .qty {
  order: 2;
  display: flex;
  flex-direction: column;
}
.products.dashed .swiper-slide .product-line .qty label {
  font-size: 11px;
}
.products.dashed .swiper-slide .product-line .qty input {
  max-width: 60px;
  height: 30px;
  text-align: center;
  border-radius: 4px;
  border: 2px solid #E3E3E3;
}
.products.dashed .swiper-slide .product-line .qty input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.products.dashed .swiper-slide .product-line .qty input[type=number]::-webkit-outer-spin-button, .products.dashed .swiper-slide .product-line .qty input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.products.dashed .swiper-slide .product-line.loading-photo .medias::after {
  content: "";
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  margin-left: calc(-48px / 2);
  margin-top: calc(-48px / 2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #999;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.products.dashed .swiper-slide .product-line.loading-photo .medias::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 7;
}
.products.dashed .swiper-slide .add-to-cart-checkout {
  margin: 1rem auto 0 auto;
  width: 100%;
  max-width: 280px;
  display: flex;
}

/* borda tracejada do "Usar outro endereço": o border-style: dashed do CSS não
   permite definir o tamanho do traço (16/16 do Figma), então a borda é desenhada
   como um SVG de fundo com stroke-dasharray. */
#cta-add-address {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' fill='none'%3E%3Crect x='0.5' y='0.5' width='99%25' height='99%25' stroke='%23E5E5E5' stroke-width='1' stroke-dasharray='16 16'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* "Primeira compra?" no login: tracejado simples do CSS, sem controle de traço */
#cta-new-customer {
  padding: 1em 1.5em 0.5em;
  background: #f4f4f4;
  border: 2px dashed #ddd;
}
/*# sourceMappingURL=one-page-checkout.css.map */
