@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

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

body {
  font-size: 16px;
  font-family: 'Pretendard', sans-serif;

  padding: 0;
  margin: 0;
  height: 100vh;
  word-break: break-all;
  color: #111;
}
i {
  display: flex;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

input[type='text']:read-only {
  background-color: #f2f2f7;
  color: #3c3c4399;
  border: 0px;
  cursor: default;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}
th {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
}
td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  font-size: 0.75rem;
}
th {
  background-color: #f2f2f2;
}
.info-cell {
  font-size: 0.6875rem;
}
.semi-bold {
  font-weight: 600;
  font-size: 0.75rem !important;
}
th:nth-child(1) {
  width: 15%;
}
th:nth-child(2) {
  width: 20%;
}
th:nth-child(3) {
  width: 50%;
}
th:nth-child(4) {
  width: 15%;
}

.page-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.logo {
  margin: 0 1rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.seven .logo {
  width: 8.75rem;
  height: 1.5rem;
  background-image: url('./img/seven_heaader_logo.png');
  margin-bottom: 1.4375rem;
}
.bgf .logo {
  width: 8.75rem;
  height: 1.5rem;
  background-image: url('./img/bgf_heaader_logo.png');
  margin-bottom: 1.4375rem;
}
.gs .logo {
  width: 6.875rem;
  height: 2rem;
  background-image: url('./img/gs_heaader_logo.png');
  margin-bottom: 0.8125rem;
}
.seven .primary-text {
  color: #00903b;
}
.seven .primary-bg {
  background-color: #00903b;
}
.gs .primary-text {
  color: #0071bb;
}
.gs .primary-bg {
  background-color: #0071bb;
}
.bgf .primary-text {
  color: #3bb149;
}
.bgf .primary-bg {
  background-color: #3bb149;
}
.seven .arrow-right {
  width: 1.25rem;
  height: 1.25rem;
  background-image: url('./img/ic-chevron-right-bk-20.png');
}
.gs .arrow-right {
  width: 1.25rem;
  height: 1.25rem;
  background-image: url('./img/ic-chevron-right-bk-20.png');
}
.bgf .arrow-right {
  width: 1.25rem;
  height: 1.25rem;
  background-image: url('./img/ic-chevron-right-bk-20.png');
}

.terms-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

label[for='termsCheck'] {
  border: solid 1px #e5e5ea;

  cursor: pointer;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
  margin-left: 0;
  background-color: rgba(116, 116, 128, 0.08);
  border-radius: 10rem;
}

.terms-check:checked + label {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0rem;
  background-color: white;
  border: solid 0px #e5e5ea;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.seven .terms-check:checked + label {
  background-image: url('./img/seven-check-active.png');
}

.gs .terms-check:checked + label {
  background-image: url('./img/gs-check-active.png');
}

.bgf .terms-check:checked + label {
  background-image: url('./img/bgf-check-active.png');
}

/* input 기본 스타일 초기화 */
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input {
  background: none; /* 배경 제거 */
  border: none; /* 테두리 제거 */
  outline: none; /* 포커스 시 아웃라인 제거 */
  box-shadow: none; /* 박스 그림자 제거 */
  padding: 0; /* 내부 패딩 제거 */
  margin: 0; /* 외부 여백 제거 */
  font-family: inherit; /* 폰트 스타일 상속받기 */
  font-size: inherit; /* 폰트 크기 상속받기 */
  color: inherit; /* 폰트 색상 상속받기 */
  /* 추가적인 스타일 리셋이 필요하다면 여기에 추가 */
}

/* IE10 이상에서 input box 에 추가된 지우기 버튼 제거 */
input::-ms-clear {
  display: none;
}

/* input type number 에서 화살표 제거 */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Select box 스타일 초기화 */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* IE 에서 Select box 화살표 제거 */
select::-ms-expand {
  display: none;
}

button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.header-container img {
  width: 1.5rem;
}

.header-close,
.header-back {
  padding: 1rem;
  cursor: pointer;
  flex: none;
}
.header {
  background: white;
  position: sticky;
  top: 0;
  min-height: 3.5rem;

  overflow: hidden;
  z-index: 2;
}
.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-title {
  font-size: 1.125rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.44;
  letter-spacing: -0.54px;
  text-align: center;
  color: #111;
  flex: 1;
}

.content {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
}

.font13 {
  font-size: 0.8125rem;
}

.font14 {
  font-size: 0.875rem;
}

.font28 {
  font-size: 1.75rem;
}

.txt-big {
  margin: 0 1rem;
  flex-grow: 1;
  font-size: 1.75rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: -0.84px;
  text-align: left;
  color: #111;
  word-break: keep-all;
}

.know-more {
  height: 1.25rem;
  flex-grow: 0;
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  margin: 1.5rem 1rem;
  align-items: center;
  cursor: pointer;
}
.seven .know-more .arrow-right {
  margin-left: 0.25rem;
  height: 1.25rem;
  width: 1.25rem;
  background-image: url('./img/seven-arrow-right-primary-20.png');
}
.bgf .know-more .arrow-right {
  margin-left: 0.25rem;
  height: 1.25rem;
  width: 1.25rem;
  background-image: url('./img/bgf-arrow-right-primary-20.png');
}
.gs .know-more .arrow-right {
  margin-left: 0.25rem;
  height: 1.25rem;
  width: 1.25rem;
  background-image: url('./img/gs-arrow-right-primary-20.png');
}

.main-img-wrap {
  margin-top: 7.75rem;
  display: flex;
  width: 100vw;
  align-items: center;
  justify-content: center;
}
.main-img {
  height: 13.75rem;
}

.check-img {
  width: 1.25rem;
  height: 1.25rem;
  border: solid 1px #e5e5ea;
  background-color: rgba(116, 116, 128, 0.08);
  border-radius: 10rem;
}

.check-img-wrap {
  width: 2rem;
  cursor: pointer;
  margin-left: 1rem;
  display: flex;
  align-items: start;
  justify-content: left;
}

.checkbox-wrap {
  cursor: pointer;
  margin-bottom: 0.75rem;
  height: 3rem !important;
  flex-grow: 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: #111;
  display: flex;
  align-items: center;
}
checkbox-label {
  margin-left: 0.5rem;
}
.checkbox {
}

.checkbox-next {
  margin-left: auto;
  margin-right: 1rem;
}

.button-wrap {
  padding: 1rem;
}

.button-disabled {
  align-self: stretch;
  width: 100%;
  border-radius: 8px;
  background-color: #c7c7cc;
  cursor: pointer;
  height: 3rem;

  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: rgba(60, 60, 67, 0.5);
}
.step-info-wrap {
  font-size: 0.8125rem;
  padding: 0 1rem;
  margin-bottom: 0.75rem;
}
.step-info {
  height: 2.5rem;
}
.step-info span:nth-child(1) {
}
.step-info span:nth-child(2) {
  width: 1.8125rem;
}
.step-info span:nth-child(3) {
}
.seven .active {
  color: #00903b;
  text-decoration: underline;
}
.gs .active {
  color: #0071bb;
  text-decoration: underline;
}
.bgf .active {
  color: #3bb149;
  text-decoration: underline;
}
.seven .active-text {
  color: #00903b;
}
.gs .active-text {
  color: #0071bb;
}
.bgf .active-text {
  color: #3bb149;
}
.step-info-txt {
  color: #ff0004;
  display: flex;
  align-items: center;
}
input[type='radio']:disabled + label {
  opacity: 0.6;
}
.pointer {
  cursor: pointer;
}
.button-active {
  align-self: stretch;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  height: 3rem;

  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.seven .button-active {
  background-color: #00903b;
}
.gs .button-active {
  background-color: #0071bb;
}
.bgf .button-active {
  background-color: #3bb149;
}

.seven .btn-accept {
  background-color: #00903b;
}
.gs .btn-accept {
  background-color: #0071bb;
}
.bgf .btn-accept {
  background-color: #3bb149;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.center-h {
  display: flex;
  justify-content: center;
}
.center-v {
  display: flex;
  align-items: center;
}
.main-later {
  height: 1.5rem;
  flex-grow: 0;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: right;
  color: #3f3f3f;
  cursor: pointer;
  border-bottom: 1px solid black;
  margin: 1rem;
}

.bottom {
  margin-top: auto;
}

.page-step-01 {
  display: flex;
  flex-direction: column;
}
.page-step-02 {
  flex-direction: column;
}
.page-nation {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page-cust-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page-terms {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dimmed {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.dimm {
  z-index: 90;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0 2.5rem;
}
.dialog {
  min-width: 17.5rem;
  width: auto;
  border-radius: 8px;
  max-width: 40rem;
  z-index: 99;
  background: white;
  padding: 1rem;
}
.page-nation {
  margin: 1rem;
}

.dialog-content {
  font-weight: 500;
  line-height: 1.5;
  color: #111;
}

.alert-btn-wrap {
  margin-top: 1.5rem;
  align-items: end;
  justify-content: end;
  display: flex;
  width: 100%;
}
.btn-wrap {
  margin-top: 1.5rem;
  display: flex;
  width: 100%;
}
.padding {
  padding: 1rem;
}
.btn-wrap > *:not(:last-child) {
  margin-right: 0.5rem;
}

.btn-wrap2 {
  margin-top: 0.5rem;
  display: flex;
  width: 100%;
}

.btn-wrap2 > *:not(:last-child) {
  margin-right: 0.5rem;
}

.btn-cancel {
  height: 2.5rem;
  flex: 1;
  border-radius: 8px;
  background-color: #e5e5ea;
  font-weight: 500;
  text-align: center;
  color: rgba(60, 60, 67, 0.6);
}
.btn-accept {
  height: 2.5rem;
  flex: 1;
  border-radius: 8px;
  background-color: #751485;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

.btn-ok {
  height: 2.5rem;
  flex: 1;
  border-radius: 8px;
  background-color: #00479d;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

.terms-content {
  padding: 1.25rem 1rem;
  flex: 1;
  color: #111;
}
.terms-title {
  font-size: 1.125rem;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.terms-sub {
  margin: 1rem 0;
}

.divider-2 {
  height: 2px;
  align-self: stretch;
  flex-grow: 0;
  border-radius: 2px;
  background-color: #f1f3f9;
  margin: 2rem 0;
}

.divider-thick {
  height: 0.5rem;

  background-color: #f2f2f7;
  margin: 1.25rem 0;
}

.cust-info-wrap {
  padding: 1.25rem 1rem;
}
.cust-info-sub-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

.cust-info-content {
  font-size: 0.875rem;
  color: #5f5f5f;
}

.input-wrap {
  padding: 0.75rem 1rem;
}

.input-label-big {
  color: #00479d;
  font-weight: 800;
  height: 1.5rem;
  font-size: 1rem;
}

.input-label {
  height: 1.5rem;
  color: #111;
  font-size: 0.875rem;
}

.input-common {
  height: 3rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
  border: solid 1px #ebebeb;
  background-color: #fff;
}
input::placeholder {
  color: rgba(60, 60, 67, 0.3);
}
input:disabled::placeholder {
  color: rgba(60, 60, 67, 0.3);
}
input:disabled {
  color: #11111199;
}

.input-common:disabled {
  border: solid 1px #f2f2f7;
  background-color: #f2f2f7;
  opacity: 1;
}
.input-btn {
  border: solid 1px #f2f2f7;
  background-color: #f2f2f7;
}

.input-hint {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.54;
  letter-spacing: normal;
  text-align: left;
  color: rgba(60, 60, 67, 0.6);
}
.input-click-img {
}

.input-click-img2 {
}
.input-click {
}

.btn-address-search {
  width: 5rem;
  height: 3rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  border-radius: 0.5rem;
  background-color: #5f5f5f;
  margin: 0.5rem 0 0 0.5rem;
  flex: none;
}
.place-holder {
  /* color: rgba(60, 60, 67, 0.3); */
}

.btn-top-m {
  margin-top: 2.375rem;
}

.btn-radio {
}

.button-style {
  /* 버튼처럼 보이도록 스타일링 */
  border-radius: 8px;
  border: solid 1px #e5e5ea;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  height: 3rem;
}

input[type='radio'] {
  display: none; /* 실제 라디오 버튼 숨기기 */
}

.button-style:hover {
  background-color: #e0e0e0;
}

.seven .input-container:focus-within {
  border: 1px solid #00903b;
}
.gs .input-container:focus-within {
  border: 1px solid #0071bb;
}
.bgf .input-container:focus-within {
  border: 1px solid #3bb149;
}

.seven input[type='radio']:checked + label {
  background-color: #00903b;
  color: white;
  font-weight: 500;
  border-color: #00903b;
}
.gs input[type='radio']:checked + label {
  background-color: #0071bb;
  color: white;
  font-weight: 500;
  border-color: #0071bb;
}
.bgf input[type='radio']:checked + label {
  background-color: #3bb149;
  color: white;
  font-weight: 500;
  border-color: #3bb149;
}
.hidden {
  display: none !important;
}

.input-icon {
  margin-left: auto;
}

.input-icon img {
  width: 1.25rem;
  height: 1.25rem;
}

/* // 숨길 때 */
.hide {
  display: none;
}

.address-upper {
  display: flex;
}

.header-bottom {
  padding: 0.625rem 1rem;
}

.search-container {
  display: flex;

  gap: 0.5rem;
  border-radius: 1.25rem;
  background-color: #f2f2f7;
  height: 2.25rem;
}

.input-search {
  background-color: #f2f2f7 !important;
  height: 100%;
  border-radius: 3rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-left: 2rem !important;
}
.search-icon {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  bottom: 0;

  z-index: 2;
}

.nation-list-wrap li {
  height: 3rem;
  padding: 1rem;
  display: flex;
  align-items: center;
}

.input-container {
  position: relative;
  display: inline-block;
  padding: 0.1rem !important;
  width: 100%;
  /* background: #ebebf0; */
}
.input-container img {
  height: 1.25rem;
  width: 1.25rem;
}

.input-container input[type='text'] {
  padding-right: 1rem;
  height: 100%;
  width: 100%;
  padding-left: 0.9rem;
  /* background: #ebebf0; */
}

.clear-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  /* 아이콘 스타일링 */
  display: none;
}

.arrow-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  /* 아이콘 스타일링 */
}

.mt05 {
  margin-top: 0.5rem;
}

.dimm-bottom {
  z-index: 90;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background-color: rgba(0, 0, 0, 0.6);
  padding-top: 5rem;
  align-items: end;
}
.bottom-select-wrap {
  background: white;
  width: 100%;
  border-radius: 1rem 1rem 0 0;
  max-height: 80%;
  display: flex;
  flex-direction: column;
}
.bottom-select-header {
  height: 2.5rem;
}

.bottom-header-container img {
  width: 1.5rem;
  cursor: pointer;
}

.bottom-header-close,
.bottom-header-back {
  padding: 1rem;
  flex: none;
}

.bottom-header-title {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  color: #111;
  flex: 1;
}

.bottom-header-container {
  height: 2.5rem;
  flex: none;
  overflow: hidden;
}
.bottom-select-container {
  margin-top: 0.75rem;
  overflow-y: scroll;
  height: 100%;
}

.bottom-select-container li {
  height: 3.5rem;
  padding: 1rem;
}

.addr-wrap {
  z-index: 99;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.6);
}

.addr-container {
  display: flex;
}
.addr-header {
  display: flex;
  align-items: end;
  justify-content: end;
  background: white;
  width: 100%;
}

.addr-close img {
  width: 3.5rem;
  height: 3.5rem;
  padding: 1rem;
}

#postLayer {
  height: 100%;
}

.svg {
  color: red;
  fill: currentColor;
}

.logo-img-wrap {
  padding: 2.5rem 0;
}

.logo-img-wrap img {
  width: 55%;
  max-width: 30rem;
}

.terms-list-top-wrap {
}
.terms-list-top-wrap > div {
  display: flex;
  height: 3rem;
  padding: 0 1rem;
}

.terms-list-wrap {
  margin-bottom: 6rem;
}
.terms-list-wrap > div {
  display: flex;
  height: 3rem;
  padding: 0 1rem;
}

.primary-color {
  color: #00479d;
}

.primary-background {
  background: #00479d;
}
.right {
  margin-left: auto;
}

.flex {
  display: flex;
}

.bold {
  font-size: 1.125rem;
  font-weight: bold;
}

.checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.check-wrap label {
  display: inline-block;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.125rem;
  background-color: #e0dfe1;
  border-radius: 10rem;
  background-position: center;
  background-size: 100% 100%;
  border: 1px solid #d0d0d7;
}

.checkbox:checked + label {
  background-image: url('img/check.png');
}

.checkbox:checked + label {
  background-color: #00479d;
  background-image: url('img/check.png');
  background-repeat: no-repeat;
  background-position: center;
  border: 0px;
}
.checkbox-text {
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
}

.medium {
  font-weight: 500;
}

.img-arrow {
  width: 1.25rem;
  height: 1.25rem;
}
.btn-arrow {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.bottom-btn-wrap {
  padding: 0.75rem 1rem 1.5rem 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
}

.btn-confirm {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  background: #00479d;
  width: 100%;
  border-radius: 8px;
}
.btn-confirm:disabled {
  background: #bbbbc1;
  color: rgba(60, 60, 67, 0.5);
}

.terms-wrap {
  padding: 1.5rem 1rem;
  font-weight: 500;
}

.terms-number {
  height: 100%;
  width: 2rem;
  display: flex;
  align-items: start;
  justify-content: center;
}
.terms-right {
  width: 100%;
}

.mypage-list-wrap > div {
  display: flex;
  padding: 1rem;
}
.mypage-menu-label {
  height: 1.5rem;
  font-weight: 500;
}
.mypage-menu-sub {
  height: 24px;
  align-self: stretch;
  flex-grow: 0;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: normal;
  text-align: left;
  color: rgba(60, 60, 67, 0.6);
}

.ars-label {
  font-size: 1.125rem;
  font-weight: bold;
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
}

.img-ars-wrap {
  width: 100%;
}
.img-ars {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  width: 60%;
  max-width: 25rem;
}

.phone-number-txt {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.ars-sub {
  font-weight: 500;
  color: rgba(60, 60, 67, 0.6);
  text-align: center;
  margin-top: 1.5rem;
}

.ars-re {
  color: #00479d;
  width: 5rem;
  height: 3rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: underline;
  margin: 5rem 0;
}
.ars-complete-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
}
.ars-complete-img-wrap {
  background-color: #00479d;
  background-image: url('img/check.png');
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10rem;
  background-position: center;
  background-size: 100% 100%;
  width: 5rem;
  height: 5rem;
}

.ars-complete-txt {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
}
.ars-complete-sub {
  font-weight: 500;
  color: rgba(60, 60, 67, 0.6);
  text-align: center;
  margin-top: 1rem;
}
.payment-list-wrap {
  margin-bottom: 8rem;
}
.payment-list-wrap > li {
  height: 5.5rem;
}
.payment-item {
  display: flex;
  padding: 1rem;
}

.payment-item-top {
  display: flex;
}
.payment-item-left div {
  display: flex;
  gap: 0.25rem;
  font-weight: 500;
  height: 1.625rem;
}

.payment-item .icon-del {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}

.payment-item .icon-bank {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.125rem;
}

.payment-item-add-btn {
  border: 1px solid #00479d;
  height: 3rem;
  color: #00479d;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  width: 100%;
  border-radius: 8px;
  font-weight: 500;
  gap: 0.5rem;
}

.payment-item-account {
  color: rgba(60, 60, 67, 0.6);
  display: flex;
  align-items: center;
}

.verify-check-wrap {
  display: flex;
  height: 3rem;
  align-items: center;
  padding: 0 1rem;
  font-weight: bold;
}

.terms-text {
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.verify-input-wrap {
  padding: 0 1rem;
  margin-bottom: 5rem;
}

.verify-input-wrap > div {
  height: 6.5rem;
}

.verify-input-gap {
  display: flex;
  gap: 0.5rem;
}

.verify-input-toggle-wrap {
  display: flex;
  overflow: hidden;
  align-items: end;
  width: 7.5rem;
  flex: none;
}

.verify-input-toggle-wrap input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}

.verify-input-toggle-wrap label {
  height: 3rem;
  width: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
  border: solid 1px #d0d0d7;
  cursor: pointer;
}

.verify-input-toggle-wrap input:checked + label {
  background-color: #00479d;
  border: solid 1px #00479d;
  box-shadow: none;
}

.verify-input-toggle-wrap label:first-of-type {
  border-radius: 8px 0 0 8px;
}

.verify-input-toggle-wrap label:last-of-type {
  border-radius: 0 8px 8px 0;
}

.cell-company-wrap {
  width: 6.875rem;
  flex: none;
}

.cell-company-wrap-txt {
  padding-left: 0.5rem;
  display: flex;
  align-items: center;
  height: 100%;
}

.arrow-bottom-icon {
  position: absolute;
  right: 0.5rem;
  top: 30%;
  cursor: pointer;
  transform: rotate(90deg);
}

.cell-no-wrap {
  margin-left: 0.5rem;
  width: 100%;
}

.verify-btn-wrap {
  width: 3.75rem;
  display: flex;
  align-items: end;
}

.verify-btn-wrap button {
  background: #000;
  color: white;
  line-height: 1rem;
  height: 3rem;
  width: 100%;
  border-radius: 8px;
  flex: none;
}

.verify-btn-wrap button:disabled {
  background: #87878b;
}

.bottom-keypad-wrap {
  height: 16.875rem;
  color: white;
  background: #00479d;

  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.bottom-keypad-wrap div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-keypad-top {
  height: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.bottom-keypad-items {
  width: 100%;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 1fr; /* 4개의 열, 각각 같은 크기 */
}

.bottom-keypad-key {
  display: flex;
  flex: 1;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.125rem;
  height: 4.5rem;
}

.bottom-keypad-key img {
  width: 2rem;
  height: 2rem;
}

.circle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.circle {
  width: 1.25rem;
  height: 1.25rem;
  flex-grow: 0;
  object-fit: contain;
  background-color: #e6e6e6;
  border-radius: 20rem;
}

.circle-active {
  width: 1.25rem;
  height: 1.25rem;
  flex-grow: 0;
  object-fit: contain;
  background: #00479d;
  border-radius: 20rem;
}

.password-comment {
  margin-top: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.verify-timer {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  /* 아이콘 스타일링 */
  color: red;
}

.bank-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.bank-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(60, 60, 67, 0.6);
  height: 7.5rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.bank-list img {
  width: 3rem;
  height: 3rem;
}

.bank-list p {
  margin-top: 0.5rem;
}
