.checkout_main {
  background-color: #f7f4ed;
  padding: 6.4rem 0 10.4rem;
}
.checkout_main .steps ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  counter-reset: process;
  gap: 2rem 0;
}
.checkout_main .steps li {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  color: #6e665a;
  gap: 1.4rem;
}
.checkout_main .steps li::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c4c0bb;
  font-size: 0.889em;
  width: 2.3125em;
  height: 2.3125em;
  border-radius: 1.5em;
  min-width: max-content;
  white-space: nowrap;
  counter-increment: process;
  content: counter(process);
  margin-top: -2px;
}
.checkout_main .steps li::after {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  background: url("../img/checkout-nav.svg") no-repeat center / contain;
  width: 0.7223em;
  height: 0.7223em;
  margin: 0 2.4rem 0 0.8rem;
}
.checkout_main .steps li:last-child::after {
  display: none;
}
.checkout_main .steps li.success::before {
  color: transparent;
  border-color: var(--primary);
  background: url("../img/gou-w.svg") no-repeat center / 35% var(--primary);
}
.checkout_main .steps li.processing {
  color: var(--title);
}
.checkout_main .steps li.processing::before {
  color: #fff;
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.checkout_main .main {
  margin-top: 6rem;
}
.checkout_main .forms {
  flex: 1;
  width: 100%;
  max-width: 86.1rem;
  counter-reset: step;
}
.checkout_main .step_box {
  border: 1px solid #eae7e5;
  background-color: #fff;
  padding: 3.948897% 4.645761% 4.994193%;
}
.checkout_main .step_box .caption {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 2.2rem;
}
.checkout_main .step_box .caption::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.484rem;
  font-weight: 500;
  color: #fff;
  background-color: var(--primary);
  width: 2.15633em;
  height: 2.15633em;
  min-width: max-content;
  counter-increment: step;
  content: counter(step);
  margin-top: 0.7rem;
}
.checkout_main .step_box .caption strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
}
.checkout_main .step_box .caption p {
  font-size: 1.5rem;
  color: #7c7c7c;
  margin-top: 0.5rem;
}
.checkout_main .step_box .caption p a {
  font-weight: 500;
  color: var(--primary);
  transition: all 0.3s;
  text-decoration: underline transparent;
  margin-left: 0.4667em;
}
.checkout_main .step_box .caption p a:hover {
  text-decoration-color: var(--primary);
}
.checkout_main .step_box + .step_box {
  margin-top: 3rem;
}
.checkout_main form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.4rem 0;
  margin-top: 3.8rem;
}
.checkout_main form span:not(.wpcf7-spinner) {
  width: 100%;
}
.checkout_main form .col-2 {
  width: 48.7804878%;
}
.checkout_main form .label {
  display: block;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.checkout_main form input,
.checkout_main form textarea,
.checkout_main form select {
  display: block;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--title);
  border: 1px solid #ddd;
  background-color: transparent;
  transition: border-color 0.2s;
  height: 5.1rem;
  padding: 0 1.8rem 0.3rem;
}
.checkout_main form input::placeholder,
.checkout_main form textarea::placeholder,
.checkout_main form select::placeholder {
  color: #7c7c7c;
}
.checkout_main form input:focus,
.checkout_main form textarea:focus,
.checkout_main form select:focus,
.checkout_main form input.focus,
.checkout_main form textarea.focus,
.checkout_main form select.focus {
  border-color: var(--primary);
}
.checkout_main form input:not([type=submit]),
.checkout_main form textarea:not([type=submit]),
.checkout_main form select:not([type=submit]) {
  font-family: "DM Sans", sans-serif;
}
.checkout_main form select {
  outline: none;
  font-weight: 600;
  background: url("../img/icon-select.svg") no-repeat center right 2rem/1.3rem;
  padding-right: 4rem;
}
.checkout_main form textarea {
  padding: 1rem 1.7rem;
  height: 13.7rem;
}
.checkout_main form input[type=checkbox] {
  display: inline-block;
  vertical-align: top;
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
}
.checkout_main form input[type=checkbox]::after {
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background: url(../img/gou.svg) no-repeat center / 63%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  opacity: 0;
}
.checkout_main form input[type=checkbox]:checked {
  border-color: var(--primary);
  background-color: var(--primary);
}
.checkout_main form input[type=checkbox]:checked::after {
  opacity: 1;
}
.checkout_main form input[type=checkbox] ~ span {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  color: #444;
  width: calc(100% - 2.4rem);
  padding-left: 0.4rem;
  margin-top: -1px;
  letter-spacing: 0.007em;
}
.checkout_main form input[type=checkbox] ~ span a {
  color: var(--primary);
  text-decoration: underline;
  transition: all 0.3s;
}
.checkout_main form input[type=checkbox] ~ span a:hover {
  text-decoration-color: transparent;
}
.checkout_main form input[type=submit] {
  transition: all 0.3s;
  text-align: center;
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  font-size: 1.8rem;
  height: 4.8rem;
  padding: 0 3.15rem;
  width: auto;
}
.checkout_main form input[type=submit]:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.checkout_main form input[type=radio] {
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  padding: 0;
}
.checkout_main form input[type=radio]::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border-radius: 50%;
  background-color: #ddd;
  content: '';
  transition: all 0.3s;
  opacity: 0;
}
.checkout_main form input[type=radio]:checked {
  border-color: var(--title);
}
.checkout_main form input[type=radio]:checked::after {
  background-color: var(--title);
  transform: scale(0.5556);
  opacity: 1;
}
.checkout_main form .btn {
  font-size: 1.8rem;
  margin-top: 0.3rem;
}
.checkout_main form .con {
  margin-bottom: 0.4rem;
}
.checkout_main form .con .wpcf7-form-control {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem 0;
}
.checkout_main form .con .wpcf7-list-item {
  width: 31.9641%;
}
.checkout_main form .con .wpcf7-list-item input {
  display: none;
}
.checkout_main form .con .wpcf7-list-item input:checked + .wpcf7-list-item-label {
  background-color: var(--primary);
  color: #fff;
}
.checkout_main form .con .wpcf7-list-item .wpcf7-list-item-label {
  display: block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  font-weight: 500;
  background-color: #f7f4ed;
  line-height: 1.2;
  padding: 0.775em 1em;
}
.checkout_main form .con .seg {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: #7c7c7c;
  gap: 1.6rem;
  margin-top: 1.4rem;
}
.checkout_main form .con .seg::before,
.checkout_main form .con .seg::after {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  content: '';
}
.checkout_main form .options {
  width: 100%;
}
.checkout_main form .options .wpcf7-form-control {
  display: grid;
  gap: 1.1rem;
}
.checkout_main form .options .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  transition: all 0.3s;
  cursor: pointer;
  gap: 1.4rem;
  padding: 1.3rem 2.7rem 1.7rem 1.9rem;
}
.checkout_main form .options .wpcf7-list-item label span {
  width: unset;
}
.checkout_main form .options .wpcf7-list-item label:has(input[type=radio]:checked) {
  border-color: #443b2e;
  background-color: #f7f4ed;
}
.checkout_main form .options .wpcf7-list-item label:has(input[type=radio]:checked) .labels span {
  background-color: #fff;
}
.checkout_main form .options .wpcf7-list-item label input[type=radio] {
  margin-top: 0.4rem;
  flex-shrink: 0;
}
.checkout_main form .options .wpcf7-list-item label .info {
  flex: 1;
  width: 100%;
}
.checkout_main form .options .wpcf7-list-item label .info strong {
  font-weight: 500;
}
.checkout_main form .options .wpcf7-list-item label .info p {
  font-size: 1.5rem;
  color: #7c7c7c;
  margin-top: 1px;
}
.checkout_main form .options .wpcf7-list-item label .price {
  font-weight: 500;
  margin-top: 0.8rem;
}
.checkout_main form .options .wpcf7-list-item label .labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.7rem;
}
.checkout_main form .options .wpcf7-list-item label .labels span {
  display: inline-block;
  text-align: center;
  width: unset;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 500;
  background-color: var(--bg);
  transition: all 0.3s;
  padding: 0.477em 0.731em;
}
.checkout_main form span:has(.imgs) {
  align-self: flex-end;
}
.checkout_main form .imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2.8rem;
  padding-bottom: 0.9rem;
}
.checkout_main form .imgs .img {
  display: block;
  width: 5.9rem;
  --h: 55.93220339%;
}
.checkout_main form .certify {
  font-size: 1.5rem;
  font-weight: 500;
  color: #444;
  display: grid;
  grid-template-columns: 1.2em 1fr;
  align-items: start;
  gap: 1rem;
  margin-top: -0.3rem;
}
.checkout_main form .certify::before {
  display: block;
  padding-bottom: 100%;
  content: '';
  background: url("../img/icon-cert.svg") no-repeat center / contain;
}
.checkout_main .step1 {
  padding: 4.065041% 4.645761% 4.761905%;
}
.checkout_main .step1 .caption {
  grid-template-columns: auto 1fr auto;
}
.checkout_main .step1 .caption strong {
  margin-top: -1px;
}
.checkout_main .step1 .caption::before {
  margin: 0;
}
.checkout_main .step1 form {
  margin-top: 4.6rem;
}
.checkout_main .step1 .label {
  font-size: 1.7rem;
}
.checkout_main .step1 .flex1 {
  display: grid;
  gap: 0.6rem;
}
.checkout_main .step1 span:has(.btn) {
  width: auto;
}
.checkout_main .step3 {
  padding-bottom: 4.878049%;
}
.checkout_main .step3 .caption::before {
  margin-top: 0.9rem;
}
.checkout_main .step3 form {
  margin-top: 3.2rem;
}
.checkout_main .step4 {
  padding-bottom: 5.342625%;
}
.checkout_main .step4 form {
  margin-top: 3.2rem;
}
.checkout_main .step4 .card_detail {
  display: none;
  padding-top: 2rem;
  padding-bottom: 2.4rem;
}
.checkout_main .step4 .card_detail .flex {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.4rem 0;
}
.checkout_main .step4 .flex1 {
  align-self: center;
  margin-bottom: 1.2%;
}
.checkout_main .step4 input[type=checkbox] ~ span {
  font-size: 1.433rem;
}
.checkout_main .step4 span:has(input[type=submit]) {
  width: auto;
  margin-top: -1px;
}
.checkout_main .order_card {
  width: 35.972222%;
  background-color: #fff;
  border: 1px solid #eae7e5;
  box-shadow: 0 1rem 1.5rem rgba(219, 214, 209, 0.35);
  padding: 2.430556% 3.125% 2.5% 3.055556%;
}
.checkout_main .order_card .caption {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.checkout_main .order_card .caption strong {
  font-size: 2rem;
  font-weight: 500;
}
.checkout_main .order_card .caption a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.3s;
  text-decoration: underline transparent;
  margin-bottom: 2px;
}
.checkout_main .order_card .caption a:hover {
  text-decoration-color: var(--primary);
}
.checkout_main .order_card .orders {
  margin-top: 1.9rem;
  border-top: 1px solid rgba(226, 226, 226, 0.47);
}
.checkout_main .order_card .orders li {
  display: grid;
  grid-template-columns: 6.6rem 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(226, 226, 226, 0.47);
  gap: 2.3rem;
  padding: 1.6rem 0 1.5rem;
}
.checkout_main .order_card .orders .img {
  border: 1px solid #e2e2e2;
  --h: 100%;
}
.checkout_main .order_card .orders .img.img_aba img {
  width: 71.875%;
  height: 71.875%;
  left: 17.1875%;
  top: 17.1875%;
}
.checkout_main .order_card .orders .img .num {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: #1a1626;
  background-color: var(--primary);
  border-radius: 0.72em;
  width: 1.43em;
  height: 1.43em;
  min-width: max-content;
  padding: 0 0.2em;
}
.checkout_main .order_card .orders .info .title {
  font-size: 1.5rem;
  font-weight: 500;
}
.checkout_main .order_card .orders .info .metas {
  font-size: 1.4rem;
  font-weight: 500;
  color: #6e665a;
  margin-top: 0.4rem;
  margin-bottom: 2px;
}
.checkout_main .order_card .orders .price {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.checkout_main .order_card .promo_form {
  border-bottom: 1px solid #e2e2e2;
  padding: 1.7rem 0 1.9rem;
}
.checkout_main .order_card .promo_form form {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.6rem;
}
.checkout_main .order_card .promo_form form input {
  display: block;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  color: #7c7c7c;
  border: 1px solid #e2e2e2;
  transition: border-color 0.2s;
  padding: 0 1.7rem;
  height: 4.9rem;
}
.checkout_main .order_card .promo_form form input:focus {
  border-color: var(--primary);
}
.checkout_main .order_card .promo_form form input::placeholder {
  color: #7c7c7c;
}
.checkout_main .order_card .promo_form form input:not([type=submit]) {
  font-family: "DM Sans", sans-serif;
}
.checkout_main .order_card .promo_form form input[type=submit] {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transition: all 0.3s;
  font-size: 1.6rem;
  padding: 0 2.3rem;
}
.checkout_main .order_card .promo_form form input[type=submit]:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.checkout_main .order_card .detail {
  background-color: #f7f4ed;
  margin-top: 2rem;
  padding: 0.4rem 2.5rem 1px 2.1rem;
}
.checkout_main .order_card .detail li + li {
  border-top: 1px solid #e2e2e2;
}
.checkout_main .order_card .detail li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  padding: 1.5rem 0 1.6rem 3.4rem;
}
.checkout_main .order_card .detail li .icon {
  position: absolute;
  left: 0;
  top: 1.4rem;
  width: 2.4rem;
  height: 2.4rem;
}
.checkout_main .order_card .detail li strong {
  font-size: 1.5rem;
  font-weight: 500;
}
.checkout_main .order_card .detail li p {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 500;
  color: #6e665a;
}
.checkout_main .order_card .price-lis {
  margin-top: 2.6rem;
}
.checkout_main .order_card .price-lis li + li {
  margin-top: 1rem;
}
.checkout_main .order_card .price-lis li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  font-size: 1.7rem;
  color: var(--text);
  gap: 1rem;
}
.checkout_main .order_card .price-lis li .amount {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: right;
}
.checkout_main .order_card .price-lis .total {
  border-top: 1px dashed #e2e2e2;
  color: var(--title);
  font-size: 2rem;
  padding-top: 2.2rem;
  margin-top: 2.6rem;
}
.checkout_main .order_card .price-lis .total .amount {
  font-size: 1.4rem;
  color: #6e665a;
}
.checkout_main .order_card .price-lis .total .amount strong {
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--title);
}
.checkout_main .order_card .price-lis .total p {
  margin-top: 2px;
}
.checkout_main .order_card .price-lis .tip {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #6e665a;
  margin-top: 2.2rem;
}
.checkout_main .order_card .btn {
  width: 100%;
  line-height: 5rem;
  min-width: unset;
  margin-top: 1.8rem;
}
.checkout_main .order_card .ad_lis {
  margin-top: 1.8rem;
}
.checkout_main .order_card .ad_lis ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.checkout_main .order_card .ad_lis li {
  display: grid;
  grid-template-columns: 1.43em 1fr;
  align-items: start;
  font-size: 1.4rem;
  font-weight: 500;
  color: #6e665a;
  gap: 0.57143em;
}
.checkout_main .order_card .ad_lis .icon,
.checkout_main .order_card .ad_lis .icon.icon_ab,
.checkout_main .order_card .quote_lis .icon,
.checkout_main .order_card .quote_lis .icon.icon_ab {
  width: 1.43em;
  height: 1.43em;
  padding-bottom: 0;
  position: relative;
}
.checkout_main .order_card .ad_lis .icon.icon_ab img,
.checkout_main .order_card .quote_lis .icon.icon_ab img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.checkout_main .order_card .quote_lis {
  border-top: 1px solid #e2e2e2;
  margin-top: 3.1rem;
  padding-top: 3.3rem;
}
.checkout_main .order_card .quote_lis li + li {
  margin-top: 2rem;
}
.checkout_main .order_card .quote_lis li {
  display: grid;
  grid-template-columns: 4.7rem 1fr;
  align-items: start;
  gap: 2.6rem;
}
.checkout_main .order_card .quote_lis li strong {
  font-size: 2rem;
  font-weight: 500;
}
.checkout_main .order_card .quote_lis li p {
  font-size: 1.7rem;
  line-height: 2.8rem;
  color: var(--text);
  margin-top: 2px;
}
.checkout_main .order_card .quote_lis li p a {
  font-weight: 500;
  text-decoration: underline;
  color: var(--primary);
}
.checkout_main .order_card .quote_lis li p a:hover {
  text-decoration-color: transparent;
}
.woocommerce-NoticeGroup-checkout li a ,
.woocommerce-NoticeGroup-checkout li a strong{
  font-weight: 500;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .checkout_main form .imgs .img {
    width: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .checkout_main {
    padding: 30px 0 50px;
  }
  .checkout_main .steps li {
    font-size: 14px;
    gap: 8px;
  }
  .checkout_main .steps li::before {
    margin: 0;
  }
  .checkout_main .steps li::after {
    margin: 0 12px 0 4px;
  }
  .checkout_main .main {
    margin-top: 30px;
  }
  .checkout_main .forms {
    max-width: unset;
  }
  .checkout_main .forms .step_box {
    padding: 30px 20px;
  }
  .checkout_main .forms .step_box .caption {
    gap: 14px;
  }
  .checkout_main .forms .step_box .caption::before {
    font-size: 14px;
    margin-top: 0;
  }
  .checkout_main .forms .step_box .caption strong {
    font-size: 18px;
    margin: 0;
  }
  .checkout_main .forms .step_box .caption p {
    font-size: 14px;
    margin-top: 5px;
  }
  .checkout_main .forms .step_box form {
    gap: 16px 0;
    margin-top: 20px;
  }
  .checkout_main .forms .step_box form .label {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .checkout_main .forms .step_box form input,
  .checkout_main .forms .step_box form textarea,
  .checkout_main .forms .step_box form select {
    font-size: 14px;
    height: 46px;
    padding: 0 20px;
  }
  .checkout_main .forms .step_box form select {
    padding-right: 40px;
    background-size: 10px;
    background-position-x: right 14px;
  }
  .checkout_main .forms .step_box form textarea {
    padding: 10px 20px;
    height: 120px;
  }
  .checkout_main .forms .step_box form input[type=checkbox] {
    width: 16px;
    height: 16px;
    padding: 0;
  }
  .checkout_main .forms .step_box form input[type=checkbox] ~ span {
    font-size: 14px;
    width: calc(100% - 22px);
    padding-left: 5px;
    margin: 0;
  }
  .checkout_main .forms .step_box form input[type=submit] {
    font-size: 14px;
    height: 46px;
    padding: 0 20px;
  }
  .checkout_main .forms .step_box form input[type=radio] {
    width: 18px;
    height: 18px;
    padding: 0;
  }
  .checkout_main .forms .step_box form .btn {
    font-size: 14px;
    margin: 0;
  }
  .checkout_main .forms .step_box form .con {
    margin: 0;
  }
  .checkout_main .forms .step_box form .con .wpcf7-form-control {
    gap: 10px 0;
  }
  .checkout_main .forms .step_box form .con .seg {
    font-size: 13px;
    margin-top: 14px;
    gap: 16px;
  }
  .checkout_main .forms .step_box form .options .wpcf7-form-control {
    gap: 10px;
  }
  .checkout_main .forms .step_box form .options .wpcf7-list-item label {
    gap: 12px;
    padding: 14px;
  }
  .checkout_main .forms .step_box form .options .wpcf7-list-item label .info p {
    font-size: 13px;
  }
  .checkout_main .forms .step_box form .options .wpcf7-list-item label .price {
    margin: 0;
  }
  .checkout_main .forms .step_box form .options .wpcf7-list-item label .labels {
    gap: 5px;
    margin: 0;
  }
  .checkout_main .forms .step_box form .options .wpcf7-list-item label .labels span {
    font-size: 12px;
  }
  .checkout_main .forms .step_box form .imgs {
    gap: 12px;
    padding: 0;
  }
  .checkout_main .forms .step_box form .imgs .img {
    width: 50px;
  }
  .checkout_main .forms .step_box form .certify {
    font-size: 14px;
    margin-top: 0;
    gap: 8px;
  }
  .checkout_main .forms .step_box form span:has(input[type=submit]) {
    margin: 0;
  }
  .checkout_main .forms .step_box .flex1 {
    gap: 5px;
  }
  .checkout_main .forms .step_box + .step_box {
    margin-top: 20px;
  }
  .checkout_main .step4 .card_detail {
    padding: 10px 0 14px;
  }
  .checkout_main .step4 .card_detail .flex {
    gap: 16px 0;
  }
  .checkout_main .step4 .flex1 {
    margin: 0;
  }
  .checkout_main .order_card {
    width: 100%;
    padding: 20px;
  }
  .checkout_main .order_card .caption strong {
    font-size: 18px;
  }
  .checkout_main .order_card .caption a {
    font-size: 14px;
  }
  .checkout_main .order_card .orders {
    margin-top: 16px;
  }
  .checkout_main .order_card .orders li {
    padding: 16px 0;
    gap: 16px;
  }
  .checkout_main .order_card .orders .img .num {
    font-size: 13px;
  }
  .checkout_main .order_card .orders .info .title {
    font-size: 14px;
  }
  .checkout_main .order_card .orders .info .metas {
    font-size: 13px;
    margin: 0;
  }
  .checkout_main .order_card .orders .price {
    margin: 0;
  }
  .checkout_main .order_card .promo_form {
    padding: 20px 0;
  }
  .checkout_main .order_card .promo_form form {
    gap: 12px;
  }
  .checkout_main .order_card .promo_form form input,
  .checkout_main .order_card .promo_form form input[type=submit] {
    font-size: 14px;
    padding: 0 20px;
    height: 46px;
  }
  .checkout_main .order_card .detail {
    padding: 0 20px;
    margin-top: 20px;
  }
  .checkout_main .order_card .detail li {
    padding: 12px 0 12px 30px;
    gap: 4px 16px;
  }
  .checkout_main .order_card .detail li .icon {
    width: 20px;
    height: 20px;
    top: 14px;
  }
  .checkout_main .order_card .price-lis {
    margin-top: 20px;
  }
  .checkout_main .order_card .price-lis li {
    font-size: 14px;
  }
  .checkout_main .order_card .price-lis li .amount {
    font-size: 16px;
  }
  .checkout_main .order_card .price-lis .total {
    font-size: 16px;
    padding-top: 14px;
    margin-top: 16px;
  }
  .checkout_main .order_card .price-lis .total .amount {
    font-size: 13px;
  }
  .checkout_main .order_card .price-lis .total .amount strong {
    font-size: 20px;
  }
  .checkout_main .order_card .price-lis .total p {
    margin: 0;
  }
  .checkout_main .order_card .price-lis .tip {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 16px;
  }
  .checkout_main .order_card .btn {
    margin-top: 20px;
    line-height: 42px;
  }
  .checkout_main .order_card .ad_lis {
    margin-top: 16px;
  }
  .checkout_main .order_card .ad_lis ul {
    gap: 16px;
  }
  .checkout_main .order_card .ad_lis li {
    font-size: 13px;
  }
  .checkout_main .order_card .quote_lis {
    margin-top: 20px;
    padding-top: 16px;
  }
  .checkout_main .order_card .quote_lis li {
    grid-template-columns: 32px 1fr;
    gap: 14px;
  }
  .checkout_main .order_card .quote_lis li strong {
    font-size: 16px;
  }
  .checkout_main .order_card .quote_lis li p {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 576px) {
  .checkout_main form .col-2 {
    width: 100%;
  }
  .checkout_main form .flex1 {
    flex: unset;
  }
  .checkout_main form .con .wpcf7-list-item {
    width: 100%;
  }
}
