.steps-wrap {
  margin-bottom: 40px;
}

.step-tabs {
  display: flex;
  justify-content: center;
}

.step-tabs .step-tab {
  font-size: 18px;
  font-weight: var(--font-medium);
  height: 55px;
  width: 300px;
  display: flex;
  margin: 0 15px;
  justify-content: center;
  align-items: center;
  color: var(--color-black);
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-gray-lite);
  border-radius: var(--radius-default);
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
}

.step-tabs .step-tab.active {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.step-tabs .step-tab.active .step-tab-text .bg-text {
  color: var(--color-white);
}

.step-tabs .step-tab-link {
  display: flex;
  width: 100%;
  color: var(--color-black);
  justify-content: center;
  align-self: stretch;
  align-items: center;
}

.step-tabs .step-tab-text {
  position: relative;
}

.step-tabs .step-tab-text .bg-text {
  font-size: 38px;
  position: absolute;
  top: 50%;
  width: 50px;
  color: var(--color-black);
  opacity: 0.15;
  transform: translateY(-50%);
}

.ltr .step-tabs .step-tab-text .bg-text {
  right: -35px;
}

.rtl .step-tabs .step-tab-text .bg-text {
  left: -35px;
}

@media screen and (max-width: 991px) {
  .steps-wrap {
    display: none;
  }

  .step-tabs .step-tab {
    font-size: 16px;
    height: 50px;
    width: 250px;
  }

  .step-tabs .step-tab-text .bg-text {
    font-size: 36px;
  }
}

@media screen and (max-width: 886px) {
  .step-tabs {
    align-items: center;
    flex-direction: column;
  }

  .step-tabs .step-tab {
    margin: 8px 15px;
  }

  .step-tabs .step-tab:first-child {
    margin-top: 0;
  }

  .step-tabs .step-tab:last-child {
    margin-bottom: 0;
  }
}

.order-summary-top .section-title {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color-lite);
  font-size: 20px;
  font-weight: 28px;
}

.order-summary-top .cart-item {
  padding: 10px 0 10px;
  align-items: center;
}

.order-summary-top .cart-item .product-image {
  border: 1px solid var(--border-color-lite);
  overflow: unset;
  align-self: flex-start;
  background: var(--color-white);
}

.order-summary-top .cart-item .product-image img {
  border-radius: var(--radius-default);
}

.order-summary-top .cart-item .product-image .qty-count {
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  top: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 10px;
  line-height: 16px;
}

.ltr .order-summary-top .cart-item .product-image .qty-count {
  right: -6px;
}

.rtl .order-summary-top .cart-item .product-image .qty-count {
  left: -6px;
}

.ltr .order-summary-top .cart-item .product-info {
  padding-right: 15px;
}

.rtl .order-summary-top .cart-item .product-info {
  padding-left: 15px;
}

.order-summary-top .cart-item .product-info .product-name {
  margin: 0;
  font-weight: var(--font-medium);
  transition: var(--transition-150);
  text-decoration-line: underline;
  text-decoration-color: transparent;
}

.order-summary-top .cart-item .product-info .product-name:hover {
  text-decoration-color: var(--color-black);
}

.order-summary-top .cart-item .product-info .product-options {
  margin-top: 5px;
}

.order-summary-top .cart-item .product-price {
  display: block;
  height: 46px;
  line-height: 46px;
  align-self: flex-start;
}

.ltr .order-summary-top .cart-item .product-price {
  text-align: right;
}

.rtl .order-summary-top .cart-item .product-price {
  text-align: left;
}

.order-summary-top .coupon-wrap input {
  height: 40px;
}

.ltr .order-summary-top .coupon-wrap .btn-apply-coupon {
  margin-left: 10px;
}

.rtl .order-summary-top .coupon-wrap .btn-apply-coupon {
  margin-right: 10px;
}

@media screen and (max-width: 400px) {
  .order-summary-top .cart-item {
    flex-wrap: wrap;
  }

  .order-summary-top .cart-item .product-info {
    width: calc(100% - 46px);
  }

  .ltr .order-summary-top .cart-item .product-info {
    padding-right: 0;
    margin-left: 0;
    padding-left: 15px;
  }

  .rtl .order-summary-top .cart-item .product-info {
    padding-left: 0;
    margin-right: 0;
    padding-right: 15px;
  }

  .order-summary-top .cart-item .product-price {
    height: unset;
    line-height: 1;
    width: calc(100% - 46px);
  }

  .ltr .order-summary-top .cart-item .product-price {
    padding: 5px 0 0 15px;
    text-align: left;
    margin-left: auto;
  }

  .rtl .order-summary-top .cart-item .product-price {
    padding: 5px 15px 0 0;
    text-align: right;
    margin-right: auto;
  }
}

.order-summary-middle {
  padding: 25px 0 22px;
}

.order-summary-middle.loading::before {
  content: "";
  width: unset;
  height: unset;
  left: -15px;
  top: 15px;
  right: -15px;
  bottom: 15px;
  border-radius: var(--radius-default);
}

.order-summary-middle .btn-remove-coupon {
  font-size: 14px;
  padding: 0;
  background: transparent;
  border: none;
  transition: var(--transition-150);
  cursor: pointer;
}

.order-summary-middle .btn-remove-coupon:hover {
  color: var(--color-primary);
}

.order-summary-bottom {
  text-align: center;
}

.order-summary-bottom .checkout-terms-and-conditions {
  margin: -1px 0 0;
  padding-bottom: 10px;
  text-align: center;
}

.order-summary-bottom .checkout-terms-and-conditions .error-message {
  margin: -2px 0 8px;
}

.order-summary-bottom .btn {
  width: 100%;
}

#paypal-button-container .paypal-buttons {
  vertical-align: top;
}

#paypal-button-container .paypal-buttons iframe.component-frame {
  z-index: 0;
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .order-summary-bottom .btn {
    width: 50%;
  }
}

.order-summary-wrap {
  width: 430px;
  min-width: 430px;
  position: sticky;
  top: 90px;
}

.ltr .order-summary-wrap {
  padding-left: 15px;
}

.rtl .order-summary-wrap {
  padding-right: 15px;
}

.order-summary {
  padding: 20px 25px 25px;
  background: var(--color-white-dark);
  border-radius: var(--radius-default);
}

.order-summary-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
}

.order-summary-list li:last-child {
  margin-bottom: 0;
}

.order-summary-list li .coupon-code {
  font-weight: var(--font-medium);
  white-space: nowrap;
}

.order-summary-list li > span {
  font-weight: var(--font-medium);
}

.order-summary-list label {
  margin-bottom: 0;
}

.ltr .order-summary-list label {
  padding-right: 20px;
}

.rtl .order-summary-list label {
  padding-left: 20px;
}

.order-summary-total {
  font-size: 18px;
  font-weight: var(--font-medium);
  display: flex;
  margin-top: 20px;
  padding-bottom: 0;
  justify-content: space-between;
  padding: 10px 0 0 0;
  border-top: 1px solid var(--color-gray-lite);
}

.order-summary-total label {
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .order-summary-wrap {
    width: 100%;
    min-width: 0;
    margin-top: 20px;
  }

  .ltr .order-summary-wrap {
    padding-left: 0;
  }

  .rtl .order-summary-wrap {
    padding-right: 0;
  }
}

.cart-wrap {
  margin-top: 50px;
}

.cart {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.cart .order-summary-wrap {
  position: sticky;
  top: 90px;
}

.cart-inner {
  flex-grow: 1;
}

.ltr .cart-inner {
  padding-right: 15px;
}

.rtl .cart-inner {
  padding-left: 15px;
}

@media screen and (max-width: 1280px) {
  .cart-inner .number-picker {
    display: flex;
    align-items: center;
  }

  .cart-inner .number-picker .btn-number {
    width: 16px;
    height: 16px;
    font-size: 14px;
  }

  .cart-inner .number-picker .btn-number svg {
    width: 8px;
    height: 8px;
  }

  .cart-inner .number-picker .input-number {
    font-size: 12px;
    height: 16px;
    width: 30px;
  }
}

@media screen and (max-width: 991px) {
  .cart-wrap {
    margin-top: 40px;
  }

  .cart {
    flex-direction: column;
    align-items: unset;
    position: unset;
  }

  .ltr .cart-inner {
    padding-right: 0;
  }

  .rtl .cart-inner {
    padding-left: 0;
  }
}

.cart .table-responsive {
  border: 1px solid var(--color-gray-lite);
  border-radius: var(--radius-default);
}

.cart-table {
  margin-bottom: 10px;
}

.cart-table .product-image {
  border: 1px solid var(--color-gray-lite);
}

.cart-table thead th:first-child,
.cart-table tbody td:first-child {
  width: 120px;
}

.cart-table thead th:last-child,
.cart-table tbody td:last-child {
  width: 70px;
  min-width: unset;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.cart-table thead th {
  white-space: nowrap;
}

.cart-table tbody td {
  vertical-align: middle;
}

.cart-table .btn-remove {
  line-height: 20px;
  transform: translateY(1px);
}

.cart-table .product-image {
  height: 60px;
  width: 60px;
  border-radius: var(--radius-default);
  overflow: hidden;
}

.cart-table .product-image .image-placeholder {
  height: 45px;
  width: 45px;
}

.cart-table .product-name {
  display: inline-block;
  color: var(--color-black);
  font-weight: var(--font-medium);
  text-decoration-line: underline;
  text-decoration-color: transparent;
  transition: var(--transition-150);
}

.cart-table .product-name:hover {
  text-decoration-color: var(--color-black);
}

.cart-table .product-options {
  margin: 4px 0 1px;
}

.cart-table .product-price {
  color: var(--color-black);
}

@media screen and (min-width: 1281px) {
  .cart-table td > label {
    display: none;
  }
}

@media screen and (max-width: 1280px) {
  .cart-table thead {
    display: none;
  }

  .cart-table tr:first-child td:nth-child(3), .cart-table tr:first-child td:nth-child(4), .cart-table tr:first-child td:nth-child(5) {
    padding-top: 2px;
  }

  .cart-table tbody td {
    vertical-align: top;
  }

  .cart-table tbody td:not(:first-child):not(:last-child) {
    display: flex;
  }

  .cart-table tbody td:not(:first-child):not(:last-child) label,
  .cart-table tbody td:not(:first-child):not(:last-child) span {
    font-size: 13px;
    line-height: 1.7;
  }

  .cart-table tbody td:nth-child(2) {
    padding: 20px 0 11px;
    flex-direction: column;
  }

  .cart-table tbody td:nth-child(3) {
    padding: 0px 0 1px 0;
    white-space: nowrap;
  }

  .cart-table tbody td:nth-child(4) {
    padding: 0px 0 1px 0;
    white-space: nowrap;
  }

  .cart-table tbody td:nth-child(5) {
    padding: 0px 0 13px;
    white-space: nowrap;
  }

  .cart-table tbody td:last-child {
    min-width: unset;
    width: 70px;
  }

  .cart-table td > label {
    width: 90px;
    min-width: 90px;
    margin-bottom: 0;
    color: var(--color-gray);
    white-space: pre-wrap;
  }

  .ltr .cart-table td > label {
    padding-right: 5px;
  }

  .rtl .cart-table td > label {
    padding-left: 5px;
  }

  .cart-table .product-price {
    display: inline-flex;
  }
}

@media screen and (max-width: 991px) {
  .cart-table tbody tr td:not(:first-child):not(:last-child) input,
  .cart-table tbody tr td:not(:first-child):not(:last-child) span,
  .cart-table tbody tr td:not(:first-child):not(:last-child) label {
    font-size: 13px;
  }
}

@media screen and (max-width: 576px) {
  .cart-table tbody td {
    padding-left: 7px;
    padding-right: 7px;
  }

  .cart-table tbody td:first-child {
    width: 85px;
  }

  .cart-table tbody td:last-child {
    width: 50px;
  }

  .cart-table tbody td > label {
    width: 80px;
    min-width: 80px;
  }
}

.list-view-products {
  flex-wrap: wrap;
  margin: -10px -10px 0;
}

.list-view-products-item {
  display: flex;
  flex: 0 0 50%;
  max-width: 100%;
  padding: 10px;
}

.list-view-product-card {
  display: flex;
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-default);
  transition: var(--transition-150);
}

.list-view-product-card:hover {
  z-index: 1;
}

.list-view-product-card .product-card-left {
  align-self: flex-start;
}

.list-view-product-card .product-card-left .product-badge {
  top: 0;
}

.list-view-product-card .product-card-right {
  flex-grow: 1;
}

.ltr .list-view-product-card .product-card-right {
  padding: 0px 0px 0px 15px;
}

.rtl .list-view-product-card .product-card-right {
  padding: 0px 15px 0px 0px;
}

.list-view-product-card .product-card-right .product-card-actions-parent {
  display: flex;
  align-items: center;
}

.list-view-product-card .product-card-right .product-name-and-rating {
  margin-bottom: 15px;
}

.list-view-product-card .product-card-countdown {
  position: absolute;
  top: 50%;
  transition: var(--transition-200);
}

.ltr .list-view-product-card .product-card-countdown {
  left: 50%;
  transform: translate(-50%, -50%);
}

.rtl .list-view-product-card .product-card-countdown {
  right: 50%;
  transform: translate(50%, -50%);
}

.list-view-product-card .product-card-countdown.countdown .countdown-section {
  width: auto;
}

.ltr .list-view-product-card .product-card-countdown.countdown .countdown-section {
  margin-right: 10px;
}

.rtl .list-view-product-card .product-card-countdown.countdown .countdown-section {
  margin-left: 10px;
}

.list-view-product-card .product-card-countdown.countdown .countdown-amount {
  height: 38px;
  width: 38px;
  color: var(--color-white);
  margin: 0;
  background: var(--color-primary-alpha-80);
}

.list-view-product-card .product-card-countdown.countdown .countdown-period {
  display: none;
}

.list-view-product-card .product-name {
  display: flex;
  margin-bottom: 4px;
  align-items: center;
  z-index: 1;
}

.list-view-product-card .product-name h6 {
  font-size: 16px;
  font-weight: var(--font-medium);
  line-height: 22px;
  max-height: 48px;
  display: block;
  display: -webkit-box;
  color: var(--color-black);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: var(--transition-150);
  text-decoration-line: underline;
  text-decoration-color: transparent;
}

.list-view-product-card .product-name:hover h6 {
  text-decoration-color: var(--color-black);
}

.list-view-product-card .product-rating .reviews,
.list-view-product-card .product-rating .rating-count {
  font-size: 13px;
  line-height: 1;
  font-weight: var(--font-medium);
  color: rgb(135, 130, 140);
}

.ltr .list-view-product-card .product-rating .reviews,
.ltr .list-view-product-card .product-rating .rating-count {
  margin: 0 0 0 5px;
}

.rtl .list-view-product-card .product-rating .reviews,
.rtl .list-view-product-card .product-rating .rating-count {
  margin: 0 5px 0 0;
}

.list-view-product-card .product-rating .back-stars i {
  font-size: 14px;
}

.list-view-product-card .product-price {
  font-size: 18px;
  line-height: 26px;
  font-weight: var(--font-medium);
  margin-bottom: 11px;
  justify-content: flex-start;
}

.list-view-product-card .product-price .previous-price {
  font-size: 14px;
  font-weight: var(--font-normal);
}

.list-view-product-card .btn-add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 8px 20px;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-white);
  transition: var(--transition-150);
}

.ltr .list-view-product-card .btn-add-to-cart {
  margin-right: 5px;
}

.rtl .list-view-product-card .btn-add-to-cart {
  margin-left: 5px;
}

.list-view-product-card .btn-add-to-cart.btn-loading svg {
  visibility: hidden;
  opacity: 0;
}

.list-view-product-card .btn-add-to-cart > i {
  font-size: 15px;
  vertical-align: top;
  color: var(--color-white);
}

.ltr .list-view-product-card .btn-add-to-cart > i {
  margin-right: 8px;
}

.rtl .list-view-product-card .btn-add-to-cart > i {
  margin-left: 8px;
}

.list-view-product-card .btn-add-to-cart > svg {
  width: 15px;
  height: 15px;
}

.ltr .list-view-product-card .btn-add-to-cart > svg {
  margin-right: 8px;
}

.rtl .list-view-product-card .btn-add-to-cart > svg {
  margin-left: 8px;
}

.list-view-product-card .btn-add-to-cart > svg path {
  stroke: var(--color-white);
}

.list-view-product-card .btn-add-to-cart:hover {
  background: var(--color-primary-hover);
}

.list-view-product-card .btn-add-to-cart[disabled=disabled] {
  background: #EFEEF1;
  color: #CAC7D1;
  border-color: #EFEEF1;
}

.list-view-product-card .btn-add-to-cart[disabled=disabled] > svg path {
  stroke: #CAC7D1;
}

.list-view-product-card .product-card-actions {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0px;
  flex-direction: column;
  transition: var(--transition-150);
}

.ltr .list-view-product-card .product-card-actions {
  right: 0px;
}

.rtl .list-view-product-card .product-card-actions {
  left: 0px;
}

.list-view-product-card .product-card-actions .btn {
  display: flex;
  align-items: center;
  padding: 0;
  color: var(--color-gray);
}

.list-view-product-card .product-card-actions .btn:hover {
  color: var(--color-primary);
}

.list-view-product-card .product-card-actions .btn:hover > i {
  color: var(--color-gray);
}

.list-view-product-card .product-card-actions .btn > svg {
  width: 16px;
  height: 16px;
}

.ltr .list-view-product-card .product-card-actions .btn > svg {
  margin-right: 4px;
}

.rtl .list-view-product-card .product-card-actions .btn > svg {
  margin-left: 4px;
}

.list-view-product-card .product-card-actions .btn-compare,
.list-view-product-card .product-card-actions .btn-wishlist {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  padding: 0;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  transition: var(--transition-150);
  transform: scale(0.5);
  visibility: hidden;
  opacity: 0;
}

.list-view-product-card .product-card-actions .btn-compare svg,
.list-view-product-card .product-card-actions .btn-wishlist svg {
  width: 14px;
  height: 14px;
}

.ltr .list-view-product-card .product-card-actions .btn-compare svg,
.ltr .list-view-product-card .product-card-actions .btn-wishlist svg {
  margin-right: 0;
}

.rtl .list-view-product-card .product-card-actions .btn-compare svg,
.rtl .list-view-product-card .product-card-actions .btn-wishlist svg {
  margin-left: 0;
}

.list-view-product-card .product-card-actions .btn-compare svg path,
.list-view-product-card .product-card-actions .btn-wishlist svg path {
  stroke: var(--color-white);
  transition: var(--transition-150);
}

.list-view-product-card .product-card-actions .btn-compare:hover,
.list-view-product-card .product-card-actions .btn-wishlist:hover {
  background: var(--color-primary);
}

.list-view-product-card .product-card-actions .btn-compare.added,
.list-view-product-card .product-card-actions .btn-wishlist.added {
  background: var(--color-primary);
  transition: var(--transition-150);
}

.list-view-product-card .product-card-actions .btn-compare.added svg path,
.list-view-product-card .product-card-actions .btn-wishlist.added svg path {
  stroke: var(--color-white);
}

.list-view-product-card .product-card-actions .btn-wishlist.added {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
  background: transparent;
}

.list-view-product-card .product-card-actions .btn-wishlist.added svg path {
  stroke: unset;
  fill: var(--color-primary);
}

.list-view-product-card .product-card-actions .btn-wishlist svg path {
  stroke-width: 2.2;
}

.list-view-product-card:hover .product-card-actions .btn-compare,
.list-view-product-card:hover .product-card-actions .btn-wishlist {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}

.list-view-product-card:hover .product-card-actions .btn-compare.added,
.list-view-product-card:hover .product-card-actions .btn-wishlist.added {
  background: var(--color-primary);
}

.list-view-product-card:hover .product-card-actions .btn-compare.added svg path,
.list-view-product-card:hover .product-card-actions .btn-wishlist.added svg path {
  stroke: var(--color-white) !important;
}

.list-view-product-card:hover .product-card-actions .btn-wishlist.added {
  background: var(--color-primary);
}

.list-view-product-card:hover .product-card-actions .btn-wishlist.added svg path {
  fill: var(--color-white) !important;
}

.list-view-product-card .product-image {
  position: relative;
  width: 170px;
  padding-bottom: 100%;
  transition: var(--transition-150);
}

.list-view-product-card .product-image .image-placeholder {
  height: 85px;
  width: 85px;
}

@media screen and (max-width: 1300px) {
  .list-view-products-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .list-view-product-card {
    flex-direction: column;
  }

  .list-view-product-card .product-card-left {
    width: 100%;
    margin-bottom: 20px;
  }

  .list-view-product-card .product-card-left .product-image {
    width: 100%;
  }

  .ltr .list-view-product-card .product-card-right {
    margin-left: 0;
    padding-left: 0;
  }

  .rtl .list-view-product-card .product-card-right {
    margin-right: 0;
    padding-right: 0;
  }

  [dir] .list-view-product-card .product-card-right {
    padding: 0;
  }
}