@charset "UTF-8";
:root {
  --black: #000;
  --white: #fff;
  --success: #02BC67;
  --success-light: #EEFCF3;
  --danger: #ef4444;
  --danger-light: #fee2e2;
  --warning: #eab308;
  --info: #3b82f6;
  --info-light: #bfdbfe;
  --base-50: #fafafa;
  --base-100: #f5f5f5;
  --base-200: #e5e5e5;
  --base-300: #d4d4d4;
  --base-400: #a3a3a3;
  --base-500: #737373;
  --base-600: #525252;
  --base-700: #404040;
  --base-800: #262626;
  --base-900: #171717;
  --base-950: #0a0a0a;
  --base-default: var(--base-500);
  --size-0: 0rem;
  --size-50: 0.125rem;
  --size-100: 0.25rem;
  --size-150: 0.375rem;
  --size-200: 0.5rem;
  --size-250: 0.625rem;
  --size-300: 0.75rem;
  --size-350: 0.875rem;
  --size-400: 1rem;
  --size-450: 1.125rem;
  --size-500: 1.25rem;
  --size-550: 1.375rem;
  --size-600: 1.5rem;
  --size-650: 1.625rem;
  --size-700: 1.75rem;
  --size-750: 1.875rem;
  --size-800: 2rem;
  --size-850: 2.125rem;
  --size-900: 2.25rem;
  --size-950: 2.375rem;
  --size-1000: 2.5rem;
  --size-1050: 2.625rem;
  --size-1100: 2.75rem;
  --size-1150: 2.875rem;
  --size-1200: 3rem;
  --size-1250: 3.125rem;
  --size-1300: 3.25rem;
  --size-1350: 3.375rem;
  --size-1400: 3.5rem;
  --size-1450: 3.625rem;
  --size-1500: 3.75rem;
  --size-icon-default: 2rem;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1440px;
  /* Space (Espaçamentos) */
  /* Space (0 a 100) */
  --space-0: 0rem;
  --space-50: var(--size-50);
  /* 0.125rem */
  --space-100: var(--size-100);
  /* 0.25rem */
  --space-200: var(--size-150);
  /* 0.375rem */
  --space-300: var(--size-200);
  /* 0.5rem */
  --space-400: var(--size-300);
  /* 0.75rem */
  --space-500: var(--size-400);
  /* 1rem */
  --space-600: var(--size-600);
  /* 1.5rem */
  --space-700: var(--size-800);
  /* 2rem */
  --space-800: var(--size-1000);
  /* 2.5rem */
  --space-900: var(--size-1200);
  /* 3rem */
  --space-default: var(--space-400);
  /* Text (Fontes) */
  --text-2xs: var(--size-200);
  --text-xs: var(--size-300);
  --text-sm: var(--size-350);
  --text-base: var(--size-400);
  --text-lg: var(--size-450);
  --text-xl: var(--size-500);
  --text-2xl: var(--size-550);
  /* Radius (Bordas) */
  --radius-none: var(--size-0);
  --radius-sm: var(--size-300);
  --radius-md: var(--size-400);
  --radius-lg: var(--size-600);
  --radius-full: 9999px;
  --background-base-default: var(--base-500);
  --background-base-hover: var(--base-600);
  --background-base-dark: var(--base-900);
  --background-base-tertiary: var(--base-100);
  --background-base-tertiary-hover: var(--base-200);
  --box-shadow-default: var(--base-200) 0px 2px 1px -1px,
  var(--base-200) 0px 1px 1px 0px,
  var(--base-200) 0px 1px 3px 0px;
  --border-default: 1px solid var(--base-200);
  --text-base-default: var(--base-700);
  --text-base-dark: var(--base-900);
  --text-base-light: var(--base-50);
  --text-base-on-base: var(--text-base-light);
  --gap: var(--space-400);
}

@media screen and (min-width: 1200px) {
  :root {
    --space-default: var(--space-600);
  }
}
.w-full {
  width: 100%;
}

.hidden {
  display: none;
}

.opacity-5 {
  opacity: 0.5;
}

.page-onestepcheckout-checkout .row {
  margin: 0;
  width: 100%;
  gap: var(--space-400);
}

.column {
  display: flex;
  gap: var(--space-400);
  width: 100%;
  flex-direction: column;
}

.mt-2 {
  margin-top: var(--space-200);
}

#cart-section-content > .container {
  width: 100%;
  max-width: 1680px;
}

#cart-section-content .container {
  padding: var(--space-400);
  width: 100%;
  margin: 0 auto;
}

.alert {
  padding: var(--space-200) var(--space-400);
  border-radius: 0.875rem;
  margin: 0;
  margin-bottom: var(--space-400);
}

.page-onestepcheckout-checkout .container {
  padding: var(--space-400);
  margin-top: 0px !important;
}

.btn, .btn-link, .btn-success, .btn-danger {
  width: max-content;
}
.btn:hover, .btn-link:hover, .btn-success:hover, .btn-danger:hover {
  opacity: 0.8;
}
.btn-danger {
  background-color: var(--danger) !important;
  color: var(--white);
}
.btn-danger-light {
  background-color: var(--danger-light) !important;
  color: var(--text-default);
}
.btn-success {
  background-color: var(--success) !important;
  color: var(--white);
}
.btn-success-light {
  background-color: var(--success-light) !important;
  color: var(--text-default);
}
.btn-link {
  border: none;
  color: var(--text-default);
  cursor: pointer;
}
.btn-link:hover, .btn-link:active, .btn-link:focus {
  color: var(--text-default);
  border: none !important;
}

.justify-content-end {
  justify-content: flex-end;
}

@media only screen and (min-width: 1200px) {
  #cart-section-content .container,
  .page-onestepcheckout-checkout .container {
    max-width: 1440px !important;
    padding: var(--gap);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 1040px) {
  .page-onestepcheckout-checkout .row {
    gap: var(--gap);
  }
  .column {
    gap: var(--gap);
  }
}
:root {
  font-size: 16px;
  color: var(--base-900);
}

select.form-control {
  width: max-content;
  width: 100%;
  border-radius: 0.75rem !important;
  height: 3rem !important;
}

#load-page {
  background-color: rgba(var(--base-950), 0.6);
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  height: 0;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  z-index: 99999;
}
#load-page svg {
  animation: spin 1s linear infinite;
}

.checkbox-group {
  display: flex;
  align-items: center;
}
.checkbox-group label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.card:hover {
  box-shadow: none;
}

.badge {
  background-color: var(--base-200);
  padding: 0 0.5rem;
  border-radius: 9999px;
}
.badge.success {
  background-color: var(--success-light);
  color: var(--success);
  border: thin solid var(--success);
  font-size: 1rem;
  line-height: 1.5;
}

.alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  padding: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0px;
  position: relative;
  color: var(--base-700);
  width: 100%;
}
.alert.alert-warning {
  color: var(--base-700);
}
.alert.alert-dismissible {
  background: var(--base-100);
  border: 1px solid var(--base-200);
}
.alert#recovered {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.alert#recovered .btn-toolbar {
  width: max-content;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  .alert#recovered .btn-toolbar {
    gap: 0.4rem;
  }
}
.alert#recovered .btn-toolbar > .btn {
  border-radius: 0.75rem;
  color: unset;
  border: unset;
}
.alert#recovered .btn-toolbar > .btn-danger {
  color: var(--base-100);
  background-color: var(--danger);
}
.alert#recovered .btn-toolbar > .btn-info {
  background-color: var(--base-700);
  color: var(--base-100);
  text-shadow: none;
}
.alert#recovered .btn-toolbar > .btn-success {
  background-color: var(--success);
  color: var(--base-100);
}
@media (max-width: 650px) {
  .alert.alert-danger {
    padding: 0.5rem 2rem 0.5rem 1rem;
  }
}
.alert .close {
  top: 0.5rem;
}
@media (max-width: 390px) {
  .alert .close {
    top: 1rem;
  }
}

.section-content > .container {
  width: 100%;
  max-width: 1680px;
  padding: 1rem;
}

.progress-alert-content {
  width: 100%;
}

.shipping-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.shipping-results hr {
  width: 100%;
}

.delivery_time {
  margin-right: 0.5rem;
}

.progress-alert {
  width: 100%;
  margin-top: 1.5rem;
}
.progress-alert .progress-bar,
.progress-alert .progress {
  border-radius: 9999px;
  height: 0.5rem;
}

.progress-info {
  font-size: 0.8rem;
  line-height: 1.5rem;
  margin-top: 1rem;
}

.main-information {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1.5rem;
}

#cart-products {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  padding-left: 0;
}
#cart-products .product-resume {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  width: 100%;
  padding: 0 0.5rem;
  margin-bottom: 1rem;
}
#cart-products .product-resume.outfit {
  max-width: 100%;
  border: thin solid var(--base-200);
  border-radius: 1rem;
  flex-wrap: wrap;
  padding: 0;
  gap: 0;
  height: max-content;
}
#cart-products .product-resume.gift-content {
  padding: 0.5rem;
}
#cart-products .product-resume > div,
#cart-products .product-resume .outfit-info > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 20%;
}
#cart-products .product-resume > div .no-image-thumb,
#cart-products .product-resume .outfit-info > div .no-image-thumb {
  max-height: 5.875rem;
  max-width: 5.875rem;
}
#cart-products .product-resume > div:first-child:not(.outfit-info),
#cart-products .product-resume .outfit-info > div:first-child:not(.outfit-info) {
  width: max-content;
  max-width: 10%;
}
#cart-products .product-resume > div.outfit-info,
#cart-products .product-resume .outfit-info > div.outfit-info {
  max-width: 100%;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.5rem;
}
#cart-products .product-resume > div.outfit-info .outfit-cart-price-info,
#cart-products .product-resume .outfit-info > div.outfit-info .outfit-cart-price-info {
  align-items: center;
}
#cart-products .product-resume > div.outfit-info .outfit-remove-column,
#cart-products .product-resume .outfit-info > div.outfit-info .outfit-remove-column {
  margin-top: 0.5rem;
}
#cart-products .product-resume > div.outfit-info .outfit-remove-column span,
#cart-products .product-resume .outfit-info > div.outfit-info .outfit-remove-column span {
  transition: 0.2s;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 8px;
}
#cart-products .product-resume > div.outfit-info .outfit-remove-column span:hover,
#cart-products .product-resume .outfit-info > div.outfit-info .outfit-remove-column span:hover {
  color: var(--danger);
  text-decoration: none;
  background-color: var(--danger-light);
}
#cart-products .product-resume > div.outfit-items-list,
#cart-products .product-resume .outfit-info > div.outfit-items-list {
  max-width: 100%;
  padding: 0.5rem;
}
#cart-products .product-resume > div.product-resume-unit-price,
#cart-products .product-resume .outfit-info > div.product-resume-unit-price {
  align-items: center;
}
#cart-products .product-resume > div.cart-outfit-image,
#cart-products .product-resume .outfit-info > div.cart-outfit-image {
  display: flex;
  width: 100%;
  align-items: center;
}
#cart-products .product-resume > div.cart-outfit-image img,
#cart-products .product-resume .outfit-info > div.cart-outfit-image img {
  border-radius: 1rem;
  border: thin solid #a3a3a3;
  max-width: 100%;
  height: auto;
}
#cart-products .product-resume > div .attacked-unit-price__text-price,
#cart-products .product-resume .outfit-info > div .attacked-unit-price__text-price {
  font-weight: bold;
}
#cart-products .product-resume > div .total-attacked-price-cart,
#cart-products .product-resume .outfit-info > div .total-attacked-price-cart {
  color: var(--success) !important;
}
#cart-products .product-resume-image {
  overflow: hidden;
  height: max-content;
  width: max-content;
  align-items: center;
}
#cart-products .product-resume-image img {
  max-width: 100%;
  height: auto;
  border: thin solid var(--base-400);
  border-radius: 1rem;
}
#cart-products .product-resume-title {
  width: 20%;
  max-width: 100%;
  font-weight: 400;
  margin: 0;
  font-size: 1rem;
  align-items: start;
}
#cart-products .product-resume-title a {
  display: block;
  text-align: left;
}
#cart-products .product-resume-title .cart-options-list {
  align-self: flex-start;
}
#cart-products .product-resume-title .cart-options-list ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}
#cart-products .product-resume .product-resume-gift-wrapping {
  padding-top: 0.75rem;
}
#cart-products .product-resume-gift-wrapping {
  max-width: 100% !important;
}
#cart-products .product-resume-gift-wrapping .checkbox-group {
  width: 100%;
  display: flex;
}
#cart-products .product-resume-total-price {
  align-items: center;
}
#cart-products .product-resume-total-price .total-attacked-price-cart {
  color: var(--success) !important;
}
#cart-products .outfit-info {
  width: 100%;
}
#cart-products .outfit-info .no-image-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background-color: var(--base-200);
}
#cart-products .outfit-items-list {
  overflow: hidden;
  height: max-content;
  text-align: right;
  border-top: thin solid var(--base-200);
}
#cart-products .outfit-items-list .cart-outfit-collapse-btn {
  border: none;
  display: flex;
  align-items: center;
  margin-left: auto;
}
#cart-products .outfit-items-list .cart-outfit-collapse-btn:hover, #cart-products .outfit-items-list .cart-outfit-collapse-btn:focus {
  outline: none;
  color: unset;
}
#cart-products .outfit-items-list ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#cart-products .gift-content {
  border-radius: 1rem;
  align-items: center;
  align-self: flex-end;
  border: 1px solid var(--base-200);
  background-color: var(--base-100);
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
#cart-products .gift-content .gift-icon {
  align-items: center;
  flex-direction: row;
  width: 100%;
  padding: 0 1rem;
  border-radius: 1rem;
  max-width: 350px;
  justify-content: space-between;
  background-color: var(--success-light);
  height: 100%;
}
#cart-products .gift-content .gift-title {
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}
#cart-products .gift-content .gift-badge {
  align-items: center;
}
#cart-products .gift-content .gift-badge .badge {
  max-width: max-content;
}

.gift_buttons {
  flex-direction: row !important;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.gift_buttons button {
  width: max-content;
  height: 2rem;
  border-radius: 9999px;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid var(--base-500);
  color: var(--base-500);
  padding: 0 1rem;
  font-weight: 700;
}
.gift_buttons button.btn-success {
  background-color: var(--success);
  border-color: var(--success);
  color: var(--white);
}

.btn-remove-coupon {
  color: var(--danger);
  border: 1px solid var(--danger);
  background-color: var(--danger-light) !important;
  padding: 0.125rem;
  border-radius: 0.5rem;
}
.btn-remove-coupon:hover, .btn-remove-coupon:focus {
  color: var(--danger);
  outline: none;
  outline-offset: none;
}

.product-resume-unit-price {
  font-size: 1rem;
}

.cart-quantity .stepper,
.cart-quantity .stepper-type-2 .stepper {
  max-width: 100%;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-quantity .stepper {
  margin: 0 auto;
  border: thin solid var(--base-200);
  border-radius: 9999px;
  padding: 0.5rem;
}
.cart-quantity .form-group {
  margin-bottom: 0;
}
.cart-quantity .form-control.stepper-input,
.cart-quantity .form-control,
.cart-quantity .stepper-type-2 .form-control.stepper-input,
.cart-quantity .stepper-type-2 .form-control {
  padding: 0.5rem;
  background: transparent;
  border-radius: 1rem !important;
  border: none;
  box-shadow: none;
  height: 2rem;
  width: 4rem;
  margin: 0 auto;
  text-align: center;
}
.cart-quantity .form-control.stepper-input::-webkit-inner-spin-button,
.cart-quantity .form-control::-webkit-inner-spin-button,
.cart-quantity .stepper-type-2 .form-control.stepper-input::-webkit-inner-spin-button,
.cart-quantity .stepper-type-2 .form-control::-webkit-inner-spin-button {
  display: none;
}
.cart-quantity .stepper-type-2 .stepper-arrow,
.cart-quantity .stepper-arrow {
  display: inline-block;
  width: 32px;
  height: 32px;
  font-size: 0;
  position: unset;
  transform: none;
  margin-top: 0;
  border: thin solid var(--base-200);
  border-radius: 9999px;
}
.cart-quantity .stepper-type-2 .stepper-arrow.down,
.cart-quantity .stepper-arrow.down {
  order: -1;
  margin-top: 0;
}
.cart-quantity .stepper-type-2 .stepper-arrow.up:before,
.cart-quantity .stepper-type-2 .stepper-arrow.down:before,
.cart-quantity .stepper-arrow.up:before,
.cart-quantity .stepper-arrow.down:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="16px" viewBox="0 -960 960 960" width="16px" fill="%23000"><path d="M440-440H200v-80h240v-240h80v240h240v80H520v240h-80v-240Z"/></svg>');
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
}
.cart-quantity .stepper-arrow.down:before,
.cart-quantity .stepper-type-2 .stepper-arrow.down:before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="16px" viewBox="0 -960 960 960" width="16px" fill="%23000"><path d="M200-440v-80h560v80H200Z"/></svg>');
}
.cart-quantity .remove-column {
  margin-top: 0.5rem;
}
.cart-quantity .remove-column a {
  transition: 0.2s;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 8px;
}
.cart-quantity .remove-column a:hover {
  color: var(--danger);
  text-decoration: none;
  background-color: var(--danger-light);
}

#cart-actions {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  gap: 1rem;
}

.cart-actions-btn {
  width: max-content;
  height: 48px;
  padding: 0 1.5rem;
  border-radius: 9999px;
  background-color: #EAEAEA;
  border: 2px solid #EAEAEA;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-actions-btn.clear {
  background-color: transparent;
}

.order-resume {
  width: 100%;
  background-color: #f4f4f4;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  min-height: 600px;
  height: max-content;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 2rem;
}
.order-resume.hide-price {
  min-height: unset;
  height: max-content;
}
.order-resume .cart_total_parcel_simulator,
.order-resume .cart-price-simulate b {
  font-weight: bold;
  color: #1A1A1A;
}

.text-free-shipping {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}

.cart-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin: 1rem 0 3rem 0 !important;
}

.cart-actions-content {
  margin-top: auto;
  position: relative;
  padding-top: 2rem;
  width: 100%;
}

.cart-actions-content:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #A3A3A3;
  position: absolute;
  top: 0;
  left: 0;
}

.order-resume-title {
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid #A3A3A3;
  width: 100%;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.progress-bar-success {
  background-color: var(--success);
}

.js-shippingFreeModal {
  color: #0BA9E4;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
}

.campaign-discount {
  color: var(--success);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.campaign-discount > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.campaign-discount > div span:first-child {
  max-width: 15ch;
  overflow-wrap: break-word;
  margin-right: 0.25rem;
}
@media (min-width: 1012px) and (max-width: 1400px) {
  .campaign-discount > div span:first-child {
    max-width: 10ch;
  }
}
.campaign-discount > div span:last-child {
  text-align: right;
  white-space: nowrap;
}

.cart-price-main {
  font-size: 1.25rem;
}

.cart-price-simulate {
  font-size: 1rem;
  display: block;
}

.btn-finaly-cart a {
  font-size: 1.25rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background-color: var(--success);
  border: none;
  width: 100%;
  color: #fff;
  text-decoration: none;
}

.cart-finaly-content {
  margin-top: auto;
}

.coupon-cart-information .input-group {
  display: flex;
}

#shipping_default .shipping-input-content {
  margin: 0;
}

#shipping_default.card,
.card.shipping_calc_content {
  background-color: transparent !important;
  border: none !important;
}

.modal-content {
  border-radius: 1rem;
  border: unset;
  box-shadow: 0px 0px 0px 2px #e6e6e6;
}
.modal-content .modal-header {
  margin-bottom: 1rem;
}
.modal-content .modal-footer {
  justify-content: center;
}

.product-resume-gift-wrapping {
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  margin-right: auto;
}
@media (max-width: 767px) {
  .product-resume-gift-wrapping {
    margin: auto;
  }
}

.shipping-input-content,
.shipping-input-content .form-group {
  width: 100%;
  position: relative;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .shipping_calc_content .card-body {
    display: block !important;
  }
}

#shipping_default .alert {
  width: 100%;
  max-width: max-content;
}

#shipping_default,
.coupon-cart-information {
  text-align: left !important;
}

#shipping_default .shipping-search-cep {
  font-size: 0.875rem;
  margin-left: 0;
}

#input-postcode,
#input-coupon {
  height: 3rem;
  border: 1px solid #d1d1d1;
  background-color: #fff;
  border-radius: 1rem !important;
  font-size: 1rem;
  color: #424242;
  font-weight: 300;
  padding-right: 86px;
}

#input-postcode::placeholder,
#input-coupon::placeholder {
  font-size: 1rem;
  color: #d1d1d1;
  font-weight: 300;
}

#button-quote_cart,
#button-quote_cart:focus,
#button-quote_cart:hover,
#button-quote_cart:active {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  background-color: transparent;
  background-image: none;
  border: none;
  color: #424242;
  font-size: 1rem !important;
  z-index: 10;
  text-shadow: none;
}

#osc-coupon-btn-cart,
#osc-coupon-btn-cart:focus,
#osc-coupon-btn-cart:hover,
#osc-coupon-btn-cart:active {
  outline: none;
  position: absolute;
  top: 50%;
  right: 0.25rem;
  font-weight: bold;
  background: var(--success);
  color: var(--white);
  border-radius: 0.75rem;
  border: none;
  transform: translateY(-50%);
  background-image: none;
  font-size: 1rem !important;
  z-index: 10;
  height: 2.5rem;
}

.avista_discount,
.total_discount {
  color: var(--success);
}

#osc-coupon-alert {
  margin-top: 1rem;
}

#closeReminderCart:hover {
  background: var(--base-500);
}

.gift_icon_close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.card_avista_price {
  font-size: 14px;
  color: #999;
}
.card_avista_price strong {
  color: #1A1A1A;
}

@media (min-width: 1012px) {
  .main-information {
    max-width: 66.6666%;
  }
  .order-resume {
    max-width: calc(33.3333% - 48px);
  }
}
@media (max-width: 1011px) {
  .cart-container {
    margin: 0 !important;
    margin-bottom: 3rem !important;
    gap: 1rem;
  }
  .product-resume {
    flex-wrap: wrap;
  }
  #cart-products {
    gap: 1rem;
    position: sticky;
  }
  .product-resume + .product-resume {
    border-top: thin solid var(--base-300);
    padding-top: 1rem;
  }
  .product-resume > .product-resume-title {
    max-width: 50%;
  }
  .cart-actions-content {
    padding-top: 1rem;
  }
  #cart-actions {
    flex-wrap: wrap;
  }
  #cart-actions .product-resume-gift-wrapping {
    order: -1;
  }
  .cart-actions-btn {
    width: 100%;
  }
  .cart-actions-btn.clear {
    order: 2;
  }
  .order-resume {
    min-height: unset;
    height: max-content;
    padding: 1.5rem 1rem;
    position: unset;
  }
  .order-resume-title {
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 1px solid #A3A3A3;
    width: 100%;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  .cart-price-main {
    display: flex;
    text-align: left;
  }
  .cart-price-simulate {
    text-align: left;
  }
  .page-title {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 700;
  }
  #cart-products .product-resume {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    padding: 0;
    column-gap: 1rem;
    row-gap: 0.5rem;
    padding: 1rem;
  }
  #cart-products .product-resume.outfit {
    display: flex;
  }
  #cart-products .product-resume.gift-content {
    margin-bottom: 1rem;
  }
  #cart-products .product-resume.gift-content .badge {
    font-size: 0.75rem;
    text-align: center;
    grid-column: 4/4;
    max-width: max-content;
  }
  #cart-products .product-resume.gift-content .gift-icon {
    max-width: 100%;
    grid-row: 2;
    grid-column: 2/4;
    justify-content: center;
    gap: 0.625rem;
  }
  #cart-products .product-resume > div,
  #cart-products .product-resume .outfit-info > div {
    max-width: 100%;
    width: 100%;
    grid-column: span 4;
  }
  #cart-products .product-resume > div:first-child:not(.outfit-info),
  #cart-products .product-resume .outfit-info > div:first-child:not(.outfit-info) {
    grid-column: span 1/span 1;
    max-width: 100%;
    align-self: start;
  }
  #cart-products .product-resume > div:first-child:not(.outfit-info) + div,
  #cart-products .product-resume .outfit-info > div:first-child:not(.outfit-info) + div {
    grid-column: span 3;
  }
  #cart-products .product-resume > div.cart-quantity,
  #cart-products .product-resume .outfit-info > div.cart-quantity {
    grid-column: 1/-1;
    align-items: center;
  }
  #cart-products .product-resume > div:last-child,
  #cart-products .product-resume .outfit-info > div:last-child {
    grid-column: 1/-1;
  }
  #cart-products .product-resume > div.outfit-info,
  #cart-products .product-resume .outfit-info > div.outfit-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: 100%;
  }
  #cart-products .product-resume > div.outfit-items-list,
  #cart-products .product-resume .outfit-info > div.outfit-items-list {
    max-width: 100%;
    padding: 1rem;
  }
  #cart-products .product-resume .product-resume-image {
    width: 100% !important;
    max-width: calc(50% - 1rem);
  }
  #cart-products .outfit-info .product-resume {
    padding: 0;
    padding-top: 1rem;
  }
  .price-box {
    order: 3;
  }
  .cart-quantity {
    order: 4;
    grid-column: 1/-1;
    align-items: center;
  }
  .product-resume-gift-wrapping {
    order: 5;
    align-items: center;
  }
  .outfit-remove-column {
    order: 6;
  }
  #cart-products .product-resume-gift-wrapping .checkbox-group {
    justify-content: center;
  }
}
@media (max-width: 1011px) {
  #cart-products .product-resume-unit-price {
    grid-column: 1/3 !important;
    margin: 1rem;
  }
  #cart-products .product-resume-total-price {
    grid-column: 3/-1 !important;
    margin: 1rem;
  }
}

/*# sourceMappingURL=cart.css.map */
