:root {
  /* color */
  --clr_white: #ffffff;
  --clr_black: #000000;
  --clr_black_01: #333333;

  --clr_light_grey_00: #ebebeb;
  --clr_light_grey_01: #d5d5d5;
  --clr_light_grey_02: #ededed;
  --clr_light_grey_03: #e6edf0;
  --clr_light_grey_04: #d9e1e4;
  --clr_light_grey_05: #9dabb0;
  --clr_light_grey_06: #606369;
  --clr_light_grey_07: #d9e0e1;
  --clr_light_grey_08: #f8f8f8;
  --clr_light_grey_09: #8e97a4;

  --clr_dark_grey_01: #6a6a6a;
  --clr_dark_grey_02: #3e4954;
  --clr_bg_light_01: #f9fafb;
  --clr_brown_01: #b2794d;
  --clr_dark_00: #2d2b34;
  --clr_dark_01: #191d28;

  --clr_border_01: #d0dbec;
  --clr_border_02: #e4dbeb;
  --clr_border_03: #c2c2c2;

  /* font-weight */
  --fn_regular: 400;
  --fn_medium: 500;
  --fn_semiBold: 600;
  --fn_bold: 700;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100svw;
  width: 100%;
  background: #f1f1f1;
  scroll-behavior: smooth;
  font-family: "Inter", serif;
}
a {
  text-decoration: none;
}
.padding-block {
  padding-block: clamp(50px, 8vw, 80px);
}
.button-brown {
  width: 100%;
  gap: 20px;
  min-height: 60px;
  color: var(--clr_white);
  font-size: 17px;
  line-height: 34px;
  font-weight: var(--fn_medium);
  background: var(--clr_brown_01);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 18px;
  cursor: pointer;
}
.button-brown:hover {
  background-color: transparent;
  color: var(--clr_brown_01);
  border: 1px solid var(--clr_brown_01);
}
.button-grey-outline {
  width: 100%;
  gap: 20px;
  min-height: 60px;
  color: var(--clr_black_01);
  font-size: 17px;
  line-height: 34px;
  font-weight: var(--fn_medium);
  background: transparent;
  border: 1px solid var(--clr_border_03);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 18px;
  cursor: pointer;
}
.button-grey-outline:hover {
  color: var(--clr_border_03);
  border: 1px solid var(--clr_border_03);
}
.header-panel {
  gap: 115px;
}
.cart-path a,
.cart-path span {
  color: var(--clr_dark_00);
  font-size: 14px;
  line-height: 40px;
  font-weight: var(--fn_regular);
}
.order-process {
  gap: 80px;
}
.order-process .step-process {
  position: relative;
  padding-inline: 10px;
}
.order-process .step-process::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 1px;
  background: var(--clr_light_grey_01);
  left: 100%;
  top: 50%;
}
.order-process .step-process:last-child::before {
  display: none;
}
.order-process .step-process.selected {
  color: var(--clr_white);
}
.order-process .step-process.selected .step-no {
  background-color: var(--clr_brown_01);
}
.order-process .step-process.selected .step-title {
  color: var(--clr_brown_01);
}
.order-process .step-process .step-no {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 13px;
  line-height: 19px;
  font-weight: var(--fn_medium);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr_light_grey_00);
}
.order-process .step-process .step-title {
  color: var(--clr_dark_grey_01);
  font-size: 14px;
  line-height: 20px;
  font-weight: var(--fn_medium);
}
.details-table {
  gap: 20px;
}
.details-table-left {
  width: calc(100% - 363px);
  background-color: var(--clr_white);
  border-radius: 20px;
  padding: 26px;
}
table,
tr,
th,
td {
  border: none;
}
.table tbody tr td {
  padding-block: 10px;
}
.table-hover > tbody > tr:hover > * {
  background: none;
  --bs-table-bg-state: transparent !important;
}
.details-table-left table th {
  color: var(--clr_dark_01);
  font-size: 18px;
  line-height: 34px;
  font-weight: var(--fn_bold);
  border-bottom: 1px solid var(--clr_light_grey_02) !important;
}
.trash {
  font-size: 28px;
  color: #d0d9dc;
  cursor: pointer;
}
.trash:hover {
  color: hsl(var(--text_danger));
}
.img-box {
  border: 1px solid var(--clr_light_grey_03);
  border-radius: 10px;
  width: 69px;
  height: 69px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
td:nth-child(1) {
  color: var(--clr_dark_00);
}
.product-title {
  font-family: "DM Serif Text", serif;
}
.qty-no {
  border: 1px solid var(--clr_light_grey_04);
  border-radius: 8px;
  padding: 2px 8px;
  font-size: 15px;
  line-height: 30px;
  font-weight: var(--fn_semiBold);
  color: var(--clr_black);
  min-width: 91px;
  width: max-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.qty-no span {
  color: var(--clr_light_grey_05);
  font-size: 22px;
  line-height: 30px;
  font-weight: var(--fn_regular);
  cursor: pointer;
}
.qty-no span:hover {
  color: var(--clr_brown_01);
}
.details-table-right {
  background-color: var(--clr_white);
  border-radius: 20px;
  padding: 26px;
  width: 343px;
}
.details-table-right .title {
  color: var(--clr_dark_01);
  font-weight: var(--fn_bold);
  font-size: 18px;
  line-height: 34px;
}
.details_car_sum ul li span {
  color: var(--clr_light_grey_06);
  font-weight: var(--fn_regular);
  font-size: 17px;
  line-height: 34px;
}
.details_car_sum ul li span.text-price {
  color: var(--clr_black);
}
.details_car_sum ul li.total {
  padding-block: 16px;
  border-top: 1px solid var(--clr_light_grey_07);
}
.details_car_sum ul li span.bold {
  font-weight: var(--fn_bold);
  color: var(--clr_black);
}
.left-panel {
  max-width: 560px;
  width: 100%;
}
.right-panel {
  flex: 1;
  width: 100%;
}
.left-panel h3,
.right-panel h3 {
  color: var(--clr_dark_01);
  font-size: 20px;
  line-height: 34px;
  font-weight: var(--fn_bold);
}
.left-panel .details-table-left {
  width: 100%;
  margin-block-start: 14px;
}
.prd-price {
  font-weight: var(--fn_regular);
  font-size: 17px;
  line-height: 34px;
  color: var(--clr_dark_01);
}

.prod-title h3 {
  font-size: 19px;
  line-height: 1.2;
  font-weight: var(--fn_regular);
  color: var(--clr_dark_00);
  font-family: "DM Serif Text", serif;
}
.right-panel .details-table-right {
  padding: 10px;
  width: 100%;
}
.details-table-right .title {
  color: var(--clr_dark_01);
  font-weight: var(--fn_semiBold);
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  margin-block-end: 24px;
}
.details_car_sum {
  background: var(--clr_light_grey_08);
  padding: 12px;
  border-radius: 10px;
}
.right-panel .details-table-right .upper-block {
  padding: 10px 30px;
}
.pov-text span {
  color: var(--clr_light_grey_06);
  font-weight: var(--fn_regular);
  font-size: 14px;
  line-height: 30px;
}
.form-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.form-data {
  width: calc(50% - 10px);
}
.form-data.number-field {
  width: 100%;
}
.form-label {
  font-weight: var(--fn_semiBold);
  font-size: 14px;
  line-height: 25px;
  color: var(--clr_dark_grey_02);
}
.form-control {
  border: 0.82px solid var(--clr_border_01);
  border-radius: 8px;
  background-color: var(--clr_bg_light_01);
  height: 47px;
  font-size: 12px;
  line-height: 14px;
  font-weight: var(--fn_medium);
}
.form-control::placeholder {
  color: var(--clr_light_grey_09);
}
.thank-page {
  margin: 0 auto;
  /* height: 100vh; */
  margin-block-start: 160px;
}
.thank-page .details-table {
  border: 1px solid var(--clr_border_02);
  border-radius: 50px;
  background: var(--clr_white);
  padding: 80px 50px 60px;
  max-width: 880px;
  margin: 0 auto;
}
.thank-page .details-table .title {
  color: var(--clr_dark_01);
  font-weight: var(--fn_semiBold);
  font-size: 32px;
  line-height: 38px;
  text-align: center;
}
.thank-page .details-table .para {
  color: var(--clr_light_grey_06);
  font-size: 17px;
  line-height: 28px;
  font-weight: var(--fn_regular);
  text-align: center;
  margin-inline: auto;
  margin-block: 20px;
  max-width: 741px;
}
.btn-set .btn {
  max-width: 217px;
  margin-block-start: 20px;
}

.pulsating-circle {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 46px;
  height: 46px;
  z-index: 1;
}
.pulsating-circle::before {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 100px;
  box-sizing: border-box;
  border-radius: 50%;
  background-color: var(--clr_brown_01);
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  z-index: 0;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 1023px) {
  .header-panel {
    gap: 20px;
    flex-direction: column;
  }
  .order-process .step-process.selected:first-child {
    padding-inline-start: 0;
  }
  .order-process {
    gap: 40px;
  }
  .order-process .step-process::before {
    width: 40px;
  }
  .left-panel {
    max-width: 100%;
    width: 100%;
  }
  .details-table {
    flex-direction: column;
  }
  .right-panel {
    flex: 1;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .details-table {
    flex-direction: column;
  }
  .details-table-left {
    width: 100%;
  }
  .details-table-right {
    width: 100%;
  }
  .details_car_sum {
    grid-template-columns: 1fr;
  }
  .order-process {
    gap: 20px;
  }
  .order-process .step-process::before {
    width: 20px;
  }
}

@media (max-width: 575px) {
  .order-process {
    flex-wrap: wrap;
  }
  .order-process .step-process::before {
    display: none;
  }
  .order-process .step-process {
    padding: 0;
  }
  .details-table-left > div {
    flex-wrap: wrap;
  }
  .details-table-left > div > div {
    flex-wrap: wrap;
  }
}
