@charset "utf-8";
/*pretendard*/
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
/*Poppins*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,600;0,900;1,700;1,800&display=swap');

/*반응형 사이즈*/
/*데스크탑1024이상, 태블릿1024이하, 모바일 768이하*/

/* common */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #222;
  word-break: keep-all;
  background-color: #fff;
  font-family: 'Pretendard', 'Poppins', sans-serif;
  position: relative;
  min-width: 1220px;
  overflow: auto;
  word-wrap: break-word;
}

/*common*/
.wrap {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
}

.wrap>header {
  display: table-row;
  height: 0;
}

.wrap>section>* {
  display: block;
}

.wrap>footer {
  display: table-row;
  height: 0;
}

.wrap>footer>* {
  display: block;
}

section {
  height: 100%;
  padding-top: 5.3125rem;
}

/*ui*/
.ui {
  padding: 6rem 0;
  display: flex;
  gap: 6rem;
}

.ui .item {
  width: 50%;
}

.ui .item:only-child {
  width: 100%;
}

.ui .title {
  font-size: 2rem;
  font-weight: 800;
  padding-bottom: 1rem;
}

.ui .btn-area {
  justify-content: flex-start;
  flex-wrap: wrap;
}

/*modal*/
.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: left;
  background: rgba(0, 0, 0, .5);
  z-index: 99999;
  overflow: auto;
}

.layer {
  display: table;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.layer .layer-content {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  top: 0;
  padding: 2rem 1.25rem;
  width: 100%;
}

.modal-inner {
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: auto;
  border-radius: 0.75rem;
  overflow: hidden;
  max-width: 750px;
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 9999;
  background-image: url("../images/ic-close-md.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.modal-sm {
  max-width: 18.75rem;
}

.modal-md {
  max-width: 25rem;
}

.modal-lg {
  max-width: 46.875rem;
}

.modal-content {
  height: 100%;
}

.modal.block {
  display: block;
}

.modal-header {
  padding: 2rem 1.5rem 0;
  background: #fff;
}

.modal-header .title {
  font-size: 1.5rem;
  font-weight: 800;
  word-break: break-all;
  padding-right: 1.75rem;
}

.modal-body {
  padding: 1rem 1.5rem 2rem;
  word-wrap: break-word;
  background: #fff;
}

.modal-body.only {
  padding-top: 2rem;
  min-height: 7.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-footer {
  display: flex;
}

.modal-footer button {
  border-radius: 0;
  width: 100%;
}

.ic-modal {
  width: 3.75rem;
  height: 3.75rem;
  margin: 1rem auto;
}

.ic-modal.success {
  background: url("../images/ic-modal-check.svg") no-repeat center/cover;
}

.ic-modal.error {
  background: url("../images/ic-modal-error.svg") no-repeat center/cover;
}

.ic-modal.info {
  background: url("../images/ic-modal-info.svg") no-repeat center/cover;
}

/*input*/
input,
select,
textarea {
  border: 1px solid #CED4DA;
  font-size: 1rem;
  background-color: #fff;
  width: 100%;
  font-family: 'Pretendard', 'Poppins', sans-serif;
  font-weight: 500;
  border-radius: 0.25rem;
}

input,
select {
  height: 3.125rem;
  display: inline-block;
  vertical-align: middle;
  padding: 0 1.125rem;
}

textarea {
  min-height: 10rem;
  padding-bottom: 1rem;
  display: block;
  border-radius: 0.3125rem;
  padding: 1rem 1.125rem;
}

input:focus,
textarea:focus,
.input-line input:focus {
  border-color: #1a1f71;
  transition: all .3s;
}

input[readonly],
input[disabled] {
  color: #222;
  cursor: default;
  background-color: #F7F7F7;
}


input[readonly]:focus,
input[disabled]:focus {
  border-color: #CED4DA;
}

input[disabled] {
  opacity: 1;
  -webkit-text-fill-color: inherit
}

/*input-style*/
.input-line input {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #CED4DA;
  border-radius: 0;
}

.input-line input[readonly],
.input-line input[disabled] {
  color: #222;
  cursor: default;
  background-color: transparent;
  border-style: dashed !important;
}

/*.input-wrap*/
.input-wrap .info {
  font-size: 0.875rem;
  color: #85929C;
  padding-top: 0.5rem;
  font-weight: 600;
}

.input-wrap .info.error,
.input-wrap .info.success {
  display: flex;
  display: none;
  padding-left: 1.4rem;
  text-indent: -0.375rem;
}

.input-wrap .info.error {
  color: #F43333
}

.input-wrap .info.success {
  color: #00B24D
}

.input-wrap .info.error:before,
.input-wrap .info.success:before {
  content: '';
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: -1.125rem;
  margin-right: 0.375rem;
  margin-top: -0.15rem;
  vertical-align: middle;
}

.input-wrap .info.error:before {
  background-image: url("../images/ic-error-red-sm.svg");
}

.input-wrap .info.success:before {
  background-image: url("../images/ic-success-green-sm.svg");
}

input.fail {
  border-color: #F43333;
}

.info.active {
  display: block !important;
}

.label-set {
  width: 100%;
}

.label-set label {
  font-weight: 600;
  color: #666;
  padding-bottom: .75rem;
  display: inline-block;
  line-height: 1;
}

.input-wrap>*:nth-child(n+2) {
  padding-top: 2rem;
}

.input-set {
  width: 100%;
}


.btn-set {
  display: flex;
  gap: 0.375rem;
}

.input-text-set input {
  padding-right: 2.5rem;
}

.input-text {
  position: absolute;
  top: 50%;
  right: 1.125rem;
  transform: translateY(-50%);
  line-height: 1;
}

.input-text-set {
  position: relative;
}

.input-pw input {
  width: 50%;
}

/*input-flex*/
.input-flex {
  display: flex;
  gap: 3.75rem;
}

.input-flex.sm {
  gap: 1.5rem;
}

.input-flex>*:only-child {
  width: calc(50% - 1.875rem);
}

.input-flex-sm {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

.input-flex-xsm {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/*label-flex*/
.label-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
}

.label-set .label-flex label {
  padding-bottom: 0;
}

/*input-repeat*/
.input-repeat>div:nth-child(n+2) {
  margin-top: 0.625rem;
}

/*reload*/
.reload {
  font-size: 0.875rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.ic-reload {
  width: 1.375rem;
  height: 1.375rem;
  background: url("../images/ic-reload.svg") no-repeat center/cover;
}

/*input-file*/
.input-file {
  display: flex;
  width: 100%;
  gap: 0.375rem;
}

/*button*/
button {
  font-family: 'Pretendard', sans-serif;
  line-height: 1;
}

.btn-area {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 2rem;
}

.btn-area.vertical {
  gap: 0.625rem;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-lg {
  font-size: 1.0625rem;
  height: 3.5rem;
  font-weight: 700;
  padding: 0 2rem;
  border-radius: 0.375rem;
  min-width: 9.375rem;
}

.btn-md {
  font-size: 1rem;
  height: 3.25rem;
  font-weight: 700;
  padding: 0 1.5rem;
  border-radius: 0.375rem;
}

.btn-sm {
  font-size: 0.875rem;
  height: 3.125rem;
  font-weight: 700;
  padding: 0 1.125rem;
  border-radius: 0.25rem;
}

.btn-primary {
  color: #fff;
  background-color: #1a1f71;
}

.btn-primary:hover {
  background-color: #0A0D48;
}

.btn-primary-outline {
  color: #1a1f71;
  border-color: #1a1f71;
  background-color: #fff;
}

.btn-primary-outline:hover {
  background-color: #E6E7F2;
}

.btn-gray {
  color: #555;
  background-color: #F0F0F0;
}

.btn-gray:hover {
  background-color: #E1E1E1;
}

.btn-gray-outline {
  color: #555;
  border-color: #B5B5B5;
  background-color: #fff;
}

.btn-gray-outline:hover {
  background-color: #f5f5f5;
}

.btn-wh-outline {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

.btn-wh-outline:hover {
  background-color: rgb(255, 255, 255, .1);
}

.btn-green-outline {
  color: #217145;
  border-color: #217145;
  background-color: #fff;
}

.btn-green-outline:hover {
  background-color: #E1F2E9;
}

.btn-disabled {
  color: rgba(0, 0, 0, .2);
  background-color: #F0F0F0;
  cursor: default;
}

.btn.download {
  display: flex;
  align-items: center;
}

.btn.download:after {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  background: url("../images/ic-download-sm.svg") no-repeat center/cover;
  display: inline-block;
  margin-left: .5rem;
}

.btn.excel {
  display: flex;
  align-items: center;
}

.btn.excel:before {
  content: '';
  width: 0.875rem;
  height: 0.875rem;
  background: url("../images/ic-excel-xsm.svg") no-repeat center/cover;
  display: inline-block;
  margin-right: .5rem;
}

/*width height*/
.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.h-100vh {
  height: 100vh !important;
}

/*padding margin*/
.p-0 {
  padding: 0 !important;
}

.p-t-0 {
  padding-top: 0 !important;
}

.p-b-0 {
  padding-bottom: 0 !important;
}

.p-l-0 {
  padding-left: 0 !important;
}

.p-r-0 {
  padding-right: 0 !important;
}

.m-t-0 {
  margin-top: 0 !important;
}

.m-b-0 {
  margin-bottom: 0 !important;
}

.m-l-0 {
  margin-left: 0 !important;
}

.m-r-0 {
  margin-right: 0 !important;
}

/*border*/
.b-b-0 {
  border-bottom: 0 !important;
}

/*container*/
.container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  padding: 0 1.25rem;
  margin: 0 auto;
}

.container.md {
  max-width: 1220px;
}

.container.sm {
  max-width: 480px;
}

/*text*/
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-wh {
  color: #fff !important
}

.text-bk {
  color: #222 !important
}

.text-primary {
  color: #1a1f71 !important
}

.text-pink {
  color: #FF5470 !important;
}

.text-x-bold {
  font-weight: 800 !important;
}

.text-link-wrap {
  margin-top: 2rem;
  text-align: center;
}

.text-link {
  color: #555;
  font-weight: 600;
  text-decoration: underline !important;
  line-height: 1;
  display: inline-block;
}

.text-link:hover {
  color: #1a1f71;
}

/*checkbox, radio 반드시 px단위로 rem단위 깨짐*/
.checkbox,
.radiobox {
  position: relative;
  margin-left: 28px;
}


.radiobox-label,
.checkbox-label {
  cursor: pointer;
  color: #666;
  font-size: 0.9375rem;
  display: inline-block;
  line-height: 1;
  padding-bottom: 0 !important;
}

.radiobox input[type="radio"],
.checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  height: 0;
  z-index: -1;
  padding: 0;
  display: none;
}

.radiobox input[type="radio"]+.radiobox-label:before {
  content: '';
  display: inline-block;
  top: 0.25rem;
  left: -24px;
  vertical-align: top;
  cursor: pointer;
  transition: all 250ms ease;
  z-index: 1;
  width: 0.75rem;
  height: 0.75rem;
  border-top-style: none;
  border-right-style: none;
  position: absolute;
  background: #1a1f71;
  border-radius: 50%;
  opacity: 0;
}

.radiobox input[type="radio"]+.radiobox-label:after {
  content: '';
  border: 2px solid #C1C6CB;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  margin-left: -28px;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
  left: 0px;
  top: 0;
  background-color: #fff;
  border-radius: 50%;
}

.radiobox input[type="radio"]:checked+.radiobox-label:before {
  opacity: 1;
}

.radiobox input[type="radio"]:checked+.radiobox-label:after {
  border-color: #1a1f71;
}

.checkbox input[type="checkbox"]+.checkbox-label:before {
  content: '';
  display: inline-block;
  left: -21px;
  vertical-align: top;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: rotate(-45deg) translateY(-50%);
  -moz-transform: rotate(-45deg) translateY(-50%);
  -ms-transform: rotate(-45deg) translateY(-50%);
  -o-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  z-index: 1;
  width: 0.55rem;
  height: 0.25rem;
  border: 2px solid #fff;
  border-top-style: none;
  border-right-style: none;
  position: absolute;
  opacity: 0;
  top: 50%;
  margin-top: -0.2rem;
}

.checkbox input[type="checkbox"]+.checkbox-label:after {
  content: '';
  border: 2px solid #C1C6CB;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  margin-left: -28px;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
  left: 0px;
  background-color: #fff;
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -1px;
}

.checkbox input[type="checkbox"]:checked+.checkbox-label:before {

  border-color: #fff;
  opacity: 1;
}

.checkbox input[type="checkbox"]:checked+.checkbox-label:after {
  border-color: #1a1f71;
  background-color: #1a1f71;
}

input[type="radio"],
input[type="checkbox"] {
  border-bottom: 0;
}

.chehck-radio-flex,
.chehck-radio-flex .flex-wrap {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.chehck-radio-flex .flex-wrap:nth-child(n+2):before {
  content: '';
  width: 1px;
  height: .875rem;
  background-color: #CED4DA;
  display: inline-block;
  vertical-align: middle;
}

/*radio-box*/
.radio-box-wrap {
  display: flex;
  gap: 0.625rem;
}

.radio-box .radiobox {
  margin-left: 0;
}

.radio-box .radiobox-label {
  width: 100%;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0 1px #CED4DA;
  border-radius: 0.25rem;
  font-weight: 600;
  color: #999;
  padding: 0 1.5rem;
  width: 8.75rem;
  height: 3.125rem;
}

.radio-box .radiobox input[type="radio"]:checked+.radiobox-label {
  color: #1a1f71 !important;
  background-color: #E6E7F2;
  box-shadow: 0 0 0 1px #1a1f71 inset;
}

.radio-box .radiobox input[type="radio"]+.radiobox-label:after {
  display: none;
}

.radio-box .radiobox input[type="radio"]+.radiobox-label:before {
  display: none;
}

/*container*/
.container {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 1540px;
  padding: 0 1.25rem;
}

/*pagenateion*/
.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 1.5rem;
}

.pagenation a:nth-child(n+2) {
  margin-left: 0.3125rem;
}

.pagenation a {
  height: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  color: #999;
  border-bottom: 2px solid transparent;
  padding: 0.66rem;
  font-weight: 600;
  background: #fff;
  line-height: 1;
}

.pagenation a.active {
  color: #222;
  border-color: #222;
  cursor: initial;
}

.pagenation .ic {
  width: 1.875rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagenation .ic:before {
  content: '';
  width: 1.875rem;
  height: 1.875rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
}

.pagenation .ic.double-prev:before {
  background-image: url("../images/ic-page-left-double.svg");
}

.pagenation .ic.prev:before {
  background-image: url("../images/ic-page-left.svg");
}

.pagenation .ic.next:before {
  background-image: url("../images/ic-page-right.svg");
}

.pagenation .ic.double-next:before {
  background-image: url("../images/ic-page-right-double.svg");
}

/*header*/
.header-wrap {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5.3125rem;
  position: fixed;
  top: 0;
  left: 0;
  min-width: 1220px;
  z-index: 999;
}

header .inner {
  width: 100%;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1760px;
}

header .gnb {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  height: 100%;
}

header .gnb a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #222;
}

header .gnb a.active,
header .gnb a:hover {
  color: #1a1f71;
}

header .right {
  display: flex;
  align-items: center;
  gap: 2rem
}

header .right .btn-area {
  padding-top: 0;
}

header .right button {
  height: 2.875rem;
  border-radius: 0.375rem;
}

header .right .lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  min-width: 3rem;
}

header .right .user {
  position: relative;
}

header .right .user-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  position: relative;
}

header .right .user-text:after {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/ic-arrow-down-xsm.svg);
  transition: .3s;
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
}

header .right .user-text.on:after {
  transform: rotate(180deg);
  margin-top: -2px;
}

header .logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1f71;
  line-height: 1;
}

header .logo span {
  font-weight: 200 !important;
}

/*link-dropdown*/
.link-dropdown {
  display: none;
  position: absolute;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
  left: 50%;
  transition: transform 0.3s ease;
  border-radius: 0.375rem;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: 1;
  min-width: 8rem;
  top: 2.5rem;
}

.link-dropdown.on {
  display: block;
  opacity: 1;
  height: auto;
  width: auto;
  animation: fadeIn 0.3s ease forwards;
}

.link-dropdown a {
  color: #333;
  padding: 0.55rem 0;
  white-space: nowrap;
  display: block;
  font-size: 0.9375rem;
}

.link-dropdown a:hover {
  color: #1a1f71;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/*footer*/
.footer-wrap {
  padding: 2.5rem 0;
  background-color: #fff;
  border-top: 1px solid #eee;
}

footer .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .terms {
  display: flex;
  gap: 1.5rem;
}

footer .terms a {
  color: #555;
  font-weight: 500;
}

footer .terms a:hover {
  color: #1a1f71;
}

footer .info {
  padding-top: 1rem;
  color: #666;
  font-size: 0.875rem;
}

footer .info ul {
  display: flex;
  gap: 1rem;
}

footer .info ul:nth-child(n+2) {
  padding-top: .5rem;
}

footer .info ul.copy {
  color: #999;
}

/*swiper*/
.swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:root {
  --swiper-theme-color: #1a1f71 !important;
}

/*visual*/
.main-visual {
  width: 100%;
  height: 37.5rem;
  position: relative;
}

.main-visual .swiper-horizontal>.swiper-pagination-bullets,
.main-visual .swiper-pagination-bullets.swiper-pagination-horizontal,
.main-visual .swiper-pagination-custom,
.main-visual .swiper-pagination-fraction {
  bottom: 3.75rem !important;
  max-width: 1220px;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  padding: 0 1rem;
}

.main-visual .swiper-pagination-bullet {
  width: 40px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.84);
}

.main-visual .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1a1f71 !important;
}

/*main-text-wrap*/
.main-text-wrap>div:nth-child(n+2) {
  padding-top: 1.5rem;
}

/* .main-card .main-text-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
} */

.main-text-wrap>div {
  opacity: 1;
}

.main-text-wrap .info {
  font-size: 1.75rem;
  font-weight: 400;
  color: #555;
}

.main-text-wrap .title {
  font-size: 2.75rem;
  font-weight: 800;
}

.main-text-wrap .cate {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1f71;
}

/*main-card*/
.main-card {
  background-color: #1a1f71;
  padding-top: 7.5rem;
  height: 820px;
  position: relative;
  overflow: hidden;
}

.main-card .main-text-wrap>div {
  color: #fff;
}

.main-card .main-text-wrap>div:nth-child(n+2) {
  padding-top: 1rem;
}

.main-card .img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  z-index: 2;
  bottom: 3rem;
  backdrop-filter: blur(2px);

}

.main-card .coin {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.main-card .coin>div {
  position: absolute;
  opacity: 0;
  bottom: 0;
}

/*main-plan*/
.main-plan {
  padding: 7.5rem 0;
  height: 1110px;
  position: relative;
}

.main-plan .img-icon {
  z-index: 1;
}

.main-plan .img-icon {
  position: absolute;
}

.main-plan .img-view {
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  margin-top: 2.5rem;
  opacity: 1;
}

/*main-online*/
.main-online {
  background: url("../images/bg-online.png") no-repeat center/cover;
  width: 100%;
  height: 46.25rem;
  padding: 7.5rem 0;
  /* transform-origin: top center;
   transform: scale(.7) ;
  */
  width: 30%;
  margin: 0 auto;
  opacity: 0;
}

.main-online .current-coin {
  padding-top: 3.75rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.main-online .current-coin>div {
  width: 20%;
}

.main-online .current-coin>div img {
  width: 100%;
}

/*main-step*/
.main-step {
  padding: 7.5rem 0;
}

.main-step .step-section:nth-child(n+2) {
  padding-top: 7.5rem;
}

.main-step .step-section>.title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  padding-bottom: 1.5rem;
}

.main-step .step-section .use-step {
  display: flex;
  gap: 1rem;
}

.main-step .step-section .use-step .item {
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 2.5rem 1.75rem;
  width: 100%;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main-step .step-section .use-step .item .title-wrap {
  padding-bottom: 1.5rem;
}

.main-step .step-section .use-step .item .num {
  font-size: 1.125rem;
  font-weight: 800;
  padding-bottom: 0.625rem;
  color: #1a1f71;
}

.main-step .step-section .use-step .item .title {
  font-size: 1.25rem;
  font-weight: 800;
  padding-bottom: .5rem;
}

.main-step .step-section .use-step .item .info {
  font-size: 0.9375rem;
}

.main-step .step-section .into-step {
  display: flex;
  margin-top: 0.5rem;
}

.main-step .step-section .into-step .item {
  width: 100%;
}

.main-step .step-section .into-step .title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  padding-bottom: 1.5rem;
  padding-right: 6.25rem;
}

.main-step .step-section .into-step .info {
  font-size: 0.9375rem;
  padding-top: 1.5rem;
  padding-right: 6.25rem;
}

.main-step .step-section .into-step .info li:nth-child(n+2) {
  padding-top: 1rem;
}

.main-step .step-section .into-step .circle {
  width: 1rem;
  height: 1rem;
  background-color: #1a1f71;
  border-radius: 50%;
}

.main-step .step-section .into-step .circle:after {
  content: '';
  width: calc(100% - 3rem);
  height: 0.25rem;
  background-color: #EBECF4;
  position: absolute;
  left: 1.5rem;
  z-index: -1;
  margin-top: 0.35rem;
}

/*main-request*/
.main-request {
  padding: 7.5rem 0;
  background-color: #F2F4F6;
}

.main-request .inner {
  display: flex;
  width: 100%;
}

.main-request .main-text-wrap .info {
  font-size: 1.375rem;
}

.main-request .main-text-wrap {
  width: 33.75rem;
}

.main-request form {
  width: calc(100% - 33.75rem);
}

/*account*/
.account {
  width: 100%;
  height: 100%;
  padding: 6.25rem 0;
  display: table;
  position: relative;
}

.account-wrap {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.account-find {
  display: flex;
  justify-content: flex-end;
  padding-top: 1rem;
}

.account-find a {
  font-size: 0.875rem;
  color: #666;
}

.account-find a:hover {
  color: #1a1f71;
}

.account-wrap .h1 {
  padding-bottom: 2.5rem;
}

.account .tabs-content {
  padding-top: 2.5rem;
}

.account .input-wrap>*:nth-child(n+2) {
  padding-top: 1rem;
}

.account .input-wrap {
  min-height: 116px;
}


/*tabs*/
.tabs {
  position: relative;
}

.tabs-nav {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.tabs-nav ul {
  display: flex;
  white-space: nowrap;
  width: 100%;
}

.tabs-nav li {
  width: 100%;
}

.tabs-nav a {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #999;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F9F9F9;
  border: 1px solid transparent;
  border-bottom-color: #1a1f71;
}

.tabs-nav li.active a {
  color: #1a1f71;
  background-color: #fff;
  border-color: #1a1f71;
  border-bottom-color: #fff;
}

.tabs-content .tabs-panel {
  position: relative;
  display: none;
}

.tabs-content .tabs-panel.active {
  display: block;
}

/*style-line*/
.style-line .tabs-nav li {
  position: relative;
  width: 100%;
}

.style-line .tabs-nav li:after {
  content: '';
  background: #1a1f71;
  width: 0;
  height: 0.1875rem;
  position: absolute;
  bottom: -0.1875rem;
  left: 50%;
  transform: translateX(-50%);
  transition: .1s;
}

.style-line .tabs-nav li.active:after {
  width: calc(100% - 0px);
  transition: .3s;
}

.style-line .tabs-nav a {
  font-size: 1.125rem;
  height: 3.75rem;
  background-color: #fff;
  border: 0;
}

.style-line .tabs-nav {
  border-bottom: 3px solid #eee;
}

/*sub-wrap*/
.sub-wrap {
  padding: 5rem 0;
}

.sub-wrap>.title-wrap {
  padding-bottom: 3.125rem;
}

.sub-wrap>.title-wrap .h1+.ic-info {
  margin-top: 0.75rem;
}

/*h1*/
.h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

/*form-section*/
.form-section {
  width: 100%;
}

.form-section:nth-child(n+2) {
  margin-top: 3.125rem;
}

.form-section>.title-wrap {
  padding-bottom: 1rem;
  border-bottom: 1px solid #999;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

.form-section>.title-wrap .title {
  font-size: 1.5rem;
  font-weight: 800;
}

.form-section>.title-wrap .title .ic-sealcheck {
  margin-top: -5px;
  margin-left: 3px;
}

.form-section .title-wrap .title span {
  font-size: 1rem;
  color: #555;
  padding-left: 0.625rem;
  font-weight: 500;
}

.form-section .inner {
  padding: 2.5rem 0;
}



/*custom-select*/
.select-sm .custom-select-wrapper,
.select-sm .custom-select {
  width: 180px;
}

.custom-select-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
  width: 100%;
}

.custom-select-wrapper select {
  display: none;
}

.custom-select {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  height: 3.125rem;
}

.custom-select-trigger {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  color: #222;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  line-height: 3.125rem;
  padding: 0 1.125rem;
  border: 1px solid #CED4DA;
  border-radius: 0.25rem;
  text-align: left !important;
}

.custom-select.opened .custom-select-trigger {
  border-radius: 0.25rem 0.25rem 0 0;
  transition: all .3s ease-in-out;
}

.custom-select-trigger:after {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/ic-select-down-md.svg") no-repeat center/cover;
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
}

.custom-select.opened .custom-select-trigger:after {
  transform: rotate(180deg);
  margin-top: -0.625rem;
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  background: #fff;
  transition: all .3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  z-index: 1;
  border: 1px solid #CED4DA;
  border-top: 0;
  padding: 0.5rem 0 .75rem;
  border-radius: 0 0 0.25rem 0.25rem;
}

.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(-1px);
}

.custom-option {
  position: relative;
  display: block;
  padding: .75rem 1.125rem;
  color: #666;
  line-height: 1;
  cursor: pointer;
  transition: all .3s ease-in-out;
  text-align: left !important;
}

.custom-option:hover {
  background-color: #F2FAFF;
}

.custom-option.selection {
  color: #1a1f71;
  background-color: #F2FAFF;
  font-weight: 700;
}

.custom-select.disabled,
.custom-select.readonly {
  pointer-events: none;
  background-color: #F7F7F7;
}

/*drag&drop 파일첨부 여러개 추가*/
.fileAreas {
  width: 100%;
}

.fileAreas>div:nth-child(n+2) {
  padding-top: 0.625rem;
}

.file-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.file-item {
  display: flex;
  align-items: center;
  width: calc(100% - 2.25rem);
}

.file-area {
  border: 1px solid #CED4DA;
  position: relative;
  height: 3.125rem;
  width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
}


.file-area input[type="file"] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
}

.file-area .attached-files {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.attached-file {
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  padding: 0 18px;
}

.attached-files:before {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  background: url("../images/ic-file-sm.svg") no-repeat center/cover;
  display: inline-block;
  margin-left: 1.125rem;
}

.attached-files:after {
  content: '여기를 클릭 또는 파일을 마우스로 끌어 오세요.';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  color: #555;
  margin-left: 1.875rem;
}

.attached-files span {
  flex-grow: 1;
  padding-left: .75rem;
}

.addFileArea,
.delete-file-area {
  width: 2.25rem;
  height: 2.25rem;
  cursor: pointer;
}

.file-area .preview {
  font-size: 0.875rem;
  color: #555;
  font-weight: 700;
  padding: 0.4375rem .5rem;
  border-radius: 0.25rem;
  background-color: #F0F0F0;
  cursor: pointer;
}

.file-area .preview:hover {
  background-color: #E3E3E3;
  transition: all .3s;
}

.addFileArea {
  background: url("../images/ic-box-plus.svg") no-repeat center/cover;
}

.delete-file-area {
  background: url("../images/ic-box-minus.svg") no-repeat center/cover;

}

.delete-file {
  width: 1.125rem;
  height: 1.125rem;
  background: url("../images/ic-delete-sm.svg") no-repeat center/cover;
}

/*acd*/
.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/*agree*/
.agree-wrap {
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;

}

.agree .acd-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.agree-box {
  text-align: left;
  max-height: 10rem;
  overflow-y: auto;
  padding: 1.5rem;
  /* border: 1px solid #eee ;
  */
  background-color: #f6f6f6;
}

.agree-acd {
  cursor: pointer;
  transition: .3s;
}

.agree-acd img {
  width: 1.5rem;
  height: 1.5rem;
}

.agree-acd.active {
  transform: rotate(180deg);
}

.agree-acd img {
  width: 2rem;
  height: 2rem;
}

.agree .title-wrap .checkbox-label {
  font-size: 1.5rem;
  font-weight: 800;
  color: #222;
}

.agree .inner .checkbox-label {
  font-size: 1.125rem;
}

/*article*/
.article>div:nth-child(n+2) {
  padding-top: 1.5rem;
}

.article-h1 {
  font-size: 0.9375rem;
  font-weight: 700;
}

.article-h2 {
  font-size: 0.875rem;
  padding-top: 0.9375rem;
}

.article-p {
  font-size: 0.8125rem;
  color: #666;
  padding-top: 0.5rem;
  line-height: 1.6;
}

.article-p li:nth-child(n+2) {
  padding-top: 0.375rem;
}

/*floating*/
.floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  border-radius: 100px;
  height: 3.5rem;
  background: linear-gradient(45deg, #1a1f71 0%, #3139BF 100%);
  box-shadow: 0px 0px 16px 0px rgba(40, 95, 142, 0.16);
  color: #fff;
  overflow: hidden;
  padding: .5rem .75rem .5rem 1.25rem;
  transition: all .3s ease-in-out, width .3s ease-in-out;
  width: 3.5rem;
}

/* .floating.off {
  width: 3.5rem;
}

.floating.off span {
  opacity: 0;
  transition: all .3s;
} */

.floating span {
  opacity: 0;
}

.floating:hover {
  width: auto;
}

.floating:hover span {
  opacity: 1;
  transition: all .3s;
}

/*my-foreign-currency*/
.my-foreign-currency {
  display: flex;
  padding-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.my-foreign-currency .item {
  position: relative;
  background-color: #F2F3F8;
  border-radius: 0.375rem;
  padding: 2rem;
  width: 33.333333%;
  display: flex;
  justify-content: space-between;
  max-width: 489.33px;
}

.my-foreign-currency .item .bank {
  color: #1a1f71;
  font-weight: 700;
}

.my-foreign-currency .item .bank-num {
  font-size: 1.5rem;
  font-weight: 700;
  padding-top: 0.125rem;
}

.my-foreign-currency .item .foreign-currency {
  padding-top: 1rem;
}

.my-foreign-currency .item .btn-delete {
  position: absolute;
  right: 0.625rem;
  top: 0.625rem;
  width: 1.125rem;
  height: 1.125rem;
  background: url("../images/ic-delete-sm.svg") no-repeat center/cover;
  opacity: .5;
}

.my-foreign-currency .item .btn-delete:hover {
  opacity: 1;
}

/*badge*/
.badge {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4375rem 0.5rem;
  color: #fff;
  display: inline-flex;
  border-radius: 0.25rem;
  line-height: 1;
  white-space: nowrap;
}

.badge.first {
  background: rgba(26, 31, 113, 0.55)
}

.badge.second {
  background: rgba(26, 31, 113, 0.65)
}

.badge.third {
  background: rgba(26, 31, 113, 0.85)
}

.badge.fourth {
  background: rgba(26, 31, 113, 0.85)
}

.badge.fifth {
  background-color: #1a1f71;
}

.badge.gray {
  color: #555;
  background-color: #F0F0F0;
}

/*table-list*/
.table-list .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 1rem;
}

.table-list .title-wrap .total {
  font-size: 1.5rem;
  font-weight: 700;
}

.table-list .title-wrap .search {
  width: 40.625rem;
}

.table-list .select-sm .custom-select-wrapper,
.table-list .select-sm .custom-select {
  width: 140px;
}

.table-list .title-wrap .search input {
  width: calc(100% - 12.625rem);
}

.ic-search {
  width: 3.125rem;
  height: 3.125rem;
  padding: 0;
  position: relative;
}

.ic-search:after {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/ic-search-wh-md.svg")no-repeat center/cover;
}

table {
  border-top: 1px solid #ddd;
  width: 100%;
  table-layout: fixed;
}

th,
td {
  text-align: center;
  height: 3.75rem;
  border-bottom: 1px solid #eee;
}

th {
  font-weight: 600;
  color: #666;
}

td {
  font-weight: 500;
}

tr:hover {
  background-color: #F9F9F9;
  transition: all .3s;
}

.select-board .custom-select-wrapper,
.select-board .custom-select {
  width: 130px;
}

.select-board .custom-select {
  height: 2.5rem;
}

.select-board .custom-select-trigger {
  line-height: 2.5rem;
  background-color: #fff;
}

/*step*/
.step {
  width: 100%;
  position: relative;
  display: flex;
}

.step:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #CED4DA;
  top: 1.25rem;
  left: 0;
  z-index: -1;
  position: absolute;
}

.step .item {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step .item .num {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid #CED4DA;
  border-radius: 50%;
  color: #85929C;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #fff;
}

.step .item .title {
  color: #85929C;
  font-weight: 700;
  padding-top: .75rem;
}

.step .item.active .num,
.step .item.active .title {
  color: #1a1f71;
  border-color: #1a1f71;
}

.step .item.completion .num {
  text-indent: -9999px;
}

.step .item.completion .num:before {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/ic-step-check-sm.svg") no-repeat center/cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*create*/
.create {
  padding-top: 3.75rem;
}

.create .b-b {
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.create>.title {
  font-size: 2.5rem;
  font-weight: 800;
  padding-bottom: 3.125rem;
}

.create-type .item {
  display: flex;
  align-items: center;
}

.create-type .item:nth-child(n+2) {
  padding-top: 2rem;
}

.create-type .item>.title {
  font-size: 1.375rem;
  width: 28.125rem;
}

.create-type .item>.title span {
  font-weight: 800;
}

.create-type .item .form-create {
  width: calc(100% - 28.125rem);
  padding-left: 6.25rem;
}


/*ic-info*/
.ic-info {
  font-size: 0.875rem;
  color: #666781;
  padding: .75rem 1rem;
  background-color: #F2F3F8;
  border-radius: 0.1875rem;
  width: 100%;
}

.ic-info:before {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  background: url("../images/ic-info-primary-sm.svg") no-repeat center/cover;
  display: inline-block;
  margin: -0.0625rem 0.25rem 0 0;
  vertical-align: middle;
}

.ic-info.ic-none:before {
  display: none;
}

/*form-box*/
.form-box .inner {
  border: 1px solid #B0B1C3;
  padding: 2rem;
  border-radius: 0.375rem;
  text-align: center;
  background-color: #F2F3F8;
}

.form-box .title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.form-box .title {
  font-size: 1.375rem;
  font-weight: 600;
}

.form-box .result {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1f71;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.form-box .result .acd {
  cursor: pointer;
  transition: .3s;
}

.acd.active {
  transform: rotate(180deg);
}

.form-box-info {
  padding-top: .75rem;
}

.form-box-info ul {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
}

.form-box-info ul li:nth-child(n+2):before {
  content: '';
  width: 1px;
  height: .75rem;
  background-color: #ddd;
  display: inline-block;
  vertical-align: middle;
  margin: 0 .75rem;
}

/*sign*/
.sign {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

/*sign draw*/
.sign .cavas-wrap {
  position: relative;
}

.sign .info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #999;
  font-size: 1.0625rem;
  font-weight: 600;
}

.sign #canvas,
.sign .box {
  width: 100%;
  height: 300px;
  border: 1px solid #CED4DA;
  border-radius: 0.375rem;
  background-color: #F7F7F7;
  display: block;
}

.sign .bottom {
  padding-top: 0.625rem;
  display: flex;
  justify-content: flex-end;
}

.sign .bottom .date {
  font-size: .875rem;
  color: #666;
  padding-top: 0.75rem;
}

#erase {
  font-size: 0.875rem;
  padding: .75rem .875rem;
  border-radius: 100px;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  font-weight: 700;
  color: #666;
}

#erase:before {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  background: url("../images/ic-eraser-sm.svg") no-repeat center/cover;
  display: inline-block;
}

/*sign upload*/
.sign .box {
  position: relative;
}

.sign.upload .box {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sign .box .img {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.sign .box .img img {
  max-width: 100%;
  min-width: auto;
  max-height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sign.upload .bottom {
  height: 3.375rem;
}

.delete-img {
  font-size: 0.875rem;
  padding: .75rem .875rem;
  border-radius: 100px;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  font-weight: 700;
  color: #666;
}

.delete-img:before {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  background: url(../images/ic-delete-sm.svg) no-repeat center/cover;
  display: inline-block;
}

/*ic-sealcheck*/
.ic-sealcheck {
  width: 1.125rem;
  height: 1.125rem;
  background: url("../images/ic-sealcheck-primary-sm.svg") no-repeat center/cover;
  display: inline-block;
  vertical-align: middle;
}

/*search-fillter*/
.search-fillter {
  padding-top: 1.5rem;
}

.search-fillter .fillter-wrap {
  display: flex;
  gap: 0.625rem;
  padding-bottom: 1rem;
}

.search-fillter .custom-select-wrapper,
.search-fillter .custom-select {
  width: 165px;
}

.search-fillter .btn-set {
  width: 100%;
  gap: 0.625rem;
}

.search-fillter .btn-set input {
  width: calc(100% - 3.75rem);
}


/*datepicker-wrap*/
.datepicker-wrap {
  display: flex;
  align-items: center;
  position: relative;
  /* width: 100% ;
  */
}

.datepicker-wrap .from {
  padding: 0 .5rem;
}

.datepiker-set {
  display: flex;
  align-items: center;
}

.datepicker-input {
  width: 10rem;
  position: relative;
}

.datepicker-input input {
  cursor: pointer;
  background-image: url("../images/ic-calendar.svg");
  background-position-x: calc(100% - 0.5rem);
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
}

.datepicker-input .ui-datepicker-trigger {
  position: absolute;
  top: 50%;
  right: 0.875rem;
  z-index: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.datepicker-input input[readonly],
input[disabled] {
  color: #222;
  background-color: #fff;
}

/*datepicker*/
.ui-datepicker-trigger,
.hasDatepicker,
.hasMonthpicker {
  cursor: pointer;
}

.ui-widget * {
  font-family: 'Pretendard', sans-serif !important;
  font-weight: 500 !important;
}

.datepicker input {
  border: 0;
  font-size: 1.125rem;
  text-align: center;
  margin-top: -0.2rem;
  width: auto !important;
  height: auto;
  color: #222 !important;
  cursor: pointer !important;
}

.ui-datepicker {
  -webkit-box-shadow: 0 0.1rem 1.333rem 1px rgb(0, 0, 0, .08);
  box-shadow: 0 0.1rem 1.333rem 1px rgb(0, 0, 0, .08);
  padding: 1.5rem 1rem 1rem !important;
}

.ui-widget.ui-widget-content {
  border: 0 !important;
}

.ui-datepicker .ui-datepicker-header {
  padding: 0 !important;
}

.ui-widget-header {
  border: 0 !important;
  background: #fff !important;
  color: rgba(0, 0, 0, 1) !important;
  font-weight: 700 !important;
}

.ui-datepicker table {
  margin: 0 !important;
  font-size: 0.875rem !important;
}

.ui-widget-content {
  color: rgba(0, 0, 0, 1) !important;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  padding: 0 !important;
}

.ui-datepicker th {
  padding: 0 0.3em !important;
  font-weight: normal !important;
}

.ui-datepicker td {
  background: #fff !important;
  position: relative;
  padding: 0 !important;
  padding-bottom: 14.28% !important;
  height: initial;
}

.ui-datepicker-calendar th:first-child,
.ui-datepicker-calendar td:first-child a {
  color: #ff3434 !important;
}

.ui-datepicker-calendar th:last-child,
.ui-datepicker-calendar td:last-child a {
  color: #0152cc !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
.ui-button.ui-state-disabled:hover,
.ui-button.ui-state-disabled:active {
  border: 0 !important;
  position: absolute;
  width: 100%;
  height: 100% !important;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ui-datepicker td span,
.ui-datepicker td a {
  padding: 0 !important;
  text-align: center !important;
}

.ui-datepicker-next .ui-icon {
  background-image: url("../images/ic-arrow-right.svg") !important;
  background-position: center;
  width: 1.75rem;
  height: 1.75rem;
  background-size: contain;
}

.ui-datepicker-prev .ui-icon {
  background-image: url("../images/ic-arrow-left.svg") !important;
  background-position: center;
  width: 1.75rem;
  height: 1.75rem;
  background-size: contain;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%);
  margin: 0 !important;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  /* border: 0 !important ;
  */
  background: #fff !important;
}

.ui-state-hover,
.ui-button:hover,
.ui-button:focus {
  border: 0 !important;
}

.ui-datepicker .ui-datepicker-next {
  right: 0 !important;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev {
  left: 0 !important;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 0 !important;
}

.ui-datepicker .ui-datepicker-title {
  padding-bottom: 0.75rem;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
.ui-button.ui-state-disabled:hover,
.ui-button.ui-state-disabled:active {
  border: 0;
  background: transparent;
  font-weight: normal;
  color: #454545 !important;
  background-color: #fff !important;
}

.ui-state-default.ui-state-highlight,
.ui-state-default.ui-state-highlight.ui-state-hover {
  background: rgba(69, 73, 156, .08) !important;
  border-radius: 50%;
}

.ui-state-default.ui-state-active,
.ui-state-default.ui-state-active.ui-state-hover,
.ui-datepicker-calendar td:last-child a.ui-state-default.ui-state-active,
.ui-datepicker-calendar td:last-child a.ui-state-default.ui-state-active.ui-state-hover,
.ui-datepicker-calendar td:first-child a.ui-state-default.ui-state-active,
.ui-datepicker-calendar td:first-child a.ui-state-default.ui-state-active.ui-state-hover {
  background-color: #1a1f71 !important;
  color: #fff !important;
  border-radius: 50%;
}

/*search-result head*/
.search-result {
  padding-top: 2.5rem;
}

.search-result>.head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.search-result>.head>.title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1;
}

.search-result>.head>.title-wrap .total {
  font-size: 1.5rem;
  font-weight: 800;
}

.search-result>.head>.title-wrap>.total-info ul {
  display: flex;
  align-items: center;
  font-size: 1.0625rem;
  color: #555;
}

.search-result>.head>.title-wrap>.total-info ul li:nth-child(n+2):before {
  content: '';
  width: 1px;
  height: 0.75rem;
  background: #ddd;
  display: inline-block;
  margin: 0 0.625rem;
}

.search-result>.head>.title-wrap>.total-info ul li span {
  font-weight: 800;
  color: #222;
}

/*search-result body*/
.search-result>.body {
  padding-top: 1.5rem;
}

.progress-result {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.progress-result .item {
  background-color: #fff;
  padding: 2.5rem;
  border: 1px solid #eee;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
  border-radius: 1.25rem;
  width: calc(33.333333% - 0.67rem);
  cursor: pointer;
}

.progress-result .item:hover {
  border-color: #1a1f71;
  transition: all .3s;
}

.progress-result .item>.title-wrap {
  display: flex;
  justify-content: space-between;
  height: 3.5rem;
}

.progress-result .item>.title-wrap .title {
  font-size: 1.25rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-right: 1rem;
}

.progress-result .item .info-wrap {
  padding-top: 1.25rem;
  font-size: 0.9375rem;
  color: #666;
}

.progress-result .item .info-wrap ul {
  display: flex;
  align-items: center;
}

.progress-result .item .info-wrap ul:nth-child(n+2) {
  padding-top: .75rem;
}

.progress-result .item .info-wrap .ic {
  width: 1.125rem;
  height: 1.125rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.ic.calendar {
  background-image: url("../images/ic-calendar-sm.svg");
}

.ic.coin {
  background-image: url("../images/ic-coin-sm.svg");
}

.ic.card {
  background-image: url("../images/ic-card-sm.svg");
}

.ic.sealcheck {
  background-image: url("../images/ic-sealcheck-primary-sm.svg");
}

.ic.building {
  background-image: url("../images/ic-building-sm.svg");
}

.progress-result .item .info-wrap .title {
  width: 4.375rem;
  margin: 0 1rem 0 .5rem;
}

.progress-result .item .info-wrap .data {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 7rem);
}

/*finish-result*/
.finish-result .item {
  background-color: #fff;
  padding: 2.5rem;
  border: 1px solid #eee;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
  border-radius: 1.25rem;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.finish-result .item:hover {
  border-color: #1a1f71;
  transition: all .3s;
}

.finish-result .item:nth-child(n+2) {
  margin-top: 1rem;
}

.finish-result .item>.title-wrap {
  width: 26.25rem;
  display: flex;
  align-items: center;
}

.finish-result .item>.title-wrap .num {
  text-align: center;
  font-size: 2rem;
  color: rgba(0, 0, 0, .12);
  font-weight: 800;
  width: 2.8125rem;
}

.finish-result .item:hover>.title-wrap .num {
  color: #1a1f71;
  transition: all .3s;
}

.finish-result .item>.title-wrap .title-zon {
  width: calc(100% - 2.8125rem);
  padding-left: 2rem
}

.finish-result .item>.title-wrap .title-zon .title {
  font-size: 1.25rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.finish-result .item>.title-wrap .title-zon .badge-wrap {
  padding-top: .5rem;
}

.finish-result .item .circle-arrow {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F9F9F9;
}

.finish-result .item:hover .circle-arrow {
  background-color: #1a1f71;
  transition: all .3s;
}

.finish-result .item:hover .circle-arrow svg * {
  fill: #fff;
  transition: all .3s;
}

.finish-result .item .info-wrap {
  font-size: 0.9375rem;
  height: 100%;
  border-left: 1px solid #e5e5e5;
  padding-left: 2rem;
  margin-left: 2rem;
  width: calc(100% - 30rem);
}

.finish-result .item .info-wrap .inner {
  display: flex;
  gap: 1rem;
}

.finish-result .item .info-wrap .inner:nth-child(n+2) {
  padding-top: 0.625rem;
}

.finish-result .item .info-wrap .inner ul {
  display: flex;
  gap: 0.25rem;
}

.finish-result .item .info-wrap .inner ul li:nth-child(1) {
  color: #666;
}

/*progress-step*/
.progress-step {
  display: flex;
  align-items: center;
  align-items: center;
  padding-bottom: 1.5rem;
}

.progress-step .badge.yet {
  color: #9394A1;
  border: 1px solid #9394A1;
}

.progress-step>div {
  display: flex;
  align-items: center;
}

.progress-step>div:nth-child(n+2):before {
  content: '';
  width: 0.875rem;
  height: 0.875rem;
  background: url("../images/ic-arrow-step.svg") no-repeat center/cover;
  display: inline-block;
  margin: 0 0.25rem;
}

/*sub-visual*/
.sub-visual {
  height: 23.125rem;
  background-color: #1a1f71;
  color: #fff;
}

.sub-visual .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.sub-visual .inner>div {
  width: 50%;
}

.sub-visual .info {
  font-size: 1.75rem;
  font-weight: 600;
  padding: 1rem 0;
}

.sub-visual .date {
  font-size: 1.125rem;
  font-weight: 400;
}

.sub-visual .date span:nth-child(n+2) {
  padding-left: .75rem;
}

.sub-visual .img img {
  margin: 0 auto;
}

/*faq*/
.faq {
  padding-top: 3.75rem;
}

.faq .item {
  border-bottom: 1px solid #eee;
}

.faq .faq-title {
  padding: 2rem 2rem 2rem 4.5rem;
  font-size: 1.125rem;
  width: 100%;
  line-height: 1.5;
  position: relative;
  font-weight: 500;
  text-align: left;
  color: #222;
}

.faq .faq-title.active {
  font-weight: 700;
}

.faq .faq-title:before {
  content: 'Q.';
  padding-right: 1rem;
  font-weight: 700;
  position: absolute;
  left: 2.5rem;
}

.faq .faq-title:after {
  content: '';
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/ic-select-down-md.svg);
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}

.faq .faq-title.active:after {
  transform: rotate(180deg);
  margin-top: -0.5rem;
}

.faq .panel p {
  padding: 0 2rem 2rem 4.5rem;
  font-size: 1rem;
  color: #555;
  position: relative;
}

.faq .panel p:before {
  content: 'A.';
  font-weight: 700;
  font-size: 1.25rem;
  color: #222;
  position: absolute;
  left: 2.5rem;
}

/*index-visual*/
.index-visual {
  height: 100%;
  background: url("../images/bg-visual.jpg") no-repeat center/cover;
  position: relative;
  min-height: 43.75rem;
}

.index-visual .index-content {
  max-width: 47.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.index-visual .index-content .title-wrap {
  text-align: center;
  color: #fff;
  padding-bottom: 2.5rem;
  line-height: 1;
}

.index-visual .index-content .title-wrap .title {
  font-size: 3.5rem;
  font-weight: 800;
}

.index-visual .index-content .title-wrap .info {
  font-size: 1.625rem;
  font-weight: 600;
  padding-top: 0.625rem;
}

.index-visual .index-content .input-wrap input {
  border: 0;
  height: 3.75rem;
  font-size: 1.125rem;
}

.index-visual .index-content .input-wrap .btn-sm {
  height: 3.75rem;
  font-size: 1rem;
  width: 6.25rem;
  padding: 0 1.75rem;
}

.index-visual .index-content .id-pw-find {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
}

.index-visual .index-content .id-pw-find a {
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.index-visual .index-content .id-pw-find a:after {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/ic-arrow-right-wh-md.svg") no-repeat center/cover;
}

/*main*/
.main section {
  padding-top: 0;
}

.main .header-wrap {
  background-color: transparent;
  border-color: rgba(255, 255, 255, .1);
}

.main header .logo {
  color: #fff;
}

.main header .gnb a {
  color: #fff;
}

.main header .right .lang {
  color: #fff;
}

.main header .right .user-text {
  color: #fff;

}

.main header .right .user-text:after {
  background-image: url("../images/ic-arrow-down-wh-xsm.svg");
}

/*error-wrap*/
.error-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.error-wrap .img {
  margin-top: -5rem;
}

.error-wrap .title-wrap {
  padding-top: 1rem;
}

.error-wrap .title-wrap .title {
  font-size: 1.5rem;
  font-weight: 700;
}

.error-wrap .title-wrap .info {
  font-size: 1.125rem;
  color: #666;
  padding-top: .25rem;
}

/*loader*/
.loader-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  left: 0%;
  top: 0;
  z-index: 9999999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: #1a1f71;
  border-radius: 50%;
  display: inline-block;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*auto-box-wrap*/
.p-rel {
  position: relative;
}

.auto-box-wrap {
  position: absolute;
  top: 3.125rem;
  left: 0;
  right: 0;
  display: none;
  z-index: 99999;
}

.auto-box-content-wrap {
  position: relative;
  z-index: 99999;
  background: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 1px 3px 0 rgb(0, 0, 0, .1);
}

.auto-box-content-wrap {
  padding: 14px 0;
  border: 1px solid #e0e0e0;
  border-radius: 0.25rem;
  background: #fff;
  max-height: 300px;
  overflow-y: auto;
}

.auto-box-content li a {
  color: #888;
  padding: 0.3125rem 1rem;
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auto-box-content li a:hover {
  color: #222;
  background: #f3f3f3;
}



/* 251111 공통푸터 */
.bg-dim {
  position: fixed ;
  z-index: 1000 ;
  left: 0 ;
  top: 0 ;
  width: 100% ;
  height: 100% ;
  background-color: rgba(0, 0, 0, .5);
}

.custom-choice-panel .trigger {
  display: flex ;
  justify-content: space-between ;
  align-items: center ;
  background: transparent ;
  width: inherit ;
  height: 2.5rem ;
  padding: 0 0.75rem ;
  gap: 0 0.25rem ;
  border-radius: 6.25rem;
}

.custom-choice-panel .trigger span {
  padding: 0 0.5rem ;
  line-height: 1 ;
  letter-spacing: 0.089rem;
}

.custom-choice-panel .trigger .i-plus-minus-toggle {
  position: relative ;
  flex-shrink: 0 ;
  width: 1.5rem ;
  height: 1.5rem;
}

.custom-choice-panel .trigger .i-plus-minus-toggle::before,
.custom-choice-panel .trigger .i-plus-minus-toggle::after {
  content: '' ;
  position: absolute ;
  left: 50% ;
  top: 50% ;
  transform: translate(-50%, -50%) ;
  border-radius: 0.1875rem;
}

.custom-choice-panel .trigger .i-plus-minus-toggle::before {
  width: 1rem ;
  height: 0.125rem;
}

.custom-choice-panel .trigger .i-plus-minus-toggle::after {
  width: 0.125rem ;
  height: 1rem;
}

.custom-choice-panel .trigger[aria-expanded="true"] .i-plus-minus-toggle::after {
  opacity: 0 ;
  height: 0 ;
  transition: opacity .2s, height .2s, transform .2s;
}

.custom-choice-panel .panel {
  z-index: 1001 ;
  max-height: none ;
  opacity: 0 ;
  visibility: hidden ;
  transition: opacity .2s, visibility .2s, transform .2s;
}

.custom-choice-panel .panel[aria-hidden="false"] {
  opacity: 1 ;
  visibility: visible ;
  transform: translateY(0);
}

.custom-choice-panel .panel__top .group {
  color: #8E8E8E;
}

.custom-choice-panel .panel__list {
  max-height: max-content;
}

.custom-choice-panel .panel__list[style*=height] {
  overflow-y: scroll;
}

.custom-choice-panel .panel__list::-webkit-scrollbar {
  width: 0.375rem;
}

.custom-choice-panel .panel__list::-webkit-scrollbar-thumb {
  background-color: rgba(98, 98, 98, .7) ;
  border-radius: 0.625rem;
}

.custom-choice-panel .panel__list > a {
  display: block;
}

.custom-choice-panel.modal-fadein-down {
  position: relative;
}

.custom-choice-panel.modal-fadein-down .panel {
  position: absolute ;
  width: max-content ;
  bottom: 100% ;
  right: 0 ;
  margin-bottom: 1rem ;
  padding: 1.25rem 0 ;
  border: 1px solid #D2D2D2 ;
  border-radius: 1.25rem;
}

.custom-choice-panel.modal-fadein-down .panel div {
  padding: 0 1.875rem;
}

.custom-choice-panel.modal-fadein-down .panel[aria-hidden="true"] {
  transform: translateY(-1.25rem);
}

.custom-choice-panel.modal-fadein-down .panel__top .group {
  padding: 0.875rem 0.75rem ;
  font-size: 0.75rem ;
  line-height: 1rem;
}

.custom-choice-panel.modal-fadein-down .panel__list > a {
  padding: 0.375rem 0.75rem ;
  font-size: 0.875rem ;
  line-height: 1.25rem;
}

.custom-choice-panel.sheet-slide-up .btn--handlebar {
  display: table ;
  width: 1.875rem ;
  height: 1.875rem ;
  margin: 0 auto ;
  background: transparent;
}

.custom-choice-panel.sheet-slide-up .btn--handlebar::before {
  content: '' ;
  display: table-cell ;
  vertical-align: middle ;
  width: inherit ;
  height: 0.1875rem ;
  background-color: #d2d2d2 ;
  border-radius: 0.1875rem;
}

.custom-choice-panel.sheet-slide-up .panel {
  position: fixed ;
  width: inherit ;
  bottom: 0 ;
  left: 0 ;
  border-radius: 1.25rem 1.25rem 0 0;
}

.custom-choice-panel.sheet-slide-up .panel[aria-hidden="true"] {
  transform: translateY(100%);
}

.custom-choice-panel.sheet-slide-up .panel div {
  padding: 0 0.5rem;
}

.custom-choice-panel.sheet-slide-up .panel__top {
  position: relative ;
  padding-top: 0.875rem;
}

.custom-choice-panel.sheet-slide-up .panel__top .group {
  padding: 1rem ;
  font-size: 1.25rem ;
  line-height: 1.875rem;
}

.custom-choice-panel.sheet-slide-up .panel__list {
  margin: 0.5rem 0 0.25rem ;
  transition: all .15s ease;
}

.custom-choice-panel.sheet-slide-up .panel__list > a {
  padding: 1rem ;
  font-size: 1rem ;
  line-height: 1.5rem;
}

.custom-choice-panel.sheet-slide-up .panel .btn--x-close {
  position: absolute ;
  top: 1.5rem ;
  right: 1.5rem ;
  width: 2.5rem ;
  height: 2.5rem ;
  background: no-repeat url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L13 13M13 1L1 13' stroke='%23BCBCBC' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A") center;
}

.footer-wrap {
  padding: 2.5rem 0 3.75rem ;
  border-top: 0 ;
  box-sizing: content-box;
}

.footer-wrap .container {
  width: clamp(62.5rem, 100%, 75rem) ;
  padding: 0 2.5rem ;
  background: none;
} /* clamp(최소, 가장 이상적인 크기, 최대) */
footer .top {
  display: flex ;
  align-items: center;
}

footer .top.end {
  justify-content: flex-end;
}

footer .top .btn--to-top {
  display: block ;
  background: no-repeat center ;
  border-radius: 100% ;
  margin-left: 0.5rem ;
  width: 2.5rem ;
  height: 2.5rem;
}

footer .top .terms,
footer .top .utils {
  display: flex ;
  flex-wrap: wrap ;
  align-items: center;
}

footer .top .terms {
  flex: 1 ;
  gap: 0.875rem;
}

footer .top .terms a {
  font-size: 0.875rem ;
  line-height: 1.25rem;
}

footer .top .terms a:not(:last-child)::after {
  content: '' ;
  display: inline-block ;
  vertical-align: middle ;
  margin-left: 0.875rem ;
  width: 1px ;
  height: 1rem;
}

footer .top .terms a b {
  color: inherit;
}

footer .top .utils {
  gap: 0.5rem;
}

footer .top .utils .btn {
  display: flex ;
  align-items: center ;
  justify-content: space-between ;
  gap: 0 0.25rem ;
  height: 2.5rem ;
  padding: 0 0.75rem ;
  border: 1px solid ;
   background: transparent ;
  border-radius: 6.25rem;
}

footer .top .utils .btn .i-arrowHead-right {
  display: flex ;
  flex-direction: column ;
  align-items: center ;
  justify-content: center ;
  gap: 0.25rem ;
  flex-shrink: 0 ;
  width: 1.5rem ;
  height: 1.5rem;
}

footer .top .utils .btn .i-arrowHead-right::before,
footer .top .utils .btn .i-arrowHead-right::after {
  content: '' ;
  margin-left: 0.125rem ;
  width: 0.625rem ;
  height: 0.125rem ;
  border-radius: 0.125rem;
}

footer .top .utils .btn .i-arrowHead-right::before {
  transform: rotate(45deg);
}

footer .top .utils .btn .i-arrowHead-right::after {
  transform: rotate(-45deg);
}

footer .top .utils .btn span {
  display: block ;
  line-height: 1 ;
  padding: 0 0.5rem ;
  letter-spacing: 0.0387rem;
}

footer .top + .info {
  margin-top: 1rem ;
  padding-top: 2.5rem ;
  border-top: 1px solid;
}

footer .info {
  display: flex ;
  align-items: center ;
  justify-content: space-between ;
  gap: 0 3.75rem ;
  width: auto;
}

footer .info .symbol {
  pointer-events: none ;
  width: 6.625rem ;
  height: 7.5rem ;
  margin-left: 3.75rem ;
  flex-shrink: 0 ;
   background: no-repeat center/ contain ;
   }

footer .info .logo {
  width: auto ;
  height: 1.25rem ;
  background: no-repeat left center/ contain;
}

footer .info .text {
  margin-top: 1.25rem;
}

footer .info .text dl {
  display: flex ;
  flex-wrap: wrap ;
  align-items: center ;
  gap: 0.5rem ;
  margin-top: 0.5rem;
}

footer .info .text dl + dl {
  margin-top: 0.5rem;
}

footer .info .text dl div {
  display: flex ;
  flex-wrap: wrap ;
  align-items: center ;
  gap: 0.5rem;
}

footer .info .text dt,
footer .info .text dd {
  font-size: 0.875rem ;
  line-height: 1.25rem;
}

footer .info .text .copy {
  margin-top: 1.25rem ;
  font-size: 0.75rem ;
  line-height: 1rem;
}

footer.is-mobile {
  min-width: auto;
}

footer.is-mobile .footer-wrap .container {
  width: 100% ;
  box-sizing: border-box;
}  /*clamp(최소, 가장 이상적인 크기, 최대)*/
footer.is-mobile .top {
  flex-direction: column ;
  justify-content: center;
}

footer.is-mobile .top .btn--to-top {
  order: -1 ;
  margin: 0 auto ;
  width: 3.5rem ;
  height: 3.5rem;
}

footer.is-mobile .top .terms {
  margin-top: 2.5rem;
}

footer.is-mobile .top .utils {
  margin-top: 2rem ;
  width: 100% ;
  flex-direction: column;
}

footer.is-mobile .top .utils .btn,
footer.is-mobile .top .utils .custom-choice-panel {
  width: 100%;
}

footer.is-mobile .info {
  flex-direction: column ;
  gap: 2.5rem 0;
}

footer.is-mobile .info .symbol {
  margin: 0 auto;
}

footer.is-mobile .info .logo {
  background: no-repeat center/ contain;
}

footer.is-mobile .info .text dl {
  flex-direction: column;
}

footer.is-mobile .info .text .copy {
  text-align: center;
}

footer.is-light .footer-wrap,
footer.is-light .footer-wrap .container {
  background-color: #F4F4F4;
}

footer.is-light .top .btn--to-top {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12L12 5M12 5L19 12M12 5V19' stroke='%23787878' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") ;
  background-color: #fff;
}

footer.is-light .top .terms a  {
  color: #626262;
}

footer.is-light .top .terms a:not(:last-child)::after {
  background-color: #D2D2D2;
}

footer.is-light .top .utils .btn {
  border-color: #BCBCBC;
}

footer.is-light .top .utils .btn span {
  color: #353535;
}

footer.is-light .top .utils .btn .i-arrowHead-right::before,
footer.is-light .top .utils .btn .i-arrowHead-right::after {
  background-color: #787878;
}

footer.is-light .top .utils .custom-choice-panel .trigger {
  color: #353535 ;
  background-color: #fff;
}

footer.is-light .top .utils .custom-choice-panel .trigger .i-plus-minus-toggle::before,
footer.is-light .top .utils .custom-choice-panel .trigger .i-plus-minus-toggle::after {
  background-color: #787878;
}

footer.is-light .top .utils .custom-choice-panel .panel {
  background-color: #fff;
}

footer.is-light .top .utils .custom-choice-panel .panel__list > a {
  color: #353535;
}

footer.is-light .top .utils .custom-choice-panel .panel__list > a:hover {
  color: #02257A;
}

footer.is-light .top + .info {
  border-top-color: #D2D2D2;
}

footer.is-light .info .symbol {
  background-image: url('/images/symbol_bl.svg');
}

footer.is-light .info .logo {
  background-image: url('/images/logo_dnr_en_bl.svg');
}

footer.is-light .info .text dt,
footer.is-light .info .text dd {
  color: #353535;
}

footer.is-light .info .text .copy {
  color: #8E8E8E;
}

footer.is-dark .footer-wrap,
footer.is-dark .footer-wrap .container {
  background-color: #1E1E1E;
}

footer.is-dark .top .btn--to-top {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12L12 5M12 5L19 12M12 5V19' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") ;
  background-color: rgba(75, 75, 75, 0.8);
}

footer.is-dark .top .terms a  {
  color: #BCBCBC;
}

footer.is-dark .top .terms a:not(:last-child)::after {
  background-color: rgba(75, 75, 75, 0.8);
}

footer.is-dark .top .utils .btn,
footer.is-dark .top .utils .btn span {
  color: #fff;
}

footer.is-dark .top .utils .btn .i-arrowHead-right::before,
footer.is-dark .top .utils .btn .i-arrowHead-right::after {
  background-color: #fff;
}

footer.is-dark .top .utils .custom-choice-panel .panel {
  background-color: #1E1E1E;
}

footer.is-dark .top .utils .custom-choice-panel .panel__list > a {
  color: #fff;
}

footer.is-dark .top .utils .custom-choice-panel .panel__list > a:hover {
  color: #5294FF;
}

footer.is-dark .top .utils .custom-choice-panel .trigger {
  color: #fff ;
  background-color: rgba(53, 53, 53, .9);
}

footer.is-dark .top .utils .custom-choice-panel .trigger .i-plus-minus-toggle::before,
footer.is-dark .top .utils .custom-choice-panel .trigger .i-plus-minus-toggle::after {
  background-color: #fff;
}

footer.is-dark .top + .info {
  border-top-color: rgba(75, 75, 75, .8);
}

footer.is-dark .info .symbol {
  background-image: url("../images/symbol_wh.svg");
}

footer.is-dark .info .logo {
  background-image: url("../images/logo_dnr_en_wh.svg");
}

footer.is-dark .info .text dt,
footer.is-dark .info .text dd {
  color: #8E8E8E;
}

footer.is-dark .info .text .copy {
  color: #626262;
}

/* 251201 비밀번호 토글 */
.pswd-eye-wrap {
  position: relative;
  --icon-eye-show: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='18' fill='none' viewBox='0 0 26 18'%3E%3Cpath stroke='%23000' stroke-width='1.5' d='M13 2C6 2 2 8.5 2 9s3.5 7 11 7 11-6.5 11-7-4-7-11-7Z'/%3E%3Ccircle cx='13' cy='9' r='3' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E");
  --icon-eye-hide: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='18' fill='none' viewBox='0 0 26 18'%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-width='1.5' d='M13 2c7 0 11 6.5 11 7 0 .202-.57 1.38-1.742 2.715M7.5 3.438C3.946 5.383 2 8.65 2 9c0 .5 3.5 7 11 7 2.457 0 4.484-.697 6.1-1.653'/%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-width='1.5' d='M11.08 6.695A3 3 0 1 0 15.236 11M5 1l16.5 15.5'/%3E%3C/svg%3E");
}

.pswd-eye-wrap .btn-eye {
  display: none;
  position: absolute;
  top: 50%;
  margin-top: -0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background: no-repeat var(--icon-eye-show) center;
  transition: 0s;
}

.pswd-eye-wrap .btn-eye.show {
  background-image: var(--icon-eye-hide);
}

.index-content .pswd-eye-wrap input {
  padding-right: 3.2rem;
}

.index-content .pswd-eye-wrap .btn-eye {
  right: 1.125rem;
}

.account-wrap .pswd-eye-wrap input {
  padding-right: 2.75rem;
}

.account-wrap .pswd-eye-wrap .btn-eye {
  right: 0.625rem;
}
