@charset "UTF-8";
@import url("https://unpkg.com/bootstrap@4.5.0/dist/css/bootstrap.css");
:root {
  --orange: #ff6300;
  --grey: #f5f5f5;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

* {
  font-family: "Noto Sans TC", sans-serif;
}

html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  background-color: #f5f5f5;
  color: #313131;
  line-height: unset !important;
}

a {
  text-decoration: none !important;
}

.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}

.gap-5 {
  gap: 2rem;
}

.home-head {
  background-color: #fff;
  box-shadow: inset 0 -0.5px 0 0 #e6e5e5;
  width: 100%;
  max-width: 420px;
  min-width: 360px;
  height: 2.75rem;
  position: sticky;
  top: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}
.home-head .back-btn,
.home-head .close-btn {
  display: flex;
  position: absolute;
  left: 0.25rem;
  justify-content: center;
  align-items: center;
}
.home-head .back-btn img,
.home-head .close-btn img {
  max-width: 80px;
  width: 100%;
}
.home-head .close-btn {
  left: 1rem;
}
.home-head .close-btn img {
  max-width: 24px;
}
.home-head .head-r-btn {
  position: absolute;
  right: 0;
  display: flex;
}
.home-head .head-r-btn .home-btn {
  display: flex;
  width: 2.75rem;
  height: 2.56rem;
  line-height: 2.75rem;
  right: 0;
  z-index: 2;
}
.home-head .head-r-btn .cancel-chg-btn {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: 1.55rem;
  line-height: 2.75rem;
  z-index: 2;
}
.home-head .title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  width: 100%;
  margin: 0;
}
.home-head .title .title-main {
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.31px;
  text-align: center;
  color: #000;
}

.wrap {
  margin: auto;
  background-color: #f5f5f5;
  color: #313131;
  width: 100%;
  max-width: 420px;
  min-width: 360px;
  min-height: calc(100vh - 2.75rem);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wrap .order-status {
  position: relative;
  height: 3.125rem;
  background-color: white;
  display: flex;
}
.wrap .order-status .status {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.wrap .order-status .status:nth-of-type(1).active ~ .underbar-b {
  left: calc(50% / 2 - 50% / 2);
  width: 50%;
}
.wrap .order-status .status:nth-of-type(1).active ~ .underbar-m {
  left: calc(50% / 2 - calc(50% * 0.95) / 2);
  width: calc(50% * 0.95);
}
.wrap .order-status .status:nth-of-type(1).active ~ .underbar-t {
  left: calc(50% / 2 - calc(50% * 0.9) / 2);
  width: calc(50% * 0.9);
}
.wrap .order-status .status:nth-of-type(2).active ~ .underbar-b {
  left: calc(50% / 2 - 50% / 2 + 50%);
  width: 50%;
}
.wrap .order-status .status:nth-of-type(2).active ~ .underbar-m {
  left: calc(50% / 2 - calc(50% * 0.95) / 2 + 50%);
  width: calc(50% * 0.95);
}
.wrap .order-status .status:nth-of-type(2).active ~ .underbar-t {
  left: calc(50% / 2 - calc(50% * 0.9) / 2 + 50%);
  width: calc(50% * 0.9);
}
.wrap .order-status .underbar-t,
.wrap .order-status .underbar-m,
.wrap .order-status .underbar-b {
  height: 3px;
  bottom: 0;
  position: absolute;
  border-radius: 99rem;
}
.wrap .order-status .underbar-t {
  background-color: #fd4c00;
  transition: 0.3s ease;
}
.wrap .order-status .underbar-m {
  background-color: #feb101;
  transition: 0.35s ease;
}
.wrap .order-status .underbar-b {
  background-color: #ffdf96;
  transition: 0.4s ease;
}
.wrap .content-wrap {
  padding: 1rem;
}
.wrap .content-wrap-m {
  padding: 1.5rem;
}
.wrap .system-busy {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 2rem;
  padding-top: 4.5rem;
}
.wrap .system-busy .system-busy-p {
  font-size: 1.1875rem;
  letter-spacing: -0.34px;
  font-weight: normal;
  color: #000;
}
.wrap .system-busy .date-time {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  letter-spacing: -0.29px;
  color: #313131;
}
.wrap hr {
  width: 100%;
  background-color: #d8d6d5;
  height: 1px;
  border: 0;
  padding: 0;
  margin: 0;
}
.wrap .bd-hr-wrap {
  padding: 1.5rem 0;
}
.wrap .hr-lr-wrap {
  padding: 0 1rem;
}
.wrap .dash-hr-wrap {
  padding: 1rem 0 0.75rem 0;
}
.wrap .dash-hr {
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #d8d6d5, #d8d6d5 50%, transparent 50%);
  background-size: 0.625rem 1px;
  background-repeat: repeat-x;
}
.wrap .choose {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 1.375rem;
  margin-bottom: 1rem;
}
.wrap .choose .chs-p {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.29px;
  color: #000;
  text-align: left;
}
.wrap .service {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5625rem;
}
.wrap .service .srv-p {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
  color: #000;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.wrap .mid-4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0.8125rem;
  padding: 0.3125rem 0.5rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(1px);
  box-shadow: 0 0.25rem 0.75rem 0 rgba(197, 197, 197, 0.07), 0 0 0.25rem 0.125rem rgba(170, 170, 170, 0.06);
  background-color: #fff;
}
.wrap .mid-4 .mid-4-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.625rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
}
.wrap .mid-4 .mid-4-icon .item {
  color: #000;
}
.wrap .mid-4 .mid-4-icon .item .hm-icon {
  padding: 0.3125rem 0.8125rem 0.30625rem 0.8375rem;
}
.wrap .mid-4 .mid-4-icon .item span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrap .inquiry {
  display: flex;
  text-align: center;
  justify-content: start;
  align-items: center;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.75rem 0 rgba(197, 197, 197, 0.07), 0 0 0.25rem 0.125rem rgba(170, 170, 170, 0.06);
  border: solid 1px #f0f0f0;
  background-color: #fff;
}
.wrap .inquiry .i-p {
  font-size: 1rem;
  letter-spacing: -0.29px;
  color: #000;
}
.wrap .inquiry .i-img {
  margin: 0;
}
.wrap .iq-sm {
  font-size: 0.8125rem;
  font-weight: normal;
  color: #000;
  padding-top: 1rem;
}
.wrap .iq-sm .iq-sm-s-c {
  color: #00a0fc;
}
.wrap .iq-sm .iq-sm-s-c span {
  text-decoration: underline;
}
.wrap .lease {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.75rem 0 rgba(197, 197, 197, 0.07), 0 0.125rem 0.25rem 0 rgba(170, 170, 170, 0.06);
  border: 1px solid #efefef;
  background-color: white;
}
.wrap .lease .lcontent {
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 3.625rem;
  gap: 0.5rem;
}
.wrap .lease .lcontent .lc-label-ol {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrap .lease .lcontent .lc-label-ol label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wrap .lease .lcontent .lc-label-ol label .lc-label {
  display: flex;
  position: relative;
  box-shadow: 0 0 1px rgba(199, 199, 199, 0.5);
  border: 0.2px solid rgba(0, 0, 0, 0.4);
  border-width: 1px;
  border-radius: 50%;
  width: 1.375rem;
  height: 1.375rem;
  display: inline-block;
  background-image: url("Content/img/atom-button-control-radio-button-btn-radio-t.svg");
  cursor: pointer;
}
.wrap .lease .lcontent .lc-label-ol label .lc-label .a-in {
  opacity: 0;
  width: 22px;
}
.wrap .lease .lcontent .lc-label-ol label .lc-label .a-in:checked ~ .a-sn {
  display: inline-block;
  border: 0px;
}
.wrap .lease .lcontent .lc-label-ol label .lc-label .a-sn {
  font-size: 1.5625rem;
  color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.875rem;
  height: 1.875rem;
  text-align: center;
  display: none;
  margin: -0.625rem -1.6875rem 0 -0.9375rem;
}
.wrap .lease .lcontent .lc-label-ol label .lc-label img {
  width: 2rem;
  height: 2.5rem;
  margin-left: 0.5625rem;
  margin-bottom: 0.25rem;
}
.wrap .lease .lcontent .lc-label-ol .lc-ol {
  display: flex;
  justify-content: center;
  text-align: left;
  align-items: left;
  flex-direction: column;
  position: relative;
}
.wrap .lease .lcontent .lc-label-ol .lc-ol h4 {
  font-size: 1rem;
  margin: 0;
}
.wrap .lease .lcontent .lc-label-ol .lc-ol p {
  margin: 0;
  font-size: 0.8125rem;
  color: #7a7a7a;
  font-weight: 300;
}
.wrap .lease .lcontent .nice-number {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  z-index: 3;
}
.wrap .lease .lcontent .nice-number .num-opacity {
  opacity: 0.5;
}
.wrap .lease .lcontent .nice-number .nice-number-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.625rem;
  width: 2.125rem;
  height: 2.125rem;
  border: none;
  font-size: 1.5625rem;
  padding: 0.5rem;
  font-weight: 500;
  justify-content: center;
  box-shadow: inset 0 -1px 3px 0 #d1d1d1;
  border: solid 1px #e8e8e8;
  background-image: linear-gradient(to bottom, #cfcfcf, #bfbfbf 23%, #b8b8b8 75%, #afafaf 100%);
  color: white;
  position: relative;
  cursor: pointer;
}
.wrap .lease .lcontent .nice-number .nice-number-button:active {
  filter: grayscale(0.1);
  opacity: 0.9;
}
.wrap .lease .lcontent .nice-number .nice-number-button span {
  display: block;
  background: white;
  height: 2px;
  width: 100%;
  border-radius: 99rem;
}
.wrap .lease .lcontent .nice-number .nice-number-button:last-child {
  border: solid 1px #fcd04c;
  background-image: linear-gradient(to bottom, #fda544 3%, #f06e37 99%), linear-gradient(to bottom, #1dbee4, #00a0fd);
}
.wrap .lease .lcontent .nice-number .nice-number-button:last-child span {
  display: block;
  position: relative;
  background: white;
  height: 2px;
  width: 100%;
  border-radius: 99rem;
}
.wrap .lease .lcontent .nice-number .nice-number-button:last-child span::after {
  content: "";
  display: block;
  position: absolute;
  background: white;
  height: 2px;
  width: 100%;
  border-radius: 99rem;
  transform: rotate(90deg);
}
.wrap .lease .lcontent .nice-number input {
  max-width: 3rem;
  height: 1.875rem;
  text-align: center;
  border: 0;
  outline: none;
  box-shadow: 0px 2px 1px 0 rgba(152, 152, 152, 0.2);
}
.wrap .lease .lcontent .num-opacity {
  opacity: 0.5;
}
.wrap .pdd-il {
  padding-bottom: 3.75rem;
}
.wrap .pdd-cr {
  padding-bottom: 5rem;
}
.wrap .pay {
  display: flex;
  flex-wrap: nowrap;
  height: 1.375rem;
  margin-bottom: 1rem;
}
.wrap .pay .pay-p {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
  color: #313131;
  text-align: left;
}
.wrap .payment {
  display: flex;
  justify-content: start;
  align-items: left;
  text-align: center;
  flex-direction: column;
  gap: 0.25rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: 0 0.25rem 0.75rem 0 rgba(197, 197, 197, 0.07), 0 2px 0.25rem 0 rgba(170, 170, 170, 0.06);
  background-image: linear-gradient(to bottom, #fff, #fff), linear-gradient(to bottom, #fff 28%, #efefef 99%);
  padding: 0.5rem 1rem;
}
.wrap .payment .pay-wrap {
  display: flex;
  align-items: center;
}
.wrap .payment .pay-label {
  display: none;
  position: relative;
  user-select: none;
  box-shadow: 0 0 1px rgba(199, 199, 199, 0.5);
  border: 0.2px solid rgba(0, 0, 0, 0.4);
  border-width: 1px;
  border-radius: 50%;
  width: 1.375rem;
  height: 1.375rem;
  display: inline-block;
  background-image: url("Content/img/atom-button-control-radio-button-btn-radio-t.svg");
  margin: 0;
  cursor: pointer;
}
.wrap .payment .pay-label .a-in {
  opacity: 0;
}
.wrap .payment .pay-label .a-in:checked ~ .a-sn {
  display: inline-block;
  border: 0px;
}
.wrap .payment .pay-label .a-sn {
  font-size: 1.5625rem;
  color: #000;
  position: absolute;
  top: 0px;
  left: 0;
  width: 2.25rem;
  height: 2.25rem;
  text-align: center;
  display: none;
  margin: -0.625rem -1.6875rem 0 -0.9375rem;
}
.wrap .payment p {
  align-items: center;
  padding: 0 0.3125rem;
  margin: 0;
}
.wrap .payment img {
  width: 2rem;
  height: 2.5rem;
  margin-left: 0.5625rem;
}
.wrap .receipt {
  display: flex;
  justify-content: start;
  align-items: left;
  text-align: left;
  flex-direction: column;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.wrap .receipt .rct-p {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
  color: #313131;
  text-align: left;
}
.wrap .receipt .rct-filter {
  display: flex;
  justify-content: start;
  align-items: left;
  text-align: left;
  width: 100%;
}
.wrap .receipt .rct-filter .rct-slt {
  display: flex;
  color: #b1b1b1;
  padding: 0.75rem 1rem;
  width: 100%;
  height: 3.3125rem;
  border-radius: 0.9375rem;
  appearance: none;
  border: none;
  background-image: url("../img/atom-button-dropdown-grey-btn-arrowdowng-n-z.svg");
  background-position: right 2% top 50%, 0 0;
  background-size: contain, cover;
  background-repeat: no-repeat;
  font-size: 1rem;
  font-weight: 300;
  box-shadow: 0 0.25rem 0.75rem 0 rgba(197, 197, 197, 0.07), 0 2px 0.25rem 0 rgba(170, 170, 170, 0.06);
}
.wrap .bg-color-red {
  background-color: #FFE3E3 !important;
}
.wrap .red-word {
  color: #FF001F;
  font-size: 1rem;
  padding: 1rem 0 0.25rem;
}
.wrap .rtn {
  display: flex;
  justify-content: start;
  align-items: left;
  text-align: left;
  height: 7.5rem;
  background-color: white;
  padding: 1rem 1.25rem;
  border-radius: 0.9375rem;
  margin-bottom: 1rem;
}
.wrap .rtn .rtn-p {
  display: flex;
  justify-content: center;
  align-items: left;
  text-align: left;
  width: 100%;
  font-size: 1rem;
  letter-spacing: -0.29px;
}
.wrap .rtn input[type=checkbox] {
  display: none;
}
.wrap .rtn input[type=checkbox] + label {
  color: #000;
}
.wrap .rtn input[type=checkbox] + label span {
  display: inline-block;
  width: 1.1875rem;
  height: 2.25rem;
  margin: 0 0.625rem 0 -0.625rem;
  padding-right: 1.875rem;
  vertical-align: middle;
  background: url("../img/atom-button-control-check-box-btn-check-box-n.svg") top no-repeat;
  cursor: pointer;
}
.wrap .rtn input[type=checkbox]:checked + label span {
  background: url("../img/atom-button-control-check-box-btn-check-box-t.svg") top no-repeat;
}
.wrap .cfm {
  display: flex;
  height: 3.75rem;
  background-color: white;
  padding: 0.8125rem 1.25rem;
  border-radius: 0.9375rem;
  margin-bottom: 1rem;
}
.wrap .cfm .cfm-p {
  font-size: 1rem;
  letter-spacing: -0.29px;
  color: #000;
  padding: 0.3125rem 0;
}
.wrap .cfm input[type=checkbox] {
  display: none;
}
.wrap .cfm input[type=checkbox] + label {
  color: #000;
}
.wrap .cfm input[type=checkbox] + label span {
  display: inline-block;
  width: 1.1875rem;
  height: 2.25rem;
  margin: 0 0.625rem 0 -0.625rem;
  padding-right: 1.875rem;
  vertical-align: middle;
  background: url("../img/atom-button-control-check-box-btn-check-box-n.svg") top no-repeat;
  cursor: pointer;
}
.wrap .cfm input[type=checkbox]:checked + label span {
  background: url("../img/atom-button-control-check-box-btn-check-box-t.svg") top no-repeat;
}
.wrap .srvmk {
  display: flex;
  justify-content: start;
  align-items: left;
  flex-direction: column;
  margin-bottom: 1rem;
}
.wrap .srvmk p {
  font-size: 0.8125rem;
  letter-spacing: 0.1rem;
  color: #9f9d9c;
}
.wrap .srvmk .srvmk-ctn {
  padding: 0;
  margin: 0;
}
.wrap .cal {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 0;
  text-align: center;
  justify-content: start;
  box-shadow: inset 0 1px 0 0 #fd4c01;
  z-index: 9;
}
.wrap .cal .cal-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
.wrap .cal .cal-content p {
  display: inline;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
.wrap .cal .cal-content p .quantity {
  color: #fd4c01;
}
.wrap .cal .cal-content p .price {
  color: #ff7300;
}
.wrap .cal .cal-sum {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fd4c01;
}
.wrap .cal .cal-sum .cal-ct {
  font-size: 1rem;
}
.wrap .cal .cal-sum .cal-price-ol {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.wrap .cal .cal-sum .cal-price-ol .cal-prie-img {
  width: 1.5rem;
  height: 1.5rem;
}
.wrap .cal .cal-sum .cal-price-ol .price {
  width: 1.875rem;
  height: 1.625rem;
  font-size: 1.1875rem;
  letter-spacing: -0.34px;
  margin: 0;
}
.wrap .cal .cal-sum .cal-price-ol .price-y {
  font-size: 1rem;
  font-weight: 400;
}
.wrap .cal .submit-btn {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.24px;
  text-align: center;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.125rem;
  color: #fff;
  background-image: linear-gradient(to bottom, #bfbfbf 1%, #919191 74%);
}
.wrap .cal .submit-btn.active {
  border: solid 1px #fcd04c;
  background-image: linear-gradient(to bottom, #ff8e07, #ff6100 67%, #eb3903), linear-gradient(to bottom, #fd4c01, #fd4c01);
}
.wrap .cal-fx-btm {
  display: flex;
  position: fixed;
  bottom: 0;
  width: 100%;
  margin-left: -1px;
}
.wrap .cal-fx-btm .cal-send {
  display: flex;
  text-align: center;
}
.wrap .cal-fx-btm .cal-send .cal-send-p {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.24px;
  text-align: center;
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 0;
  padding: 0.625rem;
  margin: 0;
  width: 100%;
  height: 3.125rem;
  color: #fff;
  z-index: 3;
  background-image: linear-gradient(to bottom, #bfbfbf 1%, #919191 74%);
}
.wrap .send-modal {
  display: none;
}
.wrap .send-modal .box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.wrap .send-modal .box .send-modal-ctn-wrap {
  width: 20.4375rem;
  height: 12.125rem;
  background-image: linear-gradient(to bottom, #fff, #fff), linear-gradient(to bottom, #fff 28%, #efefef 99%);
  box-shadow: 0 4px 12px 0 rgba(197, 197, 197, 0.07), 0 2px 4px 0 rgba(170, 170, 170, 0.06);
  border: 1px solid #ff6300;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: fixed;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wrap .send-modal .box .send-modal-ctn-wrap .send-modal-ctn {
  width: 100%;
  height: 4.375rem;
  background-color: #ff6300;
  border-radius: 0.6875rem 0.6875rem 0 0;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.wrap .send-modal .box .send-modal-ctn-wrap .send-modal-ctn .close {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: bold;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 88;
  position: absolute;
  left: 0;
  opacity: 1;
}
.wrap .send-modal .box .send-modal-ctn-wrap .send-modal-ctn .close:hover,
.wrap .send-modal .box .send-modal-ctn-wrap .send-modal-ctn .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.wrap .send-modal .box .send-modal-ctn-wrap .send-modal-ctn .send-modal-ctn-header {
  width: 100%;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: #fff;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrap .send-modal .box .send-modal-ctn-wrap .send-modal-ctn-nr {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.wrap .send-modal .box .send-modal-ctn-wrap .send-modal-ctn-nr .send-modal-ctn-nr-p {
  font-size: 1rem;
  letter-spacing: -0.29px;
}
.wrap .send-modal .box .send-modal-ctn-wrap .send-modal-ctn-cfm {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 90%;
  padding: 0.5rem 0.75rem;
  border-top: 1px solid rgba(197, 197, 197, 0.7);
  cursor: pointer;
}
.wrap .send-modal .box .send-modal-ctn-wrap .send-modal-ctn-cfm .send-modal-ctn-cfm-btn {
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.31px;
  text-align: center;
  color: #000;
}
.wrap .illustrate {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 1rem;
}
.wrap .illustrate .il-frame {
  display: flex;
  justify-content: center;
  max-width: 381px;
  width: 100%;
  height: 549px;
  padding: 1rem 1rem 3.4375rem;
  border-radius: 0.75rem;
  background-color: #fff;
}
.wrap .illustrate .il-frame .il-title {
  text-align: center;
  max-width: 381px;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.36px;
  color: #000;
}
.wrap .illustrate .il-frame .il-p-content {
  position: absolute;
  width: 311px;
  height: 3.375rem;
}
.wrap .illustrate .il-frame .il-p-content .il-p {
  margin: 2.125rem 0 2.125rem 0;
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
  font-weight: 700;
  color: #313131;
}
.wrap .illustrate .ipt-checkbox {
  display: flex;
  align-items: center;
  padding-top: 1rem;
}
.wrap .illustrate .ipt-checkbox #il-ipt {
  margin: 0;
}
.wrap .illustrate .ipt-checkbox .il-ipt-p {
  font-size: 1rem;
  letter-spacing: -0.29px;
  color: #000;
}
.wrap .illustrate .ipt-checkbox input[type=checkbox] {
  display: none;
}
.wrap .illustrate .ipt-checkbox input[type=checkbox] + label {
  margin: 0;
}
.wrap .illustrate .ipt-checkbox input[type=checkbox] + label span {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  background: url("../img/atom-button-control-check-box-btn-check-box-n.svg") top no-repeat;
  cursor: pointer;
}
.wrap .illustrate .ipt-checkbox input[type=checkbox]:checked + label span {
  background: url("../img/atom-button-control-check-box-btn-check-box-t.svg");
}
.wrap .il-fx-btm {
  display: flex;
  position: sticky;
  bottom: 0;
  width: 100%;
  margin-left: -1px;
}
.wrap .il-fx-btm .il-send {
  display: flex;
  text-align: center;
}
.wrap .il-fx-btm .il-send .il-send-p {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.24px;
  text-align: center;
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 0;
  padding: 0.625rem;
  margin: 0;
  width: 100%;
  height: 3.125rem;
  color: #fff;
  z-index: 3;
}
.wrap .il-fx-btm .submit-a {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.24px;
  text-align: center;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.125rem;
  color: #fff;
  background-image: linear-gradient(to bottom, #bfbfbf 1%, #919191 74%);
}
.wrap .il-fx-btm .submit-a.active {
  background-image: linear-gradient(to bottom, #50c53e, #1b8140 99%);
}
.wrap .pay-detial {
  display: flex;
  text-align: center;
  justify-content: left;
  flex-direction: column;
  width: 100%;
  height: 261px;
  margin: 1rem 0;
  background-color: #fff;
  padding: 1rem 1.5rem;
}
.wrap .pay-detial .pay-d-ctn {
  font-size: 1rem;
  letter-spacing: -0.29px;
  color: #313131;
}
.wrap .pay-detial .pay-d-ctn .d-numb {
  height: 1.375rem;
  float: left;
  letter-spacing: -0.29px;
}
.wrap .pay-detial .pay-d-ctn .d-numb-t {
  height: 1.375rem;
  float: right;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
  text-align: right;
}
.wrap .pay-detial .pay-d-ctn .d-debit-dl {
  height: 1.375rem;
  float: left;
  letter-spacing: -0.29px;
}
.wrap .pay-detial .pay-d-ctn .d-debit-d {
  padding-right: 0.9375rem;
  height: 1.375rem;
  float: right;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
}
.wrap .pay-detial .pay-d-ctn .d-debit-t {
  height: 1.375rem;
  float: right;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
}
.wrap .pay-detial .pay-d-ctn .d-rtn-dl {
  height: 1.375rem;
  float: left;
  letter-spacing: -0.29px;
}
.wrap .pay-detial .pay-d-ctn .d-rtn-dl-d {
  padding-right: 0.9375rem;
  height: 1.375rem;
  float: right;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
}
.wrap .pay-detial .pay-d-ctn .d-rtn-dl-t {
  height: 1.375rem;
  float: right;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
}
.wrap .pay-detial .pay-d-ctn .d-d {
  height: 1.375rem;
  float: left;
  letter-spacing: -0.29px;
}
.wrap .pay-detial .pay-d-ctn .d-d-numb {
  height: 1.375rem;
  float: right;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
  text-align: right;
}
.wrap .pay-detial .pay-d-ctn .d-pd {
  height: 1.375rem;
  float: left;
  letter-spacing: -0.29px;
}
.wrap .pay-detial .pay-d-ctn .d-pd-t {
  height: 1.375rem;
  float: right;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
  text-align: right;
}
.wrap .pay-detial .pay-d-ctn .d-ta {
  height: 1.375rem;
  float: left;
  letter-spacing: -0.29px;
}
.wrap .pay-detial .pay-d-ctn .d-ta-numb {
  height: 1.375rem;
  float: right;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
  text-align: right;
  color: #fd4c01;
}
.wrap .ptd {
  display: flex;
  text-align: left;
  justify-content: left;
  flex-direction: column;
  margin: 1rem 0 0.5rem 1.5rem;
}
.wrap .ptd .ptd-p {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.27px;
  color: #313131;
  margin: 0;
}
.wrap .ptd-t {
  display: flex;
  text-align: center;
  justify-content: left;
  flex-direction: column;
  width: 100%;
  height: 130px;
  padding: 1rem 1.5rem;
  background-color: #fff;
}
.wrap .ptd-t .ptd-t-ctn {
  font-size: 1rem;
  letter-spacing: -0.29px;
  color: #313131;
}
.wrap .ptd-t .ptd-t-ctn .ptd-mdm {
  height: 1.375rem;
  float: left;
  letter-spacing: -0.29px;
}
.wrap .ptd-t .ptd-t-ctn .ptd-mdm-qtt {
  height: 1.375rem;
  float: right;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
  text-align: right;
}
.wrap .ptd-t .ptd-t-ctn .ptd-mdm-qtt .ptd-mdm-qtt-c {
  color: #fd4c01;
}
.wrap .ptd-t .ptd-t-ctn .ptd-mdm-lg {
  font-size: 1.75rem;
}
.wrap .ptd-t .ptd-t-ctn .ptd-lg {
  height: 1.375rem;
  float: left;
  letter-spacing: -0.29px;
}
.wrap .ptd-t .ptd-t-ctn .ptd-lg-qtt {
  height: 1.375rem;
  float: right;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
  text-align: right;
}
.wrap .ptd-t .ptd-t-ctn .ptd-lg-qtt .ptd-lg-qtt-c {
  color: #fd4c01;
}
.wrap .ptd-t .ptd-t-ctn .ptd-elg {
  height: 1.375rem;
  float: left;
  letter-spacing: -0.29px;
}
.wrap .ptd-t .ptd-t-ctn .ptd-elg-qtt {
  height: 1.375rem;
  float: right;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
  text-align: right;
}
.wrap .ptd-t .ptd-t-ctn .ptd-elg-qtt .ptd-elg-qtt-c {
  color: #fd4c01;
}
.wrap .is {
  display: flex;
  text-align: left;
  justify-content: center;
  flex-direction: column;
  max-width: 372px;
  min-width: 327px;
  margin: 1rem 1.5rem 0.5rem 1.5rem;
}
.wrap .is .is-t {
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
  color: #313131;
  margin: 0;
}
.wrap .is .is-p {
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
  color: #313131;
  margin: 0;
  padding-bottom: 5rem;
}
.wrap .pay-d-fx-btm {
  display: flex;
  position: sticky;
  justify-content: space-between;
  bottom: 0;
  width: 100%;
  margin-left: -1px;
}
.wrap .pay-d-fx-btm .pay-d-send {
  display: flex;
  text-align: center;
  width: 50%;
  justify-content: center;
  text-align: center;
}
.wrap .pay-d-fx-btm .pay-d-send p {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.24px;
  text-align: center;
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 0;
  padding: 0.625rem;
  margin: 0;
  width: 50%;
  height: 3.125rem;
  color: #fff;
  z-index: 3;
}
.wrap .pay-d-fx-btm .pay-d-send p.pay-d-send-ps {
  background-image: linear-gradient(to bottom, #50c53e, #1b8140 99%);
}
.wrap .pay-d-fx-btm .submit-a {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.24px;
  text-align: center;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 3.125rem;
  color: #fff;
  background-image: linear-gradient(to bottom, #bfbfbf 1%, #919191 74%);
}
.wrap .pay-d-fx-btm .submit-a.active {
  background-image: linear-gradient(to bottom, #50c53e, #1b8140 99%);
}
.wrap .cd-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  height: 3.75rem;
  padding: 0.875rem 1rem;
  margin: 0;
}
.wrap .cd-navbar .cd-rf {
  z-index: 1;
}
.wrap .cd-navbar .cd-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 2.25rem;
  border: 0;
  list-style: none;
  float: right;
  margin: 0.875rem 0 0.875rem 0;
  gap: 0.5rem;
  padding: 0;
}
.wrap .cd-navbar .cd-nav .cd-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  min-width: 5.625rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background-color: #fff;
  padding: 0.3125rem 0.5rem;
  flex-wrap: nowrap;
  cursor: pointer;
}
.wrap .cd-navbar .cd-nav .cd-list .cd-p {
  min-width: 3rem;
  height: 1.375rem;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.29px;
  color: #fd4c01;
  font-weight: 500;
  white-space: nowrap;
}
.wrap .cd-navbar .cd-nav .cd-list .cd-img {
  text-align: end;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.125rem;
  object-fit: contain;
  transition: 0.2s;
}
.wrap .cd-navbar .cd-nav .cd-list .cd-img.active {
  transform: rotate(180deg);
}
.wrap .cd-navbar .cd-nav .exd-li .exd-img {
  background-image: url("../img/atom-button-glyphs-buttons-arrange-list-btn-arrange-list-t-2.svg");
  transition: 0.2s;
}
.wrap .cd-navbar .cd-nav .exd-li .exd-img.active {
  transform: rotate(180deg);
}
.wrap .cd-navbar .cd-nav .exd-li .exd-p-reset {
  width: 3rem;
  height: 1.375rem;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.29px;
  color: #313131;
  font-weight: 500;
}
.wrap .cd-navbar .cd-nav .exd-li .exd-img-reset {
  text-align: end;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.125rem;
  object-fit: contain;
  background-image: url("../img/atom-button-glyphs-buttons-arrange-list-btn-arrange-list-n.svg");
}
.wrap .cd-navbar .cd-nav .doa-li .doa-p {
  color: #313131;
}
.wrap .cd-navbar .cd-nav .doa-li .doa-img {
  background-image: url("../img/atom-button-glyphs-buttons-arrange-list-btn-arrange-list-n.svg");
  transition: 0.2s;
}
.wrap .cd-navbar .cd-nav .doa-li .doa-img.active {
  transform: rotate(180deg);
}
.wrap .cd-navbar .cd-nav .doa-li .doa-p-reset {
  color: #fd4c01;
}
.wrap .cd-navbar .cd-nav .doa-li .doa-img-reset {
  background-image: url("../img/atom-button-glyphs-buttons-arrange-list-btn-arrange-list-t-2.svg");
  transition: 0.2s;
}
.wrap .cd-navbar .cd-nav .doa-li .doa-img-reset.active {
  transform: rotate(180deg);
}
.wrap .sfy {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.25rem;
  padding: 1rem;
}
.wrap .sfy .sfy-p {
  font-size: 1rem;
  letter-spacing: -0.29px;
  text-align: center;
  color: #313131;
}
.wrap .uumodal,
.wrap .alamodal {
  display: none;
  position: fixed;
  z-index: 1;
  padding: 3.75rem 1rem;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(245, 245, 245, 0.97);
}
.wrap .uumodal .uumodal-ctn,
.wrap .uumodal .alamodal-ctn,
.wrap .alamodal .uumodal-ctn,
.wrap .alamodal .alamodal-ctn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  max-width: 381px;
  width: 100%;
  height: auto;
}
.wrap .uumodal .uumodal-ctn .u-close,
.wrap .uumodal .alamodal-ctn .u-close,
.wrap .alamodal .uumodal-ctn .u-close,
.wrap .alamodal .alamodal-ctn .u-close {
  display: flex;
  justify-content: end;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 381px;
  width: 100%;
  height: 2.6875rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
  color: #fd4c01;
  text-align: right;
  cursor: pointer;
}
.wrap .uumodal .uumodal-ctn .um-ctn-l,
.wrap .uumodal .alamodal-ctn .um-ctn-l,
.wrap .alamodal .uumodal-ctn .um-ctn-l,
.wrap .alamodal .alamodal-ctn .um-ctn-l {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 381px;
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  background-image: linear-gradient(to bottom, #fff, #fff), linear-gradient(to bottom, #fff 28%, #efefef 99%);
}
.wrap .uumodal .uumodal-ctn .um-ctn-l .uu-s,
.wrap .uumodal .uumodal-ctn .um-ctn-l .ala-s,
.wrap .uumodal .alamodal-ctn .um-ctn-l .uu-s,
.wrap .uumodal .alamodal-ctn .um-ctn-l .ala-s,
.wrap .alamodal .uumodal-ctn .um-ctn-l .uu-s,
.wrap .alamodal .uumodal-ctn .um-ctn-l .ala-s,
.wrap .alamodal .alamodal-ctn .um-ctn-l .uu-s,
.wrap .alamodal .alamodal-ctn .um-ctn-l .ala-s {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: calc(50% - 0.5rem);
  height: 2.5rem;
  border-radius: 0.75rem;
  border: solid 1px #ccc;
  background-color: white;
  font-size: 1rem;
  letter-spacing: -0.31px;
  color: #000;
}
.wrap .uumodal .uumodal-ctn .um-ctn-l .uu-s.disabled,
.wrap .uumodal .uumodal-ctn .um-ctn-l .ala-s.disabled,
.wrap .uumodal .alamodal-ctn .um-ctn-l .uu-s.disabled,
.wrap .uumodal .alamodal-ctn .um-ctn-l .ala-s.disabled,
.wrap .alamodal .uumodal-ctn .um-ctn-l .uu-s.disabled,
.wrap .alamodal .uumodal-ctn .um-ctn-l .ala-s.disabled,
.wrap .alamodal .alamodal-ctn .um-ctn-l .uu-s.disabled,
.wrap .alamodal .alamodal-ctn .um-ctn-l .ala-s.disabled {
  opacity: 0.4;
  background-color: unset;
  color: #000;
  border: solid 1px #ccc;
}
.wrap .uumodal .uumodal-ctn .um-ctn-l .uu-s:focus, .wrap .uumodal .uumodal-ctn .um-ctn-l .uu-s:active, .wrap .uumodal .uumodal-ctn .um-ctn-l .uu-s.active,
.wrap .uumodal .uumodal-ctn .um-ctn-l .ala-s:focus,
.wrap .uumodal .uumodal-ctn .um-ctn-l .ala-s:active,
.wrap .uumodal .uumodal-ctn .um-ctn-l .ala-s.active,
.wrap .uumodal .alamodal-ctn .um-ctn-l .uu-s:focus,
.wrap .uumodal .alamodal-ctn .um-ctn-l .uu-s:active,
.wrap .uumodal .alamodal-ctn .um-ctn-l .uu-s.active,
.wrap .uumodal .alamodal-ctn .um-ctn-l .ala-s:focus,
.wrap .uumodal .alamodal-ctn .um-ctn-l .ala-s:active,
.wrap .uumodal .alamodal-ctn .um-ctn-l .ala-s.active,
.wrap .alamodal .uumodal-ctn .um-ctn-l .uu-s:focus,
.wrap .alamodal .uumodal-ctn .um-ctn-l .uu-s:active,
.wrap .alamodal .uumodal-ctn .um-ctn-l .uu-s.active,
.wrap .alamodal .uumodal-ctn .um-ctn-l .ala-s:focus,
.wrap .alamodal .uumodal-ctn .um-ctn-l .ala-s:active,
.wrap .alamodal .uumodal-ctn .um-ctn-l .ala-s.active,
.wrap .alamodal .alamodal-ctn .um-ctn-l .uu-s:focus,
.wrap .alamodal .alamodal-ctn .um-ctn-l .uu-s:active,
.wrap .alamodal .alamodal-ctn .um-ctn-l .uu-s.active,
.wrap .alamodal .alamodal-ctn .um-ctn-l .ala-s:focus,
.wrap .alamodal .alamodal-ctn .um-ctn-l .ala-s:active,
.wrap .alamodal .alamodal-ctn .um-ctn-l .ala-s.active {
  background-color: #ff6300;
  border: solid 1px rgba(255, 255, 255, 0.41);
  color: #ffffff;
}
.wrap .chg-qtt {
  display: flex;
  align-items: center;
  width: 100%;
  height: 3.125rem;
  background-color: #fff;
  padding: 1rem;
}
.wrap .chg-qtt .chg-flip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex-direction: row;
  width: 100%;
}
.wrap .chg-qtt .chg-flip .chg-qtt-wl {
  display: flex;
  justify-content: end;
  align-items: center;
  text-align: center;
}
.wrap .chg-qtt .chg-flip .chg-qtt-wl .chg-qtt-numb {
  display: flex;
  justify-content: start;
  align-items: left;
  font-size: 0.9375rem;
  font-weight: 600;
}
.wrap .chg-qtt .chg-flip .chg-qtt-wl .qtt-t-numb {
  font-size: 0.8125rem;
  font-weight: 400;
  text-align: right;
}
.wrap .chg-qtt .chg-flip .chg-qtt-wl .qtt-t-numb .qtt-t-numb-c {
  font-size: 1rem;
  font-weight: 500;
  color: #fd4c01;
}
.wrap .chg-qtt .chg-flip .chg-qtt-wl .qtt-d-arrow {
  transform: rotate(-180deg);
  transition: 0.3s;
}
.wrap .chg-qtt .chg-flip .chg-qtt-wl .qtt-d-arrow-reset {
  transform: rotate(0deg);
  transition: 0.3s;
}
.wrap .chg-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  text-align: center;
  background: #fff;
  display: none;
}
.wrap .chg-panel .chg-panel-clm {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.wrap .chg-panel .chg-panel-clm .chg-mdm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .chg-panel .chg-panel-clm .chg-mdm .chg-mdm-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .chg-panel .chg-panel-clm .chg-mdm .chg-mdm-n .chg-mdm-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .chg-panel .chg-panel-clm .chg-lg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .chg-panel .chg-panel-clm .chg-lg .chg-lg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .chg-panel .chg-panel-clm .chg-lg .chg-lg-n .chg-lg-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .chg-panel .chg-panel-clm .chg-elg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .chg-panel .chg-panel-clm .chg-elg .chg-elg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .chg-panel .chg-panel-clm .chg-elg .chg-elg-n .chg-elg-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .chg-panel .chg-panel-clm .chg-s-n {
  text-align: right;
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
}
.wrap .chg-panel .chg-panel-clm .chg-s-n .chg-s-c {
  padding: 0.1875rem;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  letter-spacing: -0.29px;
  color: #fd4c01;
}
.wrap .chg-court-p {
  width: 100%;
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
  text-align: center;
  color: #7a7a7a;
  padding: 0.75rem 1rem;
}
.wrap .record-out-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 1rem;
}
.wrap .record-out-wrap .record-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  border-color: #d9d9d9;
  border-style: solid;
  border-width: 0.5px 0 0.5px 0;
}
.wrap .record-out-wrap .record-wrap .record-qtt {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 134px;
  background-color: #fff;
  padding: 0.5rem 1rem;
}
.wrap .record-out-wrap .record-wrap .record-qtt .record-flip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 0.5rem;
}
.wrap .record-out-wrap .record-wrap .record-qtt .record-flip .qtt-t-numb {
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
}
.wrap .record-out-wrap .record-wrap .record-qtt .record-flip .qtt-t-numb .qtt-t-numb-c {
  color: #fd4c01;
}
.wrap .record-out-wrap .record-wrap .record-qtt .record-flip .arrow-img {
  width: 1.875rem;
  height: 1.875rem;
}
.wrap .record-out-wrap .record-wrap .record-qtt .record-flip .qtt-d-arrow {
  transition: 0.3s;
  background-image: url("../img/atom-button-direction-small-down-btn-arrow-downg-t-z.svg");
}
.wrap .record-out-wrap .record-wrap .record-qtt .record-flip .qtt-d-arrow-reset {
  background-image: url("../img/atom-button-dropdown-grey-btn-arrowdowng-n-z.svg");
  transition: 0.3s;
}
.wrap .record-out-wrap .record-wrap .record-qtt .record-qtt-numb {
  padding: 0;
  margin: 0;
  justify-content: start;
  align-items: left;
  text-align: left;
  font-size: 1rem;
}
.wrap .record-out-wrap .record-wrap .record-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  text-align: center;
  background: #fff;
  display: none;
}
.wrap .record-out-wrap .record-wrap .record-panel .record-panel-clm {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.wrap .record-out-wrap .record-wrap .record-panel .record-panel-clm .record-mdm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-out-wrap .record-wrap .record-panel .record-panel-clm .record-mdm .record-mdm-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .record-out-wrap .record-wrap .record-panel .record-panel-clm .record-mdm .record-mdm-n .record-mdm-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .record-out-wrap .record-wrap .record-panel .record-panel-clm .record-lg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-out-wrap .record-wrap .record-panel .record-panel-clm .record-lg .record-lg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .record-out-wrap .record-wrap .record-panel .record-panel-clm .record-lg .record-lg-n .record-lg-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .record-out-wrap .record-wrap .record-panel .record-panel-clm .record-elg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-out-wrap .record-wrap .record-panel .record-panel-clm .record-elg .record-elg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .record-out-wrap .record-wrap .record-panel .record-panel-clm .record-elg .record-elg-n .record-elg-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .record-out-wrap .record-wrap .record-panel .record-panel-clm .record-s-n {
  text-align: right;
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
}
.wrap .record-out-wrap .record-wrap .record-panel .record-panel-clm .record-s-n .record-s-c {
  padding: 0.1875rem;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  letter-spacing: -0.29px;
  color: #fd4c01;
}
.wrap .record-out-wrap .record-wrap .record1-qtt {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 134px;
  background-color: #fff;
  padding: 0.5rem 1rem;
}
.wrap .record-out-wrap .record-wrap .record1-qtt .record1-flip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 0.5rem;
}
.wrap .record-out-wrap .record-wrap .record1-qtt .record1-flip .qtt-t-numb {
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
}
.wrap .record-out-wrap .record-wrap .record1-qtt .record1-flip .qtt-t-numb .qtt-t-numb-c {
  color: #fd4c01;
}
.wrap .record-out-wrap .record-wrap .record1-qtt .record1-flip .arrow-img1 {
  width: 1.875rem;
  height: 1.875rem;
}
.wrap .record-out-wrap .record-wrap .record1-qtt .record1-flip .qtt-d-arrow1 {
  transition: 0.3s;
  background-image: url("../img/atom-button-direction-small-down-btn-arrow-downg-t-z.svg");
}
.wrap .record-out-wrap .record-wrap .record1-qtt .record1-flip .qtt-d-arrow-reset1 {
  background-image: url("../img/atom-button-dropdown-grey-btn-arrowdowng-n-z.svg");
  transition: 0.3s;
}
.wrap .record-out-wrap .record-wrap .record1-qtt .record1-qtt-numb {
  padding: 0;
  margin: 0;
  justify-content: start;
  align-items: left;
  text-align: left;
  font-size: 1rem;
}
.wrap .record-out-wrap .record-wrap .record1-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  text-align: center;
  background: #fff;
  display: none;
}
.wrap .record-out-wrap .record-wrap .record1-panel .record1-panel-clm {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.wrap .record-out-wrap .record-wrap .record1-panel .record1-panel-clm .record1-mdm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-out-wrap .record-wrap .record1-panel .record1-panel-clm .record1-mdm .record1-mdm-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 6px;
}
.wrap .record-out-wrap .record-wrap .record1-panel .record1-panel-clm .record1-mdm .record1-mdm-n .record1-mdm-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .record-out-wrap .record-wrap .record1-panel .record1-panel-clm .record1-lg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-out-wrap .record-wrap .record1-panel .record1-panel-clm .record1-lg .record1-lg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .record-out-wrap .record-wrap .record1-panel .record1-panel-clm .record1-lg .record1-lg-n .record1-lg-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .record-out-wrap .record-wrap .record1-panel .record1-panel-clm .record1-elg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-out-wrap .record-wrap .record1-panel .record1-panel-clm .record1-elg .record1-elg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .record-out-wrap .record-wrap .record1-panel .record1-panel-clm .record1-elg .record1-elg-n .record1-elg-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .record-out-wrap .record-wrap .record1-panel .record1-panel-clm .record1-s-n {
  text-align: right;
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
}
.wrap .record-out-wrap .record-wrap .record1-panel .record1-panel-clm .record1-s-n .record1-s-c {
  padding: 0.1875rem;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  letter-spacing: -0.29px;
  color: #fd4c01;
}
.wrap .record-out-wrap .record-wrap .record2-qtt {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 134px;
  background-color: #fff;
  padding: 0.5rem 1rem;
}
.wrap .record-out-wrap .record-wrap .record2-qtt .record2-flip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 0.5rem;
}
.wrap .record-out-wrap .record-wrap .record2-qtt .record2-flip .qtt-t-numb {
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
}
.wrap .record-out-wrap .record-wrap .record2-qtt .record2-flip .qtt-t-numb .qtt-t-numb-c {
  color: #fd4c01;
}
.wrap .record-out-wrap .record-wrap .record2-qtt .record2-flip .arrow-img2 {
  width: 1.875rem;
  height: 1.875rem;
}
.wrap .record-out-wrap .record-wrap .record2-qtt .record2-flip .qtt-d-arrow2 {
  transition: 0.3s;
  background-image: url("../img/atom-button-direction-small-down-btn-arrow-downg-t-z.svg");
}
.wrap .record-out-wrap .record-wrap .record2-qtt .record2-flip .qtt-d-arrow-reset2 {
  background-image: url("../img/atom-button-dropdown-grey-btn-arrowdowng-n-z.svg");
  transition: 0.3s;
}
.wrap .record-out-wrap .record-wrap .record2-qtt .record2-qtt-numb {
  padding: 0;
  margin: 0;
  justify-content: start;
  align-items: left;
  text-align: left;
  font-size: 1rem;
}
.wrap .record-out-wrap .record-wrap .record2-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  text-align: center;
  background: #fff;
  display: none;
}
.wrap .record-out-wrap .record-wrap .record2-panel .record2-panel-clm {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.wrap .record-out-wrap .record-wrap .record2-panel .record2-panel-clm .record2-mdm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-out-wrap .record-wrap .record2-panel .record2-panel-clm .record2-mdm .record2-mdm-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .record-out-wrap .record-wrap .record2-panel .record2-panel-clm .record2-mdm .record2-mdm-n .record2-mdm-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .record-out-wrap .record-wrap .record2-panel .record2-panel-clm .record2-lg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-out-wrap .record-wrap .record2-panel .record2-panel-clm .record2-lg .record2-lg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .record-out-wrap .record-wrap .record2-panel .record2-panel-clm .record2-lg .record2-lg-n .record2-lg-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .record-out-wrap .record-wrap .record2-panel .record2-panel-clm .record2-elg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-out-wrap .record-wrap .record2-panel .record2-panel-clm .record2-elg .record2-elg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .record-out-wrap .record-wrap .record2-panel .record2-panel-clm .record2-elg .record2-elg-n .record2-elg-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .record-out-wrap .record-wrap .record2-panel .record2-panel-clm .record2-s-n {
  text-align: right;
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
}
.wrap .record-out-wrap .record-wrap .record2-panel .record2-panel-clm .record2-s-n .record2-s-c {
  padding: 0.1875rem;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  letter-spacing: -0.29px;
  color: #fd4c01;
}
.wrap .record-out-wrap .record-wrap .court-p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2.25rem;
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
  text-align: center;
  color: #7a7a7a;
  padding: 0.75rem 1rem;
  margin: 0;
}
.wrap .record-st-wrap {
  margin: 0;
  padding: 0;
  border-color: #d9d9d9;
  border-style: solid;
  border-width: 0.5px 0 0.5px 0;
}
.wrap .record-st-wrap .record-st-panel .st-dh-al {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.wrap .record-st-wrap .record-st-panel .st-dh-al .st-dh-p-cnt {
  text-align: left;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-st-wrap .record-qtt {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  padding: 0.5rem 1rem;
}
.wrap .record-st-wrap .record-qtt .record-flip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 0.5rem;
}
.wrap .record-st-wrap .record-qtt .record-flip .qtt-t-numb {
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
}
.wrap .record-st-wrap .record-qtt .record-flip .qtt-t-numb .qtt-t-numb-c {
  color: #fd4c01;
}
.wrap .record-st-wrap .record-qtt .record-flip .arrow-img {
  width: 1.875rem;
  height: 1.875rem;
}
.wrap .record-st-wrap .record-qtt .record-flip .qtt-d-arrow {
  transition: 0.3s;
  background-image: url("../img/atom-button-direction-small-down-btn-arrow-downg-t-z.svg");
}
.wrap .record-st-wrap .record-qtt .record-flip .qtt-d-arrow-reset {
  background-image: url("../img/atom-button-dropdown-grey-btn-arrowdowng-n-z.svg");
  transition: 0.3s;
}
.wrap .record-st-wrap .record-qtt .record-qtt-numb {
  padding: 0;
  margin: 0;
  justify-content: start;
  align-items: left;
  text-align: left;
  font-size: 1rem;
}
.wrap .record-st-wrap .record-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  padding-top: 0;
  text-align: center;
  background: #fff;
  display: none;
}
.wrap .record-st-wrap .record-panel .rcd-n-t {
  display: flex;
}
.wrap .record-st-wrap .record-panel .rcd-n-t .rcd-n-tl {
  text-align: left;
  font-size: 0.9375rem;
  letter-spacing: -0.27px;
  font-weight: 600;
}
.wrap .record-st-wrap .record-panel .record-panel-clm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.wrap .record-st-wrap .record-panel .record-panel-clm .record-mdm {
  display: flex;
  justify-content: space-between;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-st-wrap .record-panel .record-panel-clm .record-mdm .record-mdm-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  text-align: right;
}
.wrap .record-st-wrap .record-panel .record-panel-clm .record-mdm .record-mdm-n .record-mdm-c {
  width: 100%;
  color: #fd4c01;
  font-weight: 500;
}
.wrap .record-st-wrap .record-panel .record-panel-clm .record-lg {
  display: flex;
  justify-content: space-between;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-st-wrap .record-panel .record-panel-clm .record-lg .record-lg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  text-align: right;
}
.wrap .record-st-wrap .record-panel .record-panel-clm .record-lg .record-lg-n .record-lg-c {
  width: 100%;
  color: #fd4c01;
  font-weight: 500;
}
.wrap .record-st-wrap .record-panel .record-panel-clm .record-elg {
  display: flex;
  justify-content: space-between;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-st-wrap .record-panel .record-panel-clm .record-elg .record-elg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  text-align: right;
}
.wrap .record-st-wrap .record-panel .record-panel-clm .record-elg .record-elg-n .record-elg-c {
  width: 100%;
  color: #fd4c01;
  font-weight: 500;
}
.wrap .record-st-wrap .record-panel .record-panel-clm .record-s-n {
  text-align: right;
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
}
.wrap .record-st-wrap .record-panel .record-panel-clm .record-s-n .record-s-c {
  padding: 0.1875rem;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  letter-spacing: -0.29px;
  color: #fd4c01;
}
.wrap .record-st-wrap .record1-qtt {
  display: flex;
  flex-direction: column;
  height: 8.375rem;
  background-color: #fff;
  padding: 0.3125rem 1rem;
}
.wrap .record-st-wrap .record1-qtt .record1-flip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 0.5rem;
}
.wrap .record-st-wrap .record1-qtt .record1-flip .qtt-t-numb {
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
}
.wrap .record-st-wrap .record1-qtt .record1-flip .qtt-t-numb .qtt-t-numb-c {
  color: #fd4c01;
}
.wrap .record-st-wrap .record1-qtt .record1-flip .arrow-img1 {
  width: 1.875rem;
  height: 1.875rem;
}
.wrap .record-st-wrap .record1-qtt .record1-flip .qtt-d-arrow1 {
  transition: 0.3s;
  background-image: url("../img/atom-button-direction-small-down-btn-arrow-downg-t-z.svg");
}
.wrap .record-st-wrap .record1-qtt .record1-flip .qtt-d-arrow-reset1 {
  background-image: url("../img/atom-button-dropdown-grey-btn-arrowdowng-n-z.svg");
  transition: 0.3s;
}
.wrap .record-st-wrap .record1-qtt .record1-qtt-numb {
  padding: 0;
  margin: 0;
  justify-content: start;
  align-items: left;
  text-align: left;
  font-size: 1rem;
}
.wrap .record-st-wrap .record1-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  text-align: center;
  background: #fff;
  display: none;
}
.wrap .record-st-wrap .record1-panel .record1-panel-clm {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.wrap .record-st-wrap .record1-panel .record1-panel-clm .record1-mdm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-st-wrap .record1-panel .record1-panel-clm .record1-mdm .record1-mdm-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .record-st-wrap .record1-panel .record1-panel-clm .record1-mdm .record1-mdm-n .record1-mdm-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .record-st-wrap .record1-panel .record1-panel-clm .record1-lg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-st-wrap .record1-panel .record1-panel-clm .record1-lg .record1-lg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .record-st-wrap .record1-panel .record1-panel-clm .record1-lg .record1-lg-n .record1-lg-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .record-st-wrap .record1-panel .record1-panel-clm .record1-elg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-st-wrap .record1-panel .record1-panel-clm .record1-elg .record1-elg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .record-st-wrap .record1-panel .record1-panel-clm .record1-elg .record1-elg-n .record1-elg-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .record-st-wrap .record1-panel .record1-panel-clm .record1-s-n {
  text-align: right;
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
}
.wrap .record-st-wrap .record1-panel .record1-panel-clm .record1-s-n .record1-s-c {
  padding: 0.1875rem;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  letter-spacing: -0.29px;
  color: #fd4c01;
}
.wrap .record-st-wrap .record2-qtt {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 8.375rem;
  background-color: #fff;
  padding: 0.5rem 1rem;
  margin-top: 1.25rem;
}
.wrap .record-st-wrap .record2-qtt .record2-flip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 0.5rem;
}
.wrap .record-st-wrap .record2-qtt .record2-flip .qtt-t-numb {
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
}
.wrap .record-st-wrap .record2-qtt .record2-flip .qtt-t-numb .qtt-t-numb-c {
  color: #fd4c01;
}
.wrap .record-st-wrap .record2-qtt .record2-flip .arrow-img2 {
  width: 1.875rem;
  height: 1.875rem;
}
.wrap .record-st-wrap .record2-qtt .record2-flip .qtt-d-arrow2 {
  transition: 0.3s;
  background-image: url("../img/atom-button-direction-small-down-btn-arrow-downg-t-z.svg");
}
.wrap .record-st-wrap .record2-qtt .record2-flip .qtt-d-arrow-reset2 {
  background-image: url("../img/atom-button-dropdown-grey-btn-arrowdowng-n-z.svg");
  transition: 0.3s;
}
.wrap .record-st-wrap .record2-qtt .record2-qtt-numb {
  padding: 0;
  margin: 0;
  justify-content: start;
  align-items: left;
  text-align: left;
  font-size: 1rem;
}
.wrap .record-st-wrap .record2-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  text-align: center;
  background: #fff;
  display: none;
}
.wrap .record-st-wrap .record2-panel .record2-panel-clm {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.wrap .record-st-wrap .record2-panel .record2-panel-clm .record2-mdm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-st-wrap .record2-panel .record2-panel-clm .record2-mdm .record2-mdm-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .record-st-wrap .record2-panel .record2-panel-clm .record2-mdm .record2-mdm-n .record2-mdm-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .record-st-wrap .record2-panel .record2-panel-clm .record2-lg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-st-wrap .record2-panel .record2-panel-clm .record2-lg .record2-lg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .record-st-wrap .record2-panel .record2-panel-clm .record2-lg .record2-lg-n .record2-lg-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .record-st-wrap .record2-panel .record2-panel-clm .record2-elg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-st-wrap .record2-panel .record2-panel-clm .record2-elg .record2-elg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  display: flex;
  gap: 0.375rem;
}
.wrap .record-st-wrap .record2-panel .record2-panel-clm .record2-elg .record2-elg-n .record2-elg-c {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  float: right;
  text-align: right;
  width: 100%;
  color: #fd4c01;
}
.wrap .record-st-wrap .record2-panel .record2-panel-clm .record2-s-n {
  text-align: right;
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
}
.wrap .record-st-wrap .record2-panel .record2-panel-clm .record2-s-n .record2-s-c {
  padding: 0.1875rem;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  letter-spacing: -0.29px;
  color: #fd4c01;
}
.wrap .record-st-wrap .court-p {
  width: 343px;
  height: 2.25rem;
  font-size: 0.8125rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.24px;
  text-align: center;
  color: #7a7a7a;
  margin: 0.75rem 1rem;
}
.wrap .record-sg-wrap {
  margin: 0;
  padding: 0;
  border-color: #d9d9d9;
  border-style: solid;
  border-width: 0.5px 0 0.5px 0;
}
.wrap .record-sg-wrap .record-sg-panel .sg-dh-al {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.wrap .record-sg-wrap .record-sg-panel .sg-dh-al .sg-dh-p-cnt {
  text-align: left;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-sg-wrap .record-qtt {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  padding: 0.5rem 1rem;
}
.wrap .record-sg-wrap .record-qtt .record-flip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 0.5rem;
}
.wrap .record-sg-wrap .record-qtt .record-flip .qtt-t-numb {
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
}
.wrap .record-sg-wrap .record-qtt .record-flip .qtt-t-numb .qtt-t-numb-c {
  color: #fd4c01;
}
.wrap .record-sg-wrap .record-qtt .record-flip .arrow-img {
  width: 1.875rem;
  height: 1.875rem;
}
.wrap .record-sg-wrap .record-qtt .record-flip .qtt-d-arrow {
  transition: 0.3s;
  background-image: url("../img/atom-button-direction-small-down-btn-arrow-downg-t-z.svg");
}
.wrap .record-sg-wrap .record-qtt .record-flip .qtt-d-arrow-reset {
  background-image: url("../img/atom-button-dropdown-grey-btn-arrowdowng-n-z.svg");
  transition: 0.3s;
}
.wrap .record-sg-wrap .record-qtt .record-qtt-numb {
  padding: 0;
  margin: 0;
  justify-content: start;
  align-items: left;
  text-align: left;
  font-size: 1rem;
}
.wrap .record-sg-wrap .record-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  padding-top: 0;
  text-align: center;
  background: #fff;
  display: none;
  gap: 1rem;
}
.wrap .record-sg-wrap .record-panel .rcd-pay-ctn-wrap {
  display: flex;
  flex-direction: column;
  letter-spacing: -0.29px;
  gap: 0.5rem;
}
.wrap .record-sg-wrap .record-panel .rcd-pay-ctn-wrap .pay-d-ctn {
  margin: 0;
  padding: 0;
}
.wrap .record-sg-wrap .record-panel .rcd-pay-ctn-wrap .pay-d-ctn .d-d {
  float: left;
  margin: 0;
}
.wrap .record-sg-wrap .record-panel .rcd-pay-ctn-wrap .pay-d-ctn .d-d-numb {
  float: right;
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
}
.wrap .record-sg-wrap .record-panel .rcd-pay-ctn-wrap .pay-d-ctn .d-pd {
  float: left;
  margin: 0;
}
.wrap .record-sg-wrap .record-panel .rcd-pay-ctn-wrap .pay-d-ctn .d-pd-t {
  float: right;
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
}
.wrap .record-sg-wrap .record-panel .rcd-pay-ctn-wrap .pay-d-ctn .d-ta {
  float: left;
  margin: 0;
}
.wrap .record-sg-wrap .record-panel .rcd-pay-ctn-wrap .pay-d-ctn .d-ta-numb {
  width: 122px;
  height: 1.375rem;
  float: right;
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
  color: #fd4c01;
}
.wrap .record-sg-wrap .record-panel .rcd-n-t {
  display: flex;
}
.wrap .record-sg-wrap .record-panel .rcd-n-t .rcd-n-tl {
  text-align: left;
  font-size: 0.9375rem;
  letter-spacing: -0.27px;
  font-weight: 600;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm .record-mdm {
  display: flex;
  justify-content: space-between;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm .record-mdm .record-mdm-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  text-align: right;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm .record-mdm .record-mdm-n .record-mdm-c {
  width: 100%;
  color: #fd4c01;
  font-weight: 500;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm .record-lg {
  display: flex;
  justify-content: space-between;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm .record-lg .record-lg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  text-align: right;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm .record-lg .record-lg-n .record-lg-c {
  width: 100%;
  color: #fd4c01;
  font-weight: 500;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm .record-elg {
  display: flex;
  justify-content: space-between;
  width: 100%;
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm .record-elg .record-elg-n {
  letter-spacing: -0.29px;
  color: #313131;
  font-size: 1rem;
  text-align: right;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm .record-elg .record-elg-n .record-elg-c {
  width: 100%;
  color: #fd4c01;
  font-weight: 500;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm .record-s-n {
  text-align: right;
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm .record-s-n .record-s-c {
  padding: 0.1875rem;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  letter-spacing: -0.29px;
  color: #fd4c01;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm .rcd-gh-btn-ol {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 2.25rem;
  background-image: linear-gradient(to bottom, #f6f6f6 2%, #e9e9e9);
  border: solid 1px #ccc;
  border-radius: 0.75rem;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm .rcd-gh-btn-ol .rcd-gh-btn {
  font-size: 1.0625rem;
  text-align: center;
  color: #fd4c01;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm .rcd-pnl-chk {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}
.wrap .record-sg-wrap .record-panel .record-panel-clm .rcd-pnl-chk .rcd-pnl-chk-p {
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
  color: #313131;
  margin: 0;
}
.wrap .record-sg-wrap .court-p {
  width: 343px;
  height: 2.25rem;
  font-size: 0.8125rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.24px;
  text-align: center;
  color: #7a7a7a;
  margin: 0.75rem 1rem;
}
.wrap .cr-out-out {
  display: flex;
  width: 100%;
  background-color: #ffffff;
  margin-bottom: 1rem;
}
.wrap .cr-out-out .cr-out {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
  padding: 1rem;
}
.wrap .cr-out-out .cr-out .cr {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 0.1rem;
  padding: 1rem;
  position: relative;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.07), 0 4px 12px 0 rgba(197, 197, 197, 0.07), 0 2px 4px 0 rgba(170, 170, 170, 0.06);
  background-image: linear-gradient(to bottom, #fff, #fff), linear-gradient(to bottom, #fff 28%, #efefef 99%);
}
.wrap .cr-out-out .cr-out .cr .cr-clm-hr {
  width: 2.5px;
  height: 100%;
  margin: 0 1rem;
  background-color: #38bff1;
}
.wrap .cr-out-out .cr-out .cr .cr-code {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
}
.wrap .cr-out-out .cr-out .cr .cr-code .cr-chgcode {
  width: 100%;
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
  color: #000;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.wrap .cr-out-out .cr-out .cr .cr-s {
  width: 3.75rem;
  height: 3.75rem;
  margin-right: 1rem;
  position: relative;
}
.wrap .cr-out-out .cr-out .cr .cr-s img {
  width: 100%;
}
.wrap .cr-out-out .cr-out .cr .cr-p {
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  max-width: 100%;
  margin: 0;
  white-space: nowrap;
}
.wrap .cr-out-out .cr-out .cr .cr-d {
  letter-spacing: -0.24px;
  color: #313131;
  font-size: 0.8125rem;
  display: flex;
  flex-direction: column;
  margin: 0;
  flex-wrap: nowrap;
}
.wrap .cr-out-out .cr-out .cr input[type=checkbox] {
  display: none;
}
.wrap .cr-out-out .cr-out .cr input[type=checkbox] + label {
  color: #000;
}
.wrap .cr-out-out .cr-out .cr input[type=checkbox] + label span {
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  vertical-align: middle;
  background: url("Content/img/atom-button-control-check-box-btn-check-box-n.svg") top no-repeat;
  cursor: pointer;
}
.wrap .cr-out-out .cr-out .cr input[type=checkbox]:checked + label span {
  background: url("Content/img/atom-button-control-check-box-btn-check-box-t.svg") top no-repeat;
}
.wrap .crd-out {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.wrap .crd-out .crt {
  display: flex;
  justify-content: start;
  align-items: center;
  text-align: left;
  width: 100%;
  gap: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.75rem 0 rgba(0, 0, 0, 0.07), 0 0.25rem 0.75rem 0 rgba(197, 197, 197, 0.07), 0 0.125rem 0.25rem 0 rgba(170, 170, 170, 0.06);
  background-image: linear-gradient(to bottom, #fff, #fff), linear-gradient(to bottom, #fff 28%, #efefef 99%);
}
.wrap .crd-out .crt .cr-code {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  flex-wrap: nowrap;
}
.wrap .crd-out .crt .cr-code .cr-chgcode {
  font-size: 0.8125rem;
  letter-spacing: -0.24px;
  text-align: center;
  color: #000;
  white-space: nowrap;
}
.wrap .crd-out .crt .cr-s {
  width: 3.75rem;
  height: 3.75rem;
}
.wrap .crd-out .crt .cr-p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}
.wrap .crd-out .crt .cr-d {
  letter-spacing: -0.24px;
  color: #313131;
  font-size: 0.8125rem;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.wrap .crd-out .crt input[type=checkbox] {
  display: none;
  margin-left: -1rem;
}
.wrap .crd-out .crt input[type=checkbox] + label {
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: -1rem;
  width: 4.25rem;
  height: 5.625rem;
  cursor: pointer;
  margin-bottom: 0;
}
.wrap .crd-out .crt input[type=checkbox] + label span {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  background: url("../img/atom-button-control-check-box-btn-check-box-n.svg") top no-repeat;
  cursor: pointer;
}
.wrap .crd-out .crt input[type=checkbox]:checked + label span {
  background: url("../img/atom-button-control-check-box-btn-check-box-t.svg") top no-repeat;
}
.wrap .cd-fx-btm {
  display: flex;
  position: sticky;
  bottom: 0;
  width: 100%;
  margin-left: -1px;
}
.wrap .cd-fx-btm .cd-send {
  display: flex;
  text-align: center;
  width: 100%;
  justify-content: center;
  text-align: center;
}
.wrap .cd-fx-btm .cd-send .cd-send-p {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem;
  width: 100%;
  color: #fff;
  z-index: 3;
}
.wrap .cd-fx-btm .submit-a {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.24px;
  text-align: center;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.125rem;
  color: #fff;
  background-image: linear-gradient(to bottom, #bfbfbf 1%, #919191 74%);
}
.wrap .cd-fx-btm .submit-a.active {
  background-image: linear-gradient(to bottom, #50c53e, #1b8140 99%);
}
.wrap .csend-modal {
  display: none;
}
.wrap .csend-modal .box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(245, 245, 245, 0.96);
}
.wrap .csend-modal .box .cs-loading-ctn {
  display: flex;
  flex-direction: column;
  position: fixed;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
}
.wrap .csend-modal .box .cs-loading-ctn .cs-loading-p {
  letter-spacing: -0.34px;
  font-size: 1.1875rem;
}
.wrap .csend-modal .box .csend-modal-ctn-wrap {
  width: 327px;
  height: 194px;
  background-image: linear-gradient(to bottom, #fff, #fff), linear-gradient(to bottom, #fff 28%, #efefef 99%);
  box-shadow: 0 0.25rem 0.75rem 0 rgba(197, 197, 197, 0.07), 0 0.125rem 0.25rem 0 rgba(170, 170, 170, 0.06);
  border: 1px solid #ff6300;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  position: fixed;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wrap .csend-modal .box .csend-modal-ctn-wrap .csend-modal-ctn {
  width: 100%;
  height: 4.375rem;
  background-color: #ff6300;
  border-radius: 0.6875rem 0.6875rem 0 0;
  display: flex;
  text-align: center;
  justify-content: start;
  align-items: center;
}
.wrap .csend-modal .box .csend-modal-ctn-wrap .csend-modal-ctn .cs-close {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: bold;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 3;
  position: absolute;
  left: 0;
  top: -0.3125rem;
  opacity: 1;
}
.wrap .csend-modal .box .csend-modal-ctn-wrap .csend-modal-ctn .cs-close:hover,
.wrap .csend-modal .box .csend-modal-ctn-wrap .csend-modal-ctn .cs-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.wrap .csend-modal .box .csend-modal-ctn-wrap .csend-modal-ctn .csend-modal-ctn-header {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: #fff;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0.1875rem;
}
.wrap .csend-modal .box .csend-modal-ctn-wrap .csend-modal-ctn-nr {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.wrap .csend-modal .box .csend-modal-ctn-wrap .csend-modal-ctn-nr .csend-modal-ctn-nr-p {
  font-size: 1rem;
  letter-spacing: -0.29px;
  max-width: 220px;
}
.wrap .csend-modal .box .csend-modal-ctn-wrap .csend-modal-ctn-cfm {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 90%;
  padding: 0.5rem 0.75rem;
  border-top: 1px solid rgba(197, 197, 197, 0.7);
  cursor: pointer;
}
.wrap .csend-modal .box .csend-modal-ctn-wrap .csend-modal-ctn-cfm .csd-hr {
  width: 1px;
  height: 100%;
  background-color: #d4d4d4;
}
.wrap .csend-modal .box .csend-modal-ctn-wrap .csend-modal-ctn-cfm .csend-modal-ctn-cfm-btn {
  width: 163px;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.31px;
  text-align: center;
  color: #000;
}
.wrap .mk-modal .box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(245, 245, 245, 0.96);
}
.wrap .mk-modal .box .mk-modal-ctn-wrap {
  width: 327px;
  height: 194px;
  background-image: linear-gradient(to bottom, #fff, #fff), linear-gradient(to bottom, #fff 28%, #efefef 99%);
  box-shadow: 0 0.25rem 0.75rem 0 rgba(197, 197, 197, 0.07), 0 0.125rem 0.25rem 0 rgba(170, 170, 170, 0.06);
  border: 1px solid #ff6300;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  position: fixed;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wrap .mk-modal .box .mk-modal-ctn-wrap .mk-modal-ctn {
  width: 100%;
  height: 2.75rem;
  background-color: #ff6300;
  border-radius: 0.6875rem 0.6875rem 0 0;
  display: flex;
  text-align: center;
  justify-content: start;
  align-items: center;
}
.wrap .mk-modal .box .mk-modal-ctn-wrap .mk-modal-ctn .mk-close {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: bold;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  opacity: 1;
}
.wrap .mk-modal .box .mk-modal-ctn-wrap .mk-modal-ctn .mk-close:hover,
.wrap .mk-modal .box .mk-modal-ctn-wrap .mk-modal-ctn .mk-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.wrap .mk-modal .box .mk-modal-ctn-wrap .mk-modal-ctn .mk-modal-ctn-header {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: #fff;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.wrap .mk-modal .box .mk-modal-ctn-wrap .mk-modal-ctn-nr {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.wrap .mk-modal .box .mk-modal-ctn-wrap .mk-modal-ctn-nr .mk-modal-ctn-nr-p {
  font-size: 1rem;
  letter-spacing: -0.29px;
  max-width: 248px;
}
.wrap .mk-modal .box .mk-modal-ctn-wrap .mk-modal-ctn-cfm {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 90%;
  padding: 0.5rem 0.75rem;
  border-top: 1px solid rgba(197, 197, 197, 0.7);
  cursor: pointer;
}
.wrap .mk-modal .box .mk-modal-ctn-wrap .mk-modal-ctn-cfm .csd-hr {
  width: 1px;
  height: 100%;
  background-color: #d4d4d4;
}
.wrap .mk-modal .box .mk-modal-ctn-wrap .mk-modal-ctn-cfm .mk-modal-ctn-cfm-btn {
  width: 163px;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.31px;
  text-align: center;
  color: #000;
}
.wrap .barcode-container {
  display: flex;
  justify-content: center;
  width: 360px;
  top: 15px;
}
.wrap .barcode-container .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.wrap .barcode-container .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 1.125rem;
  background: #fff;
  border-radius: 0.625rem;
  border: solid 1px #ff6300;
  width: 327px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 300ms;
  transform: scale(0.9);
}
.wrap .barcode-container .swiper-wrapper .swiper-slide .swp-cnt .barcode-close {
  position: absolute;
  left: 0;
  top: 0;
}
.wrap .barcode-container .swiper-wrapper .swiper-slide .swp-cnt .barcode-t {
  padding-top: 1.875rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.36px;
  color: #000;
}
.wrap .barcode-container .swiper-wrapper .swiper-slide .swp-cnt .barcode-code {
  font-size: 0.875rem;
  text-align: center;
  color: #313131;
}
.wrap .barcode-container .swiper-wrapper .swiper-slide .swp-cnt .barcode-dh {
  font-size: 1rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.29px;
  text-align: center;
  color: #313131;
}
.wrap .barcode-container .swiper-wrapper .swiper-slide-active,
.wrap .barcode-container .swiper-wrapper .swiper-slide-duplicate-active {
  transform: scale(1);
}
.wrap .bc-p-cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.wrap .bc-p-cnt .bc-p {
  width: 288px;
  height: 3.5rem;
  font-size: 0.8125rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.24px;
  text-align: center;
  color: #313131;
}
.wrap .btn-swp-wrap {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 86;
}
.wrap .btn-swp-wrap .swp-btn-b,
.wrap .btn-swp-wrap .swp-btn-n {
  background-size: 151px 42px;
  width: 131px;
  margin: 0;
  padding: 0;
  position: relative;
  bottom: 0;
  z-index: 11;
}
.wrap .btn-swp-wrap .swp-btn-b {
  background-image: url("../img/atom-button-navigation-card-navigation-left.svg");
}
.wrap .btn-swp-wrap .swp-btn-n {
  background-image: url("../img/atom-button-navigation-card-navigation-right.svg");
}
.wrap .ms-bz-tl {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 1rem 1.75rem;
  background-color: #ffffff;
}
.wrap .ms-bz-tl .ms-bz-tl.wz {
  letter-spacing: -0.29px;
  text-align: center;
  color: #313131;
  font-size: 1rem;
}
.wrap .hb-sm-w-ms {
  display: flex;
  justify-content: start;
  align-items: left;
  text-align: left;
  flex-direction: column;
  width: 100%;
  padding: 1.5rem;
  gap: 1rem;
}
.wrap .hb-sm-w-ms .hb-w-mt {
  display: flex;
  text-align: left;
  justify-content: left;
  align-items: left;
  flex-direction: column;
  width: 100%;
  padding: 0.4375rem 0;
  gap: 0.75rem;
}
.wrap .hb-sm-w-ms .hb-w-mt .barcode-webp {
  width: 100%;
}
.wrap .hb-sm-w-ms .hb-w-mt .hb-w-mt-btn {
  display: flex;
  justify-content: start;
  align-items: center;
  text-align: left;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.75rem 0 rgba(197, 197, 197, 0.07), 0 0.125rem 0.25rem 0 rgba(170, 170, 170, 0.06);
  background-image: linear-gradient(to bottom, #fff, #fff), linear-gradient(to bottom, #fff 28%, #efefef 99%);
  letter-spacing: -0.29px;
  color: #000;
  font-size: 1rem;
}
.wrap .hb-sm-w-ms .hb-w-mt .hb-w-mt-qk {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 285px;
  height: 176px;
  padding-right: 0.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.75rem 0 rgba(197, 197, 197, 0.07), 0 0.125rem 0.25rem 0 rgba(170, 170, 170, 0.06);
  background-color: grey;
}
.wrap .hb-sm-w-ms .hb-sm-w-ma {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 0.75rem;
}
.wrap .hb-sm-w-ms .hb-sm-w-ma .nm-s {
  margin-top: -0.8125rem;
}
.wrap .hb-sm-w-ms .hb-sm-w-ma .hb-sm-w {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 2.1875rem;
  height: 1.875rem;
  border-radius: 0.9375rem;
  box-shadow: inset 0 -2px 4px 0 #fe7504;
  background-image: linear-gradient(to bottom, #ffde46 1%, #fd4c01 77%, #fda101);
  border: 1px solid #fda101;
}
.wrap .hb-sm-w-ms .hb-sm-w-ma .hb-sm-w .hb-sm-w-nm {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
  color: #fff;
}
.wrap .hb-sm-w-ms .hb-sm-w-ma .hb-w-mt-t {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
  color: #000;
  width: 100%;
}
.wrap .hb-sm-w-ms .hb-w-mtts {
  display: flex;
  text-align: left;
  justify-content: left;
  align-items: left;
  flex-direction: column;
  padding: 0.25rem 0;
  width: 100%;
  gap: 0.75rem;
}
.wrap .hb-sm-w-ms .hb-w-mtts .hb-w-mtts-t {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.29px;
  color: #000;
  max-width: 285px;
}
.wrap .hb-sm-w-ms .hb-w-mtts .hb-w-mtts-btn {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1rem 0.5rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px 0 rgba(197, 197, 197, 0.07), 0 2px 4px 0 rgba(170, 170, 170, 0.06);
  background-image: linear-gradient(to bottom, #fff, #fff), linear-gradient(to bottom, #fff 28%, #efefef 99%);
}
.wrap .hb-mtts-modal {
  display: none;
}
.wrap .hb-mtts-modal .box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(245, 245, 245, 0.96);
}
.wrap .hb-mtts-modal .box .hb-mtts-modal-ctn-wrap {
  width: 327px;
  background-image: linear-gradient(to bottom, #fff, #fff), linear-gradient(to bottom, #fff 28%, #efefef 99%);
  box-shadow: 0 4px 12px 0 rgba(197, 197, 197, 0.07), 0 2px 4px 0 rgba(170, 170, 170, 0.06);
  border: 1px solid #ff6300;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  position: fixed;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wrap .hb-mtts-modal .box .hb-mtts-modal-ctn-wrap .hb-mtts-modal-ctn {
  width: 100%;
  height: 3.125rem;
  background-color: #ff6300;
  border-radius: 0.6875rem 0.6875rem 0 0;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.4px;
  text-align: center;
  color: #fff;
}
.wrap .hb-mtts-modal .box .hb-mtts-modal-ctn-wrap .hb-mtts-modal-ctn .hb-mtts-close {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: bold;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 3;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  opacity: 1;
}
.wrap .hb-mtts-modal .box .hb-mtts-modal-ctn-wrap .hb-mtts-modal-ctn .hb-mtts-close:hover,
.wrap .hb-mtts-modal .box .hb-mtts-modal-ctn-wrap .hb-mtts-modal-ctn .hb-mtts-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.wrap .hb-mtts-modal .box .hb-mtts-modal-ctn-wrap .hb-mtts-modal-ctn .hb-mtts-modal-ctn-header {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: #fff;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 3px;
}
.wrap .hb-mtts-modal .box .hb-mtts-modal-ctn-wrap .hb-mtts-modal-ctn-nr {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.wrap .hb-mtts-modal .box .hb-mtts-modal-ctn-wrap .hb-mtts-modal-ctn-nr .hb-mtts-modal-ctn-nr-p {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 1.5rem;
  font-size: 1rem;
  letter-spacing: -0.29px;
  max-width: 220px;
}

.modal-body button.close {
  width: 2.5rem;
  height: 2.5rem;
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  top: 0;
  left: 0;
}
.modal-body button.close span {
  width: 60%;
  height: 2px;
  background-color: #000;
  transform-origin: center center;
}
.modal-body button.close span:nth-child(1) {
  position: absolute;
  transform: rotate(45deg);
}
.modal-body button.close span:nth-child(2) {
  transform: rotate(135deg);
}

.error-wrap {
  display: block;
  margin-top: 0.5rem;
  width: 100%;
}
.error-wrap .error {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0.875rem;
  width: 100%;
  font-size: 1.0825rem;
  border-radius: 99rem;
  font-weight: 500;
  letter-spacing: -0.24px;
  background-color: #fae5e8;
  color: #ff001f;
}

.fp-container {
  position: relative;
  max-width: 420px;
  min-width: 360px;
  height: 220px;
  overflow: hidden;
}
@media (max-width: 374.98px) {
  .fp-container {
    width: 360px;
  }
}
.fp-container .fp-wrapper {
  height: 220px;
}
.fp-container .fp-wrapper .fp-slide {
  text-align: center;
  font-size: 1.125rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.fp-container .fp-wrapper .fp-slide img {
  display: block;
  max-width: 420px;
  min-width: 360px;
  height: 220px;
  object-fit: cover;
  overflow: hidden;
}
.fp-container .swiper-pagination {
  align-items: center;
  text-align: center;
  justify-content: center;
  z-index: 3;
}
.fp-container .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  text-align: center;
  background-color: #d8d8d8;
  opacity: 1;
}
.fp-container .swiper-pagination-bullet-active {
  border: solid 1px #ffcb7c;
  background-color: #ffcb7c;
}

.label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  width: 80%;
  height: unset;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 99rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14px;
  margin: 0;
}
.label.pay {
  background-color: #bfe6cc;
  color: #0ea93f;
}
.label.unpay {
  background-color: #d0021b;
  color: #ffffff;
}

.btn-green {
  padding: 0.45rem 0.75rem;
  border: unset;
  background-image: linear-gradient(to bottom, #50c53e, #1b8140 99%);
  border-radius: 0.65rem;
  white-space: nowrap;
}
.btn-green span {
  letter-spacing: 0.24px;
  text-align: center;
  color: white;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

.btn-orange {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 0.625rem 0;
  background-image: linear-gradient(to bottom, #ff8e07, #ff6100 67%, #eb3903), linear-gradient(to bottom, #fd4c01, #fd4c01);
  border: unset;
  z-index: 20;
}
.btn-orange span {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.24px;
  text-align: center;
  color: white;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

.card {
  backdrop-filter: blur(1px);
  box-shadow: 0 4px 12px 0 rgba(197, 197, 197, 0.07), 0 2px 4px 0 rgba(170, 170, 170, 0.06);
}

.disabled {
  pointer-events: none;
  filter: grayscale(1);
}

/*D23-01907 需求新增語法 start*/
/*字體顏色 start*/
.wrap .takecup-scan p span, .wrap .takecup-DIR span {
  color: red;
}

/*字體顏色 End*/
/*行距 start*/
.LH-15 {
  line-height: 1.5;
}

/*行距  End*/
.wrap .scan-box, .wrap .takecup-img-box {
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 0.25rem 0.75rem 0 rgba(197, 197, 197, 0.07), 0 2px 0.25rem 0 rgba(170, 170, 170, 0.06);
  box-shadow: 0 0.25rem 0.75rem 0 rgba(197, 197, 197, 0.07), 0 2px 0.25rem 0 rgba(170, 170, 170, 0.06);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)), -webkit-gradient(linear, left top, left bottom, color-stop(28%, #fff), color-stop(99%, #efefef));
  background-image: linear-gradient(to bottom, #fff, #fff), linear-gradient(to bottom, #fff 28%, #efefef 99%);
  margin-bottom: 1rem;
}

.wrap .takecup-scan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.75rem 1rem;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: url(../img/btn-arrow-right-n.svg) no-repeat right center transparent;
  font-size: 1rem;
  font-weight: bold;
  align-items: center;
}

.wrap .takecup-scan p {
  margin: 0 0 0 1rem;
}

.wrap .takecup-scan p span {
  color: red;
}

.wrap .takecup-img-box {
  padding: 1rem;
}

.wrap .takecup-DIR {
  width: 100%;
  font-size: 1rem;
  letter-spacing: -0.24px;
  text-align: center;
  color: #7a7a7a;
  padding: 0 1rem 0.75rem 1rem;
}

.wrap .takecup-iq-sm p {
  font-size: 1rem;
  font-weight: 300;
  color: #313131;
}

/*D23-01907 需求新增語法 end*/
.text-warn.svelte-1xp6oqt{color:#FF001F}
.wrap-starbucks{color:#fff;background:#1d3c34;width:100vw}
/**
 * Swiper 8.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 4, 2022
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}
:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}
.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}
img.banner.svelte-1ckdjpj{display:block;max-width:100%;min-width:375px;height:220px;-o-object-fit:cover;object-fit:cover;overflow:hidden}img.full-banner.svelte-1ckdjpj{display:block;max-width:100%;min-width:375px;-o-object-fit:cover;object-fit:cover;overflow:hidden}
.danger.svelte-1ekw90f{color:#fd4c01}
.text-pause.svelte-ca5nha{font-size:1.4rem}.btn-hidden.svelte-ca5nha{visibility:hidden}
.map-view.svelte-1t2wkk9{min-height:calc(100vh - 2.75rem);touch-action:manipulation}.map-btn-view.svelte-1t2wkk9{min-height:calc(100vh - 5.75rem);touch-action:manipulation}
.highlighted.svelte-1qvjeff{color:#fd4c01}
.search-wrap.svelte-urcee7.svelte-urcee7{position:fixed;width:100%;height:3.75rem;max-width:420px;z-index:98;background-color:#f5f5f5}.ala-li.svelte-urcee7>input.svelte-urcee7{width:80vw;height:100%;text-align:center;border:0;outline:none}.cd-list.svelte-urcee7.svelte-urcee7{max-width:342px}.search-result.svelte-urcee7.svelte-urcee7{padding-top:0;width:100%}.lease.svelte-urcee7.svelte-urcee7{height:64vh;overflow:scroll}.center.svelte-urcee7.svelte-urcee7{display:flex;justify-content:center;align-items:center}
.btn-wrap.svelte-igqpg5{position:fixed;right:0px;width:20%;height:100px;max-width:420px;bottom:56px;z-index:96;cursor:pointer}.my-location.svelte-igqpg5{position:absolute;text-align:center;bottom:24px;right:24px;background-color:#fff;background-size:24px;background-position:center;background-repeat:no-repeat;width:50px;height:50px;border-radius:28px;box-shadow:rgba(0, 0, 0, 0.24) 0px 3px 8px;z-index:0}.center.svelte-igqpg5{display:flex;justify-content:center;align-items:center}
#near-location-info.svelte-rgdtq0{position:fixed;bottom:0;left:0;width:100%;background-color:rgba(255, 255, 255, 1);padding-top:8px;padding-left:20px;padding-right:20px;padding-bottom:20px;box-shadow:0px -2px 5px rgba(0, 0, 0, 0.1);z-index:96}small.svelte-rgdtq0{color:#7a7a7a}#location-info-hide.svelte-rgdtq0{position:fixed;bottom:-8px;left:0;width:100%;background-color:rgba(255, 255, 255, 1);padding-top:8px;padding-left:20px;padding-right:20px;padding-bottom:30px;box-shadow:0px -2px 5px rgba(0, 0, 0, 0.1);z-index:96}hr.svelte-rgdtq0{margin:auto;border:0;height:2px;width:100px;background-image:linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0))}.lease.svelte-rgdtq0{border:0;box-shadow:0 0 0 transparent}
#location-info.svelte-oqt7z6.svelte-oqt7z6{position:fixed;bottom:0;left:0;width:100%;background-color:rgba(255, 255, 255, 1);padding-top:8px;padding-left:20px;padding-right:20px;padding-bottom:20px;box-shadow:0px -2px 5px rgba(0, 0, 0, 0.1);z-index:96}#location-info.svelte-oqt7z6>h5.svelte-oqt7z6{padding-top:20px}small.svelte-oqt7z6.svelte-oqt7z6{color:#7a7a7a}#location-info-hide.svelte-oqt7z6.svelte-oqt7z6{position:fixed;bottom:-8px;left:0;width:100%;background-color:rgba(255, 255, 255, 1);padding-top:8px;padding-left:20px;padding-right:20px;padding-bottom:30px;box-shadow:0px -2px 5px rgba(0, 0, 0, 0.1);z-index:96}.location-info-btn.svelte-oqt7z6.svelte-oqt7z6{margin-right:10px;padding:5px 10px;background-color:#fff;color:#fd4c01;border-radius:50px;cursor:pointer}hr.svelte-oqt7z6.svelte-oqt7z6{margin:auto;border:0;height:2px;width:100px;background-image:linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0))}
#zoom-control.svelte-1pp6yg3{position:fixed;bottom:4px;left:15px;z-index:1;background-color:white;padding:5px;border-radius:5px;box-shadow:0 2px 4px rgba(0,0,0,0.1);z-index:96}#zoom-in.svelte-1pp6yg3,#zoom-out.svelte-1pp6yg3{cursor:pointer;margin-bottom:5px;display:block}
.map-view.svelte-228wsx{position:fixed;border:0;margin-top:-0.45rem;min-height:calc(100vh + 2.725rem);max-width:420px;touch-action:manipulation;z-index:0}.map-view-full.svelte-228wsx{position:fixed;border:0;margin-top:0rem;min-height:calc(100vh + 2.725rem);max-width:420px;touch-action:manipulation;z-index:0}
.my-map-wrap.svelte-8barl{min-height:calc(100vh + 3.125rem)}
input[name="num1"].svelte-1wk6o48{vertical-align:middle;-moz-appearance:textfield;margin:0;text-align:center}
.takecup-DIR.svelte-10wdmuo{font-weight:500}
.popcard-content-text.svelte-c7zx6d.svelte-c7zx6d{width:100%;text-align:center}.popcard-content-text.svelte-c7zx6d .btn-white-two button.svelte-c7zx6d{width:100%;margin:9px 0 18px 0;font-size:1rem}.popcard-addbt-content.svelte-c7zx6d button.svelte-c7zx6d{width:144px;font-size:1rem;margin-top:0}.popcard-content-text.svelte-c7zx6d button.svelte-c7zx6d{color:#fd4c01;height:36px;border-radius:13px;border:solid 1px #cccccc;background-image:linear-gradient(to bottom, #f6f6f6, #e9e9e9)}
.ptd-mdm-qtt-c.svelte-zluo8b{color:#fd4c01}.pay-detial.svelte-zluo8b,.ptd-t.svelte-zluo8b{height:auto}
.warning.svelte-lriq39{color:#FF001F;font-size:1.38rem}
.wrap-home.svelte-1im9lff{min-height:0px
  }