/*
    --primary_bg: #314e92;
    --theme-dark: #2f3261;
*/

.checkout-page {
  /* padding-top: 20px;
  padding-bottom: 20px; */
  background-color: #f7f7f7;
}

.checkout-container {
  display: flex;
  background-color: #f7f7f7;
  /*#fff;*/
  /* padding: 20px; */
  border-radius: 4px;
  /* max-width: 1100px; */
  margin-inline: auto;
}

.checkout-address-section {
  width: 53%;
}

.checkout-billing-section {
  width: 47%;
}

.checkout-section-border {
  border: 0;
  /*1px solid #e1e1e1; */
  border-radius: 4px;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0px 1px 6px #e1e1e1;
}

.proceed-to-pay {
  padding: 0 2rem 2rem;
}

.checkout-section-border1 {
  background-color: #f6f6f6;
  box-shadow: none;
  position: sticky;
  right: auto;
  left: auto;
  top: 0;
  bottom: 0;
  padding: 2rem;
  max-width: 30rem;
  width: 100%;
}

.checkout-section-border:last-child {
  margin-bottom: 0;
}

.checkout-page .section-title {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0.875rem;
  color: #02060c;
}

.checkout-page .section-sub-title {
  font-size: 16px;
  text-align: center;
  color: #000;
}

.checkout-delivery-details .address_section .section-title {
  margin-bottom: 1.4rem;
}

.checkout-page .section-text {
  font-weight: 300;
  font-size: 15px;
  margin-bottom: 0;
}

.checkout-page .section-text:last-child {
  margin-bottom: 0;
}

.loggedin-accord {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.875rem;
  margin-bottom: 0.875rem;
}

.loggedin-accord .header {
  cursor: pointer;
  position: relative;
}

.loggedin-accord .content.show.address-content {
  margin-top: 1rem;
  max-height: 250px;
  overflow: auto;
}

.loggedin-accord .header::after {
  content: '\f107';
  font: 900 1rem 'Font Awesome 6 Free';
  position: absolute;
  background-color: rgba(23, 115, 176, 0.05);
  right: 0;
  top: 0;
  padding: 0.44rem;
  border-radius: 0.5rem;
  width: auto;
  height: auto;
  font-size: 0.875rem;
  color: var(--new-btn-bg);;
  transition: 0.3s ease-in-out;
}


.loggedin-accord .header.active::after {
  transform: rotateZ(-180deg);
}

.loggedin-accord .header .active-address {
  transition: 0.3s ease-in-out;
  opacity: 1;
  display: block;
  transition: display 0.5s ease-out, opacity 0.3s ease-in-out;
}

.loggedin-accord .header.active .active-address {
  max-height: 0;
  opacity: 0;
  display: none;
}

.loggedin-accord .header .logged-in-title {
  font-size: 0.875rem;
  line-height: 1.175rem;
  font-weight: 400;
  color: hsl(0, 0%, 44%);
  margin-bottom: 0.5rem;
  max-width: calc(100% - 2rem);
}

.loggedin-accord .header .logged-in-text {
  font-size: 0.8rem;
  line-height: 1.1rem;
  max-width: calc(100% - 2rem);
}

.loggedin-accord .content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}

.address-option:has(input[type="radio"]:checked) {
  background-color: #eef3ff;
  border-color: #3578e5;
}

.loggedin-accord .content.show {
  max-height: 500px;
  opacity: 1;
  margin-top: 0.5rem;
}

.account-options {
  display: flex;
  padding: 0 30px;
}

.checkout-account-btn {
  padding: 7px 25px;
  display: block;
  border: 2px solid #dadada;
  border-radius: 4px;
  margin-right: 20px;
  text-align: center;
  cursor: pointer;
  transition: ease 0.25s;
  transition-property: background-color, color;
}

.checkout-account-btn.btn-fill {
  background-color: var(--primary_bg);
  color: #000;
}

.checkout-account-btn.btn-fill:hover {
  background-color: var(--primary_bg);
  color: var(--new-btn-bg);
}

.checkout-account-btn.btn-fill:hover span {
  font-weight: 400;
}

.checkout-account-btn.btn-outline {
  background-color: var(--new-btn-bg);
  color: var(--primary_bg);
}

.checkout-account-btn.btn-outline:hover {
  background-color: var(--primary_bg);
  color: var(--new-btn-bg);
}

.checkout-account-btn span {
  display: block;
}

.checkout-account-btn .btn-text {
  font-weight: 400;
  font-size: 16px;
}

.checkout-account-btn .btn-bold {
  font-weight: 600;
  font-size: 14px;
}

.checkout-account-btn.btn-fill span {
  font-weight: 300 !important;
}

.delivery-address-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 0;
  /* align-items: flex-start; */
}

.delivery-address-item {
  padding: 0;
  margin-bottom: 0;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}

.delivery-address-content {
  padding: 10px;
}

.address-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 1em;
}

.address-text {
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 10px;
  max-height: 100px;
  height: 100px;
  color: #8c8787;
}

.delivery-selection-options {
  border-top: inherit;
  padding: 10px;
  font-size: 12px;
  background-color: #ffffde;
  text-align: center;
  overflow: hidden;
}

.delivery-selection-options .delivery-option-check,
.delivery-selection-options .delivery-option-label {
  display: inline-block;
  vertical-align: middle;
  accent-color: var(--primary_fg);
  width: auto;
}

.delivery-selection-options .delivery-option-label {
  margin-right: 10px;
  font-size: 16px;
  font-weight: 600;
}

.add-address-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  min-height: 230px;
  padding: 30px;
}

.new-address-btn {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 15px auto;
  min-height: 30px;
  cursor: pointer;
}

.new-address-icon {
  width: 50px;
  height: 50px;
  background-image: url(../images/icons/location.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.new-address-btn:hover .new-address-icon {
  animation: flip 0.5s ease-in-out 0s 1;
}

@keyframes flip {

  0%,
  32%,
  64%,
  100% {
    transform: translate(-50%, -50%) rotate(0);
  }

  16%,
  48%,
  80% {
    transform: translate(-50%, -50%) rotateY(-90deg);
  }
}

.checkout-cart-items {
  margin-bottom: 1rem;
}

.checkout-cart-product {
  display: flex;
  padding: 10px 0;
}

.checkout-cart-product:first-child {
  padding-top: 0;
}

.checkout-cart-product+.checkout-cart-product {
  border-top: 1px solid #ddd;
}

.cart-item-image {
  width: 80px;
  text-align: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
  position: relative;
  height: 100%;
}

.cart-item-image .cart-item-qty-count {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(25%, -25%);
  width: 100%;
  max-width: 22px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(102, 102, 102);
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-weight: 500;
  padding: 0.25rem;

}

.cart-item-image::before {
  content: "";
  padding-top: 100%;
  display: block;
}

.cart-item-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.cart-item-ship-details {
  width: 100%;
  position: relative;
}

.cart-item-title {
  font-weight: 500;
  padding-right: 6rem;
  font-size: 0.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-title a {
  color: #000000;
  text-decoration: none;
}

.cart-item-title .price {
  position: absolute;
  width: 100%;
  max-width: 6rem;
  right: 0;
  top: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-weight: 400;
}

.cart-variant-option {
  margin-top: 5px;
  font-size: 12px;
}

.product-pricing-group {
  width: 100%;
  height: auto;
  padding: 6.6px 0px;
  display: flex;
  font-size: 14px;
  align-items: center;
  gap: 0.5rem;
}

.product-pricing-group .cart-item-price {
  width: 40%;
  display: none;
}

.product-pricing-group .cart-item-price del {
  font-size: 12px;
}

.product-pricing-group .cart-item-price p {
  color: #000;
  margin-bottom: 0;
}

.product-pricing-group .qty {
  text-align: center;
  width: 30%;
}

.product-pricing-group .cart-qty-change {
  width: 22px;
}

.product-pricing-group .cart-qty-change1 {
  width: 25px;
  aspect-ratio: 1 / 1;
}

.product-pricing-group .product-details-group {
  margin-top: 0;
}

.product-pricing-group .qty select {
  padding: 5px 10px;
  border: 1px solid #666;
  border-radius: 2px;
}

.product-pricing-group .sub_total {
  font-weight: 500;
  color: #000;
  font-size: 14px;
  width: auto;
  margin-left: auto;
  white-space: nowrap;
  text-align: right;
}

.cart-item-row {
  display: flex;
  position: absolute;
  /* padding: 10px 0 0; */
  bottom: 4.5px;
  right: 0;
}

.cart-item-row .store {
  font-size: 12px;
}

.cart-item-row .cross {
  margin-left: auto;
  font-size: 18px;
  /* cursor: pointer; */
  color: #C22B2B;
}

.cart-item-row .cross i {
  display: block;
}

.add-coupon-group {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.add-coupon-input-group {
  display: flex;
  gap: 0.75rem;
}

.select-coupon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 7px 15px;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid #dadada;
  border-radius: 4px;
  background-color: #fff;
  color: #000;
  transition: ease 0.25s;
  transition-property: background-color, color;
}

.select-coupon-btn:hover {
  background-color: var(--primary_bg);
  color: var(--new-btn-bg);
}

.select-coupon-icon {
  font-size: 20px;
  /* color: var(--primary_bg); */
  margin-right: 5px;
}

.select-coupon-icon i {
  display: block;
}

.select-coupon-text {
  font-weight: 300;
}

html.modal-active {
  overflow: hidden;
}

.coupon-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 10px;
  z-index: 400;
  display: none;
  opacity: 0;
  transition: ease 0.25s opacity;
  overflow: auto;
  overflow-x: hidden;
}

.coupon-modal.active {
  display: grid;
}

.coupon-modal.show {
  opacity: 1;
}

.coupon-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
}

.coupon-modal-content {
  position: relative;
  z-index: 1;
  width: 650px;
  height: auto;
  max-width: 95vw;
  max-height: 100%;
  border-radius: 6px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  transition: ease 0.25s transform;
}

.coupon-modal.show .coupon-modal-content {
  transform: translateY(0);
}

.coupon-modal-header {
  padding: 25px;
}

.coupon-modal-header .add-coupon-input-group {
  max-width: 400px;
  margin-right: auto;
}

.coupon-modal-header-row {
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
}

.coupon-modal-title {
  font-size: 22px;
  font-weight: 500;
}

.coupon-modal-close-btn {
  font-size: 48px;
  font-weight: 300;
  line-height: 0.5;
  position: relative;
  z-index: 30;
}

.coupon-modal-body {
  max-height: calc(100vh - 180px);
  min-height: 250px;
  overflow: auto;
  height: 550px;
  position: relative;
}

.loading .coupon-modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.5;
  z-index: 2;
}

.loading .coupon-modal-content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 4px solid var(--primary_bg);
  border-top-color: transparent;
  animation: load-rotate 1s linear infinite;
  z-index: 3;
}


.address-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 10px;
  z-index: 400;
  display: none;
  opacity: 0;
  transition: ease 0.25s opacity;
  overflow: auto;
  overflow-x: hidden;
}

.address-modal.active {
  display: grid;
}

.address-modal.show {
  opacity: 1;
}

.address-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
}

.address-modal-content {
  position: relative;
  z-index: 1;
  width: 650px;
  height: auto;
  max-width: 95vw;
  max-height: 100%;
  border-radius: 6px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  transition: ease 0.25s transform;
}

.address-modal.show .address-modal-content {
  transform: translateY(0);
}

.address-modal-header {
  padding: 25px;
}

.address-modal-header .add-coupon-input-group {
  max-width: 400px;
  margin-right: auto;
}

.address-modal-header-row {
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
}

.address-modal-title {
  font-size: 22px;
  font-weight: 500;
}

.address-modal-close-btn {
  font-size: 48px;
  font-weight: 300;
  line-height: 0.5;
  position: relative;
  z-index: 30;
}

.address-modal-body {
  max-height: calc(100vh - 180px);
  min-height: 250px;
  overflow: auto;
  height: 550px;
  position: relative;
}

.loading .address-modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.5;
  z-index: 2;
}

.loading .address-modal-content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 4px solid var(--primary_bg);
  border-top-color: transparent;
  animation: load-rotate 1s linear infinite;
  z-index: 3;
}

/* .loading .address-new-modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.5;
  z-index: 2;
}

.loading .address-new-modal-content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 4px solid var(--primary_bg);
  border-top-color: transparent;
  animation: load-rotate 1s linear infinite;
  z-index: 3;
} */

@keyframes load-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.coupons-list-title {
  padding: 10px 25px;
  font-size: 20px;
  background-color: #eaeaea;
  position: sticky;
  top: 0;
  z-index: 5;
}

.coupons-list-content {
  padding: 10px;
  padding-bottom: 0;
  background-color: #f9f9f9;
}

.coupon-item {
  padding: 15px 15px;
  margin-bottom: 10px;
  background-color: #fff;
  box-shadow: 0 1px 5px rgb(0 0 0 / 13%);
  border-radius: 4px;
}

.coupon-item-name {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 5px;
}

.coupon-item-description {
  font-size: 14px;
  margin-bottom: 7px;
}

.coupon-item-info {
  font-weight: 600;
  margin-bottom: 0;
}

.coupon-validity-error {
  margin-top: 1px;
  color: #b2504a;
  font-size: 13px;
  font-weight: 500;
}

.coupon-action-row {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.coupon-item-code {
  width: 150px;
  text-align: center;
  padding: 7px 15px;
  background-color: #eef3ff;
  border: 1px dashed #aaa;
}

.coupon-select-btn {
  margin-left: auto;
  width: 120px;
  border-radius: 4px;
  border: 1px solid var(--accent_bg);
  background-color: var(--accent_bg);
  padding: 6px 10px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: ease-in-out 0.25s;
  transition-property: background-color, color, box-shadow;
}

.coupon-select-btn:not(:disabled):hover {
  background-color: #fff;
  color: var(--accent_bg);
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

.coupon-select-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.coupon-input {
  padding: 8px 10px;
  border-radius: 4px 0 0 4px;
  border: 1px solid #ddd;
  width: 100%;
  font-weight: 500;
}

.coupon-apply-btn {
  padding: 6px 14px;
  border-radius: 0.5rem;
  border: 1px solid var(--new-btn-bg);
  background-color: var(--new-btn-bg);
  color: var(--accent_fg);
  font-weight: 500;
  cursor: pointer;
  transition: ease-in-out 0.25s;
  transition-property: background-color, color, box-shadow;
  font-size: 0.8rem;
}

.coupon-apply-btn:disabled,
.coupon-apply-btn:disabled:hover {
  background-color: transparent;
  color: #999;
  box-shadow: none;
  border-color: rgb(222, 222, 222);
}

.coupon-modal-content .coupon-apply-btn {
  min-width: 100px;
}

.coupon-apply-btn:hover {
  background-color: var(--primary_bg);
  color: var(--new-btn-bg);
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

.coupon-message {
  font-size: 14px;
  font-weight: 500;
  padding: 5px;
}

.remove-coupon-code {
  padding: 5px;
  background-color: transparent;
  color: #b2504a;
  font-weight: 500;
  font-size: 12px;
}

.add-coupon-group .remove-coupon-code {
  display: none;
}

.add-coupon-group.coupon-selected .remove-coupon-code {
  display: inline-block;
}

.add-coupon-group.coupon-selected .add-coupon-input-group {
  display: none;
}

.add-coupon-group.coupon-valid {
  color: #00aa00;
}

.bill-amount-rows {
  font-size: 14px;
  margin-bottom: 10px;
}

.bill-amt-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.bill-amt-row.bill-amt-row-bold,
#cart-amount-summary {
  margin-bottom: 0;
}

.bill-amt-row em {
  color: #666;
}

.bill-amt-row-bold {
  font-weight: 600;
  font-size: 1.2rem;
}

.cart-payment-link {
  display: block;
  width: 100%;
  padding: 7px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--new-btn-bg);;
  color: #fff;
  text-decoration: none;
  border: 3px solid var(--new-btn-bg);;
  transition: ease-in-out 0.25s;
  transition-property: background-color, color, box-shadow;
  cursor: pointer;
  border-radius: 4px;
}

.cart-payment-link:hover {
  background-color: #fff;
  color: var(--new-btn-bg);;
}

.cart-payment-link:disabled {
  background-color: #cacaca;
  color: #000;
  border-color: #aaa;
  cursor: not-allowed;
}

.cart-payment-link1 {
  display: block;
  width: 100%;
  padding: 7px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  background-color: #009acc;
  color: #fff;
  text-decoration: none;
  border: 3px solid #009acc;
  transition: ease-in-out 0.25s;
  transition-property: background-color, color, box-shadow;
  cursor: pointer;
  border-radius: 4px;
}

.cart-payment-link1:hover {
  background-color: #fff;
  color: #009acc;
}

.cart-payment-link1:disabled {
  background-color: #cacaca;
  color: #000;
  border-color: #aaa;
  cursor: not-allowed;
}

.processing {
  position: fixed;
  display: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 300;
}

.checkout-switch {
  margin: 15px 0;
  display: flex;
  justify-content: center;
}

.checkout-switch.single-switch {
  justify-content: center;
}

.checkout-switch-option {
  position: relative;
  width: 49%;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  margin: auto;
}

.checkout-switch-option input {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}

.checkout-option-label {
  width: 100%;
  height: 100%;
  padding: 7px;
  font-size: 14px;
  font-weight: 500;
  display: block;
  transition: ease 0.25s;
  transition-property: color, background-color;
  cursor: pointer;
  text-align: center;
}

.checkout-option-label:hover {
  background-color: #eee;
}

.checkout-switch-option input:checked+.checkout-option-label {
  background-color: var(--primary_bg);
  color: #fff;
}

.processing .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

.section-label input {
  vertical-align: middle;
  margin-top: -2px;
  width: auto;
  display: inline-block;
}

.checkout-user-name {
  color: var(--new-btn-bg);
  font-weight: 500;
}

.empty-cart-img {
  display: block;
  width: 40%;
  margin: auto;
}

.cart-empty-text {
  text-align: center;
  margin-top: 5px;
  color: #666;
  font-weight: 500;
}

.cart-continue-shopping {
  display: block;
  width: 120px;
  text-align: center;
  margin: 10px auto 0;
  background-color: var(--primary_bg);
  color: var(--new-btn-bg);
  border: 2px solid var(--primary_bg);
  font-weight: 500;
  text-decoration: none;
  padding: 6px;
  border-radius: 4px;
  transition: ease 0.25s;
  transition-property: color, background-color, box-shadow;
}

.cart-continue-shopping:hover {
  background-color: var(--new-btn-bg);
  color: var(--primary_bg);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.coupon-apply-code {
  color: var(--accent_bg);
}

.no-delivery-charge-alert {
  color: #00aa00;
  font-weight: 600;
}

.no-delivery-charge-price {
  color: var(--primary_fg);
}

.checkout-wallet-section {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.checkout-wallet-row {
  display: flex;
  justify-content: space-between;
}

.checkout-wallet-info {}

.checkout-wallet-title {
  font-weight: 500;
}

.checkout-wallet-description {}

.wallet-balance-amount {
  color: #000;
  font-weight: 500;
}

.wallet-balance-amount i {
  font-size: 1.3em;
  vertical-align: middle;
  color: #f6b400;
}

.checkout-wallet-action {}

.checkout-wallet-switch {}

.checkout-wallet-switch input[type="checkbox"] {
  display: none;
}

.checkout-wallet-label {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.9em;
  padding: 7px 12px;
  background-color: var(--primary_fg);
  border: 2px solid var(--primary_fg);
  color: var(--primary_bg);
  line-height: 1.3;
  border-radius: 4px;
  cursor: pointer;
  transition: ease 0.25s;
}

.checkout-wallet-switch input[type="checkbox"]:checked+.checkout-wallet-label {
  background-color: var(--primary_bg);
  color: var(--primary_fg);
}

.checkout-wallet-label::before {
  content: "Apply";
  font-weight: 700;
}

.checkout-wallet-switch input[type="checkbox"]:checked+.checkout-wallet-label::before {
  content: "Remove";
  font-weight: 500;
}

.checkout-wallet-message {
  font-size: 1em;
  color: #00aa00;
  font-weight: 600;
  margin-top: 5px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.page-cart-view {
  display: none;
}

.free-product-config {
  margin-bottom: 10px;
}

.free-config-available {
  background-color: #d8efd8;
}

.free-config-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.free-config-product {
  border: 1px solid #eaeaea;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.free-config-product.selected {
  background-color: #baf7ba;
  border-color: #00aa00;
}

.free-product-img {
  margin-bottom: 10px;
  position: relative;
}

.free-product-img::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}

.free-product-img img {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.free-product-details {
  padding: 10px;
  text-align: center;
  margin-top: auto;
}

.free-product-name {
  color: var(--primary_bg);
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 5px;
}

.free-product-size {
  color: #444;
  font-size: 14px;
}

.free-product-pricing {
  font-weight: 500;
}

.select-free-config-btn {
  margin-top: 5px;
  background-color: var(--primary_bg);
  color: #fff;
  border-radius: 4px;
  border: 1px solid var(--primary_bg);
  font-weight: 500;
  padding: 5px 15px;
  cursor: pointer;
}

.buy-label {
  font-weight: 500;
  margin-top: 10px;
  font-size: 15px;
}

.free-config-unavailable {
  background-color: #fbebea;
}

@media (min-width: 769px) {
  .mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  .web {
    display: none;
  }

  .proceed-to-pay {
    background-color: #F6F6F6;
  }

  .checkout-page {
    /* padding: 10px; */
  }

  .checkout-container {
    flex-direction: column-reverse;
    /* padding: 10px; */
  }

  .checkout-address-section,
  .checkout-billing-section {
    width: 100%;
    min-width: auto;
  }

  .checkout-section-border,
  .checkout-section-border1 {
    padding: 1.5rem;
  }

  .cartBoxHeader {
    margin: 0;
    padding: 0;
  }

  .cartBoxHeader .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
  }

  .cartBoxHeader .header .title {
    font-size: 0.875rem;
    line-height: 1.175rem;
    font-weight: 400;
    color: rgb(23, 115, 176);
  }

  .cartBoxHeader .header .price {
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: 500;
  }

  .cartBoxHeader .header::after {
    content: unset;
  }

  .cartBoxHeader .header span {
    display: inline-block;
    max-width: 50%;
  }

  .checkout-address-section {
    padding-right: 0;
    margin-bottom: 10px;
  }

  .account-options {
    padding: 0;
    justify-content: center;
    gap: 0.5rem;
  }

  .checkout-account-btn {
    margin: 0;
    padding: 7px 7px;
    flex: auto;
  }

  .checkout-account-btn .btn-text {
    font-size: 12px;
  }

  .checkout-account-btn .btn-bold {
    font-size: 11px;
  }

  .delivery-address-list {
    display: block;
  }

  .delivery-address-item {
    margin-bottom: 15px;
  }

  .add-address-item {
    height: 130px;
    margin-bottom: 0;
  }

  .checkout-section-border {
    width: 100% !important;
     flex-direction: column;
    gap: 1rem !important;
  }

  .new-address-btn {
    min-height: auto;
  }

  .checkout-page .section-title {
    font-size: 16px;
  }

  .checkout-page .title {
    position: relative;
  }

  .checkout-page .title::after {
    content: '\f107';
    font: 900 0.75rem 'Font Awesome 6 Free';
    position: absolute;
    left: 105%;
    top: 0;
    padding: 0.24rem;
    border-radius: 0.5rem;
    width: auto;
    height: auto;
    color: var(--new-btn-bg);;
    transition: 0.3s ease-in-out;
  }

  .cartBoxHeader .header.active {
    border-bottom: 1px solid #ccc;
  }

  .cartBoxHeader .content.show {
    max-height: 100%;
  }

  .cartBoxHeader .header.active .title::after {
    transform: rotateZ(-180deg);
  }

  .address-title {
    font-size: 14px;
  }

  .address-text {
    font-size: 12px;
  }

  .checkout-page .section-text,
  .cart-item-ship-details,
  .product-pricing-group,
  .product-pricing-group .sub_total {
    font-size: 12px;
  }

  .product-pricing-group {
    flex-wrap: wrap;
    align-items: center;
  }

  .product-pricing-group .product-details-group {
    margin-top: 0;
  }

  .product-pricing-group .cart-item-price {
    width: 100%;
    margin-bottom: 0.6rem;
    /* display: flex; */
    flex-wrap: wrap;
    gap: 0.3rem 0.5rem;
  }

  .product-pricing-group .qty {
    width: 50%;
  }

  .bill-amount-rows {
    font-size: 12px;
    color: #000;
  }

  .checkout-page .section-sub-title,
  .cart-empty-text {
    font-size: 12px;
  }

  .coupon-input::placeholder {
    font-size: 12px;
  }

  .coupon-message {
    font-size: 12px;
  }

  .no-delivery-charge-alert {
    font-size: 12px;
  }

  .checkout-option-label {
    font-size: 12px;
  }

  .cart-payment-link {
    font-size: 12px;
  }

  .coupon-apply-btn {
    font-size: 12px;
  }

  .delivery-selection-options .delivery-option-label {
    font-size: 12px;
  }

  .cart-continue-shopping {
    font-size: 12px;
  }

  .checkout-page .wallet-balance-view {
    margin-bottom: 3px;
  }

  .use-wallet-label {
    font-size: 12px;
  }

  .add-coupon-group {
    text-align: center;
  }

  .select-coupon-btn {
    font-size: 12px;
    width: auto;
    margin-inline: auto;
  }
}

.h4-section-gap {
  margin-bottom: 20px !important;
}

.bill-amt-row p {
  margin-bottom: 0px !important;
}

span.login-span-box {
  float: right;
}

.address_section .address-form-group {
  margin-top: 0;
}

.address-form-group {
  padding: 0;
}

.address_section .address-form-box .address-form-group {
  margin-top: 0.875rem;
}

.address_section .address-form-box .address-form-group:first-child {
  margin-top: 0;
}

.address-form-box {
  overflow: initial;
}

span.phone-error,
span.name-error,
span.email-error,
span.address-error,
span.state-error,
span.city-error,
span.pincode-error,
span.pwd-error,
span.phone-error1 {
  font-size: 12px;
  color: red;
}

span#login_notify {
  color: red;
  font-size: 13px;
  line-height: 38px;
}

/* .ac-input::placeholder {
    color: #ff7272;
} */
#forgot-error {
  font-size: 13px;
  color: red;
}