
/* source: <astrasa.checkout-ui-settings@0.1.3> */
/*!
 * ARQUIVO GERADO a partir de src/ — NÃO edite este arquivo na mão.
 * Para alterar o checkout, edite os módulos em src/ e rode `yarn build`
 * (ou `yarn watch` durante o desenvolvimento, junto com `vtex link`).
 */

@charset "UTF-8";
@keyframes fs-skeleton-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
:root {
  --astra-color-brand-red: #b70e0c;
  --astra-color-brand-blue: #0084d5;
  --astra-color-primary-darkest: #031d2f;
  --astra-color-primary: #0d4973;
  --astra-color-primary-blue: #086ebb;
  --astra-color-primary-light: #52a6dc;
  --astra-color-primary-lighter: #80c9f8;
  --astra-color-accent: #e42731;
  --astra-color-accent-dark: #b70e0c;
  --astra-color-surface: #ffffff;
  --astra-color-surface-darkest: #061720;
  --astra-color-surface-dark: #373737;
  --astra-color-surface-mid: #a1a1a1;
  --astra-color-surface-light: #ededed;
  --astra-color-surface-lighter: #f3f5f7;
  --astra-color-surface-lightest: #f1f8fc;
  --astra-color-surface-soft: #f5f5f5;
  --astra-color-surface-blue-tint: #e9eef5;
  --astra-color-surface-cool: #e9eef5;
  --astra-color-surface-translucent: rgba(236, 236, 236, 0.32);
  --astra-color-neutral-200: #cecfd8;
  --astra-color-neutral-300: #707176;
  --astra-color-neutral-400: #3c3d4f;
  --astra-color-white: #ffffff;
  --astra-color-text: #181d27;
  --astra-color-text-strongest: #070707;
  --astra-color-text-ink: #050e24;
  --astra-color-text-darkest: #181818;
  --astra-color-text-dark: #181d27;
  --astra-color-text-mid: #535862;
  --astra-color-text-light: #a1a1a1;
  --astra-color-text-medium: #373737;
  --astra-color-text-muted: #535862;
  --astra-color-text-inverse: #ffffff;
  --astra-color-border: #ededed;
  --astra-color-border-soft: #e8e8ee;
  --astra-color-error: #e42731;
  --astra-color-error-dark: #b70e0c;
  --astra-color-error-400: #e7234f;
  --astra-color-success: #42ad4e;
  --astra-color-disabled-bg: #f3f3f3;
  --astra-color-disabled-text: #454545;
  --astra-shadow-soft: rgba(145, 147, 167, 0.16);
  --astra-shadow-sm-strong: rgba(10, 13, 18, 0.1);
  --astra-shadow-sm-soft: rgba(10, 13, 18, 0.06);
  --astra-font-family-base: Outfit, sans-serif;
  --astra-font-family-secondary: Montserrat, sans-serif;
  --astra-font-weight-extra-light: 200;
  --astra-font-weight-light: 300;
  --astra-font-weight-regular: 400;
  --astra-font-weight-medium: 500;
  --astra-font-weight-semibold: 600;
  --astra-font-weight-bold: 700;
  --astra-letter-spacing-tight: -0.02em;
  --astra-letter-spacing-base: 0;
  --astra-letter-spacing-wide: 0.05em;
  --astra-letter-spacing-wider: 0.1em;
  --astra-breakpoint-mobile: 768px;
  --astra-breakpoint-desktop: 1120px;
}

.astra-skeleton {
  animation: fs-skeleton-pulse 1.5s ease-in-out infinite;
}

@keyframes fs-slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.astra-slide-in-left {
  animation: fs-slide-in-left 300ms ease-out;
}

@keyframes fs-slide-in-right {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.astra-slide-in-right {
  animation: fs-slide-in-right 300ms ease-out;
}

@keyframes fs-slide-in-top {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.astra-slide-in-top {
  animation: fs-slide-in-top 300ms ease-out;
}

@keyframes fs-slide-in-bottom {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.astra-slide-in-bottom {
  animation: fs-slide-in-bottom 300ms ease-out;
}

@keyframes fs-slide-out-left {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-16px);
  }
}
.astra-slide-out-left {
  animation: fs-slide-out-left 300ms ease-in forwards;
}

@keyframes fs-slide-out-right {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(16px);
  }
}
.astra-slide-out-right {
  animation: fs-slide-out-right 300ms ease-in forwards;
}

@keyframes fs-slide-out-top {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-16px);
  }
}
.astra-slide-out-top {
  animation: fs-slide-out-top 300ms ease-in forwards;
}

@keyframes fs-slide-out-bottom {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(16px);
  }
}
.astra-slide-out-bottom {
  animation: fs-slide-out-bottom 300ms ease-in forwards;
}

@keyframes fs-slide-in-edge-left {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.astra-slide-in-edge-left {
  animation: fs-slide-in-edge-left 300ms ease-out;
}

@keyframes fs-slide-in-edge-right {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.astra-slide-in-edge-right {
  animation: fs-slide-in-edge-right 300ms ease-out;
}

@keyframes fs-slide-in-edge-top {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.astra-slide-in-edge-top {
  animation: fs-slide-in-edge-top 300ms ease-out;
}

@keyframes fs-slide-in-edge-bottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.astra-slide-in-edge-bottom {
  animation: fs-slide-in-edge-bottom 300ms ease-out;
}

@keyframes fs-slide-out-edge-left {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}
.astra-slide-out-edge-left {
  animation: fs-slide-out-edge-left 300ms ease-in forwards;
}

@keyframes fs-slide-out-edge-right {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
.astra-slide-out-edge-right {
  animation: fs-slide-out-edge-right 300ms ease-in forwards;
}

@keyframes fs-slide-out-edge-top {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}
.astra-slide-out-edge-top {
  animation: fs-slide-out-edge-top 300ms ease-in forwards;
}

@keyframes fs-slide-out-edge-bottom {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}
.astra-slide-out-edge-bottom {
  animation: fs-slide-out-edge-bottom 300ms ease-in forwards;
}

.astra-h1-d {
  font-family: "Outfit", sans-serif;
  font-size: 5.375rem;
  font-weight: 500;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-h2-d {
  font-family: "Outfit", sans-serif;
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-h3-d {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-h4-d {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-h5-d {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-h6-d {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-h1-m {
  font-family: "Outfit", sans-serif;
  font-size: 2.8125rem;
  font-weight: 500;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-h2-m {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-h3-m {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-h4-m {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-h5-m {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-h6-m {
  font-family: "Outfit", sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-subtitle-1 {
  font-family: "Outfit", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 150%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-subtitle-2 {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-p1 {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-p2 {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-p3 {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: currentColor;
  text-align: left;
  margin: 0;
}

.astra-link-1 {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
}

.astra-link-1-bold {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
}

.astra-link-2 {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
}

.astra-link-2-bold {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
}

.astra-strike-1 {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
  text-decoration-line: line-through;
}

.astra-strike-1-bold {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
  text-decoration-line: line-through;
}

.astra-strike-2 {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
  text-decoration-line: line-through;
}

.astra-strike-2-bold {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  color: currentColor;
  text-align: left;
  margin: 0;
  text-decoration-line: line-through;
}

.astra-text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
}

.astra-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.astra-line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  overflow-wrap: anywhere;
  overflow: hidden;
  text-overflow: ellipsis;
}

.astra-line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  overflow-wrap: anywhere;
  overflow: hidden;
  text-overflow: ellipsis;
}

.astra-border {
  box-shadow: inset 0 0 0 1px #ededed;
}

.astra-border-soft {
  box-shadow: inset 0 0 0 1px #e8e8ee;
}

.astra-border-primary {
  box-shadow: inset 0 0 0 1px #0d4973;
}

.astra-border-error {
  box-shadow: inset 0 0 0 1px #e42731;
}

.astra-page-width {
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 0;
  padding: 0 clamp(45.5111111111px, 4.4444444444vw, 64px);
}
@media (max-width: 768px) {
  .astra-page-width {
    width: 100dvw;
    padding: 0 16px;
  }
}

.astra-gradient-surface-light {
  background: linear-gradient(90deg, #e9eef5 0%, #f5f5f5 100%);
}

.astra-gradient-text-numbers {
  background: linear-gradient(172.85deg, #80c9f8 25.93%, #52a6dc 58.07%, #0084d5 97.05%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.astra-gradient-media-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(172.85deg, #80c9f8 25.93%, #52a6dc 58.07%, #0084d5 97.05%);
}

@media (min-width: 1120px) {
  .astra-only-mobile {
    display: none !important;
  }
}

@media (max-width: 1119.98px) {
  .astra-only-desktop {
    display: none !important;
  }
}

.astra-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.astra-checkout-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.astra-checkout-lock {
  position: relative;
  cursor: not-allowed;
}

.astra-checkout-lock__popover {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #ffffff;
  text-align: center;
  margin: 0;
  box-sizing: border-box;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  z-index: 9001;
  width: 100%;
  padding: 8px 10px;
  background: #0d4973;
  border: 1px solid #e8e8ee;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(145, 147, 167, 0.16);
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 150ms ease-out, transform 150ms ease-out, visibility 150ms;
  pointer-events: none;
}
.astra-checkout-lock__popover::before, .astra-checkout-lock__popover::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  transform: translateX(-50%);
}
.astra-checkout-lock__popover::before {
  border-top: 7px solid #e8e8ee;
}
.astra-checkout-lock__popover::after {
  top: calc(100% - 1px);
  border-top: 7px solid #0d4973;
}

.astra-checkout-lock:hover .astra-checkout-lock__popover,
.astra-checkout-lock:focus-within .astra-checkout-lock__popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.astra-checkout-header {
  width: 100%;
}

.astra-checkout-header__bar {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  height: 88px;
  padding: 20px 48px;
  gap: 72px;
  background: #ffffff;
  border-bottom: 1px solid #f3f5f7;
}

.astra-checkout-header__logo {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  width: 140px;
  height: 48px;
}
.astra-checkout-header__logo img {
  width: fit-content;
  height: 100%;
  object-fit: contain;
}

.astra-checkout-header__steps {
  display: flex;
  flex: none;
  align-items: center;
  padding: 0;
  list-style: none;
  margin: 0;
  width: fit-content;
}

.astra-checkout-header__step-divider {
  width: 24px;
  height: 0;
  margin: 0 10px;
  border-top: 1px solid #a1a1a1;
}

.astra-checkout-header__step-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #a1a1a1;
  text-align: left;
  margin: 0;
}

.astra-checkout-header__step--active .astra-checkout-header__step-label {
  color: #0d4973;
  font-weight: 500;
}

.astra-checkout-header__badge {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.astra-checkout-header__badge-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #0d4973;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='16' viewBox='0 0 14 16' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 0C4.79086 0 3 1.79086 3 4V6H2C0.895431 6 0 6.89543 0 8V14C0 15.1046 0.895431 16 2 16H12C13.1046 16 14 15.1046 14 14V8C14 6.89543 13.1046 6 12 6H11V4C11 1.79086 9.20914 0 7 0ZM9.5 6V4C9.5 2.61929 8.38071 1.5 7 1.5C5.61929 1.5 4.5 2.61929 4.5 4V6H9.5Z' fill='%23000'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 16px 16px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='16' viewBox='0 0 14 16' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 0C4.79086 0 3 1.79086 3 4V6H2C0.895431 6 0 6.89543 0 8V14C0 15.1046 0.895431 16 2 16H12C13.1046 16 14 15.1046 14 14V8C14 6.89543 13.1046 6 12 6H11V4C11 1.79086 9.20914 0 7 0ZM9.5 6V4C9.5 2.61929 8.38071 1.5 7 1.5C5.61929 1.5 4.5 2.61929 4.5 4V6H9.5Z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 16px 16px;
}

.astra-checkout-header__badge-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 120%;
  color: #181818;
  text-align: left;
  margin: 0;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .astra-checkout-header__bar {
    flex-direction: row;
    justify-content: space-between;
    gap: 4px;
    padding: 12px 16px;
    width: 100dvw;
    margin-left: -16px;
  }
  .astra-checkout-header__steps {
    display: none;
  }
  .astra-checkout-header__logo {
    flex: none;
    justify-content: center;
    width: 110px;
    height: 40px;
    margin: 0;
  }
  .astra-checkout-header__badge {
    flex: none;
    justify-content: center;
    margin: 0;
  }
}
.astra-checkout-footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #031d2f;
}

.astra-checkout-footer__payments {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px 48px;
  border-bottom: 1px solid #061720;
}

.astra-checkout-footer__flags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.astra-checkout-footer__flag {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 32.65px;
  height: 19.59px;
}
.astra-checkout-footer__flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.astra-checkout-footer__legal {
  box-sizing: border-box;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 87px;
  width: 100%;
  padding: 20px 48px;
}

.astra-checkout-footer__credits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14.78px;
}

.astra-checkout-footer__credit {
  display: flex;
  flex: none;
  align-items: center;
  text-decoration: none;
  transition: opacity 200ms ease-out;
}
.astra-checkout-footer__credit img {
  display: block;
  height: 16px;
  width: auto;
}
.astra-checkout-footer__credit:hover, .astra-checkout-footer__credit:focus-visible {
  opacity: 0.7;
}

.astra-checkout-footer__company {
  font-family: "Outfit", sans-serif;
  font-size: 0.6875rem;
  font-weight: 300;
  line-height: 150%;
  color: #ffffff;
  text-align: left;
  margin: 0;
  letter-spacing: 0;
  flex: 1 1 auto;
  margin: 0;
}

@media (max-width: 768px) {
  .astra-checkout-footer {
    width: 100dvw;
    margin-left: -16px;
  }
  .astra-checkout-footer__payments {
    padding: 24px 16px;
  }
  .astra-checkout-footer__flags {
    gap: 6px;
  }
  .astra-checkout-footer__legal {
    flex-direction: column;
    gap: 16px;
    padding: 16px 11px;
  }
  .astra-checkout-footer__company {
    flex: none;
    max-width: 368px;
    text-align: center;
  }
}
.body-cart {
  background-color: #f3f5f7;
}
.body-cart .container-cart {
  width: 1344px;
}
@media (max-width: 768px) {
  .body-cart .container-cart {
    width: 100%;
  }
}
.body-cart #cart-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 120%;
  color: #031d2f;
  text-align: left;
  margin: 0;
  margin-bottom: 36px;
  padding: 0;
}
@media (max-width: 768px) {
  .body-cart #cart-title {
    text-align: center;
  }
}

.body-order-form {
  background-color: #f3f5f7;
}
.body-order-form #orderform-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 120%;
  color: #031d2f;
  text-align: left;
  margin: 0;
  margin-bottom: 36px;
  padding: 0;
}
@media (max-width: 768px) {
  .body-order-form #orderform-title {
    text-align: center;
  }
}

.step,
.step.active {
  background-color: #ffffff !important;
  margin-bottom: 0 !important;
}

.checkout-container {
  margin-top: 65px;
}

#checkoutMainContainer {
  padding-top: 0;
}
#checkoutMainContainer .container {
  width: 100%;
  max-width: 1344px;
  margin-top: 3%;
}

.body-cart .container-cart .cart-template {
  gap: 27px;
  display: inline-flex;
  flex-direction: column;
}
.body-cart .container-cart .cart-template .cart {
  box-sizing: border-box;
  padding: 24px;
  background: #ffffff;
  border-radius: 4px;
  border: none;
  min-height: fit-content;
  margin: 0;
}
@media (max-width: 768px) {
  .body-cart .container-cart .cart-template .cart {
    padding: 16px;
  }
}

.cart-items {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.cart-items thead tr {
  border-bottom: 1px solid #f3f5f7;
}

.cart-items thead th {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  padding: 0 0 16px;
  background: none;
  border: 0;
  vertical-align: bottom;
  white-space: nowrap;
}

.cart-items thead th.quantity,
.cart-items thead th.quantity-price {
  text-align: center;
}

.cart-items thead th.quantity {
  font-size: 0;
}
.cart-items thead th.quantity::after {
  content: "Qtd.";
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}

.cart-items tbody tr {
  border-top: 1px solid #f3f5f7;
}

.cart-items thead th.shipping-date,
.cart-items tbody td.shipping-date {
  display: none;
}

.cart-items thead th.product-price {
  font-size: 0;
  width: 110px;
}
.cart-items thead th.product-price::after {
  content: "Preço unit.";
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}

.cart-items tbody tr:first-child {
  border-top: 0;
}

.cart-items tbody td {
  padding: 24px 0;
  background: none;
  border: 0;
  vertical-align: middle;
}

.cart-items td.product-image {
  width: 81px;
  padding-right: 12px;
}
.cart-items td.product-image img {
  display: block;
  width: 81px;
  height: 90px;
  object-fit: contain;
  border-radius: 3.3px;
  max-width: unset;
  max-height: unset;
}

.cart-items td.product-name {
  width: 278px;
}
.cart-items td.product-name a {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #031d2f;
  text-align: left;
  margin: 0;
  display: block;
  max-width: 33ch;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  overflow-wrap: anywhere;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-items td.product-name a:hover {
  text-decoration: underline;
}
.cart-items td.product-name .brand,
.cart-items td.product-name .seller {
  font-family: "Outfit", sans-serif;
  font-size: 0.625rem;
  font-weight: 300;
  line-height: 120%;
  color: #373737;
  text-align: left;
  margin: 0;
  letter-spacing: 0;
  display: block;
  margin-top: 8px;
}
.cart-items td.product-name .brand-label {
  margin-right: 4px;
}
.cart-items td.product-name .item-discount-descriptions {
  margin: 8px 0 0;
}

.cart-items td.shipping-date {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: center;
  margin: 0;
}

.cart-items td.product-price,
.cart-items td.quantity-price {
  white-space: nowrap;
}
.cart-items td.product-price .old-product-price-label,
.cart-items td.product-price .new-product-price-label,
.cart-items td.quantity-price .old-product-price-label,
.cart-items td.quantity-price .new-product-price-label {
  display: none;
}
.cart-items td.product-price .list-price .old-product-price,
.cart-items td.quantity-price .list-price .old-product-price {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 120%;
  color: #373737;
  text-align: center;
  margin: 0;
  text-decoration-line: line-through;
  font-size: 0.625rem;
  display: block;
}
.cart-items td.product-price .new-product-price,
.cart-items td.product-price .total-selling-price,
.cart-items td.quantity-price .new-product-price,
.cart-items td.quantity-price .total-selling-price {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #0d4973;
  text-align: left;
  margin: 0;
}
.cart-items td.product-price .new-product-real-price-per-unit,
.cart-items td.quantity-price .new-product-real-price-per-unit {
  display: none;
}
.cart-items td.product-price br,
.cart-items td.quantity-price br {
  line-height: 12px;
}

.cart-items td.quantity-price {
  text-align: center;
}

.cart-items td.quantity {
  box-sizing: border-box;
  position: relative;
  width: 109px;
  padding: 24px 0;
  text-align: center;
  white-space: nowrap;
}
.cart-items td.quantity::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 109px;
  height: 32px;
  transform: translate(-50%, -50%);
  border: 1px solid #ededed;
  border-radius: 4px;
  pointer-events: none;
}
.cart-items td.quantity .item-quantity-change,
.cart-items td.quantity input {
  position: relative;
  z-index: 1;
}
.cart-items td.quantity input {
  box-sizing: border-box;
  display: inline-block;
  width: 33px;
  height: 30px;
  margin: 0 10px;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: center;
  margin: 0;
  letter-spacing: 0;
}
.cart-items td.quantity input:focus {
  outline: none;
  box-shadow: none;
}
.cart-items td.quantity .item-quantity-change {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  vertical-align: middle;
  text-decoration: none;
}
.cart-items td.quantity .item-quantity-change i {
  display: none;
}
.cart-items td.quantity .item-quantity-change-increment {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M6 2.5V9.5' stroke='%231f1f1f' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.5 6H9.5' stroke='%231f1f1f' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.cart-items td.quantity .item-quantity-change-decrement {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6H9.5' stroke='%231f1f1f' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.cart-items td.quantity .item-quantity-change-increment.disabled {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M6 2.5V9.5' stroke='%23b2b2b2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.5 6H9.5' stroke='%23b2b2b2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  cursor: default;
}
.cart-items td.quantity .item-quantity-change-decrement.disabled {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6H9.5' stroke='%23b2b2b2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  cursor: default;
}
.cart-items td.quantity .item-multiplier-label,
.cart-items td.quantity .item-unit-label {
  display: none;
}

.cart-items td.item-remove {
  width: 16px;
  text-align: right;
}
.cart-items td.item-remove .item-link-remove {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6.66536 6.66683C6.84943 6.66683 6.9987 6.8161 6.9987 7.00016V11.0002C6.9987 11.1842 6.84943 11.3335 6.66536 11.3335C6.48127 11.3335 6.33203 11.1842 6.33203 11.0002V7.00016C6.33203 6.8161 6.48127 6.66683 6.66536 6.66683Z' fill='%23000'/%3E%3Cpath d='M9.66536 7.00016C9.66536 6.8161 9.5161 6.66683 9.33203 6.66683C9.14796 6.66683 8.9987 6.8161 8.9987 7.00016V11.0002C8.9987 11.1842 9.14796 11.3335 9.33203 11.3335C9.5161 11.3335 9.66536 11.1842 9.66536 11.0002V7.00016Z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.33203 3.3335V2.66683C5.33203 1.93045 5.92898 1.3335 6.66536 1.3335H9.33203C10.0684 1.3335 10.6654 1.93045 10.6654 2.66683V3.3335H14.332C14.5161 3.3335 14.6654 3.48274 14.6654 3.66683C14.6654 3.85092 14.5161 4.00016 14.332 4.00016H13.2928L12.7392 13.4118C12.6978 14.1166 12.1141 14.6668 11.4082 14.6668H4.58924C3.88327 14.6668 3.29966 14.1166 3.2582 13.4118L2.70458 4.00016H1.66536C1.48127 4.00016 1.33203 3.85092 1.33203 3.66683C1.33203 3.48274 1.48127 3.3335 1.66536 3.3335H5.33203ZM6.66536 2.00016H9.33203C9.70023 2.00016 9.9987 2.29864 9.9987 2.66683V3.3335H5.9987V2.66683C5.9987 2.29864 6.29718 2.00016 6.66536 2.00016ZM3.3724 4.00016L3.92372 13.3726C3.94445 13.725 4.23625 14.0002 4.58924 14.0002H11.4082C11.7612 14.0002 12.053 13.725 12.0737 13.3726L12.625 4.00016H3.3724Z' fill='%23000'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 16px 16px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6.66536 6.66683C6.84943 6.66683 6.9987 6.8161 6.9987 7.00016V11.0002C6.9987 11.1842 6.84943 11.3335 6.66536 11.3335C6.48127 11.3335 6.33203 11.1842 6.33203 11.0002V7.00016C6.33203 6.8161 6.48127 6.66683 6.66536 6.66683Z' fill='%23000'/%3E%3Cpath d='M9.66536 7.00016C9.66536 6.8161 9.5161 6.66683 9.33203 6.66683C9.14796 6.66683 8.9987 6.8161 8.9987 7.00016V11.0002C8.9987 11.1842 9.14796 11.3335 9.33203 11.3335C9.5161 11.3335 9.66536 11.1842 9.66536 11.0002V7.00016Z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.33203 3.3335V2.66683C5.33203 1.93045 5.92898 1.3335 6.66536 1.3335H9.33203C10.0684 1.3335 10.6654 1.93045 10.6654 2.66683V3.3335H14.332C14.5161 3.3335 14.6654 3.48274 14.6654 3.66683C14.6654 3.85092 14.5161 4.00016 14.332 4.00016H13.2928L12.7392 13.4118C12.6978 14.1166 12.1141 14.6668 11.4082 14.6668H4.58924C3.88327 14.6668 3.29966 14.1166 3.2582 13.4118L2.70458 4.00016H1.66536C1.48127 4.00016 1.33203 3.85092 1.33203 3.66683C1.33203 3.48274 1.48127 3.3335 1.66536 3.3335H5.33203ZM6.66536 2.00016H9.33203C9.70023 2.00016 9.9987 2.29864 9.9987 2.66683V3.3335H5.9987V2.66683C5.9987 2.29864 6.29718 2.00016 6.66536 2.00016ZM3.3724 4.00016L3.92372 13.3726C3.94445 13.725 4.23625 14.0002 4.58924 14.0002H11.4082C11.7612 14.0002 12.053 13.725 12.0737 13.3726L12.625 4.00016H3.3724Z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 16px 16px;
  color: #373737;
  vertical-align: middle;
  text-decoration: none;
  transition: color 200ms ease-out;
}
.cart-items td.item-remove .item-link-remove i,
.cart-items td.item-remove .item-link-remove .item-remove-text {
  display: none;
}
.cart-items td.item-remove .item-link-remove:hover, .cart-items td.item-remove .item-link-remove:focus {
  color: #0d4973;
}
.cart-items td.item-remove .item-link-remove:focus-visible {
  outline: 2px solid #52a6dc;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .cart-items,
  .cart-items tbody {
    display: block;
    width: 100%;
  }
  .cart-items thead {
    display: none;
  }
  .cart-items tbody tr.product-item {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
    padding: 16px;
    background: #ffffff;
    border-radius: 4px;
    border-top: 0;
  }
  .cart-items tbody tr.product-item + tr.product-item {
    margin-top: 8px;
  }
  .cart-items tbody tr.product-item > td {
    box-sizing: border-box;
    padding: 0;
  }
  .cart-items td.shipping-date,
  .cart-items td.quantity-price {
    display: none;
  }
  .cart-items td.product-image {
    width: 84px;
    padding-right: 8px;
  }
  .cart-items td.product-image img {
    width: 84px;
    height: 86px;
  }
  .cart-items td.product-name {
    width: calc(100% - 84px - 16px);
    max-width: none;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f5f7;
  }
  .cart-items td.product-name a {
    max-width: none;
  }
  .cart-items td.item-remove {
    order: 1;
    width: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f5f7;
  }
  .cart-items td.quantity {
    order: 2;
    width: calc(100% - 84px - 16px);
    margin-left: 92px;
    padding-top: 16px;
    text-align: left;
  }
  .cart-items td.quantity::before {
    top: 50%;
    left: 0;
    width: 109px;
    transform: translateY(-50%);
  }
  .cart-items td.product-price {
    order: 3;
    width: auto;
    margin-left: auto;
    padding-top: 16px;
    white-space: nowrap;
  }
}
.astra-cart-layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  .astra-cart-layout {
    flex-direction: column;
    gap: 16px;
  }
}

.astra-cart-layout > .cart-template-holder {
  flex: 1 1 auto;
  min-width: 0;
}

.astra-cart-summary {
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  flex: none;
  width: 437px;
  padding: 24px 20px;
  background: #ffffff;
  border-radius: 4px;
}
.astra-cart-summary.astra-cart-summary--ready {
  display: flex;
}
@media (max-width: 768px) {
  .astra-cart-summary {
    width: 100%;
    padding: 16px;
    gap: 16px;
  }
}

.astra-cart-summary .summary-totalizers {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: auto;
  margin: 0;
  float: none;
}
@media (max-width: 768px) {
  .astra-cart-summary .summary-totalizers {
    gap: 16px;
  }
}

.astra-cart-summary .summary-coupon-wrap {
  width: auto;
  margin: 0;
  text-align: left;
}

.astra-cart-summary .summary-coupon {
  float: none;
  width: auto;
}

.astra-cart-summary .coupon-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.astra-cart-summary .coupon-data {
  margin: 0;
}

.astra-cart-summary .coupon-data .link-coupon-add {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #a1a1a1;
  text-align: left;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px;
  padding: 0 16px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 200ms ease-out;
}
.astra-cart-summary .coupon-data .link-coupon-add:hover, .astra-cart-summary .coupon-data .link-coupon-add:focus {
  border-color: #52a6dc;
  text-decoration: none;
}

.astra-cart-summary .coupon-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  margin: 0 0 8px;
}
.astra-cart-summary .coupon-label label {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}

.astra-cart-summary .coupon-fields {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.astra-cart-summary .coupon-fields > span {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.astra-cart-summary .coupon-value {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  box-sizing: border-box;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: 44px;
  margin: 0;
  padding: 0 16px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
  box-shadow: none;
}
.astra-cart-summary .coupon-value::placeholder {
  color: #a1a1a1;
}
.astra-cart-summary .coupon-value:focus {
  border-color: #52a6dc;
  box-shadow: none;
  outline: none;
}

.astra-cart-summary #cart-coupon-add {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #0084d5;
  text-align: left;
  margin: 0;
  flex: none;
  height: 40px;
  padding: 10px 0;
  background: none;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  text-shadow: none;
  text-decoration: underline;
  cursor: pointer;
}
.astra-cart-summary #cart-coupon-add:hover {
  background: none;
  color: #086ebb;
}

.astra-cart-summary .coupon-fields .info {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}
.astra-cart-summary .coupon-fields .info .delete a {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #0084d5;
  text-align: left;
  margin: 0;
  text-decoration: underline;
}

.astra-cart-summary .accordion-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.astra-cart-summary .accordion-heading {
  border: 0;
}

.astra-cart-summary .accordion-toggle {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #031d2f;
  text-align: left;
  margin: 0;
  display: block;
  padding: 0;
  cursor: default;
}

.astra-cart-summary .accordion-body,
.astra-cart-summary .accordion-inner {
  padding: 0;
  border: 0;
}

.astra-cart-summary .accordion-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.astra-cart-summary .accordion-inner .table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
}

.astra-cart-summary .accordion-inner .table td {
  padding: 0;
  border: 0;
  vertical-align: top;
}

.astra-cart-summary .accordion-inner .table td.space,
.astra-cart-summary .accordion-inner .table td.empty {
  display: none;
}

.astra-cart-summary .accordion-inner .table tr {
  border: 0;
}
.astra-cart-summary .accordion-inner .table tr[data-bind="css: {'muted': !hasTotal()}"] td {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: #0d4973;
  text-align: left;
  margin: 0;
}

.astra-cart-summary .accordion-inner .table td.info,
.astra-cart-summary .accordion-inner .table td.monetary {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  padding-bottom: 8px;
}

.astra-cart-summary .accordion-inner .table td.monetary {
  width: 1%;
  padding-left: 8px;
  text-align: right;
  white-space: nowrap;
}

.astra-cart-summary .accordion-inner .table tr.srp-summary-result.astra-shipping-duplicate {
  display: none;
}

.astra-cart-summary .accordion-inner .table tr.Shipping td.info,
.astra-cart-summary .accordion-inner .table tr.Shipping td.monetary {
  vertical-align: top;
}

.astra-cart-summary .accordion-inner .table tr.Shipping .shipping-name,
.astra-cart-summary .accordion-inner .table tr.Shipping .shipping-name-to,
.astra-cart-summary .accordion-inner .table tr.Shipping .postal-code-value {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}

.astra-cart-summary .accordion-inner .table tfoot td {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: #031d2f;
  text-align: left;
  margin: 0;
  padding-top: 16px;
}

.astra-cart-summary .accordion-inner .table tfoot td.monetary {
  text-align: right;
  white-space: nowrap;
}

.astra-cart-summary .postal-code-for-sla {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #a1a1a1;
  text-align: left;
  margin: 0;
  display: block;
}
.astra-cart-summary .postal-code-for-sla .cart-reset-postal-code {
  color: #0084d5;
}

.astra-cart-summary .shipping-selected-sla-estimate {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #a1a1a1;
  text-align: left;
  margin: 0;
  display: block;
}

.astra-cart-summary .summary-discount-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.astra-cart-summary .discount-descriptions-item {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #a1a1a1;
  text-align: left;
  margin: 0;
  margin-bottom: 4px;
}
.astra-cart-summary .discount-descriptions-item .discount-name {
  color: #373737;
}

.full-cart .summary-template-holder .cart-more-options {
  width: 100%;
  margin: 0;
  float: none;
}

.astra-cart-summary .cart-links-bottom {
  box-sizing: border-box;
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  width: auto;
  margin: 0;
  padding: 0;
  float: none;
  text-align: left;
}
.astra-cart-summary .cart-links-bottom::before {
  display: none;
}

.astra-cart-summary .cart-links-bottom .btn-place-order {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 10px 20px;
  background: #0d4973;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
  float: none;
  transition: background-color 200ms ease-out;
  font-size: 0;
}
.astra-cart-summary .cart-links-bottom .btn-place-order::after {
  content: "Finalizar compra";
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #ffffff;
  text-align: center;
  margin: 0;
}
.astra-cart-summary .cart-links-bottom .btn-place-order:hover, .astra-cart-summary .cart-links-bottom .btn-place-order:focus {
  background: #031d2f;
  color: #ffffff;
}

.astra-cart-summary .cart-links-bottom .link-choose-more-products {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 10px 16px 10px 20px;
  background: #f3f5f7;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
  text-decoration: none;
  transition: background-color 200ms ease-out;
  font-size: 0;
}
.astra-cart-summary .cart-links-bottom .link-choose-more-products::after {
  content: "Continuar comprando";
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #031d2f;
  text-align: center;
  margin: 0;
}
.astra-cart-summary .cart-links-bottom .link-choose-more-products:hover, .astra-cart-summary .cart-links-bottom .link-choose-more-products:focus {
  background: #ededed;
  color: #031d2f;
  text-decoration: none;
}

.astra-cart-summary .cart-links-bottom .btn-place-order-wrapper,
.astra-cart-summary .cart-links-bottom .link-choose-more-products-wrapper {
  display: block;
  width: 100%;
}

.astra-cart-summary .cart-links-bottom .btn-place-order-wrapper {
  order: -1;
}

.astra-combobox {
  position: relative;
}
.astra-combobox.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.astra-combobox__button {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e8e8ee;
  cursor: pointer;
  box-shadow: none;
  text-shadow: none;
  line-height: normal;
}
.astra-combobox__button::after {
  content: "";
  flex: none;
  width: 10px;
  height: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5' viewBox='0 0 10 5' fill='none'%3E%3Cpath d='M9.90621 0.549313L5.24694 4.90447C5.18142 4.96564 5.0926 5 5 5C4.9074 5 4.81858 4.96564 4.75306 4.90447L0.0937872 0.549313C0.0320612 0.487393 -0.00154286 0.405496 5.44424e-05 0.320875C0.00165174 0.236254 0.0383257 0.155516 0.10235 0.0956702C0.166375 0.0358246 0.252751 0.00154393 0.343281 5.08883e-05C0.433811 -0.00144215 0.521427 0.029969 0.58767 0.0876661L5 4.21146L9.41233 0.0876661C9.47857 0.029969 9.56619 -0.00144215 9.65672 5.08883e-05C9.74725 0.00154393 9.83363 0.0358246 9.89765 0.0956702C9.96167 0.155516 9.99835 0.236254 9.99995 0.320875C10.0015 0.405496 9.96794 0.487393 9.90621 0.549313Z' fill='%23707176'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 5px;
  transition: transform 200ms ease-out;
}
.astra-combobox__button:focus-visible {
  outline: 2px solid #52a6dc;
  outline-offset: 2px;
}
.astra-combobox__button[disabled] {
  cursor: default;
  opacity: 0.6;
}

.astra-combobox.is-open .astra-combobox__button::after {
  transform: rotate(180deg);
}

.astra-combobox.is-invalid .astra-combobox__button {
  border-color: #e42731;
}

.astra-combobox__face {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.astra-combobox__label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.astra-combobox--empty .astra-combobox__label {
  color: #707176;
}

.astra-combobox__list {
  box-sizing: border-box;
  position: fixed;
  z-index: 9001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-height: 220px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #e8e8ee;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(145, 147, 167, 0.16);
}
.astra-combobox__list[hidden] {
  display: none;
}

.astra-combobox__option {
  box-sizing: border-box;
  display: flex;
  flex: none;
  align-self: stretch;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 8px 16px;
  cursor: pointer;
}
.astra-combobox__option.is-active {
  background: #f1f8fc;
}
.astra-combobox__option.is-selected {
  background: #f1f8fc;
}
.astra-combobox__option.is-selected .astra-combobox__option-label {
  color: #031d2f;
}
.astra-combobox__option.is-unavailable {
  cursor: default;
  opacity: 0.5;
}

.astra-combobox__option-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: rgba(55, 55, 55, 0.8);
  text-align: left;
  margin: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.astra-config-modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 23, 32, 0.5);
}
.astra-config-modal__overlay[hidden] {
  display: none;
}
@media (max-width: 768px) {
  .astra-config-modal__overlay {
    padding: 0;
    align-items: flex-end;
  }
}

.astra-config-modal {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(145, 147, 167, 0.16);
}
@keyframes fs-slide-in-bottom {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.astra-config-modal {
  animation: fs-slide-in-bottom 200ms ease-out;
}
.astra-config-modal.is-busy {
  opacity: 0.7;
  pointer-events: none;
}
@keyframes fs-slide-out-bottom {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(12px);
  }
}
.astra-config-modal.is-closing {
  animation: fs-slide-out-bottom 200ms ease-in forwards;
}
@media (max-width: 768px) {
  .astra-config-modal {
    max-width: none;
    max-height: 100dvh;
    border-radius: 4px 4px 0 0;
  }
  @keyframes fs-slide-in-edge-bottom {
    from {
      opacity: 0;
      transform: translateY(100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .astra-config-modal {
    animation: fs-slide-in-edge-bottom 250ms ease-out;
  }
  @keyframes fs-slide-out-edge-bottom {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(100%);
    }
  }
  .astra-config-modal.is-closing {
    animation: fs-slide-out-edge-bottom 200ms ease-in forwards;
  }
}

.astra-config-modal__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #f3f5f7;
}
@media (max-width: 768px) {
  .astra-config-modal__header {
    padding: 16px 16px 12px;
  }
}

.astra-config-modal__title {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: #031d2f;
  text-align: left;
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  overflow-wrap: anywhere;
  overflow: hidden;
  text-overflow: ellipsis;
}

.astra-config-modal__close {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M12.7 3.3a.5.5 0 0 0-.7 0L8 7.29 4 3.3a.5.5 0 1 0-.7.71L7.29 8l-4 4a.5.5 0 1 0 .71.7L8 8.71l4 4a.5.5 0 0 0 .7-.71L8.71 8l4-4a.5.5 0 0 0 0-.7Z' fill='%23000'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 16px 16px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M12.7 3.3a.5.5 0 0 0-.7 0L8 7.29 4 3.3a.5.5 0 1 0-.7.71L7.29 8l-4 4a.5.5 0 1 0 .71.7L8 8.71l4 4a.5.5 0 0 0 .7-.71L8.71 8l4-4a.5.5 0 0 0 0-.7Z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 16px 16px;
  flex: none;
  margin-top: 2px;
  padding: 0;
  background-color: #373737;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 200ms ease-out;
}
.astra-config-modal__close:hover, .astra-config-modal__close:focus {
  background-color: #0d4973;
}
.astra-config-modal__close:focus-visible {
  outline: 2px solid #52a6dc;
  outline-offset: 2px;
}

.astra-config-modal__body {
  flex: 1 1 auto;
  padding: 8px 24px;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .astra-config-modal__body {
    padding: 8px 16px;
  }
}

.astra-config-modal__section {
  padding: 16px 0;
}
.astra-config-modal__section + .astra-config-modal__section {
  border-top: 1px solid #f3f5f7;
}

.astra-config-modal__section-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.astra-config-modal__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.astra-config-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 200px;
  min-width: 0;
}

.astra-config-modal__field-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.astra-config-modal__field-label::first-letter {
  text-transform: uppercase;
}

.astra-config-modal .astra-combobox__button {
  height: 44px;
  padding: 8px 12px;
  border-radius: 4px;
}

.astra-config-modal .astra-combobox__label {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}

.astra-config-modal .astra-combobox__list {
  width: 100%;
  min-width: 0;
}

.astra-stepper {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 140px;
  height: 44px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
}

.astra-stepper__button {
  flex: none;
  width: 12px;
  height: 12px;
  padding: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  border: 0;
  box-shadow: none;
  cursor: pointer;
}
.astra-stepper__button:focus-visible {
  outline: 2px solid #52a6dc;
  outline-offset: 4px;
}
.astra-stepper__button[disabled] {
  cursor: default;
}

.astra-stepper__button--plus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M6 2.5V9.5' stroke='%231f1f1f' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.5 6H9.5' stroke='%231f1f1f' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.astra-stepper__button--minus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6H9.5' stroke='%231f1f1f' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.astra-stepper__button--minus[disabled] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6H9.5' stroke='%23b2b2b2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.astra-stepper .astra-stepper__value {
  box-sizing: border-box;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0 8px;
  background: none;
  border: 0;
  box-shadow: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: center;
  margin: 0;
  letter-spacing: 0;
}
.astra-stepper .astra-stepper__value:focus {
  outline: none;
  box-shadow: none;
}

.astra-config-modal__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px 24px;
  border-top: 1px solid #f3f5f7;
}
@media (max-width: 768px) {
  .astra-config-modal__footer {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 16px;
  }
}

.astra-config-modal__message {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #e42731;
  text-align: left;
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  visibility: hidden;
}
.astra-config-modal__message.is-visible {
  visibility: visible;
}

.astra-config-modal__actions {
  display: flex;
  flex: none;
  gap: 8px;
}
@media (max-width: 768px) {
  .astra-config-modal__actions > * {
    flex: 1 1 auto;
  }
}

.astra-config-modal__button {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  box-sizing: border-box;
  height: 40px;
  padding: 0 20px;
  background: #ffffff;
  border: 1px solid #e8e8ee;
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
  cursor: pointer;
  transition: background-color 200ms ease-out, border-color 200ms ease-out, color 200ms ease-out;
}
.astra-config-modal__button:hover:not([disabled]) {
  border-color: #52a6dc;
  color: #0d4973;
}
.astra-config-modal__button:focus-visible {
  outline: 2px solid #52a6dc;
  outline-offset: 2px;
}
.astra-config-modal__button[disabled] {
  cursor: default;
  opacity: 0.5;
}

.astra-config-modal__button--primary {
  background: #0d4973;
  border-color: #0d4973;
  color: #ffffff;
}
.astra-config-modal__button--primary:hover:not([disabled]) {
  background: #031d2f;
  border-color: #031d2f;
  color: #ffffff;
}

.astra-modal-open {
  overflow: hidden;
}

.astra-coupon-native-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.astra-coupon {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.astra-coupon__box {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0 16px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
  box-shadow: none;
  line-height: normal;
  transition: border-color 200ms ease-out;
}
.astra-coupon__box:focus-within {
  border-color: #52a6dc;
}
.astra-coupon__box--applied {
  border-color: #42ad4e;
}
.astra-coupon__box--error {
  border-color: #e42731;
}

input[type=text].astra-coupon__input {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  background: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  outline: none;
}
input[type=text].astra-coupon__input::placeholder {
  color: #a1a1a1;
}
input[type=text].astra-coupon__input:focus {
  outline: none;
  box-shadow: none;
  border-color: transparent;
}
input[type=text].astra-coupon__input:disabled {
  -webkit-text-fill-color: currentColor;
  opacity: 1;
}

.astra-coupon__action {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #0084d5;
  text-align: left;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin: 0;
  padding: 10px 0;
  background: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
  text-decoration: underline;
  cursor: pointer;
}
.astra-coupon__action:hover, .astra-coupon__action:focus {
  background: none;
  background-color: transparent;
  box-shadow: none;
  color: #086ebb;
}
.astra-coupon__action:disabled {
  color: #a1a1a1;
  text-decoration: underline;
  cursor: default;
  text-transform: uppercase;
}
.astra-coupon__action--loading {
  text-decoration: none;
}
.astra-coupon__action--loading .astra-coupon__action-label {
  display: none;
}
.astra-coupon__action--loading .astra-coupon__spinner {
  display: block;
}

.astra-coupon__spinner {
  display: none;
  flex: none;
  width: 14px;
  height: 14px;
  border: 2px solid #a1a1a1;
  border-top-color: #0084d5;
  border-radius: 50%;
  animation: astra-coupon-spin 600ms linear infinite;
}

@keyframes astra-coupon-spin {
  to {
    transform: rotate(360deg);
  }
}
.astra-coupon__helper {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #e42731;
  text-align: left;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}
.astra-coupon__helper[hidden] {
  display: none;
}

.astra-coupon__helper-icon {
  display: flex;
  flex: none;
  align-items: center;
}
.astra-coupon__helper-icon svg {
  display: block;
}

.astra-coupon__helper-text {
  flex: 1 1 auto;
}

.astra-coupon[data-state=applied] .astra-coupon__helper {
  color: #42ad4e;
}

.document-box {
  display: block;
}

.phone-box {
  display: block;
}

.step {
  background: #ffffff;
  border: none;
  padding: 16px;
}

.client-profile-data .box-step {
  background: #ffffff;
  border-radius: 4px;
}

.client-profile-data .accordion-toggle {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: #031d2f;
  text-align: left;
  margin: 0;
}
.client-profile-data .accordion-toggle i.icon-user {
  color: #0d4973;
}
.client-profile-data .accordion-toggle #edit-profile-data {
  background: none;
  border: none;
}
.client-profile-data .client-notice,
.client-profile-data .client-profile-summary,
.client-profile-data .client-profile-email {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.client-profile-data .client-notice {
  margin-bottom: 12px;
}
.client-profile-data .client-profile-summary .name,
.client-profile-data .client-profile-email .email {
  color: #031d2f;
}
.client-profile-data label {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.client-profile-data input[type=text],
.client-profile-data input[type=email],
.client-profile-data input[type=tel] {
  box-sizing: border-box;
  height: 44px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
  box-shadow: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.client-profile-data input[type=text]:focus,
.client-profile-data input[type=email]:focus,
.client-profile-data input[type=tel]:focus {
  outline: none;
  border-color: #52a6dc;
  box-shadow: none;
}
.client-profile-data input[type=text][disabled],
.client-profile-data input[type=email][disabled],
.client-profile-data input[type=tel][disabled] {
  background: #f3f3f3;
  color: #454545;
}
.client-profile-data input[type=email].input-xlarge {
  width: 100%;
}
.client-profile-data p.client-first-name,
.client-profile-data p.client-document,
.client-profile-data p.client-company-ie {
  width: 48%;
}
.client-profile-data p.client-first-name input,
.client-profile-data p.client-document input,
.client-profile-data p.client-company-ie input {
  width: 100%;
}
.client-profile-data p.client-last-name,
.client-profile-data p.client-phone,
.client-profile-data p.client-company-document {
  width: 49%;
}
.client-profile-data p.client-last-name input,
.client-profile-data p.client-phone input,
.client-profile-data p.client-company-document input {
  width: 100%;
}
.client-profile-data p.client-company-name input,
.client-profile-data p.client-company-nickname input {
  width: 100%;
}
.client-profile-data .help.error {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #e42731;
  text-align: left;
  margin: 0;
}
.client-profile-data .checkbox {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.client-profile-data .links a,
.client-profile-data .link-logout,
.client-profile-data #email-suggestion-address a {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
}
.client-profile-data .link-logout-container {
  display: inline !important;
}
.client-profile-data .links {
  display: none !important;
}
.client-profile-data .document-box-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #0d4973;
  text-align: left;
  margin: 0;
}
.client-profile-data .submit.btn-submit-wrapper .btn {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #ffffff;
  text-align: center;
  margin: 0;
  background: #0d4973;
  border: 1px solid #0d4973;
  box-shadow: none;
  text-shadow: none;
  margin-top: 12px;
}
.client-profile-data .submit.btn-submit-wrapper .btn:hover:not([disabled]) {
  background: #031d2f;
  border-color: #031d2f;
}

.shipping-data {
  background-color: #ffffff;
}
.shipping-data .accordion-toggle {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: #031d2f;
  text-align: left;
  margin: 0;
}
.shipping-data .accordion-toggle i.icon-home {
  color: #0d4973;
}
.shipping-data #edit-shipping-data {
  background: none;
  border: none;
}
.shipping-data label,
.shipping-data .vtex-omnishipping-1-x-shippingSectionTitle,
.shipping-data .delivery-address-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  margin-bottom: 12px;
}
.shipping-data p.input.ship-street.text,
.shipping-data p.input.ship-neighborhood.text {
  width: 100%;
}
.shipping-data p.input.ship-street.text #ship-street,
.shipping-data p.input.ship-neighborhood.text #ship-street {
  width: 100%;
}
.shipping-data p.input.ship-street.text #ship-neighborhood,
.shipping-data p.input.ship-neighborhood.text #ship-neighborhood {
  width: 100%;
}
.shipping-data p.input.ship-city.text {
  width: 75%;
}
.shipping-data p.input.ship-city.text #ship-city {
  width: 100%;
}
.shipping-data small a {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
}
.shipping-data input[type=text]:not(.shp-option-radio),
.shipping-data select {
  box-sizing: border-box;
  height: 44px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
  box-shadow: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.shipping-data input[type=text]:not(.shp-option-radio):focus,
.shipping-data select:focus {
  outline: none;
  border-color: #52a6dc;
  box-shadow: none;
}
.shipping-data .shipping-method-wrapper {
  border-radius: 8px;
  box-shadow: 1px 1px 10px rgba(145, 147, 167, 0.16);
}
.shipping-data .shipping-method-toggle {
  background: #0d4973;
  color: #ffffff;
  border: none;
  border-radius: 8px;
}
.shipping-data .shp-method-option {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #0d4973;
  text-align: center;
  margin: 0;
  background: none;
  border: none;
  border-radius: 8px;
  box-shadow: none;
  transition: all 0.25s ease;
}
.shipping-data .shp-method-option.shp-method-option-active {
  color: #ffffff;
}
.shipping-data .ask-for-geolocation {
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 8px;
  overflow: hidden;
  padding: 24px;
  margin-bottom: 16px;
}
.shipping-data .ask-for-geolocation-title {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: #031d2f;
  text-align: center;
  margin: 0;
  margin: 0 0 8px;
}
.shipping-data .ask-for-geolocation-subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: center;
  margin: 0;
  margin: 0;
}
.shipping-data .btn-ask-for-geolocation-cta.btn.btn-success {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #ffffff;
  text-align: center;
  margin: 0;
  background: #0d4973;
  background-image: none;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
  cursor: pointer;
  transition: background-color 200ms ease-out;
}
.shipping-data .btn-ask-for-geolocation-cta.btn.btn-success:hover, .shipping-data .btn-ask-for-geolocation-cta.btn.btn-success:focus {
  background: #031d2f;
  background-image: none;
  color: #ffffff;
}
.shipping-data .btn-ask-for-geolocation-cta.btn.btn-success:focus-visible {
  outline: 2px solid #52a6dc;
  outline-offset: 2px;
}
.shipping-data .shp-pickup-receiver {
  margin-bottom: 16px;
}
.shipping-data .shp-pickup-receiver__title {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  margin-bottom: 12px;
}
.shipping-data .shp-pickup-receiver__text {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f1f8fc;
  border: 1px solid #ededed;
  border-radius: 4px;
}
.shipping-data .shp-pickup-receiver__icon svg path {
  fill: #0d4973;
}
.shipping-data .shp-pickup-receiver__name {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #181d27;
  text-align: left;
  margin: 0;
}
.shipping-data .shp-pickup-receiver__btn {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
}
.shipping-data .shp-pickup-receiver__btn:hover, .shipping-data .shp-pickup-receiver__btn:focus {
  color: #086ebb;
  text-decoration: underline;
}
.shipping-data .shp-lean-option {
  background: #ffffff;
  border: 1px solid #ededed;
  margin: 0;
}
.shipping-data .shp-lean-option.shp-lean-option-active {
  border-color: #52a6dc;
  background: #f1f8fc;
}
.shipping-data .shp-option-text-label-single,
.shipping-data .shp-option-text-price {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.shipping-data .shp-option-text-price {
  color: #0d4973;
  font-weight: 500;
}
.shipping-data .btn-go-to-payment {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #ffffff;
  text-align: center;
  margin: 0;
  background: #0d4973;
  border: 1px solid #0d4973;
  box-shadow: none;
  text-shadow: none;
}
.shipping-data .btn-go-to-payment:hover:not([disabled]) {
  background: #031d2f;
  border-color: #031d2f;
}
@media (max-width: 768px) {
  .shipping-data .btn-go-to-payment {
    text-align: center;
  }
}
.shipping-data #ship-postalCode {
  width: 100%;
  max-width: unset;
}
.shipping-data .vtex-omnishipping-1-x-address div {
  display: flex;
  flex-wrap: wrap;
}
.shipping-data .vtex-omnishipping-1-x-address div .ship-complement {
  flex: 1;
}
.shipping-data .vtex-omnishipping-1-x-address div .ship-complement #ship-complement {
  width: 100%;
}
.shipping-data .vtex-omnishipping-1-x-address div .ship-number {
  flex: 1;
  max-width: 80px;
}
.shipping-data .vtex-omnishipping-1-x-address div .ship-receiverName {
  width: 100%;
}
.shipping-data .vtex-omnishipping-1-x-address div .ship-receiverName #ship-receiverName {
  width: 100%;
}

#payment-data {
  margin-top: 16px;
}
#payment-data .accordion-toggle {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: #031d2f;
  text-align: left;
  margin: 0;
}
#payment-data .accordion-toggle i.icon-credit-card {
  color: #0d4973;
}
#payment-data .box-step {
  background: #ffffff;
  border-radius: 4px;
}
#payment-data .form-step.box-new {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  #payment-data .form-step.box-new {
    gap: 0;
  }
}
#payment-data .form-step.box-new > * {
  flex: 1 1 100%;
  position: static;
  float: none;
  width: auto;
  margin-left: 0;
  order: -1;
}
#payment-data .form-step.box-new > .payment-group,
#payment-data .form-step.box-new > .steps-view {
  box-sizing: border-box;
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  order: 0;
  min-height: 300px;
}
@media (max-width: 768px) {
  #payment-data .form-step.box-new > .payment-group,
  #payment-data .form-step.box-new > .steps-view {
    flex: 1 1 100%;
    min-height: fit-content;
  }
  #payment-data .form-step.box-new > .payment-group {
    margin-bottom: 24px;
  }
}
#payment-data .link-gift-card a {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
}
#payment-data .gift-card-section {
  padding: 16px;
  background: #f3f5f7;
  border-radius: 4px;
}
#payment-data .payment-discounts-options {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
#payment-data .payment-discounts-options label {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  flex: none;
  margin: 0;
}
#payment-data .payment-discounts-cod {
  box-sizing: border-box;
  flex: 1 1 auto;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
  box-shadow: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
#payment-data .payment-discounts-cod:focus {
  outline: none;
  border-color: #52a6dc;
  box-shadow: none;
}
#payment-data #btn-add-gift-card {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #ffffff;
  text-align: left;
  margin: 0;
  box-sizing: border-box;
  flex: none;
  height: 44px;
  padding: 0 20px;
  background: #0d4973;
  border: 1px solid #0d4973;
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
}
#payment-data #btn-add-gift-card:hover:not([disabled]) {
  background: #031d2f;
  border-color: #031d2f;
}
#payment-data .payment-discounts-list {
  margin-top: 12px;
}
#payment-data .payment-discounts-list h5 {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  margin: 0 0 8px;
}
#payment-data .payment-group-list.hide {
  display: none;
}
#payment-data .payment-group-list-btn {
  border: 1px solid #ededed;
  border-radius: 4px;
  overflow: hidden;
}
#payment-data #payment-group-custom201PaymentGroupPaymentGroup {
  display: none;
}
#payment-data .payment-group-item {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 56px;
  padding: 0 16px 0 44px;
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid #ededed;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
#payment-data .payment-group-item:last-child {
  border-bottom: 0;
}
#payment-data .payment-group-item::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 16px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 50%;
}
#payment-data .payment-group-item.active {
  background: #f1f8fc;
}
#payment-data .payment-group-item.active::before {
  border-color: #0d4973;
  border-width: 5px;
}
#payment-data .payment-group-item-text {
  flex: 1 1 auto;
}
#payment-data .payment-group-item + p:not([class]),
#payment-data .payment-group-item ~ .payment-description {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #42ad4e;
  text-align: left;
  margin: 0;
  padding: 8px 16px;
  background: #f1f8fc;
}
#payment-data .box-payment-option,
#payment-data .box-payment-group2 {
  box-sizing: border-box;
  margin: 0;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
  height: fit-content;
}
#payment-data .box-payment-option h3,
#payment-data .box-payment-group2 h3 {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 120%;
  color: #031d2f;
  text-align: left;
  margin: 0;
  margin: 0 0 8px;
}
#payment-data #iframe-placeholder-creditCardPaymentGroup iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
}
#payment-data .payment-description {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
#payment-data .sight {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  margin-top: 8px;
}
#payment-data .sight .total {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
#payment-data .payment-alert-error {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #e42731;
  text-align: left;
  margin: 0;
  background: #ffffff;
  border: 1px solid #e42731;
  border-radius: 4px;
  box-shadow: none;
}
#payment-data .payment-amount-box {
  box-sizing: border-box;
  height: 44px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
}
#payment-data .payment-amount-currency {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
#payment-data .payment-amount-input {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  background: none;
  border: 0;
  box-shadow: none;
}
#payment-data .payment-amount-input:focus {
  outline: none;
  box-shadow: none;
}
#payment-data .payment-submit-hide {
  margin: 16px 0 0;
}
#payment-data .payment-submit-hide .btn {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #ffffff;
  text-align: left;
  margin: 0;
  background: #0d4973;
  border: 1px solid #0d4973;
  box-shadow: none;
  text-shadow: none;
}
#payment-data .payment-submit-hide .btn:hover:not([disabled]) {
  background: #031d2f;
  border-color: #031d2f;
}
#payment-data .link.back a {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
}

.orderform-template-holder #payment-data .payment-group-list-btn .payment-group-item .payment-group-item-text::before, .orderform-template-holder #payment-data .payment-group-list-btn .payment-group-item .payment-group-item-text::after {
  display: none;
}

.card-ui,
#app-container {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}

.SecurityEnvironmentIcon {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 6px;
  float: none;
  width: 146px;
  max-width: unset;
  margin: 0 0 12px auto;
  padding: 6px 10px;
  background: #f3f5f7;
  border-radius: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.SecurityEnvironmentIcon .icon-lock {
  float: none;
  margin: 0;
  font-size: 16px;
  line-height: 1;
  color: #0d4973;
}
.SecurityEnvironmentIcon .payment-environment-icon-text {
  width: auto;
  font-size: inherit;
  line-height: inherit;
  vertical-align: baseline;
  white-space: nowrap;
}

.CardForm::after,
.PaymentCard::after,
.payment-card::after {
  content: "";
  display: table;
  clear: both;
}

.FormFieldLabel {
  display: block;
  margin: 0 0 6px;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.FormFieldLabel .item-required {
  color: #e42731;
}
.FormFieldLabel.pull-left {
  float: none;
  margin: 0 12px 0 0;
  line-height: 44px;
}

.card-ui input[type=text],
.card-ui input[type=tel],
.card-ui input[type=email],
.card-ui input[type=number],
.card-ui select,
#app-container input[type=text],
#app-container input[type=tel],
#app-container input[type=email],
#app-container input[type=number],
#app-container select {
  box-sizing: border-box;
  height: 44px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
  box-shadow: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.card-ui input[type=text]::placeholder,
.card-ui input[type=tel]::placeholder,
.card-ui input[type=email]::placeholder,
.card-ui input[type=number]::placeholder,
.card-ui select::placeholder,
#app-container input[type=text]::placeholder,
#app-container input[type=tel]::placeholder,
#app-container input[type=email]::placeholder,
#app-container input[type=number]::placeholder,
#app-container select::placeholder {
  color: #a1a1a1;
}
.card-ui input[type=text]:focus,
.card-ui input[type=tel]:focus,
.card-ui input[type=email]:focus,
.card-ui input[type=number]:focus,
.card-ui select:focus,
#app-container input[type=text]:focus,
#app-container input[type=tel]:focus,
#app-container input[type=email]:focus,
#app-container input[type=number]:focus,
#app-container select:focus {
  outline: none;
  border-color: #52a6dc;
  box-shadow: none;
}
.card-ui input[type=text].success,
.card-ui input[type=tel].success,
.card-ui input[type=email].success,
.card-ui input[type=number].success,
.card-ui select.success,
#app-container input[type=text].success,
#app-container input[type=tel].success,
#app-container input[type=email].success,
#app-container input[type=number].success,
#app-container select.success {
  border-color: #42ad4e;
}
.card-ui input[type=text].error,
.card-ui input[type=tel].error,
.card-ui input[type=email].error,
.card-ui input[type=number].error,
.card-ui select.error,
#app-container input[type=text].error,
#app-container input[type=tel].error,
#app-container input[type=email].error,
#app-container input[type=number].error,
#app-container select.error {
  border-color: #e42731;
}
.card-ui input[type=text][disabled],
.card-ui input[type=tel][disabled],
.card-ui input[type=email][disabled],
.card-ui input[type=number][disabled],
.card-ui select[disabled],
#app-container input[type=text][disabled],
#app-container input[type=tel][disabled],
#app-container input[type=email][disabled],
#app-container input[type=number][disabled],
#app-container select[disabled] {
  background: #f3f3f3;
  color: #454545;
}
.card-ui select,
#app-container select {
  line-height: normal;
  padding-right: 32px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23373737' stroke-width='1.5' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.card-ui .PaymentCardNumber input,
.card-ui .PaymentCardHolderName input,
#app-container .PaymentCardNumber input,
#app-container .PaymentCardHolderName input {
  width: 100%;
  max-width: unset;
}
.card-ui .PaymentCardHolderDocument input,
#app-container .PaymentCardHolderDocument input {
  width: 100%;
}

.PaymentCardNumber,
.PaymentCardHolderName,
.PaymentCardHolderDocument,
.PaymentCardDueDate,
.PaymentCardCVV,
.PaymentCardInstallments,
.PaymentCardFlags,
.AddressForm {
  margin: 0 0 16px;
}

.PaymentCardDueDate,
.PaymentCardCVV {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.PaymentCardDueDate .payment-card-due-month,
.PaymentCardDueDate .payment-card-due-year,
.PaymentCardCVV .payment-card-due-month,
.PaymentCardCVV .payment-card-due-year {
  margin: 0;
}
.PaymentCardDueDate .payment-card-lash,
.PaymentCardCVV .payment-card-lash {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #a1a1a1;
  text-align: left;
  margin: 0;
}
.PaymentCardDueDate select.input-mini,
.PaymentCardCVV select.input-mini {
  width: auto;
  min-width: 88px;
}
.PaymentCardDueDate input.input-mini,
.PaymentCardCVV input.input-mini {
  width: 88px;
}
.PaymentCardDueDate .payment-card-due-date-error,
.PaymentCardCVV .payment-card-due-date-error {
  flex: 1 1 100%;
  margin: 0;
}

.PaymentCardDueDate {
  flex-wrap: nowrap;
}

.PaymentCardFlags .card-flags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.PaymentCardFlags .card-flag-label {
  position: relative;
  display: inline-flex;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.PaymentCardFlags .card-flag-radio {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.PaymentCardFlags .card-flag {
  box-sizing: content-box;
  border: 1px solid #ededed;
  border-radius: 4px;
}
.PaymentCardFlags .card-flag.card-selected {
  border-color: #0d4973;
}
.PaymentCardFlags .card-unavailable-text {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}

.PaymentInstallments select,
select[name=installments] {
  width: 100% !important;
  max-width: unset;
}

.installments-summary {
  margin-top: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.installments-summary .installments-summary-title {
  color: #031d2f;
}

.card-ui .checkbox,
#app-container .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.card-ui .checkbox input[type=checkbox],
#app-container .checkbox input[type=checkbox] {
  float: none;
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: #0d4973;
}
.card-ui .button-link,
.card-ui .use-another-card,
.card-ui .dont-know-postal-code,
#app-container .button-link,
#app-container .use-another-card,
#app-container .dont-know-postal-code {
  padding: 0;
  background: none;
  border: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
  cursor: pointer;
}

.card-ui span.error,
.card-ui .help.error,
#app-container span.error,
#app-container .help.error {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #e42731;
  text-align: left;
  margin: 0;
  display: block;
  margin-top: 4px;
  width: auto !important;
  padding: 0;
}
.card-ui .FormFieldHelpMessage,
#app-container .FormFieldHelpMessage {
  margin: 8px auto;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}

.cvv-help-message {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #ffffff;
  text-align: left;
  margin: 0;
  background: #031d2f;
  border: 0;
  border-radius: 4px;
}

.Warning {
  border-radius: 4px;
}
.Warning .title {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.Warning .description {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}

#payment-data .box-payment-option, #payment-data .box-payment-group2 {
  height: 0;
  padding: 0;
  border: 0;
}
@media (max-width: 768px) {
  #payment-data .box-payment-option, #payment-data .box-payment-group2 {
    height: fit-content;
  }
}

.PaymentCardCVV label {
  width: fit-content !important;
}

.PaymentCardValue .input-prepend {
  width: fit-content;
  display: inline-flex;
}
.PaymentCardValue .input-prepend .add-on {
  height: 33px;
  display: flex;
  flex-direction: column;
  width: 10px;
  justify-content: center;
  background: #0d4973;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #ffffff;
  text-align: left;
  margin: 0;
}

.empty-cart-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 80px 16px 96px;
}
@media (max-width: 768px) {
  .empty-cart-content {
    padding: 48px 16px 64px;
  }
}

.empty-cart-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 140%;
  color: #031d2f;
  text-align: center;
  margin: 0;
  letter-spacing: 0;
  max-width: 280px;
}
@media (max-width: 768px) {
  .empty-cart-title {
    font-size: 1.25rem;
  }
}

.empty-cart-message {
  margin-top: -16px;
}
.empty-cart-message p {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: center;
  margin: 0;
  max-width: 280px;
}

.empty-cart-links {
  float: none;
  width: 100%;
  max-width: 280px;
}

.empty-cart-links .link-choose-products.btn.btn-large {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  width: 100%;
  min-height: 44px;
  padding: 10px 20px;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #ffffff;
  text-align: center;
  margin: 0;
  letter-spacing: 0;
  background: #0d4973;
  background-image: none;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms ease-out;
}
.empty-cart-links .link-choose-products.btn.btn-large:hover, .empty-cart-links .link-choose-products.btn.btn-large:focus {
  background: #031d2f;
  background-image: none;
  color: #ffffff;
  text-decoration: none;
}
.empty-cart-links .link-choose-products.btn.btn-large:focus-visible {
  outline: 2px solid #52a6dc;
  outline-offset: 2px;
}

.astra-freeshipping {
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
}
.astra-freeshipping.astra-freeshipping--ready {
  display: flex;
}

.astra-freeshipping__message {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #050e24;
  text-align: center;
  margin: 0;
  width: 100%;
}

.astra-freeshipping__lead {
  font-weight: 500;
}

.astra-freeshipping__track {
  position: relative;
  width: 100%;
  height: 5px;
  background: #ededed;
  border-radius: 100px;
  overflow: hidden;
}

.astra-freeshipping__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #52a6dc;
  border-radius: 100px;
  transition: width 300ms ease-out;
}

.cart-items tbody tr.item-attachments-head {
  display: none;
}

.cart-items tbody tr.item-attachments-content {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.astra-attachment-alert {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #b70e0c;
  text-align: left;
  margin: 0;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(228, 39, 49, 0.08);
  border-left: 2px solid #e42731;
  border-radius: 0 4px 4px 0;
}

.cart-items tbody tr.item-attachments-content.astra-attachments-visible {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  border-top: 0;
}
.cart-items tbody tr.item-attachments-content.astra-attachments-visible > td {
  padding: 0 0 24px;
  vertical-align: top;
}
.cart-items tbody tr.item-attachments-content.astra-attachments-visible > td.item-attachments-item-image,
.cart-items tbody tr.item-attachments-content.astra-attachments-visible > td.item-attachments-remove {
  display: none;
}
.cart-items tbody tr.item-attachments-content.astra-attachments-visible > td.item-attachments-item-fields {
  box-sizing: border-box;
  padding: 16px;
  background: #f1f8fc;
  border-left: 2px solid #52a6dc;
  border-radius: 0 4px 4px 0;
}

.cart-items .astra-attachments-visible .item-attachments-item-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cart-items .astra-attachments-visible .item-attachments-item-fields .item-attachment {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 200px;
  min-width: 0;
  max-width: 240px;
}

.cart-items .astra-attachments-visible .item-attachment-name-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 120%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  letter-spacing: 0.05em;
  display: block;
  margin: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-items .astra-attachments-visible .item-attachment-value {
  box-sizing: border-box;
  width: 100%;
  height: 32px;
  margin: 0;
  padding: 0 28px 0 12px;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5' viewBox='0 0 10 5' fill='none'%3E%3Cpath d='M9.90621 0.549313L5.24694 4.90447C5.18142 4.96564 5.0926 5 5 5C4.9074 5 4.81858 4.96564 4.75306 4.90447L0.0937872 0.549313C0.0320612 0.487393 -0.00154286 0.405496 5.44424e-05 0.320875C0.00165174 0.236254 0.0383257 0.155516 0.10235 0.0956702C0.166375 0.0358246 0.252751 0.00154393 0.343281 5.08883e-05C0.433811 -0.00144215 0.521427 0.029969 0.58767 0.0876661L5 4.21146L9.41233 0.0876661C9.47857 0.029969 9.56619 -0.00144215 9.65672 5.08883e-05C9.74725 0.00154393 9.83363 0.0358246 9.89765 0.0956702C9.96167 0.155516 9.99835 0.236254 9.99995 0.320875C10.0015 0.405496 9.96794 0.487393 9.90621 0.549313Z' fill='%23707176'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 5px;
  border: 1px solid #e8e8ee;
  border-radius: 4px;
  box-shadow: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
  color: #373737;
  text-align: left;
  margin: 0;
  letter-spacing: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.cart-items .astra-attachments-visible .item-attachment-value:focus {
  border-color: #0d4973;
  outline: none;
  box-shadow: 0 0 0 3px rgba(82, 166, 220, 0.24);
}
.cart-items .astra-attachments-visible .item-attachment-value.error, .cart-items .astra-attachments-visible .item-attachment-value:invalid {
  border-color: #e42731;
}

.cart-items td.product-name .clone-item-container,
.cart-items td.product-name .clone-item-sep {
  display: none;
}
.cart-items td.product-name .clone-item {
  font-family: "Outfit", sans-serif;
  font-size: 0.625rem;
  font-weight: 300;
  line-height: 120%;
  color: #373737;
  text-align: left;
  margin: 0;
  letter-spacing: 0;
  display: inline-block;
  width: auto;
  margin-top: 8px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
  text-decoration: underline;
  transition: color 200ms ease-out;
}
.cart-items td.product-name .clone-item:hover, .cart-items td.product-name .clone-item:focus {
  background: none;
  color: #0d4973;
}

@media (max-width: 768px) {
  .full-cart .cart table tbody tr.item-attachments-head {
    display: none;
  }
  .full-cart .cart table tbody tr td.product-name {
    margin-left: 90px;
    border: none;
  }
  .full-cart .cart table tbody tr td.quantity {
    width: 108px;
    padding: 0px;
    margin-left: 0px;
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
  }
  .full-cart .cart table tbody tr td.quantity a, .full-cart .cart table tbody tr td.quantity input {
    flex: 1;
  }
  .full-cart .cart table tbody tr td.product-price {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
  }
  .full-cart .cart table tbody tr td.product-price br {
    display: none;
  }
  .full-cart .cart table tbody tr.product-item.hide {
    display: none;
  }
}
.astra-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}
.astra-loading-overlay[hidden] {
  display: none;
}

.astra-loading-overlay__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.astra-loading-overlay__logo {
  width: 96px;
  height: auto;
}
@keyframes fs-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.astra-loading-overlay__logo {
  animation: fs-float 2.4s ease-in-out infinite;
}

.astra-loading-overlay__text {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}

.pkpmodal-backdrop.vtex-pickup-points-modal-3-x-modalBackdrop {
  background: #061720;
  opacity: 0.75;
}

.pkpmodal {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(145, 147, 167, 0.16);
  overflow: hidden;
}
@keyframes fs-slide-in-bottom {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pkpmodal {
  animation: fs-slide-in-bottom 200ms ease-out;
}
@media (max-width: 768px) {
  .pkpmodal {
    border-radius: 0;
  }
  @keyframes fs-slide-in-edge-bottom {
    from {
      opacity: 0;
      transform: translateY(100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .pkpmodal {
    animation: fs-slide-in-edge-bottom 250ms ease-out;
  }
}

.pkpmodal-full-page,
.vtex-pickup-points-modal-3-x-searchAlone {
  background: #ffffff;
}

.pkpmodal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  color: #373737;
  cursor: pointer;
  transition: color 200ms ease-out;
}
.pkpmodal-close:hover, .pkpmodal-close:focus {
  color: #0d4973;
}
.pkpmodal-close:focus-visible {
  outline: 2px solid #52a6dc;
  outline-offset: 2px;
}

.pkpmodal-search-area {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  background: #ffffff;
  border: 1px solid #e8e8ee;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(145, 147, 167, 0.16);
  text-shadow: none;
  cursor: pointer;
  transition: background-color 200ms ease-out, border-color 200ms ease-out;
}
.pkpmodal-search-area:hover, .pkpmodal-search-area:focus {
  background: #f1f8fc;
  border-color: #52a6dc;
  color: #0d4973;
}
.pkpmodal-search-area:focus-visible {
  outline: 2px solid #52a6dc;
  outline-offset: 2px;
}
.pkpmodal-search-area .vtex-pickup-points-modal-3-x-refreshIcon path {
  fill: currentColor;
}

.vtex-pickup-points-modal-3-x-searchOverlay path {
  fill: rgba(6, 23, 32, 0.35);
}

.vtex-pickup-points-modal-3-x-searchOverlay circle {
  stroke: #cecfd8;
}

.vtex-pickup-points-modal-3-x-searchAlone {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 !important;
  padding: 48px 0 0 !important;
}

.pkpmodal-locating-image-waiting-pin {
  margin-bottom: 24px;
}
.pkpmodal-locating-image-waiting-pin path:first-child {
  fill: #f3f5f7;
}
.pkpmodal-locating-image-waiting-pin path + path {
  fill: #0d4973;
}
.pkpmodal-locating-image-waiting-pin circle {
  fill: #ffffff;
}

.pkpmodal-search-alone-title {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: #031d2f;
  text-align: center;
  margin: 0;
  margin: 0 0 8px;
}

.pkpmodal-search-alone-subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: center;
  margin: 0;
  margin: 0 0 24px;
}

.pkpmodal-postal-code {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  max-width: 360px;
}
.pkpmodal-postal-code .input.ship-postalCode {
  flex: 1 1 100%;
  min-width: 0;
  margin: 0;
}
.pkpmodal-postal-code label {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  display: block;
  margin-bottom: 6px;
}
.pkpmodal-postal-code input[type=text] {
  box-sizing: border-box;
  width: 100%;
  max-width: unset;
  height: 44px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
  box-shadow: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.pkpmodal-postal-code input[type=text]::placeholder {
  color: #a1a1a1;
}
.pkpmodal-postal-code input[type=text]:focus {
  outline: none;
  border-color: #52a6dc;
  box-shadow: none;
}
.pkpmodal-postal-code input[type=text].error {
  border-color: #e42731;
}
.pkpmodal-postal-code small a {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
}
.pkpmodal-postal-code small a:hover, .pkpmodal-postal-code small a:focus {
  color: #086ebb;
}

.pkpmodal-postal-code .pkp-modal-ask-geolocation-btn.postal-code {
  display: none;
}

.__react_component_tooltip.type-dark {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #ffffff;
  text-align: left;
  margin: 0;
  max-width: 240px;
  padding: 8px 12px;
  background: #061720;
  border-radius: 4px;
  opacity: 1;
}
.__react_component_tooltip.type-dark.place-top::after {
  border-top-color: #061720;
}
.__react_component_tooltip.type-dark.place-bottom::after {
  border-bottom-color: #061720;
}

.vtex-pickup-points-modal-3-x-hide {
  display: none;
}

.client-pre-email .link-cart small a {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
}
.client-pre-email .link-cart small a:hover, .client-pre-email .link-cart small a:focus {
  color: #086ebb;
}

.client-pre-email-h label {
  text-align: center;
}

.client-pre-email-h span {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 120%;
  color: #031d2f;
  text-align: left;
  margin: 0;
}

.client-pre-email-h small {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}

input[type=email].astra-checkout-disabled,
#client-pre-email {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
  box-shadow: none;
  transition: border-color 200ms ease-out;
  height: 54px;
}
input[type=email].astra-checkout-disabled::placeholder,
#client-pre-email::placeholder {
  color: #a1a1a1;
}
input[type=email].astra-checkout-disabled:focus,
#client-pre-email:focus {
  outline: none;
  box-shadow: none;
  border-color: #52a6dc;
}
input[type=email].astra-checkout-disabled.error,
#client-pre-email.error {
  border-color: #e42731;
}

#client-pre-email.not-ready {
  color: #a1a1a1;
}

.client-email .loading-inline {
  border: 2px solid #a1a1a1;
  border-top-color: #0d4973;
  border-radius: 50%;
  animation: astra-pre-email-spin 600ms linear infinite;
}
.client-email .loading-inline span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes astra-pre-email-spin {
  to {
    transform: rotate(360deg);
  }
}
#btn-client-pre-email.btn.btn-success {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #ffffff;
  text-align: left;
  margin: 0;
  background: #0d4973;
  background-image: none;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
  cursor: pointer;
  transition: background-color 200ms ease-out;
}
@media (max-width: 768px) {
  #btn-client-pre-email.btn.btn-success {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
#btn-client-pre-email.btn.btn-success:hover, #btn-client-pre-email.btn.btn-success:focus {
  background: #031d2f;
  background-image: none;
  color: #ffffff;
}
#btn-client-pre-email.btn.btn-success:focus-visible {
  outline: 2px solid #52a6dc;
  outline-offset: 2px;
}

.client-email .help.error {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #e42731;
  text-align: left;
  margin: 0;
}

.client-pre-email .emailInfo {
  padding: 10px 15px;
}
.client-pre-email .emailInfo h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 120%;
  color: #0d4973;
  text-align: left;
  margin: 0;
}
.client-pre-email .emailInfo ul {
  color: #181d27;
}
.client-pre-email .emailInfo .icon-ok {
  color: #0d4973;
}
.client-pre-email .emailInfo .icon-lock {
  color: #0d4973;
  opacity: 0.15;
}

.astra-sku-selector {
  width: 109px;
  margin-top: 8px;
}

.astra-sku-selector .astra-combobox__button {
  height: 28px;
  padding: 6px 8px 6px 6px;
  border-radius: 6px;
}

.astra-sku-selector .astra-combobox__label {
  font-family: "Outfit", sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 120%;
  color: #707176;
  text-align: left;
  margin: 0;
  letter-spacing: 0;
}

.astra-sku-edit {
  font-family: "Outfit", sans-serif;
  font-size: 0.625rem;
  font-weight: 300;
  line-height: 120%;
  color: #373737;
  text-align: left;
  margin: 0;
  letter-spacing: 0;
  display: inline-block;
  width: auto;
  margin-top: 8px;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  text-shadow: none;
  text-decoration: underline;
  cursor: pointer;
  transition: color 200ms ease-out;
}
.astra-sku-edit:hover, .astra-sku-edit:focus {
  background: none;
  color: #0d4973;
}
.astra-sku-edit:focus-visible {
  outline: 2px solid #52a6dc;
  outline-offset: 2px;
}

.astra-sku-edit-wrap {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.astra-attachment-warning {
  position: relative;
  display: inline-flex;
  flex: none;
  align-items: center;
  cursor: default;
  margin-top: 8px;
}
.astra-attachment-warning svg {
  display: block;
}
.astra-attachment-warning:focus-visible {
  outline: 2px solid #52a6dc;
  outline-offset: 2px;
  border-radius: 2px;
}

.astra-attachment-warning__popover {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #ffffff;
  text-align: left;
  margin: 0;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  z-index: 9001;
  width: 180px;
  padding: 8px 10px;
  background: #0d4973;
  border: 1px solid #e8e8ee;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(145, 147, 167, 0.16);
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 150ms ease-out, transform 150ms ease-out, visibility 150ms;
  pointer-events: none;
}

.astra-attachment-warning:hover .astra-attachment-warning__popover,
.astra-attachment-warning:focus-visible .astra-attachment-warning__popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.cart-more-options {
  margin: 0 !important;
  max-width: 883px;
}
.cart-more-options #shipping-preview-container {
  max-width: unset;
  margin-top: 1rem;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 4px;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 {
  width: 100%;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-main-title {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: #031d2f;
  text-align: left;
  margin: 0;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-description {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  max-width: unset;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data #shipping-calculate-link {
  background-color: #f3f5f7;
  font-size: 0;
  padding: 10px 16px 10px 20px;
  transition: all 0.25s ease;
  border: none;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data #shipping-calculate-link::after {
  content: "Calcular frete";
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #031d2f;
  text-align: center;
  margin: 0;
  text-transform: none;
  transition: all 0.25s ease;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data #shipping-calculate-link:hover {
  background-color: #0d4973;
  border: none;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data #shipping-calculate-link:hover::after {
  color: #ffffff;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data .srp-toggle__wrapper {
  border-radius: 8px;
  box-shadow: 1px 1px 10px rgba(145, 147, 167, 0.16);
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data .srp-toggle__delivery,
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data .srp-toggle__pickup {
  border-radius: 8px;
  transition: all 0.25s ease;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #0d4973;
  text-align: center;
  margin: 0;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data .srp-toggle__delivery.blue,
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data .srp-toggle__pickup.blue {
  color: #ffffff;
  background: #0d4973;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data .srp-toggle__current {
  border: 1px solid #0d4973;
  border-radius: 8px;
  display: none;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data .srp-postal-code__form {
  width: 100%;
  max-width: unset;
  gap: 12px;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data .srp-postal-code__form .ship-postalCode {
  width: auto;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-right: 12px;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data .srp-postal-code__form .ship-postalCode #ship-postalCode {
  width: 100%;
  height: 40px;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data .srp-postal-code__form .ship-postalCode span.error {
  position: absolute;
  bottom: -16px;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data .srp-postal-code__form #cart-shipping-calculate {
  flex: 0.3;
  height: 40px;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #031d2f;
  text-align: center;
  margin: 0;
  text-transform: none;
  transition: all 0.25s ease;
  background-color: #f3f5f7;
  padding: 10px 16px 10px 20px;
  border: none;
  text-shadow: none;
}
.cart-more-options #shipping-preview-container .srp-content.onda-v1 .srp-data .srp-postal-code__form #cart-shipping-calculate:hover {
  background-color: #0d4973;
  color: #ffffff;
  border: none;
  text-shadow: none;
}
.cart-more-options #shipping-preview-container .srp-result {
  line-height: normal;
}
.cart-more-options #shipping-preview-container .srp-result .srp-delivery-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}
.cart-more-options #shipping-preview-container .srp-result .srp-items {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.cart-more-options #shipping-preview-container .srp-result .srp-items strong {
  font-weight: 500;
  color: #031d2f;
}
.cart-more-options #shipping-preview-container .srp-result #deliver-at-text {
  margin: 0;
}
.cart-more-options #shipping-preview-container .srp-result .srp-address-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
  color: #0084d5;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
  cursor: pointer;
}
.cart-more-options #shipping-preview-container .srp-result .srp-address-title:hover, .cart-more-options #shipping-preview-container .srp-result .srp-address-title:focus {
  color: #086ebb;
}
.cart-more-options #shipping-preview-container .srp-result .srp-delivery-info {
  margin-bottom: 0;
}
.cart-more-options #shipping-preview-container .srp-result .srp-delivery-select-container,
.cart-more-options #shipping-preview-container .srp-result .srp-shipping-current-single {
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
  transition: border-color 200ms ease-out;
}
.cart-more-options #shipping-preview-container .srp-result .srp-delivery-select-container:hover, .cart-more-options #shipping-preview-container .srp-result .srp-delivery-select-container:focus-within,
.cart-more-options #shipping-preview-container .srp-result .srp-shipping-current-single:hover,
.cart-more-options #shipping-preview-container .srp-result .srp-shipping-current-single:focus-within {
  border-color: #52a6dc;
}
.cart-more-options #shipping-preview-container .srp-result .srp-delivery-current-many {
  box-sizing: border-box;
  padding: 12px 16px;
  background: transparent;
  border: 0;
}
.cart-more-options #shipping-preview-container .srp-result .srp-delivery-current-many__description {
  gap: 12px;
}
.cart-more-options #shipping-preview-container .srp-result .srp-delivery-current-many__text {
  border-right: 1px solid #ededed;
  padding-right: 12px;
}
.cart-more-options #shipping-preview-container .srp-result .srp-delivery-current-many__name {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #031d2f;
  text-align: left;
  margin: 0;
}
.cart-more-options #shipping-preview-container .srp-result .srp-delivery-current-many__sla {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #a1a1a1;
  text-align: left;
  margin: 0;
}
.cart-more-options #shipping-preview-container .srp-result .srp-delivery-current-many__price {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #031d2f;
  text-align: right;
  margin: 0;
  padding-left: 0;
}
.cart-more-options #shipping-preview-container .srp-result .srp-icon-arrow-down g {
  fill: #0d4973;
}
.cart-more-options #shipping-preview-container .srp-result .srp-delivery-select {
  font-family: "Outfit", sans-serif;
}
.cart-more-options #shipping-preview-container .srp-result .srp-shipping-current-single {
  display: block;
  margin-top: 0;
  padding: 12px 16px;
}
.cart-more-options #shipping-preview-container .srp-result .srp-shipping-current-single__wrapper {
  margin-top: 0;
  margin-bottom: 0;
}
.cart-more-options #shipping-preview-container .srp-result .srp-shipping-current-single__bullet {
  display: flex;
  align-items: center;
  margin-right: 12px;
}
.cart-more-options #shipping-preview-container .srp-result .srp-icon-radio-selected path {
  fill: #0d4973;
}
.cart-more-options #shipping-preview-container .srp-result .srp-shipping-current-single__description {
  gap: 12px;
}
.cart-more-options #shipping-preview-container .srp-result .srp-shipping-current-single__text {
  border-right: 1px solid #ededed;
  padding-right: 12px;
}
.cart-more-options #shipping-preview-container .srp-result .srp-shipping-current-single__sla {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #031d2f;
  text-align: left;
  margin: 0;
}
.cart-more-options #shipping-preview-container .srp-result .srp-shipping-current-single__price {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #031d2f;
  text-align: right;
  margin: 0;
  padding-left: 0;
}

.available-gift {
  background-color: #ffffff;
  padding: 32px 24px;
}
.available-gift-quantity {
  margin: 0;
}
.available-gift .available-gift-quantity {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: #031d2f;
  text-align: left;
  margin: 0;
  margin-bottom: 12px;
}
.available-gift .available-gift-item:hover .icon-check-empty {
  color: #0d4973;
}
.available-gift .available-gift-item.active {
  background-color: #e9eef5;
  border-color: #52a6dc;
}
.available-gift .available-gift-item.active .checkbox-selector {
  color: #0d4973;
}

.mini-cart .cart-fixed {
  box-sizing: border-box;
  padding: 24px 20px;
  background: #ffffff;
  border-radius: 4px;
  max-width: 100%;
  width: 100%;
  height: fit-content !important;
}
.mini-cart .cart-fixed.affix {
  max-width: clamp(258.1333333333px, 25.2083333333vw, 363px);
}
@media (max-width: 768px) {
  .mini-cart .cart-fixed {
    padding: 16px;
  }
  .mini-cart .cart-fixed.affix {
    max-width: 100%;
  }
}

.mini-cart {
  box-sizing: border-box;
  max-width: 100%;
}

.mini-cart > .cart-fixed > h2 {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: #031d2f;
  text-align: left;
  margin: 0;
  margin: 0 0 16px;
  padding: 0;
  background: none;
  border: 0;
}

.mini-cart .summary-cart-template-holder {
  height: auto !important;
}

.mini-cart .cart-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-cart .cart-items > .item {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: min-content 1fr;
  column-gap: 12px;
  row-gap: 0;
  align-items: start;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid #f3f5f7;
}
.mini-cart .cart-items > .item:first-child {
  padding-top: 0;
  border-top: 0;
}
.mini-cart .cart-items > .item:last-child {
  padding-bottom: 0;
}

.mini-cart .cart-items .item > .url {
  grid-column: 1;
  grid-row: 1/-1;
  display: block;
  width: 45px;
}

.mini-cart .cart-items .item > .product-name,
.mini-cart .cart-items .item > .quantity,
.mini-cart .cart-items .item > .description,
.mini-cart .cart-items .item > .item-subscription {
  grid-column: 2;
  min-width: 0;
}

.mini-cart .cart-items .item .photo {
  display: block;
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 3.3px;
}

.mini-cart .cart-items .item .product-name {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #031d2f;
  text-align: left;
  margin: 0;
  min-width: 0;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  overflow-wrap: anywhere;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-cart .cart-items .item .quantity.badge {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #a1a1a1;
  text-align: left;
  margin: 0;
  position: static;
  display: block;
  width: auto;
  min-width: 0;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
}

.mini-cart .cart-items .item .item-subscription {
  display: none;
}

.mini-cart .cart-items .item .description {
  grid-column: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  margin-bottom: 12px;
}
.mini-cart .cart-items .item .description .price,
.mini-cart .cart-items .item .description .price-subtotal,
.mini-cart .cart-items .item .description .item-price,
.mini-cart .cart-items .item .description .item-price-subtotal {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  flex: none;
  white-space: nowrap;
}
.mini-cart .cart-items .item .description .hide {
  display: none;
}

.mini-cart .cart-items .item .shipping-date {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  min-width: 0;
}

.mini-cart .cart-items .item .item-subscription:empty {
  display: none;
}

.mini-cart #go-to-cart-button {
  display: block;
  margin: 16px 0 0;
  padding-top: 16px;
  float: none;
  text-align: right;
}
.mini-cart #go-to-cart-button a {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
}

.mini-cart .summary-template-holder {
  background: none;
  border-top: 1px solid #eee;
}

.mini-cart .summary-template-holder .summary {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 16px 0 0;
  background: none;
}

.mini-cart .summary-template-holder .summary > * {
  box-sizing: border-box;
  width: auto;
  margin: 0;
  float: none;
  background: none;
}

.mini-cart .cart-more-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  max-width: none;
  background: none;
}

.mini-cart .cart-select-gift-placeholder {
  display: none;
}

.mini-cart #shipping-preview-container:not(.component-loading) > .loading-img {
  display: none;
}

.mini-cart .cart-more-options #shipping-preview-container {
  margin-top: 0;
  padding: 0;
  background: none;
  border-radius: 0;
}

.mini-cart .summary-totalizers .accordion-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.mini-cart .summary-totalizers .accordion-heading {
  border: 0;
}

.mini-cart .summary-totalizers .accordion-heading .accordion-toggle {
  display: none;
}

.mini-cart .summary-totalizers .accordion-body,
.mini-cart .summary-totalizers .accordion-inner {
  padding: 0;
  border: 0;
  background: none;
}

.mini-cart .summary-totalizers .table,
.mini-cart .summary-totalizers .table tr,
.mini-cart .summary-totalizers .table td,
.mini-cart .summary-totalizers .table tbody,
.mini-cart .summary-totalizers .table tfoot {
  background: none;
}

.mini-cart .summary-totalizers .accordion-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-cart .summary-totalizers .table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
}

.mini-cart .summary-totalizers .table td {
  padding: 0;
  border: 0;
  vertical-align: top;
}

.mini-cart .summary-totalizers .table td.space,
.mini-cart .summary-totalizers .table td.empty {
  display: none;
}

.mini-cart .summary-totalizers .table tr {
  border: 0;
  display: flex;
  justify-content: space-between;
}

.mini-cart .summary-totalizers .table td.info,
.mini-cart .summary-totalizers .table td.monetary {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  padding-bottom: 8px;
}

.mini-cart .summary-totalizers .table td.monetary {
  width: fit-content;
  padding-left: 8px;
  color: #0d4973;
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}

.mini-cart .summary-totalizers .table tfoot td {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: #031d2f;
  text-align: left;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid #f3f5f7;
}

.mini-cart .summary-totalizers .table tfoot td.monetary {
  text-align: right;
  white-space: nowrap;
}

.mini-cart .summary-totalizers .table tr.srp-summary-result.astra-shipping-duplicate {
  display: none;
}

.mini-cart .summary-totalizers .table tr.Shipping .shipping-name,
.mini-cart .summary-totalizers .table tr.Shipping .shipping-name-to,
.mini-cart .summary-totalizers .table tr.Shipping .postal-code-value {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}

.mini-cart .summary-totalizers .postal-code-for-sla,
.mini-cart .summary-totalizers .shipping-selected-sla-estimate {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #a1a1a1;
  text-align: left;
  margin: 0;
  display: block;
}

.mini-cart .summary-totalizers .cart-reset-postal-code {
  color: #0084d5;
}

.mini-cart .summary-discount-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mini-cart .discount-descriptions-item {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  color: #a1a1a1;
  text-align: left;
  margin: 0;
  margin-bottom: 4px;
}
.mini-cart .discount-descriptions-item .discount-name {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  display: block;
}

.mini-cart .summary-coupon-wrap {
  text-align: left;
}

.mini-cart .summary-coupon {
  float: none;
  width: auto;
}

.mini-cart .coupon-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.mini-cart .coupon-label label {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  margin: 0 0 8px;
}

.mini-cart .coupon-fields {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.mini-cart .coupon-fields > span {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.mini-cart .coupon-value {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  box-sizing: border-box;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: 44px;
  margin: 0;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
  box-shadow: none;
}
.mini-cart .coupon-value::placeholder {
  color: #a1a1a1;
}
.mini-cart .coupon-value:focus {
  border-color: #52a6dc;
  box-shadow: none;
  outline: none;
}

.mini-cart #cart-coupon-add {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #0084d5;
  text-align: left;
  margin: 0;
  flex: none;
  height: 40px;
  padding: 10px 0;
  background: none;
  border: 0;
  box-shadow: none;
  text-shadow: none;
  text-decoration: underline;
  cursor: pointer;
}
.mini-cart #cart-coupon-add:hover {
  background: none;
  color: #086ebb;
}

.mini-cart .coupon-fields .info {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}
.mini-cart .coupon-fields .info .delete a {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  color: #0084d5;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
}

.mini-cart .coupon-data {
  margin: 0;
}
.mini-cart .coupon-data .link-coupon-add {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
}

.mini-cart .payment-confirmation-wrap {
  margin-top: 16px;
}

.mini-cart .payment-submit-wrap {
  margin: 0;
}

.mini-cart .payment-submit-wrap .btn {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  color: #ffffff;
  text-align: center;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 10px 20px;
  background: #0d4973;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
  transition: background-color 200ms ease-out;
}
.mini-cart .payment-submit-wrap .btn i {
  margin-right: 8px;
}
.mini-cart .payment-submit-wrap .btn:hover:not([disabled]), .mini-cart .payment-submit-wrap .btn:focus:not([disabled]) {
  background: #031d2f;
  color: #ffffff;
}
.mini-cart .payment-submit-wrap .btn[disabled] {
  background: #f3f3f3;
  color: #454545;
}

.mini-cart .payment-submit-wrap #sac-submit {
  background: #f3f5f7;
  color: #031d2f;
}
.mini-cart .payment-submit-wrap #sac-submit:hover:not([disabled]), .mini-cart .payment-submit-wrap #sac-submit:focus:not([disabled]) {
  background: #ededed;
  color: #031d2f;
}

.mini-cart .summary-note {
  margin-bottom: 12px;
}
.mini-cart .summary-note .link-note-add {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  color: #0d4973;
  text-align: left;
  margin: 0;
  text-decoration-line: underline;
}
.mini-cart .summary-note .note-label label {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
}
.mini-cart .summary-note .note-textarea {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #373737;
  text-align: left;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 8px 12px;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
  box-shadow: none;
}
.mini-cart .summary-note .note-textarea:focus {
  border-color: #52a6dc;
  box-shadow: none;
  outline: none;
}

@media (max-width: 768px) {
  .mini-cart {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    float: none;
  }
  .mini-cart .cart-fixed {
    position: static;
    height: auto !important;
  }
}
#orderform-minicart-to-cart {
  position: absolute;
  top: 8px;
  right: 12px;
}

.astra-toast {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 140%;
  color: #ffffff;
  text-align: left;
  margin: 0;
  box-sizing: border-box;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9501;
  max-width: 320px;
  padding: 12px 16px;
  background: #e42731;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(145, 147, 167, 0.16);
  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease-out, transform 200ms ease-out, visibility 200ms;
  pointer-events: none;
}
.astra-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 640px) {
  .astra-toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }
}
