@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
::after,
::before {
  box-sizing: border-box;
}

:root {
  --MaterialSymbols: 'Material Symbols Outlined';
  --base-font-family: 'Poppins', sans-serif;
  --base-font-weight: 400;
  --base-font-size: 12px;
  --base-font-color: #868686;
  --base-font-grey-light-color: #868686;
  --base-font-grey-dark-color: #2c2c2c;
  --base-line-height: 20px;
  --base-bg-color: #f6f6f6;
  --width-xsmall: 100vw;
  --width-small: 750px;
  --width-medium: 970px;
  --width-large: 1170px;
  --margin-auto: auto;
  --transition: all 750ms;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--base-font-family);
  font-weight: var(--base-font-weight);
  font-size: var(--base-font-size);
  color: var(--base-font-color);
  line-height: var(--base-line-height);
  background: var(--base-bg-color);
  width: 100%;
  /* overflow: hidden; */
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

header {
}

main {
  display: grid;
}

.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-container .tooltip-text {
  visibility: hidden;
  width: 240px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -120px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip-container .tooltip-text::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.info-icon svg {
  width: 16px;
  height: 16px;
  fill: #007bff;
}

.info-icon {
  display: inline-flex;
  align-items: center;
}

.wrap {
  display: grid;
  padding: 0 16px;
  margin: 0 auto;
  max-width: var(--width-xsmall);
}

.account-order-info {
  min-height: 458px;
}

.breadcrumb {
  order: 1;
  margin: 0 0 10px;
  padding: 0 0;
  /* border: 1px solid #ddd; */
  display: none;
}

.breadcrumb .wrap {
}

.breadcrumb ul {
}

.breadcrumb i {
  font-size: 15px;
}

.breadcrumb ul li {
  text-shadow: 0 1px 0 #fff;
  padding: 0 5px;
  position: relative;
  white-space: nowrap;
  display: inline-block;
}

.breadcrumb ul li:first-child {
  padding-left: 0;
}

.breadcrumb ul li:nth-child(2) {
  display: none;
}

.breadcrumb ul li + li:before {
  content: '';
  padding: 0;
}

.breadcrumb ul li:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: -5px;
  width: 6px;
  height: 6px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg) translate(0%, -50%);
  -webkit-transform: rotate(-45deg) translate(0%, -50%);
  -moz-transform: rotate(-45deg) translate(0%, -50%);
  -ms-transform: rotate(-45deg) translate(0%, -50%);
  -o-transform: rotate(-45deg) translate(0%, -50%);
}

.breadcrumb ul li > a {
  font: normal normal 600 11px/18px Montserrat;
  letter-spacing: 0px;
  color: #334755;
}

.breadcrumb ul li:last-child:after {
  display: none;
}

.breadcrumb ul li:last-child > a {
  font-weight: 700;
}

.title {
  order: 2;
  margin: 0 0 10px;
}

.title .wrap {
  padding: 0;
}

.title h1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 0 0px;
  padding: 0 10px;
  background: #ffffff;

  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.14px;
  color: #263237;
  height: 40px;
}

.title h1 > a {
  position: relative;
}

.title h1 > a.back_arrow_icon {
}

.title h1 > a.back_arrow_icon:before {
  position: relative;
  left: -7px;
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  border-right: 3px solid #334755;
  border-bottom: 3px solid #334755;
  transform: rotate(133deg) translate(-50%, -50%);
  -webkit-transform: rotate(133deg) translate(-50%, -50%);
  -moz-transform: rotate(133deg) translate(-50%, -50%);
  -ms-transform: rotate(133deg) translate(-50%, -50%);
  -o-transform: rotate(133deg) translate(-50%, -50%);
}

.title h1 > a.back_arrow_icon:after {
  content: '';
  width: 16px;
  height: 2px;
  background: #334755;
  position: absolute;
  top: 5px;
  left: 3px;
}

.title h1 > a.filter_icon {
  visibility: hidden;
}

.info {
  order: 3;
}

.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 4;
  min-height: 390px;
  margin: 0 0 16px;
  background: #ffffff;
}

.card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 16px;
  margin: 0 0 16px;
  border-radius: 16px;
}

.card h2 {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #2c2c2c;
  margin: 0 0 5px;
  display: block;
}

.card p {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #8d8d8d;
  margin: 0 0 6px;
}

.card ul {
}

.card ul li {
  display: grid;
  gap: 5px 0px;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  margin: 0 0 8px;
  padding: 0 0 8px;
  border-bottom: dashed 1px #eaeaea;
}

.card ul li span {
  font-size: 12px;
  font-weight: 500;
  color: var(--base-font-grey-light-color);
  line-height: normal;
}

.card ul li strong {
  font-size: 12px;
  font-weight: 500;
  color: var(--base-font-grey-dark-color);
  line-height: normal;
  white-space: nowrap;
  text-align: right;
}

.card ul li:last-child {
/*  margin: 0;
  padding: 0;
  border: 0;*/
}

.card:last-child {
}

/*Order Info Page Start*/
.order-card {
  order: 4;
}

.order-card .wrap {
}

.order-card:last-child {
}

.summary-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #eaeaea;
  padding: 0 0 8px;
  margin: 0 0 8px;
}

.order-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.order-id {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #2c2c2c;
}

.order-id > strong {
  font-weight: 500;
  letter-spacing: 0.14px;
}

.order-summary > span {
  font-weight: 600;
  font-size: 11px;
  line-height: 17px;
}

.order-summary span:first-child {
  color: #8e8e8e;
  font-weight: 500;
  font-size: 12px;
}

.order-summary span:last-child {
  color: #263237;
}

.product-wrap {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.product-wrap .product {
  display: flex;
  align-items: flex-start;
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: dashed 1px #eaeaea;
}

.product-img {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  position: relative;
  max-width: 80px;
  min-width: 80px;
  max-height: 80px;
}

.product-img > img {
}

.product-img > label {
  font-weight: 600;
  font-size: 11px;
  line-height: 16px;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  text-align: center;
  background: #f7736a;
  color: #ffffff;
  margin: 0;
  padding: 2px 3px;
  border-radius: 0 0 4px 4px;
}

.product-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px 0 16px;
}

.product-details h2 {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #2c2c2c;
  margin: 0 0 5px;

  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-details > span {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #575757;
  margin: 0 0 5px;
  display: block;
}

.product-details .price-wrap {
  margin: 0 0 5px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 5px;
}

.product-details .price-wrap .price-new {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #575757;
}

.product-details .price-wrap .price-old {
  font-weight: 500;
  font-size: 11px;
  line-height: 17px;
  color: #8e8e8e;
  text-decoration: line-through;
}

.product-details .price-wrap .price-off {
  font-weight: 700;
  font-size: 11px;
  line-height: 17px;
  color: #00b899;
  grid-column: span 2;
  display: none;
}

.product-order-status {
  display: flex;
  gap: 0 5px;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 0 5px;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #575757;
}

.product-order-status > span {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #8d8d8d;
}

.payment-method {
  display: flex;
  gap: 0 5px;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 0 5px;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #575757;
}

.payment-method > span {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #8d8d8d;
}

.product:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

.expected-delivery {
  display: flex;
  gap: 0 5px;
  font-weight: 400;
  font-size: 10px;
  line-height: normal;
  color: #003046;
  margin: 0 0 5px;
  white-space: nowrap;
  align-items: center;
}

.order-cancel-card {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 5px;
  align-items: center;
  margin: 0 0 0px;
}

.order-cancel-card .order-cancel {
  min-width: 78px;
  background: transparent;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #8e8e8e;
  padding: 0;
  border: 0;
  border-bottom: solid 1px #8e8e8e;
  text-shadow: none;
  box-shadow: none;
  border-radius: 0;
}

.order-cancel-card .order-cancel:hover {
  border: 0;
  color: #000000;
  border-bottom: solid 1px #000000;
}

.order-cancel-card p{
  margin: 0;
}

.track-your-order {
  display: flex;
  justify-content: center;
  margin: 0 0 25px;
}

.track-your-order > a {
  display: inline-flex;
  gap: 0 5px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  color: #1a78e9;
  padding: 2px 18px;
  border: solid 1px;
  border-radius: 20px;
}

.address-card {
  order: 5;
}

.address-card h2 {
}

.address-card p {
  display: flex;
  flex-direction: column;
}

.address-card p strong {
  font-weight: 500;
}

.address-card p a {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: #8d8d8d;
}

.address-card p span {
}

.order-summary-card {
  order: 6;
}

.order-summary-card h2 {
  margin: 0 0 8px;
}

.order-summary-card ul {
  display: flex;
  flex-direction: column;
}

.order-summary-card ul li {
}

.order-summary-card ul li.discount {
  order: 2;
}

.order-summary-card ul li.sub-total {
  order: 0;
}

.order-summary-card ul li.flat-shipping-rate {
  order: 1;
}

.order-summary-card ul li.coupon {
  order: 1;
}

.order-summary-card ul li.total {
  order: 3;
  margin: 0;
  padding: 0;
  border: 0;
}

.order-summary-card ul li.total span, .order-summary-card ul li.total strong {
  font-weight: 600;
}

.order-summary-card ul li span {
}

.order-summary-card ul li span a {
}

.order-summary-card ul li strong {
}

.order-summary-card ul li strong i {
  font-size: 12px;
}

.order-summary-card ul li.flat-shipping-rate > span {
  color: #868686;
}

.order-summary-card ul li.flat-shipping-rate > strong {
  color: #00b899;
}

.order-summary-card ul li:last-child {
}

.order-summary-card ul li:last-child span {
/*  font-weight: 600;*/
}

.order-summary-card ul li:last-child strong {
  /*font-weight: 600;*/
}

.order-history-card {
  order: 7;
}

.order-history-card h2 {
}

.order-history-card ul {
}

.order-history-card ul li {
}

.order-history-card ul li span {
}

.order-history-card ul li strong {
}

.order-history-card ul li:last-child {
}

.order-history-card ul:last-child {
}

.guarantees-card {
  order: 8;
}
.guarantees-card .wrap {
}
.guarantees-card .card {
  display: grid;
  gap: 0px 10px;
  grid-template-columns: 1fr 1fr 1fr;
  background: #f4fffd;
}

.guarantees-card .card div:first-child {
  border-left: solid 0px #00b899;
}

.guarantees-card .card div {
  display: grid;
  gap: 2px 5px;
  grid-template-rows: auto auto auto;
  justify-items: center;
  align-content: center;
  border-left: solid 1px #00b899;
}

.guarantees-card .card div > img {
}

.guarantees-card .card div > span,
.guarantees-card .card div > strong {
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: #2f2f2f;
}

.guarantees-card .card div > strong {
  font-weight: 600;
  color: #00b899;
}

.guarantees-card .card div > a {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: #8d8d8d;
}

.order-refund-card {
  order: 7;
}
/*Order Info Page End*/

/*Success Page Start*/
.checkout_success_new {
  display: grid;
  justify-content: center;
}

.checkout_success_new > div {
  grid-column: span 8;
  display: grid;
  justify-content: start;
  justify-items: start;
  align-items: center;
  grid-template-columns: min-content;
  padding: 16px 0;
  margin: 0 0 16px;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 6px;
}

.checkout_success_new > div h2 {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #013046;
  padding: 0 16px 10px;
  margin: 0 0 16px;
  border-bottom: solid 1px #e5e5e5;
}

.checkout_success_new .order-placed-card {
  justify-content: unset;
  justify-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 24px;
}

.checkout_success_new .order-placed-card img {
  grid-column: span 5;
  max-width: 92px;
}

.checkout_success_new .order-placed-card h2 {
  grid-column: span 5;
  font-size: 26px;
  font-weight: 500;
  line-height: 40px;
  color: #515c6f;
  padding: 0;
  margin: 0;
  border: 0;
}

.checkout_success_new .order-placed-card h3 {
  grid-column: span 5;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #515c6f;
  padding: 0;
  margin: 0 0 8px;
  border-top: 0;
  text-align: center;
}

.checkout_success_new .order-placed-card h4 {
  grid-column: span 5;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #515c6f;
  padding: 0;
  margin: 0;
  border-top: 0;
  text-align: center;
}

.checkout_success_new .order-placed-card h3 span {
  display: block;
}

.checkout_success_new .tracking-info-card {
  justify-content: unset;
  justify-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 24px;
}

.checkout_success_new .tracking-info-card h2 {
  grid-column: span 5;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: #515c6f;
  padding: 0;
  margin: 0 0 8px;
  border: 0;
}

.checkout_success_new .tracking-info-card .tracking-progress {
  grid-column: span 5;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  counter-reset: item;
  width: 100%;
}

.checkout_success_new .tracking-info-card .progress-step::before {
  font-weight: 500;
  font-style: italic;
  font-size: 10px;
  line-height: 16px;
  color: #3b3b3b;
  position: absolute;
  left: 0;
  top: 0;
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
}

.checkout_success_new .tracking-info-card .progress-step:nth-child(1):before {
  left: 15px;
}
.checkout_success_new .tracking-info-card .progress-step:nth-child(2):before {
  left: 8px;
}
.checkout_success_new .tracking-info-card .progress-step:nth-child(3):before {
  left: 0;
}

.checkout_success_new .tracking-info-card .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.checkout_success_new .tracking-info-card .progress-img {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  height: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.checkout_success_new .tracking-info-card .progress-img > img {
  max-width: 50px;
}

.checkout_success_new .tracking-info-card .progress-step:nth-child(-n + 2) .progress-img::after {
  width: 20px;
  height: 20px;
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translate(0%, -50%);
  background: url('../image/tracking-arrow.svg') center center no-repeat;
}

.checkout_success_new .tracking-info-card .progress-step-text {
  font-weight: 500;
  font-size: 10px;
  line-height: 14px;
  color: #3b3b3b;
  margin-bottom: 10px;
}

.checkout_success_new .tracking-info-card .progress-step-text > span {
  display: block;
}

.checkout_success_new .tracking-info-card .progress-step-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.checkout_success_new .tracking-info-card .progress-step-icon.active {
  background-color: #4caf50;
  color: white;
}

.checkout_success_new .tracking-info-card .progress-step-icon.active::before {
  content: '';
  width: 24px;
  height: 24px;
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url('../image/tick-step.svg') center center no-repeat;
}

.checkout_success_new .customer-support-card {
  justify-content: unset;
  justify-items: center;
  border: 0;
  background: #2f2f2f;
  padding: 2px;
  margin: 0 0 24px;
  border-radius: 16px;
}

.checkout_success_new .customer-support-card h2 {
  grid-column: span 5;
  font-size: 14px;
  font-weight: 500;
  line-height: 15px;
  color: #ffffff;
  padding: 10px 0;
  margin: 0;
  border: 0;
}

.checkout_success_new .customer-support-card .customer-support {
  grid-column: span 5;
  display: grid;
  gap: 0px 10px;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  padding: 16px;
  counter-reset: item;
  border-radius: 15px;
}

.checkout_success_new .customer-support-card .customer-support > div {
  display: grid;
  gap: 2px 5px;
  grid-template-columns: auto 1fr;
}

.checkout_success_new .customer-support-card .customer-support > div > img {
  grid-row: span 2;
}

.checkout_success_new .customer-support-card .customer-support > div > strong {
  font-size: 12px;
  font-weight: 600;
  line-height: 13px;
  color: #2f2f2f;
}

.checkout_success_new .customer-support-card .customer-support > div > a {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: #8d8d8d;
}

.checkout_success_new .customer-support-card .customer-support > div > a:hover {
  color: #2f2f2f;
}

.checkout_success_new .customer-support-card .customer-support > div:last-child {
  border-left: solid 1px #e0e0e0;
  padding-left: 10px;
}

.checkout_success_new .whatsapp-card {
  display: flex;
  gap: 0 4px;
  justify-content: center;
  justify-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 24px;
}

.checkout_success_new .whatsapp-card > img {
}

.checkout_success_new .whatsapp-card > strong {
  font-size: 12px;
  font-weight: 600;
  line-height: 13px;
  color: #2f2f2f;
}

.checkout_success_new .whatsapp-card > a {
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  color: #8d8d8d;
}

.checkout_success_new .whatsapp-card > a:hover {
  color: #2f2f2f;
}

.checkout_success_new .buttons-card {
  display: flex;
  gap: 0 4px;
  justify-content: center;
  justify-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 24px;
}

.checkout_success_new .buttons-card > a {
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  color: #2f2f2f;;
  padding: 7px 20px;
  border: solid 1px #2f2f2f;
  border-radius: 20px;
}

.checkout_success_new .buttons-card > a:hover {
  background: #2f2f2f;
  color: #ffffff;
}

.checkout_success_new .buttons-card .view-order {

}

.checkout_success_new .buttons-card .view-order:hover {

}

.checkout_success_new .buttons-card .continue-shopping {
}

.checkout_success_new .buttons-card .continue-shopping:hover {

}

.checkout_success_new .thank-you-card {
  justify-content: unset;
  justify-items: unset;
}

.checkout_success_new .thank-you-card img {
  grid-column: span 1;
  max-width: 50px;
  margin: 0 16px;
}

.checkout_success_new .thank-you-card h2 {
  grid-column: span 4;
  font-size: 22px;
  font-weight: 700;
  line-height: 27px;
  color: #013046;
  padding: 0 16px 0 0;
  margin: 0 0 0px;
  border: 0;
}

.checkout_success_new .thank-you-card h3 {
  grid-column: span 5;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: #000000;
  padding: 10px 16px 0;
  margin: 10px 0;
  border-top: solid 1px #e5e5e5;
}

.checkout_success_new .thank-you-card p {
  grid-column: span 5;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  color: #013046;
  padding: 0 16px;
  margin: 0 0 0px;
}

.checkout_success_new .thank-you-card p strong {
}

.checkout_success_new .thank-you-card address {
  grid-column: span 5;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  color: #013046;
  padding: 10px 0px 0;
  margin: 10px 16px 0px;
  border-top: solid 1px #e5e5e5;
}

.checkout_success_new .order-tracking-card {
  grid-template-columns: repeat(1, 0fr 1fr 0fr);
}

.checkout_success_new .order-tracking-card img {
  grid-row: span 2;
  grid-column: span 1;
  max-width: 60px;
  margin: 0 16px;
}

.checkout_success_new .order-tracking-card a {
  grid-column: span 2;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: #013046;
  padding: 6px 16px;
  margin: 0 16px 8px 0;
  border: solid 1px #112f44;
  background: #ffffff;
  border-radius: 20px;
}

.checkout_success_new .order-tracking-card a:hover {
  background: #013046;
  color: #ffffff;
}

.checkout_success_new .order-tracking-card a i {
  font-size: 22px;
  font-weight: 700;
  line-height: 19px;
  margin-left: 10px;
}

.checkout_success_new .order-tracking-card p {
  grid-column: span 2;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #013046;
  padding: 0 16px 0 0;
  margin: 0 0 0px;
}

.checkout_success_new .thank-you-msg-card {
  padding: 0;
  border: 0;
  background: transparent;
}

.checkout_success_new .thank-you-msg-card p {
  grid-column: span 3;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  color: #013046;
  text-align: center;
  padding: 0 16px;
  margin: 0 0 0px;
}

.checkout_success_new .order_summery_card {
  justify-content: space-between;
  justify-items: inherit;
}

.checkout_success_new .order_summery_card .sort_order_summery {
  grid-column: span 5;
  display: grid;
  grid-template-columns: 50px repeat(1, 1fr 1fr 0fr) 30px;
  gap: 0px 10px;
  position: relative;
  cursor: pointer;
}

.checkout_success_new .order_summery_card .sort_order_summery img {
  grid-row: span 2;
  grid-column: span 1;
  max-width: 30px;
  margin: 0 0px 0 10px;
}

.checkout_success_new .order_summery_card .sort_order_summery .order_summery_item_count {
  grid-row: span 2;
  grid-column: span 1;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  color: #013046;
  width: 100px;
}

.checkout_success_new .order_summery_card .sort_order_summery .order_summery_item_mrp {
  grid-column: span 2;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  color: #646464;
  text-align: right;
  margin: 0px 0 0 0px;
}

.checkout_success_new .order_summery_card .sort_order_summery .order_summery_item_sp {
  grid-column: span 2;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: #112f44;
  text-align: right;
  margin: 0px 0 0 0px;
}

.checkout_success_new .order_summery_card .sort_order_summery .fa-angle-down {
  grid-row: span 2;
  grid-column: span 1;
  font-size: 22px;
  font-weight: 700;
  line-height: 20px;
  color: #334755;
  margin: 0px 10px 0 0px;
  position: absolute;
  right: 0;
}

.checkout_success_new .order_summery_card .detailed_order_summery {
  grid-column: span 5;
  display: flex;
  flex-wrap: wrap;
  padding: 16px 16px 0;
}

.checkout_success_new .order_summery_card .detailed_order_summery .item_wrap {
  grid-column: span 5;
  margin: 0 0 16px;
  width: 100%;
  max-height: 240px;
  overflow: auto;
}

.checkout_success_new .order_summery_card .detailed_order_summery .item {
  display: flex;
  align-items: flex-start;
  margin: 0 0px 16px;
  padding: 0 0 16px;
  border-bottom: solid 1px #d6d6d6;
  position: relative;
}

.checkout_success_new .order_summery_card .detailed_order_summery .item_picture {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  position: relative;
  max-width: 50px;
}

.checkout_success_new .order_summery_card .detailed_order_summery .item_picture img {
}

.checkout_success_new .order_summery_card .detailed_order_summery .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.checkout_success_new .order_summery_card .detailed_order_summery .item_details {
  padding: 0 16px 0 16px;
  max-width: calc(100vw - 170px);
}

.checkout_success_new .order_summery_card .detailed_order_summery .item_details > *:last-child {
  margin-bottom: 0 !important;
}

.checkout_success_new .order_summery_card .detailed_order_summery .item_details h2 {
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  color: #013046;
  padding: 0;
  margin: 0 0 4px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  border: 0;
}

.checkout_success_new .order_summery_card .detailed_order_summery .item_details .price_wrap {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
  color: #334755;
}

.checkout_success_new .order_summery_card .detailed_order_summery .item_details .price_wrap > span {
  margin: 0 0 0 5px;
}

.checkout_success_new .order_summery_card .detailed_order_summery .item_details .price_wrap > span:first-child {
  margin: 0;
}

.checkout_success_new .order_summery_card .detailed_order_summery .item_details .price_wrap .price_new {
}

.checkout_success_new .order_summery_card .detailed_order_summery .item_details .price_wrap .price_old {
  font-weight: 500;
}

.checkout_success_new .order_summery_card .detailed_order_summery .item_qty_total {
  position: absolute;
  right: 10px;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  color: #334755;
}

.checkout_success_new .order_summery_card .detailed_order_summery .payment_summary {
  grid-column: span 5;
  width: 100%;
}

.checkout_success_new .order_summery_card .detailed_order_summery .payment_summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout_success_new .order_summery_card .detailed_order_summery .payment_summary ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout_success_new .order_summery_card .detailed_order_summery .payment_summary ul li span {
  font-size: 12px;
  font-weight: 600;
  color: #334755;
}

.checkout_success_new .order_summery_card .detailed_order_summery .payment_summary ul li strong {
  font-size: 12px;
  font-weight: 700;
  line-height: 19px;
  color: #334755;
}

.checkout_success_new .order_summery_card .detailed_order_summery .payment_summary ul li strong i {
  font-size: 12px;
}

.checkout_success_new .order_summery_card .detailed_order_summery .payment_summary ul li .coupon_discount {
}

.checkout_success_new .order_summery_card .detailed_order_summery .payment_summary ul li .shipping_fees {
}

.checkout_success_new .order_summery_card .detailed_order_summery .payment_summary ul li:last-child {
  margin: 8px 0 0;
  padding: 8px 0 0;
  border-top: solid 1px #d6d6d6;
}

.checkout_success_new .order_summery_card .detailed_order_summery .payment_summary ul li:last-child span {
}

.checkout_success_new .order_summery_card .detailed_order_summery .payment_summary ul li:last-child strong {
}

.checkout_success_new .reward-points-card {
  background: #00b899;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.checkout_success_new .reward-points-card > img {
  max-width: 30px;
}

.checkout_success_new .reward-points-card > p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  line-height: normal;
  max-width: 230px;
}

.checkout_success_new .reward-points-card > p > span {
  color: #fec53a;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
}

.checkout_success_new .payment-method-card {
  justify-content: space-between;
  justify-items: inherit;
}

.checkout_success_new .payment-method-card h2 {
  grid-column: span 2;
}

.checkout_success_new .payment-method-card p {
  grid-column: span 2;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #013046;
  padding: 0 16px;
  margin: 0 0 0px;
}

.checkout_success_new .payment-method-card strong {
  grid-column: span 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: #112f44;
  padding: 0px 16px;
  margin: 0 0 0;
  white-space: nowrap;
}

.checkout_success_new .payment-method-card a {
  grid-column: span 1;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  color: #ffffff;
  padding: 6px 16px;
  margin: 0 16px;
  background: #60d272;
  border-radius: 14px;
}

.checkout_success_new .payment-method-card a:hover {
  background: #013046;
  color: #ffffff;
}

.checkout_success_new .shipping-address-card {
  justify-items: inherit;
}

.checkout_success_new .shipping-address-card h2 {
  grid-column: span 3;
}

.checkout_success_new .shipping-address-card strong {
  grid-column: span 3;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: #112f44;
  padding: 0px 16px;
  margin: 0 0 0;
}

.checkout_success_new .shipping-address-card p {
  grid-column: span 3;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  color: #013046;
  padding: 0 16px;
  margin: 0 0 0px;
}

.checkout_success_new .billing-address-card {
  justify-items: inherit;
}

.checkout_success_new .billing-address-card h2 {
  grid-column: span 3;
}

.checkout_success_new .billing-address-card strong {
  grid-column: span 3;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: #112f44;
  padding: 0px 16px;
  margin: 0 0 0;
}

.checkout_success_new .billing-address-card p {
  grid-column: span 3;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  color: #013046;
  padding: 0 16px;
  margin: 0 0 0px;
}

.checkout_success_new .continue_shopping {
  grid-column: span 8;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: #013046;
  padding: 16px;
  margin: 0 0 16px;
  background: #f7b801;
  display: flex;
  justify-content: center;
  border-radius: 6px;
}

.checkout_success_new .continue_shopping:hover {
  background: #013046;
  color: #ffffff;
}
/*Success Page End*/

.exp-by-dpanda {
  order: 8;
}

.exp-by-dpanda .card {
  font-weight: 600;
  font-size: 14px;
  color: #003046;
  line-height: 20px;
  background: #e2e2e2;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.exp-by-dpanda img {
  max-width: 110px;
}

.pagination {
  order: 9;
  margin: 0 0 16px;
  background: #ffffff;
  border-radius: 0;
}

.pagination .wrap{
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.pagination .page{}
.pagination .result{}

/*Responsive*/
@media (min-width: 992px) {
  main {
    margin: 0 auto;
    padding: 0 15px;
    max-width: var(--width-medium);
    gap: 0 16px;
    grid-template-columns: repeat(2, calc(10% - 8px) calc(40% - 16px));
  }

  .breadcrumb,
  .title,
  .info,
  .empty, 
  .exp-by-dpanda, 
  .pagination {
    grid-column: span 4;
  }

  .order-card .wrap,
  .address-card .wrap,
  .order-summary-card .wrap,
  .order-reward-cashback-card .wrap,
  .order-history-card .wrap,
  .order-refund-card .wrap,
  .order-comment-card .wrap,
  .guarantees-card .wrap,
  .exp-by-dpanda .wrap {
    padding: 0;
  }

  .breadcrumb {
    display: inline;
    margin-top: 10px;
  }

  .breadcrumb .wrap {
    margin: 0;
    padding: 0;
  }

  .title {
  }

  .title h1 {
    display: flex;
    justify-content: flex-start;
    margin: 0 0 0px;
    padding: 0px;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #000000;
    background: transparent;
  }

  .title .wrap {
    margin: 0;
  }
  .title h1 > a.back_arrow_icon {
    display: none;
  }

  .order-card {
    grid-column: span 3;
    grid-row: span 10;
  }

  .order-card .wrap {
    height: 100%;
  }

  .order-history-card {
    grid-column: span 3;
  }

  .order-refund-card {
    grid-column: span 3;
  }
}

@media (min-width: 1200px) {
  main {
    max-width: var(--width-large);
  }
}
