<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cartview-cont {
  display: flex;
  align-items: center;
}

.cartview-progress-container {
  display: flex;
  border-radius: 50%;
  background: #fff;
  align-items: center;
}

.free-delivery-progress {
  position: relative;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: conic-gradient(var(--primary-color) 3.6deg, #ededed 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.free-delivery-progress::before {
  content: "";
  position: absolute;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #fff;
}

.progress-value {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
}

.left-for-free-delivery {
  margin-left: 10px;
}

.form-control {
  height: 100%;
  width: 100%;
  font-size: 14px;
  border: 1px solid #dcdcdc;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-radius: 0.375rem;
  color: #212529;
  background-clip: padding-box;
  background-color: #fff;
  box-sizing: border-box;
}

.voucher-coupon_container {
  display: flex;
  padding: 10px 0;
  flex-direction: column;
  gap: 10px;
}

.voucher-open_coupon_form {
  color: #0000ee;
  user-select: none;
  cursor: pointer;
  margin-left: 5px;
}

.voucher-coupon_form_container {
  gap: 10px;
  align-items: center;
}

.voucher-coupon-code {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}

.voucher-coupon_code_input {
  width: 100%;
}

.voucher-coupon_apply_btn {
  padding: 15px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--secondary-color);
  color: white;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}

.voucher-coupon_remove_btn {
  padding: 15px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--secondary-color);
  color: white;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}

.discount-amount-label {
  color: var(--green-dark);
  font-weight: bold;
  margin-left: 5px;
}

.checkout-payment_options {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-evenly;
}

.checkout-payment_options * {
  width: 20%;
  max-width: 50px;
}

.price-text {
  color: #4b4b4b;
  float: right;
  font-weight: 700;
}

.text-end {
  text-align: right !important;
}

strong {
  font-weight: bolder;
}

.total-text {
  color: #4b4b4b;
  float: right;
  font-weight: 700;
}

.total-amount-main {
  display: flex;
  justify-content: space-between;
}

.total-amount-main p {
  margin: 5px 0;
}

.total-price {
  margin-bottom: 20px;
}

.plus-minus-toggle {
  cursor: pointer;
  height: 15px;
  position: relative;
  width: 15px;
}

.plus-minus-toggle:before,
.plus-minus-toggle:after {
  background: #000;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 10px;
  transition: transform 500ms ease;
}

.plus-minus-toggle:after {
  transform-origin: center;
}

.plus-minus-toggle.collapsed:after {
  transform: rotate(90deg);
}

.plus-minus-toggle.collapsed:before {
  transform: rotate(180deg);
}

.voucher-coupon-code-list-item {
  display: flex;
  align-items: stretch;
  background-color: #f2f2f2;
  border-radius: 12px;
  margin: 12px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: relative;
}

.voucher-coupon-left {
  width: 10px;
  height: auto;
  background-color: #fd5f18;
  border-radius: 6px 0 0 6px;
  margin-right: 12px;
}

.voucher-coupon-code-list-item-text {
  flex: 1;
  padding: 10px 16px;
}

.voucher-value {
  font-weight: 700;
  font-size: 16px;
  color: #000;
  display: block;
  margin-bottom: 5px;
}

.voucher-coupon-code-description {
  font-size: 13px;
  color: #333;
  margin: 0;
}

.voucher-coupon-right {
  display: flex;
  align-items: center;
  padding-right: 5px;
}

.voucher-coupon-list-apply-btn {
  display: flex;
  align-items: center;
  background-color: #000;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  border-bottom: 4px solid #fd5f18;
  transition: all 0.2s ease;
}

.voucher-coupon-apply-btn:hover {
  opacity: 0.9;
}

.voucher-coupon-btn-label {
  margin-left: 6px;
  font-weight: 600;
}</pre></body></html>