@charset "UTF-8";
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.ellipsis-2 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: inherit;
  -webkit-line-clamp: 2;
  word-break: break-all;
}

.ellipsis-3 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: inherit;
  -webkit-line-clamp: 3;
  word-break: break-all;
}

.ellipsis-4 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: inherit;
  -webkit-line-clamp: 4;
  word-break: break-all;
}

.ellipsis-5 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: inherit;
  -webkit-line-clamp: 5;
  word-break: break-all;
}

@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-style: normal;
  src: url("/font/Pretendard/Pretendard-Thin.woff") format("woff"), url("/font/Pretendard/Pretendard-Thin.ttf") format("TrueType"), url("/font/Pretendard/Pretendard-Thin.otf") format("OpenType");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-style: normal;
  src: url("/font/Pretendard/Pretendard-ExtraLight.woff") format("woff"), url("/font/Pretendard/Pretendard-ExtraLight.ttf") format("TrueType"), url("/font/Pretendard/Pretendard-ExtraLight.otf") format("OpenType");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-style: normal;
  src: url("/font/Pretendard/Pretendard-Light.woff") format("woff"), url("/font/Pretendard/Pretendard-Light.ttf") format("TrueType"), url("/font/Pretendard/Pretendard-Light.otf") format("OpenType");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-style: normal;
  src: url("/font/Pretendard/Pretendard-Regular.woff") format("woff"), url("/font/Pretendard/Pretendard-Regular.ttf") format("TrueType"), url("/font/Pretendard/Pretendard-Regular.otf") format("OpenType");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-style: normal;
  src: url("/font/Pretendard/Pretendard-Medium.woff") format("woff"), url("/font/Pretendard/Pretendard-Medium.ttf") format("TrueType"), url("/font/Pretendard/Pretendard-Medium.otf") format("OpenType");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-style: normal;
  src: url("/font/Pretendard/Pretendard-SemiBold.woff") format("woff"), url("/font/Pretendard/Pretendard-SemiBold.otf") format("OpenType");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-style: normal;
  src: url("/font/Pretendard/Pretendard-Bold.woff") format("woff"), url("/font/Pretendard/Pretendard-Bold.ttf") format("TrueType"), url("/font/Pretendard/Pretendard-Bold.otf") format("OpenType");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-style: normal;
  src: url("/font/Pretendard/Pretendard-ExtraBold.woff") format("woff"), url("/font/Pretendard/Pretendard-ExtraBold.ttf") format("TrueType"), url("/font/Pretendard/Pretendard-ExtraBold.otf") format("OpenType");
}
*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
  word-break: keep-all;
}

@media print {
  header, .mo-header-content, .sidebar, .common-depth, #footer {
    display: none;
  }
}
body {
  margin: 0;
  font-family: "Pretendard";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #222222;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 320px) {
  body {
    font-size: 14px;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 400;
  line-height: 1.2;
}

p {
  margin: 0;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 400;
}

dd {
  margin-left: 0;
}

blockquote {
  margin: 0;
}

b,
strong {
  font-weight: bolder;
}

em,
i {
  font-style: normal;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.2em;
  background-color: #a6f0b7;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #222222;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

figure {
  margin: 0;
}

img,
svg {
  vertical-align: middle;
  max-width: 100%;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

legend,
caption {
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  visibility: hidden;
  overflow: hidden;
  white-space: nowrap;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
  background: transparent;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 1em;
  line-height: 0;
  color: #222222;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: none;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

[class^=icon-] {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  flex-shrink: 0;
}

[class^=icon-]:not([class$=arrow]) {
  background-size: contain;
}

.icon-people {
  width: 16px;
  height: 16px;
  background-image: url("/images/smartmoneyon/member/icon-people.png");
}

.icon-pw {
  width: 16px;
  height: 16px;
  background-image: url("/images/smartmoneyon/member/icon-pw.png");
}

.icon-close {
  width: 16px;
  height: 16px;
  background-image: url("/images/smartmoneyon/member/icon-close.png");
}

.icon-arrow-down {
  width: 20px;
  height: 20px;
  background-image: url("/images/smartmoneyon/member/icon-arrow-down.png");
}

.icon-arrow-up {
  width: 20px;
  height: 20px;
  background-image: url("/images/smartmoneyon/member/icon-arrow-up.png");
}

.icon-back {
  width: 24px;
  height: 8px;
  background-image: url("/images/smartmoneyon/member/icon-history-back.png");
}

.icon-mail {
  width: 28px;
  height: 28px;
  background-image: url("/images/smartmoneyon/member/icon-mail.png");
}

.icon-phone {
  width: 28px;
  height: 28px;
  background-image: url("/images/smartmoneyon/member/icon-phone.png");
}

.icon-notice {
  width: 20px;
  height: 20px;
  background-image: url("/images/smartmoneyon/member/icon-notice.png");
}

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

.m-b-30 {
  margin-bottom: 30px;
}

.g-10px {
  --bs-gutter-x: 0.625rem;
  --bs-gutter-y: 0.625rem;
}

.g-20px {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 1.25rem;
}

.gap-10px {
  gap: 10px !important;
}

.gap-20px {
  gap: 20px !important;
}

.gap-30px {
  gap: 30px !important;
}

.gap-40px {
  gap: 40px !important;
}

.gap-60px {
  gap: 60px !important;
}

.bg-black {
  background-color: #000 !important;
}

.color-blue {
  color: #4698e3;
}

.bold {
  font-weight: 700;
}

.vertical-top {
  vertical-align: top;
}

.btn {
  width: auto;
  display: inline-block;
  font-weight: 600;
  color: #000;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: 56px;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 160%;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn.btn-primary {
  background-color: #ff6c46 !important;
  color: #fff !important;
}
.btn.btn-primary:hover {
  background-color: rgba(0, 0, 0, 0.06) !important;
}
.btn.btn-primary:disabled {
  opacity: 0.3;
}
.btn.btn-outline-primary {
  background-color: #fff !important;
  border: 1px solid #ff6c46 !important;
  color: #ff6c46 !important;
}
.btn.btn-outline-primary:hover {
  background-color: rgba(0, 0, 0, 0.06) !important;
}
.btn.btn-outline-primary:disabled {
  opacity: 0.3;
}
.btn.btn-secondary {
  background-color: #fef4f5 !important;
  color: #ff6c46 !important;
}
.btn.btn-dark {
  background-color: #222222 !important;
  color: #fff !important;
}
.btn.btn-outline-dark {
  background-color: #fff !important;
  border: 1px solid #222222 !important;
  color: #222222 !important;
}
.btn.btn-gray {
  background-color: #f5f6f7 !important;
  color: #222222 !important;
}
.btn.btn-outline-gray {
  background-color: #fff !important;
  border: 1px solid #f5f6f7 !important;
  color: #f5f6f7 !important;
}
.btn.btn-gray-dark {
  background-color: #cfcfcf !important;
  color: #fff !important;
}
.btn.btn-outline-white {
  background-color: transparent !important;
  border: 1px solid #fff !important;
  color: #fff !important;
}
.btn.btn-outline-danger-dark {
  border: 1px solid #fa4555 !important;
  color: #fa4555 !important;
  border-radius: 24px;
}
.btn.btn-outline-black {
  border: 1px solid #222 !important;
  color: #000 !important;
  border-radius: 24px;
}

.form-control {
  display: block;
  width: 100%;
  font-size: 15px;
  line-height: 160%;
  color: #000;
  height: 56px;
  padding: 0 40px 0 12px;
  border: 1px solid #f7f7f7;
  border-radius: 8px;
  background-color: #fff;
}
.form-control.white {
  background-color: #fff;
  border: 1px solid #ddd;
}
.form-control::-moz-placeholder {
  color: #999;
}
.form-control::placeholder {
  color: #999;
}
.form-control:focus {
  outline: 1px solid #222;
}
.form-control:focus::-moz-placeholder {
  color: #222;
}
.form-control:focus::placeholder {
  color: #222;
}
.form-control[type=file] {
  margin-top: 10px;
}
.form-control[type=number]::-webkit-outer-spin-button, .form-control[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-control:disabled {
  background-color: #fff;
  color: #ccc;
  font-weight: 400;
}

.input-form .input-txt {
  display: none;
}
.input-form .input-txt-success {
  display: none;
}
.input-form .form {
  position: relative;
}
.input-form.error .input-txt {
  display: block;
}
.input-form.error .form-control {
  border: 1px solid #df0d0d;
}
.input-form.success .form-control {
  border: 1px solid #4bc591;
}
.input-form.success .input-txt-success {
  display: block;
}

.search-form {
  position: relative;
}
.search-form .icon-search {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.form-password {
  position: relative;
}
.form-password .view-pw {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.input-txt {
  color: #ff6c46;
  font-size: 12px;
  margin-top: 4px;
}

.input-txt-success {
  color: #4bc591;
  font-size: 12px;
  margin-top: 4px;
}

.exam-txt {
  display:none;
  color: #ff6c46;
  font-size: 12px;
  margin-top: 4px;
}

.input-form .input-form-title {
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 4px;
}

.certification-form > div {
  display: flex;
  align-items: center;
  gap: 6px;
}
.certification-form .form-control {
  flex: 1;
}
.certification-form .btn {
  width: 83px;
  height: 56px;
  padding: 0 16px;
  font-size: 14px;
}

.time-form {
  position: relative;
}
.time-form .timer {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 14px;
}

.g-10 {
  gap: 10px;
}

.g-20 {
  gap: 20px;
}

.clearButton {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.form-control:not(:-moz-placeholder-shown) + .clearButton {
  display: inline-block; /* input에 값이 있을 때만 버튼을 표시 */
}

.form-control:not(:placeholder-shown) + .clearButton {
  display: inline-block; /* input에 값이 있을 때만 버튼을 표시 */
}

.select-design {
  opacity: 0;
  height: 40px;
}
.select-design.select-lg + .select2-container .select2-selection--single {
  height: 46px;
}
.select-design.select-lg + .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 46px;
  font-size: 15px;
}
.select-design.select-xl + .select2-container .select2-selection--single {
  height: 54px;
}
.select-design.select-xl + .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 54px;
  font-size: 15px;
}

.select2-container {
  height: 40px;
}

.select2-container--default .select2-selection--single {
  height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1;
  padding: 12px 30px 12px 10px;
  color: #4d4d4d;
  letter-spacing: -0.16px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: transparent;
  border-style: none;
  border-width: 0;
  background-image: url("/images/smartmoneyon/member/icon-dropdown.svg");
  width: 24px;
  height: 24px;
  margin-left: -20px;
  margin-top: -5px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  color: #000;
  background-color: #fff;
}
.select2-container--default .select2-results__option--selected {
  color: #000;
  background-color: #fff;
  background-image: url("/images/smartmoneyon/member/icon-check.svg");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: 80px 5px;
}

.select2-results__option {
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  line-height: 1.71;
  padding: 2px 25px 2px 10px;
}

.form-select {
  width: 100%;
  border: none;
  border: 1px solid #f7f7f7;
  height: 56px;
  font-size: 14px;
  line-height: 150%;
  padding: 6px 30px 6px 10px;
  color: #222;
  -webkit-appearance: none;
  background-image: url("/images/smartmoneyon/member/icon-select-arrow.png");
  background-position: 97% 50%;
  background-repeat: no-repeat;
  border-radius: 6px;
  background-color: #fff;
}
.form-select.sub-page {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 8L10 13L5 8' stroke='%23999999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: 88% 50%;
}
.form-select.select-sm {
  font-size: 12px;
}
@media (min-width: 992px) {
  .form-select {
    font-size: 15px;
    padding: 9px 40px 9px 12px;
  }
  .form-select.select-sm {
    font-size: 15px;
  }
}

.select-group {
  display: flex;
  gap: 10px;
}
@media (min-width: 992px) {
  .select-group {
    gap: 20px;
  }
}

.tab-month-select {
  margin-bottom: 20px;
}
.tab-month-select select {
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  background-color: #ff6c46;
  border: 0;
  letter-spacing: -0.28px;
  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='M14.9814 8.66663C14.6601 8.6667 13.5797 8.6668 13.4259 8.66663C13.319 8.667 12.9476 8.66628 12.8554 8.66668H9.14851C9.05636 8.66628 8.63396 8.66668 8.46622 8.66673C8.25795 8.66673 8.02872 8.66673 7.93364 8.66668C7.76315 8.66668 7.48413 8.66668 7.31692 8.66668C7.25281 8.66668 7.1526 8.66673 7 8.66673L11.6674 15.1465C11.7567 15.2662 11.8759 15.3332 12 15.3332C12.1241 15.3332 12.2433 15.2662 12.3326 15.1465L17 8.66673C16.7421 8.66685 16.3364 8.66677 16.0713 8.667C15.7071 8.66685 15.0947 8.6667 14.9814 8.66663Z' fill='white'/%3E%3C/svg%3E%0A");
}

.input-icon {
  padding: 9px 12px;
  border-radius: 4px;
  border: 1px solid #eef1f3;
  display: flex;
  justify-content: space-between;
}
.input-icon .datepicker {
  border: 0;
  width: 100%;
}

.select-wrap {
  position: relative;
}
.select-wrap .select-btn {
  padding: 9px 16px;
  width: 25%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.select-wrap .optionlist {
  padding: 0 16px 9px;
  border: 1px solid #eee;
  border-top: 0;
  width: 25%;
  border-radius: 0 0 4px 4px;
  max-height: 240px;
  overflow-y: auto;
  position: absolute;
  top: 35px;
  background-color: #fff;
  display: none;
  z-index: 1;
}
.select-wrap .optionlist .optionitem {
  margin-top: 16px;
  cursor: pointer;
}
.select-wrap.show .select-btn {
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}
.select-wrap.show .optionlist {
  display: block;
}
@media (max-width: 991.98px) {
  .select-wrap .select-btn {
    width: 50%;
  }
  .select-wrap .optionlist {
    width: 50%;
  }
}

/* checkbox/radio */
.form-check {
  display: flex;
  align-items: center;
  min-height: 16px;
  padding-right: 24px;
}
.form-check.block {
  display: block;
  text-align: center;
  padding-right: 0;
}
.form-check.block .form-check-label {
  display: block;
  margin-left: 0;
}
.form-check.block .form-check-label p {
  font-size: 15px;
  margin: 5px 0;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.form-check-input[type=checkbox] {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9.5' fill='white' stroke='%23909090'/%3E%3C/svg%3E%0A");
}
.form-check-input[type=radio] {
  border-radius: 50%;
  border: 1px solid #909090;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23FF6C46'/%3E%3Cpath d='M15.6667 6L8.33333 13.3333L5 10' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.form-check-input:checked[type=radio] {
  background-color: #fff;
  border: 7px solid #ff6c46;
  position: relative;
}
.form-check-input:checked[type=radio] ~ .form-check-label {
  color: #ff6c46;
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.check-badge {
  display: none;
}
.check-badge + .check-badge-label {
  border: 1px solid #aaa;
  font-size: 14px;
  color: #aaa;
  padding: 6px 10px;
  text-align: center;
  background-color: #fff;
  cursor: pointer;
}
.check-badge:checked + .check-badge-label {
  border: 1px solid #000;
  color: #000;
}

.inline-form-radio .form-check {
  margin-right: 40px;
}

.form-check-label {
  font-size: 16px;
  font-weight: 500;
  margin-left: 8px;
  vertical-align: sub;
  cursor: pointer;
}

/* switch */
.form-switch {
  padding-left: 56px;
}
.form-switch .form-check-input {
  width: 48px;
  margin-left: -56px;
  background-color: #b9b9b9;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 3em;
  transition: background-position 0.15s ease-in-out;
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-color: #ff6c46;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch.label-empty {
  padding-left: 48px;
}
.form-switch.label-empty .form-check-input {
  margin-left: -48px;
  margin-top: 0;
}

.form-check-inline {
  display: inline-flex;
  margin-right: 1rem;
  vertical-align: middle;
  align-items: center;
}

#footer {
  background: #fff;
  padding: 60px 0 59px;
  border-top: 1px solid #eee;
  position: relative;
}
#footer .desc {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  margin-bottom: 16px;
}
#footer .desc dl {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-size: 14px;
  line-height: 21px;
}
#footer .desc dl dt {
  width: 54px;
}
#footer .desc dl dd {
  width: calc(100% - 62px);
  color: #222222;
  font-weight: 600;
}
#footer .copyright {
  color: #999;
  font-size: 14px;
  line-height: 21px;
}
#footer .rg .list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}
#footer .rg .list li {
  position: relative;
}
#footer .rg .list li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  background-color: #f5f6f7;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
}
#footer .rg .list li:last-child::after {
  content: none;
}
#footer .rg .list li a {
  font-weight: 700;
  font-size: 14px;
  line-height: 22.4px;
}
@media (max-width: 767.98px) {
  #footer {
    padding: 32px 0;
  }
  #footer .desc dl {
    font-size: 13px;
    line-height: 19.5px;
  }
  #footer .rg .list {
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
  }
  #footer .rg .list li {
    position: relative;
  }
  #footer .rg .list li::after {
    right: -8px;
  }
  #footer .rg .list li a {
    font-size: 12px;
    line-height: 19.2px;
  }
  #footer .copyright {
    font-size: 12px;
    line-height: 18px;
  }
}

.btn-top {
  position: fixed;
  bottom: 0;
  right: 3%;
  opacity: 0;
  z-index: 999;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 100%;
}
#header:not(.fixed-header) ~ .btn-top {
  bottom: 5%;
  opacity: 1;
}
.btn-top .icon-top {
  width: 24px;
  height: 24px;
  background: url("/images/smartmoneyon/member/icon-top.svg");
}

.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 17px 80px;
}
@media (max-width: 1199.98px) {
  .header {
    padding: 12px 16px;
  }
  .header .logo {
    height: 26px;
  }
  .header .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.header nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header nav ul {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header nav ul li a {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
@media (max-width: 1199.98px) {
  .header nav {
    display: none;
  }
}
.header .tool-box {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1199.98px) {
  .header .tool-box {
    gap: 16px;
  }
}
.header .tool-box .sns {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1199.98px) {
  .header .tool-box .sns {
    display: none;
  }
}
.header .tool-box .info-form {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header .tool-box .info-form .login {
  font-size: 14px;
}
.header .tool-box .info-form .select-wrap {
  width: 50px;
  font-size: 14px;
}
.header .tool-box .info-form .select-wrap .select-btn {
  padding: 0;
}
.header .tool-box .info-form .select-wrap .optionlist {
  padding: 0;
  border-radius: 8px;
  width: 60px;
}
.header .tool-box .info-form .select-wrap .optionlist .optionitem {
  padding: 8px;
  margin-top: 0;
  text-align: center;
}
.full-screen-menu {
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  background-color: #ff6c46;
  color: #fff;
}
.full-screen-menu.active {
  display: block;
}
.full-screen-menu nav ul li a {
  color: #fff;
}
.full-screen-menu .tool-box .info-form .login {
  color: #fff;
}
.full-screen-menu .tool-box .info-form .select-wrap {
  width: 50px;
  font-size: 14px;
}
.full-screen-menu .tool-box .info-form .select-wrap .select-btn {
  color: #fff;
}
.full-screen-menu .tool-box .info-form .select-wrap .optionlist {
  padding: 0;
  color: #000;
}
.full-screen-menu .tool-box .info-form .select-wrap .optionlist .optionitem {
  padding: 8px;
  margin-top: 0;
}
.full-screen-menu .menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.full-screen-menu .menu ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .full-screen-menu .menu ul {
    gap: 16px;
  }
}
.full-screen-menu .menu ul li a {
  font-family: Montserrat;
  font-size: 70px;
  font-weight: 700;
  line-height: 130%;
  color: #fff;
  position: relative;
}
.full-screen-menu .menu ul li a:hover::after {
  content: "";
  width: 24px;
  height: 24px;
  background-color: #b3f200;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 15px;
  right: -30px;
}
@media (max-width: 1199.98px) {
  .full-screen-menu .menu ul li a {
    font-size: 32px;
    line-height: 160%;
  }
  .full-screen-menu .menu ul li a:hover::after {
    content: none;
  }
}
.full-screen-menu .btn-list {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 5rem;
}
.full-screen-menu .btn-list .icon-w-blog {
  width: 40px;
  height: 40px;
}
.full-screen-menu .btn-list .icon-w-youtube {
  width: 40px;
  height: 40px;
}

.modal-content {
  border: 0;
  border-radius: 16px;
}

.modal-header {
  border-bottom: 0;
  padding: 11px 15px;
}
.modal-header .modal-title {
  font-size: 18px;
  font-weight: 700;
}
.modal-header .btn-close {
  width: 16px;
  height: 16px;
  background-image: url("/images/smartmoneyon/member/icon-close.png");
  background-size: cover;
  padding: 0;
  margin: 0;
}

.modal-body {
  padding: 16px;
}
.modal-body .desc {
  font-size: 13px;
  line-height: 140%;
  color: #000;
  margin-bottom: 20px;
}

.modal-footer {
  justify-content: center;
  border-top: 0;
}
.modal-footer .btn {
  height: 36px;
  border-radius: 40px;
  padding: 0 14px;
}

.table {
  border: 1px solid #d6d5dd;
  border-top: 1px solid #000;
}
.table th {
  background-color: #f5f6f7;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  padding: 6px;
  border-radius: 1px solid #d6d5dd;
}
.table td {
  padding: 6px;
}
.table td .form-control {
  height: 28px;
  border: 1px solid #d6d5dd;
}

.sign-container {
  width: 100%;
  min-height: 100vh;
  background: #fff;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.sign-container.login {
  display: flex;
  align-items: center;
}
.sign-container .content {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}
.sign-container .top-head {
  padding: 30px 20px 0;
  margin-bottom: 40px;
}
.sign-container .top-head .sign-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}
.sign-container .login-form {
  border: 1px solid #f2f2f2;
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding: 5px 16px;
}
.sign-container .login-form .form-control {
  border: 0;
}
.sign-container .sign-content {
  padding: 0 20px 76px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sign-container .sign-content.notice {
  padding: 0 20px 136px;
}
.floating-form {
  position: relative;
}
.floating-form label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
  transition: all 0.2s ease;
  background: white;
  padding: 0 4px;
}
.floating-form input:not(:-moz-placeholder-shown) + label {
  top: 16px;
  left: 10px;
  font-size: 12px;
  color: #999;
}
.floating-form input:focus + label,
.floating-form input:not(:placeholder-shown) + label {
  top: 16px;
  left: 10px;
  font-size: 12px;
  color: #999;
}
.floating-form input:not(:-moz-placeholder-shown) {
  padding-top: 16px;
}
.floating-form input:not(:placeholder-shown) {
  padding-top: 16px;
}
.floating-form:first-child {
  padding-top: 0;
}

.sign-container .sign-content .btn-login {
  width: 100%;
  margin-top: 16px;
  background-color: #00239c;
  border-radius: 40px;
  color: #fff;
}
.sign-container .sign-content .save-login {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.sign-container .sign-content .save-login .form-check {
  padding: 0;
  margin: 0;
}
.sign-container .sign-content .save-login .form-check-input {
  margin: 0;
}
.sign-container .sign-content .save-login .form-check-label {
  color: #999;
}
.sign-container .sign-content .link-login {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
}
.sign-container .sign-content .link-login li {
  position: relative;
}
.sign-container .sign-content .link-login li a {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}
.sign-container .sign-content .link-login li + li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  background-color: #f5f6f7;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
}
.sign-container .sign-content .btn-login {
  margin-top: 40px;
  width: 100%;
}
.sign-container .info-text {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  row-gap: 8px;
  padding: 20px;
  font-size: 14px;
  border-radius: 8px;
  background: rgba(0, 35, 131, 0.04);
}
.sign-container .info-text strong {
  font-size: 16px;
  font-weight: 700;
}
.sign-container .info-text .title {
  font-size: 12px;
  color: #ff6c46;
}
.sign-container .info-all-desc {
  color: #666;
  font-size: 12px;
  line-height: 140%;
  margin-top: 12px;
  position: relative;
  padding-left: 10px;
}
.sign-container .info-all-desc::before {
  content: "";
  top: 7px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #666;
}
.sign-container .sign-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}
.sign-container .sign-footer .copylight {
  font-size: 10px;
  color: #898989;
}
.sign-container .find-result {
  text-align: center;
  margin-top: -40px;
}
.sign-container .find-result .icon-find {
  width: 160px;
  height: 160px;
  background: url("/images/smartmoneyon/member/icon-find.svg");
}
.sign-container .find-result .success-text {
  margin: 60px 0 40px;
}
.sign-container .find-result .login-btn {
  margin-top: 40px;
}
.sign-content .link-login {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
}
.sign-content .link-login li {
  position: relative;
}
.sign-content .link-login li a {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}
.sign-content .link-login li + li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  background-color: #f5f6f7;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
}
.signup-title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
}

.radio-form {
  margin-top: 10px;
}

.agree-form .all-check {
  margin-top: 15px;
}
.agree-form .all-check .form-check-input {
  width: 24px;
  height: 24px;
}
.agree-form .all-check .form-check-label {
  font-size: 16px;
}
.agree-form .desc {
  font-size: 12px;
  margin-top: 10px;
}
.agree-form .agree-content {
  margin-top: 24px;
}
.agree-form .agree-content .txt-box {
  margin-top: 20px;
  padding: 10px 15px;
  background-color: #f5f6f7;
  height: 120px;
  overflow: auto;
  border-radius: 12px;
}
.agree-form .agree-content .txt-box .title {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}
.agree-form .agree-content .txt-box .desc {
  font-size: 13px;
  color: #000;
  line-height: 140%;
}
.agree-form .agree-content.active .icon-arrow-down {
  background-image: url("/images/smartmoneyon/member/icon-arrow-up.png");
}
.agree-form .agree-content.active .txt-box {
  display: none;
}

.icon-warning {
  width: 16px;
  height: 17px;
  margin-right: 4px;
  background: url("/images/smartmoneyon/member/icon-warning.svg");
}

.step-head {
  background-color: #f5f6f7;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step-head .title {
  font-weight: 500;
}
.step-head .step-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-head .step {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #000;
}
.step-head .step.active {
  color: #fff;
  background: #ff6c46;
}
.step-head .btn-close {
  margin-left: 16px;
  display: flex;
  align-items: center;
}

.text-box-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-foot {
  width: 100%;
  margin-top: 40px;
}
.btn-foot .btn {
  width: 100%;
  border-radius: 0;
}

.foot-notice {
  padding: 20px;
}
.foot-notice .foot-notice-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.foot-notice .notice-list {
  gap: 8px;
  margin-top: 16px;
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.notice-list .notice-content {
  position: relative;
  padding-left: 12px;
  font-size: 12px;
  line-height: 140%;
  color: #666;
}
.notice-list .notice-content::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #333;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 0;
}

.histroy-back {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.histroy-back span {
  font-weight: 500;
  font-size: 16px;
}

.signup-success-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin-top: 60px;
}
.signup-success-wrap .img {
  margin-bottom: 12px;
}
.signup-success-wrap .title {
  font-weight: 700;
  font-size: 20px;
  color: #000;
}
.signup-success-wrap .desc {
  text-align: center;
  font-size: 14px;
  color: #666;
}

.certification-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.certification-list .certification-content {
  width: 100%;
  padding: 26px 20px;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.certification-list .certification-content__desc {
  display: flex;
  align-items: center;
  gap: 16px;
}
.certification-list .text-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.certification-list .text-box .title {
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
.certification-list .text-box .desc {
  font-size: 12px;
  color: #666;
}
.certification-list .btn {
  height: 36px;
  border: 1px solid #e7e7e7;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  border-radius: 40px;
  padding: 0 14px;
}
/*# sourceMappingURL=maps/style.css.map */
