/* Static Arabic cart page, matched to the Microless Saudi cart layout. */
.cart-body {
  background: #fff;
  color: #333;
}

.cart-body .site-header {
  margin-bottom: 8px;
}

.cart-page {
  min-height: 520px;
  padding: 20px 0 0;
}

.cart-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 21px;
  margin: 0 0 38px;
  padding: 0;
  background: transparent;
  list-style: none;
  font-size: 14px;
}

.cart-breadcrumb a,
.cart-breadcrumb span {
  color: #555;
}

.cart-breadcrumb .fa {
  color: #888;
}

.cart-section {
  margin-bottom: 42px;
}

/* The theme owns this cart layout; do not inherit the legacy two-column
 * WooCommerce table wrapper which reserves a 390px sidebar. */
.cart-section .woocommerce-cart-form {
  float: none;
  width: 100%;
}

.cart-products-list {
  width: 100%;
}

.cart-page-title {
  position: relative;
  margin: 0 0 42px;
  padding-right: 13px;
  color: #333;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

.cart-page-title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: #ffd91c;
}

.cart-empty-state {
  margin: 104px 0 100px;
  padding: 15px;
  border: 1px solid #faebcc;
  border-radius: 4px;
  background: #fcf8e3;
  color: #8a6d3b;
  font-size: 13px;
  line-height: 21px;
}

.cart-empty-actions {
  margin-top: 16px;
}

.cart-empty-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 20px;
  background: #4caf50;
  color: #fff;
  font-weight: 700;
}

.cart-product {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 24%;
  direction: rtl;
  min-height: 297px;
  padding: 10px;
  border: 1px solid #e4e4e4;
  background: #fff;
}

.cart-product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 5px 0 5px 5px;
}

.cart-product__image img {
  display: block;
  width: 100%;
  max-width: 165px;
  height: 150px;
  object-fit: contain;
}

.cart-product__details {
  min-width: 0;
  padding: 0 10px;
}

.cart-product__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 9px;
  padding: 4px 9px;
  border-radius: 2px;
  background: #4b8df8;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.cart-product__title {
  display: block;
  max-width: 720px;
  margin: 6px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}

.cart-product__meta {
  margin: 6px 0;
  color: #777;
  font-size: 12px;
}

.cart-product__delivery strong {
  color: #25a047;
}

.cart-product__gift {
  margin-top: 14px;
  padding: 7px 10px;
  border: 1px solid #e1e1e1;
  border-radius: 2px;
  background: #fff;
  color: #1686bd;
}

.cart-product__gift .fa {
  margin-left: 5px;
}

.cart-product__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 15px;
}

.cart-product__links button,
.cart-product__links a {
  padding: 0;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 12px;
  text-decoration: none;
}

.cart-product__links .fa {
  margin-left: 5px;
}

.cart-product__links button:hover,
.cart-product__links button:focus,
.cart-product__links a:hover,
.cart-product__links a:focus {
  color: #333;
  text-decoration: underline;
}

.cart-product__purchase {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid #eee;
  padding: 20px;
}

.cart-product__mobile-price {
  display: none;
}

.cart-product__price {
  direction: ltr;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.cart-product__price strong {
  font-size: 20px;
  font-weight: 700;
}

.cart-product__quantity {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #777;
  font-size: 12px;
}

.cart-product__quantity select {
  width: 92px;
  height: 39px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.cart-lower {
  position: relative;
  display: grid;
  grid-template-areas:
    "summary empty"
    "checkout actions";
  grid-template-columns: 390px minmax(0, 1fr);
  grid-template-rows: 173px 45px;
  row-gap: 40px;
  direction: ltr;
  margin-top: 15px;
}

.cart-lower::before {
  content: "";
  position: absolute;
  top: 193px;
  right: 0;
  left: 0;
  height: 1px;
  background: #e5e5e5;
}

.cart-summary-area {
  display: flex;
  grid-area: summary;
  flex-direction: column;
  direction: rtl;
  padding: 0;
  background: transparent;
}

.cart-total {
  position: relative;
  order: 1;
  height: 65px;
  min-height: 65px;
  text-align: right;
}

.cart-total span {
  position: absolute;
  top: 0;
  left: 150px;
  margin: 0;
  font-size: 13px;
}

.cart-total strong {
  position: absolute;
  top: 0;
  left: 0;
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 20px;
}

.cart-total small {
  position: absolute;
  top: 27px;
  left: 0;
}

.cart-coupon {
  position: relative;
  order: 2;
  align-self: start;
  width: 390px;
  height: 108px;
  padding: 12px 8px;
  border: 1px solid #e2e5f1;
  background: #f5f6f8;
}

.cart-coupon label {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
}

.cart-coupon__form {
  display: flex;
  direction: ltr;
  width: calc(100% - 20px);
  height: 41px;
  margin: 0 10px;
}

.cart-coupon__form input {
  flex: 1;
  min-width: 0;
  height: 41px;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-left: 0;
  direction: rtl;
}

.cart-coupon__form button {
  width: 92px;
  border: 0;
  background: #3f73d8;
  color: #fff;
  font-weight: 700;
}

.cart-coupon__message {
  position: absolute;
  right: 18px;
  bottom: 0;
  min-height: 15px;
  margin: 0;
  color: #2b9a47;
  font-size: 12px;
}

.cart-page-actions {
  display: flex;
  grid-area: actions;
  gap: 4px;
  direction: rtl;
  justify-content: flex-start;
  height: 45px;
  padding: 0;
  background: transparent;
}

.cart-page-actions a,
.cart-page-actions button {
  min-height: 45px;
  padding: 12px 24px;
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #444;
  text-align: center;
  font-weight: 700;
}

.cart-page-actions a {
  width: 138px;
}

.cart-page-actions .cart-print-button {
  width: 255px;
}

.cart-page-actions button {
  width: 255px;
}

.cart-checkout-button {
  display: block;
  grid-area: checkout;
  direction: rtl;
  width: 184px;
  min-height: 45px;
  margin: 0;
  border: 0;
  background: #4caf50;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  align-self: start;
}

.cart-checkout-button:hover,
.cart-checkout-button:focus {
  background: #409b44;
}

.cart-update-submit {
  position: absolute;
  width: 1px !important;
  height: 1px;
  margin: -1px;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0 !important;
}

body.dark-theme.cart-body {
  background: #262626;
  color: #e2e2e2;
}

body.dark-theme .cart-breadcrumb a,
body.dark-theme .cart-breadcrumb span,
body.dark-theme .cart-page-title,
body.dark-theme .cart-product__title {
  color: #e2e2e2;
}

body.dark-theme .cart-product,
body.dark-theme .cart-coupon,
body.dark-theme .cart-product__gift,
body.dark-theme .cart-product__quantity select {
  border-color: #484848;
  background: #303030;
  color: #e2e2e2;
}

body.dark-theme .cart-product__purchase {
  border-color: #444;
}

body.dark-theme .cart-product__meta,
body.dark-theme .cart-product__links button,
body.dark-theme .cart-product__links a {
  color: #aaa;
}

body.dark-theme .cart-summary-area,
body.dark-theme .cart-page-actions {
  background: transparent;
}

body.dark-theme .cart-lower::before {
  background: #444;
}

body.dark-theme .cart-coupon__form input {
  border-color: #505050;
  background: #383838;
  color: #eee;
}

body.dark-theme .recently-viewed {
  border-color: #444;
}

@media (max-width: 991px) {
  .cart-product {
    grid-template-columns: 160px minmax(0, 1fr) 24%;
  }

  .cart-product__details {
    padding: 0 15px;
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .cart-product {
    height: 318px;
    min-height: 318px;
  }
}

@media (max-width: 768px) {
  .cart-body {
    padding-bottom: 85px;
    background: #f2f3f3;
  }

  .cart-body .site-header {
    margin-bottom: 0;
  }

  .cart-page {
    padding-top: 0;
    background: #f2f3f3;
  }

  .cart-page > .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }

  .cart-section {
    margin-bottom: 20px;
  }

  .cart-page-title {
    height: 22px;
    margin: 20px 0 30px;
    font-size: 20px;
    line-height: 22px;
  }

  .cart-empty-state {
    margin: 45px 0;
  }

  .cart-product {
    position: relative;
    grid-template-columns: 125px minmax(0, 1fr);
    min-height: 0;
    margin-right: -15px;
    margin-bottom: 10px;
    margin-left: -15px;
    padding: 20px 15px;
    border-color: #f1f1f1;
  }

  .cart-product__image {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    padding: 10px;
  }

  .cart-product__image img {
    height: 105px;
  }

  .cart-product__details {
    grid-column: 2;
    grid-row: 1;
    padding: 0;
  }

  .cart-product__badge {
    margin-bottom: 6px;
    padding: 3px 7px;
    font-size: 10px;
  }

  .cart-product__title {
    margin-right: 6px;
    margin-bottom: 14px;
    margin-left: 6px;
    font-size: 13px;
    line-height: 1.6;
  }

  .cart-product__mobile-price {
    display: block;
    direction: ltr;
    margin: 0 6px 2px;
    font-family: Arial, sans-serif;
    font-size: 13px;
  }

  .cart-product__mobile-price strong {
    font-size: 16px;
  }

  .cart-product__meta {
    font-size: 11px;
  }

  .cart-product__gift {
    margin-top: 9px;
    font-size: 11px;
  }

  .cart-product__links {
    position: absolute;
    bottom: 45px;
    left: 15px;
    gap: 12px;
    margin: 0;
  }

  .cart-product__purchase {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    direction: ltr;
    min-height: 60px;
    margin-top: 10px;
    padding: 9px 0 0;
    border-top: 1px solid #eee;
    border-right: 0;
  }

  .cart-product__price {
    display: none;
  }

  .cart-product__quantity > span {
    display: none;
  }

  .cart-product__quantity {
    direction: rtl;
  }

  .cart-lower {
    display: block;
    direction: rtl;
    margin-top: 20px;
  }

  .cart-lower::before {
    display: none;
  }

  .cart-summary-area {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: transparent;
  }

  .cart-total {
    order: 1;
    width: 100%;
    height: 68px;
    min-height: 68px;
    margin: 20px 0;
    text-align: center;
  }

  .cart-total span,
  .cart-total strong,
  .cart-total small {
    position: static;
    display: block;
  }

  .cart-total span {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .cart-total strong {
    font-size: 22px;
  }

  .cart-total small {
    margin-bottom: 3px;
  }

  .cart-coupon {
    order: 2;
    width: 100%;
    height: 108px;
    background: #fff;
  }

  .cart-page-actions {
    direction: rtl;
    height: 76px;
    margin-top: 41px;
    padding: 0 0 10px;
    background: transparent;
  }

  .cart-page-actions a,
  .cart-page-actions button {
    flex: 1;
    min-width: 0;
    font-size: 11px;
  }

  .cart-checkout-button {
    position: fixed;
    z-index: 1200;
    right: 15px;
    bottom: 20px;
    width: calc(100% - 30px);
    min-height: 45px;
    margin: 0;
    box-shadow: 0 0 0 15px #fff;
  }

}

@media (max-width: 390px) {
  .cart-product__details {
    padding: 0;
  }

  .cart-product__links {
    gap: 9px;
  }

  .cart-coupon__form button {
    width: 88px;
  }
}

@media (max-width: 480px) {
  .cart-product {
    min-height: 450px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .cart-page-title {
    margin-bottom: 35px;
  }

  .cart-product {
    min-height: 379px;
  }
}

@media (max-width: 360px) {
  .cart-product {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .cart-product__image {
    height: 100px;
    padding: 0;
  }

  .cart-product__image img {
    height: 90px;
  }

  .cart-product__title {
    font-size: 12px;
    line-height: 18px;
  }
}

@media (max-width: 768px) {
  body.dark-theme .cart-coupon {
    border-color: #484848;
    background: #303030;
  }

  body.dark-theme .cart-checkout-button {
    box-shadow: 0 0 0 15px #262626;
  }
}

/* -------------------------------------------------------------------------
 * Microless cart table
 * ------------------------------------------------------------------------- */
.cart-section .woocommerce-cart-form {
  float: none !important;
  width: 100% !important;
  margin: 0;
}

#cart-wrapper.cart-products-list {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 21px;
}

#cart-wrapper > .row {
  margin-right: -15px;
  margin-left: -15px;
}

#cart-wrapper .no-padding {
  padding-right: 15px;
  padding-left: 15px;
}

#resp-table {
  display: table;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  direction: rtl;
}

#resp-table-body {
  display: table-row-group;
}

#resp-table .resp-table-row {
  display: table-row;
}

#resp-table .cart-item-row {
  height: 318px;
  border: 1px solid #eee;
  border-color: rgb(238 238 238);
  background: transparent;
  vertical-align: middle;
}

#resp-table .table-body-cell {
  display: table-cell;
  vertical-align: middle;
}

#resp-table .cell-product {
  width: 76%;
  padding: 10px;
}

#resp-table .cell-product-qty {
  width: 24%;
  padding: 20px;
  direction: rtl;
}

#resp-table .resp-table-inner {
  display: block;
  width: 100%;
  height: 100%;
}

#resp-table .resp-table-body {
  display: table-row-group;
  width: 100%;
  height: 100%;
}

#resp-table .resp-table-row.clearfix {
  display: table-row;
  width: 100%;
  height: 100%;
}

@media (min-width: 769px) {
  #resp-table .cell-product > .resp-table-inner,
  #resp-table .cell-product .resp-table-body,
  #resp-table .cell-product .resp-table-row.clearfix {
    height: 296px;
  }

  #resp-table .cell-product .resp-table-row.clearfix {
    display: grid;
    grid-template-columns: 25% 75%;
    direction: rtl;
  }

  #resp-table .cell-product > .resp-table-inner > .resp-table-body {
    display: block;
    width: 100%;
  }

  #resp-table .cell-product .resp-table-row.clearfix {
    width: 100%;
  }

  #resp-table .cell-product .resp-table-row.clearfix > .table-body-cell {
    display: block;
    width: auto;
    height: 296px;
  }

  #resp-table .cell-product .cell-thumbnail {
    grid-column: 1;
    grid-row: 1;
    display: flex !important;
    align-items: center;
  }

  #resp-table .cell-product .cell-title {
    grid-column: 2;
    grid-row: 1;
  }
}

#resp-table .cell-thumbnail {
  width: 25%;
  padding: 10px;
  vertical-align: middle;
}

#resp-table .cell-title {
  width: 75%;
  padding: 10px;
  vertical-align: middle;
}

#resp-table .product-thumbnail {
  display: block;
  width: 100%;
  height: 160px;
  padding: 5px 0 5px 5px;
  background: #fff;
}

#resp-table .product-thumbnail a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
}

#resp-table .product-thumbnail img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 150px;
  margin: 0 auto;
  object-fit: contain;
}

#resp-table .badges {
  display: block;
  height: 22px;
  margin: 0;
}

#resp-table .product-bundle-badge {
  display: block;
  float: right;
  height: 22px;
  margin: 0 5px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: #518cff;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
}

#resp-table .product-bundle-badge .left-part {
  display: none;
}

#resp-table .product-bundle-badge .right-part {
  display: block;
  float: right;
  height: 22px;
  padding: 5px 10px;
  color: #fff;
  white-space: nowrap;
}

#resp-table .product-bundle-badge .right-part .fa {
  display: none;
}

#resp-table .cartItemTitle {
  display: block;
  min-height: 63px;
  margin: 6px;
  color: #505050;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  text-decoration: none;
}

#resp-table .cartItemTitle:hover,
#resp-table .cartItemTitle:focus {
  color: #333;
  text-decoration: none;
}

#resp-table .seller-information {
  display: block;
  height: 21px;
  margin: 6px;
  color: #333;
  font-size: 12px;
  line-height: 21px;
}

#resp-table .cart-product-delivery-info {
  display: block;
  min-height: 42px;
  margin: 6px;
  color: #333;
  font-size: 12px;
  line-height: 21px;
}

#resp-table .cart-product-delivery-info .date-green {
  color: #00b607;
  font-weight: 700;
}

#resp-table .delivery-cutoff-time {
  display: block;
  color: #333;
  font-size: 12px;
  line-height: 21px;
}

#resp-table .warranty-info {
  display: inline;
  margin: 4px;
  color: #7b7b7b;
  font-size: 12px;
  line-height: 21px;
}

#resp-table .cart-item-options {
  display: block;
  height: 42px;
  margin: 0;
}

#resp-table .gift-wrap-info {
  display: none;
}

#resp-table .gift-wrap-option-wrapper {
  display: block;
  float: right;
  width: 125px;
  height: 32px;
  margin: 10px 0 0 6px;
  border: 1px solid #eeeff1;
  background: #fbfbfb;
}

#resp-table .gift-wrap-option-wrapper .cart-product__gift {
  display: inline-block;
  height: 30px;
  margin: 0;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #428bca;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

#resp-table .cart-action-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: 22px;
  margin: 15px 6px 5px;
  gap: 0;
  direction: rtl;
}

#resp-table .cart-wish {
  position: relative;
  display: block;
  width: 133px;
  color: #333;
  font-size: 12px;
  line-height: normal;
  cursor: pointer;
}

#resp-table .cart-wish i {
  display: inline-block;
  color: #333;
  font-size: 13px;
  font-style: normal;
  line-height: 13px;
}

#resp-table .cart-wish .items_status,
#resp-table .cart-remove-item .items_status {
  padding: 0 2px;
  color: #686868;
  font-size: 12px;
  line-height: 12px;
}

#resp-table .ml-v-space {
  flex: 0 0 27px;
}

#resp-table .cart-remove-item {
  display: block;
  width: 41px;
  height: 22px;
}

#resp-table .cart-remove-item .cart-remove {
  display: inline-block;
  width: 41px;
  height: 21px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #686868;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  text-decoration: none;
}

#resp-table .cart-remove-item .cart-remove:hover,
#resp-table .cart-remove-item .cart-remove:focus,
#resp-table .cart-wish:hover {
  color: #333;
  text-decoration: underline;
}

#resp-table .cell-product-qty .cart-product-price {
  display: block;
  width: 100%;
  height: 21px;
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 21px;
}

#resp-table .cell-title > .cart-product-price {
  display: none;
}

#resp-table .cell-product-qty .current-price,
#resp-table .cell-product-qty .priceFormat,
#cart-total.priceFormat {
  direction: ltr;
  color: #333;
  font-family: Tajawal, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
}

#resp-table .cell-product-qty .cart-product-quantity {
  position: relative;
  display: block;
  width: 100%;
  height: 38px;
  margin: 0 0 20px;
  line-height: 21px;
}

#resp-table .cell-product-qty .cart-product-quantity > span {
  display: inline;
  font-size: 13px;
  line-height: 21px;
}

#resp-table .cell-product-qty .cart-product-quantity select {
  display: inline-block;
  width: 93px;
  height: 21px;
  margin: -2px 0 0 16px;
  padding: 0 8px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  color: #333;
  font: 13px/21px Tajawal, sans-serif;
  vertical-align: middle;
}

#resp-table .separator {
  display: block;
  height: 15px;
}

.total-promo-wrap {
  position: relative;
  display: block;
  min-height: 173px;
  direction: rtl;
}

.total-promo-wrap .cart-total.cartpage-total {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  min-height: 40px;
  margin: 0 0 25px;
  direction: rtl;
}

.cartpage-total .col-left {
  position: absolute;
  left: 150px;
  width: auto;
  margin: 0 164px 0 0;
  line-height: 21px;
}

.cartpage-total .col-left strong {
  position: static;
  display: inline;
  direction: rtl;
  font: 700 13px/21px Tajawal, Helvetica, Arial, sans-serif;
}

.cartpage-total .col-right {
  float: left;
  width: 163px;
  margin: -19px 0 0;
  text-align: left;
}

.cartpage-total .col-right h4 {
  display: inline-block;
  margin: 20px 0 10px;
  font: 600 20px/22px Tajawal, Helvetica, Arial, sans-serif;
  line-height: 22px;
}

.cartpage-total .col-right #cart-total.priceFormat {
  direction: ltr;
  font: 600 20px/22px Tajawal, Helvetica, Arial, sans-serif;
}

.cartpage-total .col-right #cart-total.priceFormat .woocommerce-Price-amount,
.cartpage-total .col-right #cart-total.priceFormat .woocommerce-Price-currencySymbol {
  position: static;
  display: inline;
  margin: 0;
  font: inherit;
}

.cartpage-total .col-right small {
  display: block;
  margin-top: 6px;
  color: #777;
  font-size: 11px;
  white-space: nowrap;
}

.promo-code-wrapper {
  display: block;
  width: 100%;
  height: 108px;
}

.promo-code {
  display: block;
  float: left;
  width: 390px;
  height: 108px;
  padding: 12px 8px;
  border: 1px solid #e2e5f1;
  background: #f5f6f8;
}

.promo-code .accordion-toggle {
  color: #333;
  text-decoration: none;
}

.promo-code .panel-body {
  padding: 10px;
}

.promo-code .form-apply-coupon,
.promo-code .input-group {
  width: 100%;
  height: 41px;
}

.promo-code .input-group {
  display: flex;
  direction: ltr;
}

.promo-code .form-control {
  flex: 1 1 auto;
  min-width: 0;
  height: 41px;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-left: 0;
  direction: rtl;
}

.promo-code .input-group-btn {
  display: block;
  width: 92px;
}

.promo-code .input-group-btn button {
  width: 92px;
  height: 41px;
  border: 0;
  background: #fff;
  color: #333;
}

#cart-wrapper + .total-promo-wrap {
  margin-top: 0;
}

.woocommerce-cart-form > hr {
  height: 1px;
  margin: 0 0 0;
  border: 0;
  border-top: 1px solid #eee;
}

#cart-button {
  display: block;
  height: 55px;
  direction: rtl;
}

#cart-button .default-btns {
  float: right;
  height: 45px;
  margin: 0 0 10px;
}

#cart-button .default-btns a {
  display: inline-block;
  min-width: 0;
  height: 45px;
  margin: 0;
  padding: 12px 24px;
  border: 1px solid #ccc;
  background: #fff;
  color: #444;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  vertical-align: middle;
}

#cart-button .default-btns a:first-child {
  width: 135px;
}

#cart-button .default-btns .cart-print-button {
  width: 255px;
}

#cart-button .proceed-btn {
  float: left;
  width: 184px;
  height: 45px;
}

#cart-button .proceed-btn a {
  display: block;
  width: 184px;
  height: 45px;
  padding: 12px 24px;
  border: 1px solid #009688;
  background: #4caf50;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  white-space: nowrap;
}

#cart-button .proceed-btn a:hover,
#cart-button .proceed-btn a:focus {
  background: #43a047;
  color: #fff;
}

.woocommerce-cart-form > .cart-update-submit {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  margin: -1px;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0 !important;
}

body.dark-theme #resp-table .cart-item-row,
body.dark-theme #resp-table .cell-product-qty,
body.dark-theme #resp-table .cell-title,
body.dark-theme #resp-table .cartItemTitle,
body.dark-theme #resp-table .cart-product-delivery-info,
body.dark-theme #resp-table .delivery-cutoff-time,
body.dark-theme .cartpage-total .col-left,
body.dark-theme #cart-total.priceFormat {
  color: #e1e1e1;
}

body.dark-theme #resp-table .cart-item-row {
  border-color: #444;
}

body.dark-theme #resp-table .product-thumbnail,
body.dark-theme #resp-table .cell-product-qty .cart-product-quantity select {
  background: #303030;
}

body.dark-theme #resp-table .cell-product-qty .cart-product-quantity select {
  border-color: #505050;
  color: #eee;
}

body.dark-theme .promo-code {
  border-color: #484848;
  background: #303030;
}

body.dark-theme .promo-code .accordion-toggle,
body.dark-theme .promo-code .form-control,
body.dark-theme .promo-code .input-group-btn button {
  color: #eee;
}

body.dark-theme .promo-code .form-control {
  border-color: #505050;
  background: #383838;
}

body.dark-theme .promo-code .input-group-btn button,
body.dark-theme #cart-button .default-btns a {
  border-color: #505050;
  background: #303030;
  color: #eee;
}

@media (max-width: 768px) {
  #cart-wrapper > .row {
    margin-right: -15px;
    margin-left: -15px;
  }

  #resp-table {
    display: block;
  }

  #resp-table-body,
  #resp-table .resp-table-row,
  #resp-table .table-body-cell,
  #resp-table .resp-table-body,
  #resp-table .resp-table-row.clearfix {
    display: block;
  }

  #resp-table .cart-item-row {
    position: relative;
    height: auto;
    min-height: 0;
    margin: 0 0 10px;
    padding: 20px 15px;
    border: 1px solid #f1f1f1;
  }

  #resp-table .cell-product,
  #resp-table .cell-product-qty,
  #resp-table .cell-thumbnail,
  #resp-table .cell-title {
    width: 100%;
    padding: 0;
  }

  #resp-table .cell-product {
    display: block;
  }

  #resp-table .resp-table-inner,
  #resp-table .resp-table-body,
  #resp-table .resp-table-row.clearfix {
    width: 100%;
    height: auto;
  }

  #resp-table .resp-table-row.clearfix {
    display: flex;
    gap: 0;
    direction: rtl;
  }

  #resp-table .cell-thumbnail {
    flex: 0 0 125px;
    width: 125px;
    height: 125px;
  }

  #resp-table .cell-title {
    flex: 1 1 auto;
    width: auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin: 10px 0;
  }

  #resp-table .product-thumbnail {
    display: flex;
    width: 125px;
    height: 125px;
    padding: 10px;
  }

  #resp-table .product-thumbnail a {
    width: 105px;
    height: 105px;
  }

  #resp-table .product-thumbnail img {
    max-height: 105px;
  }

  #resp-table .badges {
    height: 22px;
  }

  #resp-table .product-bundle-badge,
  #resp-table .product-bundle-badge .right-part {
    height: 20px;
    font-size: 10px;
    line-height: 10px;
  }

  #resp-table .product-bundle-badge .right-part {
    padding: 5px 7px;
  }

  #resp-table .cartItemTitle {
    min-height: 0;
    margin: 6px 6px 14px;
    font-size: 13px;
    line-height: 18px;
  }

  #resp-table .cell-title > .cart-product-price {
    display: block;
    flex: 0 1 auto;
    width: auto;
    height: 21px;
    margin: 0 6px 0 0;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
  }

  #resp-table .cart-product-delivery-info {
    min-height: 0;
    margin: 7px 6px 0 0;
    font-size: 12px;
    line-height: 21px;
  }

  #resp-table .delivery-cutoff-time {
    font-size: 12px;
    line-height: 21px;
  }

  #resp-table .warranty-info {
    font-size: 11px;
  }

  #resp-table .cart-item-options {
    height: 41px;
  }

  #resp-table .gift-wrap-option-wrapper {
    width: 114px;
    height: 31px;
    margin: 5px 0 5px 6px;
  }

  #resp-table .gift-wrap-option-wrapper .cart-product__gift {
    height: 29px;
    padding: 3px 7px;
    font-size: 13px;
  }

  #resp-table .cart-action-btn {
    position: absolute;
    bottom: 20px;
    left: 15px;
    width: 196px;
    height: 22px;
    margin: 0;
  }

  #resp-table .cell-product-qty {
    position: relative;
    display: block;
    min-height: 20px;
    margin: 0;
    padding: 20px 0 0;
    border: 0;
  }

  #resp-table .cell-product-qty .cart-product-price {
    display: none;
  }

  #resp-table .cell-product-qty .cart-product-quantity {
    display: flex;
    float: right;
    width: 65px;
    height: 34px;
    margin: 0 0 5px;
  }

  #resp-table .cell-product-qty .cart-product-quantity select {
    width: 70px;
    margin-left: 0;
  }

  #resp-table .separator {
    height: 0;
  }

  .total-promo-wrap {
    min-height: 0;
  }

  .total-promo-wrap .cart-total.cartpage-total {
    height: 68px;
    margin: 20px 0;
    text-align: center;
  }

  .cartpage-total .col-left,
  .cartpage-total .col-right {
    position: static;
    float: none;
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .cartpage-total .col-right h4 {
    margin: 4px 0 0;
  }

  .cartpage-total .col-right small {
    margin-top: 3px;
    white-space: normal;
  }

  .promo-code-wrapper,
  .promo-code {
    width: 100%;
    height: 108px;
  }

  .promo-code {
    float: none;
  }

  .woocommerce-cart-form > hr {
    display: none;
  }

  #cart-button {
    height: auto;
    margin-top: 20px;
  }

  #cart-button .default-btns {
    display: flex;
    float: none;
    width: 100%;
    height: 45px;
  }

  #cart-button .default-btns a,
  #cart-button .default-btns a:first-child,
  #cart-button .default-btns .cart-print-button {
    flex: 1 1 50%;
    width: auto;
    padding: 12px 8px;
    font-size: 11px;
  }

  #cart-button .proceed-btn,
  #cart-button .proceed-btn a {
    float: none;
    width: 100%;
  }

  #cart-button .proceed-btn {
    margin-top: 12px;
  }
}

/* -------------------------------------------------------------------------
 * Cart parity repair
 * ------------------------------------------------------------------------- */
#resp-table .cart-item-row {
  border: 0;
  border-radius: 8px;
  background: #f5f5f5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
  overflow: hidden;
}

#resp-table .product-thumbnail {
  background: transparent;
}

#resp-table .cart-action-btn {
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}

#resp-table .cart-wish {
  display: inline-flex;
  flex: 0 0 133px;
  align-items: center;
  width: 133px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #333;
  line-height: 18px;
  white-space: nowrap;
}

#resp-table .cart-wish .fa {
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  margin: 0;
  font-size: 13px;
  line-height: 13px;
}

#resp-table .cart-wish .moweb-wishlist-button__label {
  display: inline-block;
  padding: 0 2px;
  line-height: 18px;
  white-space: nowrap;
}

#resp-table .ml-v-space {
  flex: 0 0 2px;
  width: 2px;
  height: 20px;
  background: #e4e4e4;
}

.promo-code {
  border-radius: 3px;
}

.promo-code .input-group {
  direction: rtl;
}

.promo-code .input-group > .form-control {
	padding: 6px 12px;
	border-radius: 0 3px 3px 0 !important;
	box-shadow: none;
}

.promo-code .input-group-btn:last-child > button {
	border: 1px solid #1d4bc3;
	border-radius: 4px 0 0 4px !important;
  background: #3866df;
  color: #fff;
  font-size: 16px;
}

#cart-button .default-btns a,
#cart-button .proceed-btn a {
  border-radius: 2px;
}

body.dark-theme #resp-table .cart-item-row {
  background: #303030;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
}

body.dark-theme #resp-table .ml-v-space {
  background: #555;
}

@media (min-width: 769px) {
  #resp-table,
  #resp-table-body {
    display: block;
  }

  #resp-table .cart-item-row {
    display: grid;
    grid-template-columns: 76% 24%;
    width: 100%;
    height: auto;
    min-height: 254px;
  }

  html[dir="rtl"] #resp-table .cart-item-row,
  html[dir="rtl"] #resp-table .cell-product .resp-table-row.clearfix {
    direction: rtl;
  }

  html[dir="ltr"] #resp-table .cart-item-row,
  html[dir="ltr"] #resp-table .cell-product .resp-table-row.clearfix {
    direction: ltr;
  }

  #resp-table .cell-product,
  #resp-table .cell-product-qty {
    display: block;
    width: auto;
    min-height: 254px;
  }

  #resp-table .cell-product > .resp-table-inner,
  #resp-table .cell-product .resp-table-body,
  #resp-table .cell-product .resp-table-row.clearfix,
  #resp-table .cell-product .resp-table-row.clearfix > .table-body-cell {
    height: 233px;
  }

  #resp-table .cell-product-qty {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cart-breadcrumb {
    display: none;
  }

  .cart-page-title {
    margin: 20px 0 30px;
  }

  #resp-table .cart-item-row {
    width: calc(100% + 30px);
    margin: 0 -15px 18px;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
  }

  html[dir="rtl"] #resp-table .resp-table-row.clearfix {
    direction: rtl;
  }

  html[dir="ltr"] #resp-table .resp-table-row.clearfix {
    direction: ltr;
  }

  #cart-button .default-btns,
  #cart-button .default-btns a,
  #cart-button .default-btns a:first-child {
    width: 100%;
  }

  #cart-button .proceed-btn {
    position: fixed;
    z-index: 1200;
    right: 15px;
    bottom: 20px;
    width: calc(100% - 30px);
    height: 45px;
    margin: 0;
    box-shadow: 0 0 0 15px #fff, 0 -2px 10px rgba(0, 0, 0, .08);
  }

  #cart-button .proceed-btn a {
    width: 100%;
    height: 45px;
  }

  body.dark-theme #cart-button .proceed-btn {
    box-shadow: 0 0 0 15px #262626, 0 -2px 10px rgba(0, 0, 0, .35);
  }
}
