@charset "UTF-8";
body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  font-family: 'Pretendard';
  font-size: 16px;
}

/* Guide page CSS */
.wrap {
  /* Guide - Title */
  /* Guide - Table */
  /* RuleList */
}

.wrap .g-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
}

.wrap .g-header h1 {
  padding: 2.4rem 2.4rem;
  font-weight: 700;
  font-size: 24px;
  color: #000;
  line-height: 1;
  box-sizing: border-box;
}

.wrap .g-header .guide .g-dep1 {
  overflow: auto;
  display: flex;
  padding: 0 20px;
  background-color: #1d7afc;
}

.wrap .g-header .guide .g-dep1 li.active a {
  height: 50px;
  margin-top: 10px;
  padding: 0 30px;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  line-height: 50px;
  border-radius: 10px 10px 0 0;
}

.wrap .g-header .guide .g-dep1 li a {
  display: block;
  height: 60px;
  padding: 0 30px;
  font-size: 20px;
  color: #fff;
  line-height: 60px;
}

.wrap .g-header .guide .g-dep2 {
  display: flex;
  gap: 20px;
  margin: 12px 0 0 50px;
}

.wrap .g-header .guide .g-dep2 li {
  position: relative;
  padding: 5px 16px;
  box-sizing: border-box;
}

.wrap .g-header .guide .g-dep2 li a {
  display: inline-block;
  width: auto;
  height: auto;
  font-size: 15px;
  text-align: center;
}

.wrap .g-header .guide .g-dep2 li.active:before {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1d7afc;
  content: '';
}

.wrap .g-header .guide .g-dep2 li.active a {
  font-weight: 600;
  color: #1d7afc;
  transform: scale(1.1);
}

.wrap .g-header .guide .g-dep2 li:hover a {
  font-weight: 600;
  color: #1d7afc;
  transform: scale(1.1);
}

.wrap .g-header .guide .g-dep2 li:after {
  display: block;
  position: absolute;
  top: 10px;
  bottom: 6px;
  left: -10px;
  width: 1px;
  background-color: #ddd;
  content: '';
}

.wrap .g-header .guide .g-dep2 li:first-child:after {
  display: none;
}

.wrap .g-content {
  padding: 220px 20px 50px;
  box-sizing: border-box;
}

.wrap .g-content .colorguide {
  display: block;
  max-width: 1400px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.wrap .g-content.mo_scroll {
  overflow-x: scroll;
  width: 100%;
}

.wrap .g-content.mo_scroll > .g-table {
  min-width: 1300px;
}

.wrap .g-rayout {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 126px;
}

.wrap .g-rayout.sub {
  flex-wrap: wrap;
  gap: 0;
}

.wrap .g-rayout .g-rayout-box {
  flex: 1 1 33.3333%;
}

.wrap .g-title2 {
  margin: 20px 0;
  font-weight: 600;
  font-size: 32px;
  color: #000;
}

.wrap .g-title3 {
  position: relative;
  margin: 40px 0 10px;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #1d7afc;
  box-sizing: border-box;
}

.wrap .g-title3::before {
  position: absolute;
  top: 0;
  left: 2px;
  bottom: 0;
  width: 4px;
  background-color: #1d7afc;
  content: '';
}

.wrap .g-title4 {
  margin: 20px 0 0 20px;
  font-weight: 600;
  font-size: 18px;
  color: #4d90ee;
}

.wrap .g-title5 {
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 24px;
  color: #000;
}

.wrap .g-title6 {
  font-weight: 700;
  font-size: 15px;
  color: #000;
}

.wrap .g-subtitle {
  margin-top: 22px;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  color: #606060;
}

.wrap .g-table {
  margin-top: 20px;
}

.wrap .g-table table {
  width: 100%;
  border-collapse: collapse;
}

.wrap .g-table table thead tr {
  border: 0;
}

.wrap .g-table table tbody tr {
  border: 1px solid #dedede;
  border-width: 1px 0;
  box-sizing: border-box;
}

.wrap .g-table table th, .wrap .g-table table td {
  padding: 1.5rem;
  box-sizing: border-box;
}

.wrap .g-table table th > a, .wrap .g-table table td > a {
  color: #1d7afc;
}

.wrap .g-table table.centered {
  text-align: center;
}

.wrap .g-table table.th-centered th {
  text-align: center;
}

.wrap .g-table table.table-striping tbody tr:nth-child(odd) {
  background-color: #f8f8f8;
}

.wrap .g-table table.th-striping th {
  background-color: #f8f8f8;
}

.wrap .g-table table.table-hover tbody tr:hover {
  background-color: rgba(248, 248, 248, 0.5);
}

.wrap .g-table table.border-type th, .wrap .g-table table.border-type td {
  border-right: 1px solid #dedede;
}

.wrap .g-table table.border-type th:last-child, .wrap .g-table table.border-type td:last-child {
  border: 0;
}

.wrap .g-table table.border-type .mu-table-list li {
  padding: .6rem;
  border-top: 1px dotted #dedede;
  box-sizing: border-box;
}

.wrap .g-table table.border-type .mu-table-list li:first-child {
  border: 0;
}

.wrap .g-rule-list {
  margin-top: 4px;
  margin-left: 20px;
  font-size: 14px;
}

.wrap .g-rule-list li {
  position: relative;
  padding: 6px 0 6px 18px;
  box-sizing: border-box;
}

.wrap .g-rule-list li:before {
  position: absolute;
  top: 50%;
  left: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #000;
  transform: translateY(-50%);
  content: '';
}

.wrap .tag-emphasis {
  padding: 4px;
  font-weight: 600;
  border: 1px dotted #000;
  border-radius: 4px;
  background-color: #f4f4f4;
  box-sizing: border-box;
}

.wrap .mu-link {
  font-weight: 600;
  color: #09c3a3;
  border-bottom: 1px dashed #09c3a3;
}

/* Component */
/* root */
:root {
  --white:#fff;
  --primary-p100:#e9f2ff;
  --primary-p200:#cce0ff;
  --primary-p300:#85b8ff;
  --primary-p400:#579dff;
  --primary-p500:#388bff;
  --primary-p600:#1d7Afc;
  --primary-p700:#0c66e4;
  --primary-p800:#0055cc;
  --primary-p900:#09326c;
  --font-regular:400;
  --font-medium:500;
  --font-bold:700;
}

/* Button */
.btn-box {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.8rem;
}

.btn {
  display: inline-block;
  width: 100%;
  font-weight: var(--font-bold);
  font-size: 1.8rem;
  color: #353535;
  border-radius: 1rem;
  text-align: center;
  box-sizing: border-box;
}

.btn.primary {
  color: var(--white);
  background-color: var(--primary-p600);
}

.btn.primary:disabled {
  color: #b7b7b7;
  background-color: #dbdbdb;
}

.btn.secondary {
  color: var(--primary-p600);
  border: 1px solid var(--primary-p600);
  background-color: var(--white);
}

.btn.secondary:disabled {
  color: #b7b7b7;
  border: 1px solid #dbdbdb;
  background-color: #f2f2f2;
}

.btn.tertiary {
  background-color: #f2f2f2;
}

.btn.tertiary:disabled {
  color: #b7b7b7;
}

.btn.quaternary {
  background-color: #949494;
  color: #fff;
}

.btn.line {
  border: 1px solid #949494;
  background-color: var(--white);
}

.btn.line:disabled {
  color: rgba(53, 53, 53, 0.2);
  border: 1px solid #dbdbdb;
  background-color: #f2f2f2;
}

.btn.edit {
  width: unset;
  padding: 0 0.885rem;
  font-weight: var(--font-medium);
  font-size: 1.4rem;
  border: 1px solid #949494;
  border-radius: 0.4rem;
  background-color: var(--white);
}

.btn.edit:disabled {
  color: rgba(53, 53, 53, 0.2);
  border: 1px solid #dbdbdb;
  background-color: #f2f2f2;
}

.btn.edit.icoLeft {
  padding-left: 2.4rem !important;
}

.btn.edit.icoRight {
  padding-right: 2.4rem !important;
}

.btn.lg {
  height: 52px;
  line-height: 52px;
}

.btn.md {
  height: 48px;
  font-size: 1.6rem;
}

.btn.sm {
  height: 40px;
  font-size: 1.5rem;
  line-height: 40px;
}

.btn.ss {
  height: 32px;
  line-height: 32px;
}

.btn.xs {
  height: 26px;
}

.btn.xs.edit {
  padding: 0 0.685rem;
}

.btn.xxs {
  height: 20px;
  font-size: 1.2rem;
}

.btn.lg-width {
  width: 200%;
}

.btn-tog {
  display: inline-block;
  position: relative;
  vertical-align: top;
}

.btn-tog input {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
}

.btn-tog input:checked + label:before {
  background-color: var(--primary-p600);
}

.btn-tog input:checked + label:after {
  left: 23px;
}

.btn-tog label {
  display: block;
  position: relative;
  height: 2.6rem;
  padding-left: 4.6rem;
  line-height: 2.6rem;
  font-weight: var(--font-medium);
  font-size: 1.5rem;
  cursor: pointer;
}

.btn-tog label:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.6rem;
  height: 2.6rem;
  border-radius: 2.6rem;
  background-color: #dbdbdb;
  content: '';
}

.btn-tog label:after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--white);
  transition: .3s;
  content: '';
}

.btn-tog label > em {
  margin-left: 1rem;
}

.btn-box.today {
  width: 100%;
  padding: 12px 0;
  justify-content: center;
}

.btn-box.today > button {
  color: #949494;
  font-weight: var(--font-medium);
  font-size: 1.4rem;
  text-decoration: underline;
}

.btn-box.block-style {
  display: block;
  margin-bottom: 12px;
}

.btn-box.block-style > button + button {
  margin-top: 8px;
}

.btn-box.block-style .btn.line {
  border: 1px solid #b7b7b7;
}

/* Input-Text */
.form-label {
  position: relative;
  display: inline-block;
  font-weight: var(--font-medium);
  font-size: 1.4rem;
  color: #707070;
}

.form-label.field {
  padding: 0.5rem;
  line-height: 20px;
}

.input-text {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 0.8rem;
  /* text입력완료   이동후에도 버튼노출 시킬때 */
}

.input-text input[type=text], .input-text input[type=password], .input-text input[type=tel], .input-text input[type=number], .input-text input[type=search], .input-text input[type=date], .input-text input[type=email], .input-text input[type=url], .input-text input[type=time] {
  display: block;
  width: 100%;
  min-height: 4.2rem;
  padding: 10px 30px 10px 12px;
  font-weight: var(--font-bold);
  font-size: 1.6rem;
  color: #353535;
  border-radius: 0.8rem;
  border: 1px solid #dbdbdb;
  box-sizing: border-box;
}

.input-text input[type=text]::placeholder, .input-text input[type=password]::placeholder, .input-text input[type=tel]::placeholder, .input-text input[type=number]::placeholder, .input-text input[type=search]::placeholder, .input-text input[type=date]::placeholder, .input-text input[type=email]::placeholder, .input-text input[type=url]::placeholder, .input-text input[type=time]::placeholder {
  font-weight: var(--font-medium);
  opacity: 0.4;
}

.input-text input[type=text]:disabled, .input-text input[type=password]:disabled, .input-text input[type=tel]:disabled, .input-text input[type=number]:disabled, .input-text input[type=search]:disabled, .input-text input[type=date]:disabled, .input-text input[type=email]:disabled, .input-text input[type=url]:disabled, .input-text input[type=time]:disabled {
  font-weight: var(--font-medium);
  color: rgba(53, 53, 53, 0.2);
  background-color: #fbfbfb;
}

.input-text input[type=text]:read-only, .input-text input[type=password]:read-only, .input-text input[type=tel]:read-only, .input-text input[type=number]:read-only, .input-text input[type=search]:read-only, .input-text input[type=date]:read-only, .input-text input[type=email]:read-only, .input-text input[type=url]:read-only, .input-text input[type=time]:read-only {
  background-color: #fbfbfb;
}

.input-text input[type=text]:read-only:focus, .input-text input[type=password]:read-only:focus, .input-text input[type=tel]:read-only:focus, .input-text input[type=number]:read-only:focus, .input-text input[type=search]:read-only:focus, .input-text input[type=date]:read-only:focus, .input-text input[type=email]:read-only:focus, .input-text input[type=url]:read-only:focus, .input-text input[type=time]:read-only:focus {
  border: 1px solid #dbdbdb;
}

.input-text input[type=text]:read-only + [type=reset], .input-text input[type=password]:read-only + [type=reset], .input-text input[type=tel]:read-only + [type=reset], .input-text input[type=number]:read-only + [type=reset], .input-text input[type=search]:read-only + [type=reset], .input-text input[type=date]:read-only + [type=reset], .input-text input[type=email]:read-only + [type=reset], .input-text input[type=url]:read-only + [type=reset], .input-text input[type=time]:read-only + [type=reset] {
  display: none;
}

.input-text input[type=text].err, .input-text input[type=password].err, .input-text input[type=tel].err, .input-text input[type=number].err, .input-text input[type=search].err, .input-text input[type=date].err, .input-text input[type=email].err, .input-text input[type=url].err, .input-text input[type=time].err {
  border: 1px solid #ef5350;
}

.input-text button[type=reset] {
  display: none;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}

.input-text:focus-within button[type=reset] {
  display: block;
}

.input-text.cutting {
  flex-direction: row;
  gap: 8px;
}

.input-text.cutting > span {
  line-height: 42px;
}

.input-text.cutting input[type='number'] {
  text-align: right;
}

.input-text.cutting .box {
  position: relative;
  width: 100%;
}

.input-text.cutting .box > input + span {
  position: absolute;
  top: 50%;
  right: 12px;
  color: #353535;
  font-weight: var(--font-medium);
  font-size: 16px;
  transform: translateY(-50%);
}

.input-text.cutting .box .unit {
  padding-right: 3.6rem;
}

/* Textatea */
.textarea-wrap {
  width: 100%;
}

.textarea-wrap .form-label {
  padding: 0.5rem 0;
}

.textarea-wrap .form-label + .txtarea {
  margin-top: 0.8rem;
}

.textarea-wrap .txtarea {
  display: block;
  width: 100%;
  min-height: 20.1rem;
  padding: 1.6rem 1.2rem;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  font-weight: var(--font-medium);
  font-size: 1.6rem;
  color: #353535;
  line-height: 22px;
  outline: none;
  resize: none;
}

.textarea-wrap .txtarea.title {
  max-height: 5.4rem;
  min-height: unset;
  padding: 1.6rem 1.2rem;
}

.textarea-wrap .txtarea::-webkit-scrollbar {
  display: none;
}

.textarea-wrap .txtarea::placeholder {
  opacity: 0.4;
}

.textarea-wrap .txtarea:focus {
  border-color: var(--primary-p600);
  font-weight: var(--font-bold);
}

.textarea-wrap .txtarea:focus::placeholder {
  opacity: 1;
}

.textarea-wrap .txtarea:disabled {
  background-color: #f2f2f2;
}

.textarea-wrap .txtarea:read-only {
  font-weight: var(--font-bold);
  color: #353535;
  background-color: #f2f2f2;
}

.textarea-wrap .count-box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 0.8rem;
}

.textarea-wrap .count-box .err-message {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.textarea-wrap .count-box .count {
  color: #949494;
}

.textarea-wrap .count-box .count em {
  color: #949494;
}

/* Radio */
.formCheck {
  position: relative;
  display: inline-block;
  height: auto;
  min-height: 24px;
  vertical-align: top;
}

[type=radio] {
  position: absolute;
  appearance: none;
  transition: border 0.28s ease-in-out;
}

[type=radio]:not(:checked), [type=radio]:checked {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

[type=radio]:not(:checked) + .form-label, [type=radio]:checked + .form-label {
  position: relative;
  min-height: 24px;
  margin-left: 0;
  padding-top: 0.2rem;
  padding-left: 3.4rem;
  font-weight: var(--font-medium);
  font-size: 1.6rem;
  color: #353535;
  -webkit-transition: 0.28s ease;
  transition: 0.28s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  box-sizing: border-box;
  cursor: pointer;
}

[type=radio]:not(:checked) + .form-label:before, [type=radio]:not(:checked) + .form-label:after, [type=radio]:checked + .form-label:before, [type=radio]:checked + .form-label:after {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid #b7b7b7;
  transform: translateY(-50%);
  border-radius: 50%;
  content: '';
}

[type=radio]:checked + .form-label:before, [type=radio]:checked + .form-label:after {
  border: 1px solid var(--primary-p600);
}

[type=radio]:checked + .form-label:after {
  background-color: var(--primary-p600);
  transform: scale(0.5) translateY(-100%);
  -webkit-transform: scale(0.5) translateY(-100%);
  transition: 0.28s ease;
  -webkit-transition: 0.28s ease;
}

[type=radio]:disabled:not(:checked) + .form-label {
  color: #949494;
}

[type=radio]:disabled:not(:checked) + .form-label:before {
  border-color: #b7b7b7;
  background-color: #f2f2f2;
}

[type=radio]:disabled:checked + .form-label:before {
  border-color: #b7b7b7;
  background-color: #f2f2f2;
}

[type=radio]:disabled:checked + .form-label:after {
  border-color: #b7b7b7;
  background-color: #b7b7b7;
}

/* Checkbox */
[type=checkbox] {
  position: absolute;
  appearance: none;
  transition: border 0.28s ease-in-out;
}

[type=checkbox] + .form-label {
  position: relative;
  min-height: 24px;
  padding-left: 3.4rem;
  font-weight: var(--font-medium);
  font-size: 1.6rem;
  color: #353535;
  box-sizing: border-box;
  transition: 0.28s ease;
  -webkit-transition: 0.28s ease;
  cursor: pointer;
}

[type=checkbox] + .form-label:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #b7b7b7;
  border-radius: 4px;
  background-color: #fff;
  z-index: 1;
  content: '';
}

[type=checkbox] + .form-label:after {
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  -webkit-mask-image: url(/images/svg-sprites/sprites);
  mask-image: url(/images/svg-sprites/sprites.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  z-index: 10;
  content: '';
}

[type=checkbox]:checked + .form-label:before {
  border-color: var(--primary-p600);
  background-color: var(--primary-p600);
}

[type=checkbox]:checked + .form-label:after {
  background-color: var(--white);
}

[type=checkbox]:checked:disabled + .form-label {
  color: #353535;
}

[type=checkbox]:checked:disabled + .form-label:after {
  background-color: #b7b7b7;
}

[type=checkbox]:disabled + .form-label {
  color: #949494;
}

[type=checkbox]:disabled + .form-label:before {
  border-color: #b7b7b7;
  background-color: #f2f2f2;
}

[type=checkbox]:disabled + .form-label:after {
  background-color: #f2f2f2;
}

.formCheckS {
  display: inline-block;
  height: 20px;
  vertical-align: top;
}

.formCheckS [type=radio]:not(:checked) + .form-label, .formCheckS [type=radio]:checked + .form-label, .formCheckS [type=checkbox]:not(:checked) + .form-label, .formCheckS [type=checkbox]:checked + .form-label {
  min-height: 20px;
  padding-left: 28px;
  font-size: 1.4rem;
}

.formCheckS [type=radio]:not(:checked) + .form-label:before, .formCheckS [type=radio]:not(:checked) + .form-label:after, .formCheckS [type=radio]:checked + .form-label:before, .formCheckS [type=radio]:checked + .form-label:after, .formCheckS [type=checkbox]:not(:checked) + .form-label:before, .formCheckS [type=checkbox]:not(:checked) + .form-label:after, .formCheckS [type=checkbox]:checked + .form-label:before, .formCheckS [type=checkbox]:checked + .form-label:after {
  width: 20px;
  height: 20px;
}

.formCheckS [type=checkbox]:checked + .form-label:before {
  background-size: 16px;
}

.formCheckS [type=checkbox]:checked + .form-label:after {
  top: 2px;
  left: 2px;
}

.formBox li {
  width: 100%;
}

.formBox li .formCheck {
  display: block;
  width: 100%;
  height: 100%;
}

.formBox li .formCheck [type=radio]:not(:checked) + .form-label, .formBox li .formCheck [type=radio]:checked + .form-label, .formBox li .formCheck [type=checkbox]:not(:checked) + .form-label, .formBox li .formCheck [type=checkbox]:checked + .form-label {
  width: 100%;
  height: 42px;
  padding: 0;
  font-weight: var(--font-medium);
  font-size: 1.4rem;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  text-align: center;
  background-color: var(--white);
  line-height: 42px;
}

.formBox li .formCheck [type=radio]:not(:checked) + .form-label:before, .formBox li .formCheck [type=radio]:not(:checked) + .form-label:after, .formBox li .formCheck [type=radio]:checked + .form-label:before, .formBox li .formCheck [type=radio]:checked + .form-label:after, .formBox li .formCheck [type=checkbox]:not(:checked) + .form-label:before, .formBox li .formCheck [type=checkbox]:not(:checked) + .form-label:after, .formBox li .formCheck [type=checkbox]:checked + .form-label:before, .formBox li .formCheck [type=checkbox]:checked + .form-label:after {
  display: none;
}

.formBox li .formCheck [type=radio]:not(:checked):disabled + .form-label, .formBox li .formCheck [type=checkbox]:not(:checked):disabled + .form-label {
  color: #4d4d4d;
  border: 1px solid #dbdbdb;
  background-color: #f2f2f2;
}

.formBox li .formCheck [type=radio]:checked + .form-label, .formBox li .formCheck [type=checkbox]:checked + .form-label {
  font-weight: var(--font-bold);
  color: var(--primary-p600);
  border: 1px solid var(--primary-p600);
}

.formBox li .formCheck [type=radio]:checked:disabled + .form-label, .formBox li .formCheck [type=checkbox]:checked:disabled + .form-label {
  color: #353535;
  border: 1px solid #949494;
  background-color: #f2f2f2;
}

.formBox li .formCheck.circle [type=checkbox] + .form-label {
  width: 101px;
  height: 32px;
  padding: 0.8rem 1.6rem;
  border-radius: 20px;
  color: #353535;
  line-height: 16px;
}

.formBox li .formCheck.circle [type=checkbox]:checked + .form-label {
  font-weight: var(--font-medium);
  color: var(--white);
  background-color: var(--primary-p600);
  transition: 0.2s ease;
}

.formBox li .formCheck.circle [type=checkbox]:checked + .form-label .icon_16px_check:after {
  background-position: 0 0;
}

/* Tooltip */
.tooltip-box {
  position: absolute;
  display: none;
  max-width: 320px;
  padding: 12px 12px 12px 16px;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  background-color: #fff;
  z-index: 100;
  top: 25px;
}

.tooltip-box.TipOn {
  display: flex;
}

.tooltip-box .tooltip-header .h4 {
  position: relative;
}

.tooltip-box .tooltip-header .icon_20px_close {
  position: absolute;
  top: 0;
  right: 0;
}

.tooltip-box .tooltip-content {
  position: relative;
  font-weight: var(--font-regular);
  font-size: 1.2rem;
  color: #4d4d4d;
}

.tooltip-box .tooltip-content ul.only {
  padding-right: 3.8rem;
}

.tooltip-box .tooltip-content ul li {
  line-height: 1.5;
}

.tooltip-box .tooltip-content ul.dot-type {
  padding-left: 1.2rem;
}

.tooltip-box .tooltip-content ul.dot-type li {
  position: relative;
}

.tooltip-box .tooltip-content ul.dot-type li:before {
  position: absolute;
  top: 7px;
  left: -8px;
  width: 3px;
  height: 3px;
  background-color: #353535;
  border-radius: 50%;
  content: '';
}

.tooltip-box .tooltip-content p {
  line-height: 17px;
}

.tooltip-box .tooltip-content p .sub-title {
  font-weight: var(--font-bold);
}

.tooltip-box .tooltip-content .icon_20px_close {
  position: absolute;
  top: 0;
  right: 0;
}

/* Card-wrap */
.card-wrap {
  width: 100%;
}

.card-wrap .card-head {
  padding: 1.6rem 2rem;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  background-color: #fff;
}

.card-wrap .card-head > .formCheck {
  display: block;
}

.card-wrap .card-head + .card-body {
  margin-top: 0.4rem;
}

.card-wrap .card-head .form-label {
  font-weight: var(--font-bold);
}

.card-wrap .card-body {
  padding: 1.6rem 2rem;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  background-color: #fff;
}

.card-wrap .card-body > .formCheck {
  display: block;
}

.card-wrap .formCheck + .formCheck {
  margin-top: 20px;
}

.card-wrap .formCheck .form-label {
  justify-content: space-between;
}

.card-wrap .formCheck .icon_24px_next_gray {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.card-wrap .card-box {
  margin-top: 2rem;
  padding: 1.6rem 2rem;
  border-radius: 10px;
  background-color: #f2f2f2;
}

.card-wrap .card-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 1.2rem;
}

.card-wrap .card-box ul li {
  width: 50%;
}

/* EditList */
.edit-list ul li {
  min-height: 56px;
  padding: 1.6rem 2rem;
  border: 1px solid #dbdbdb;
  border-width: 0 0 1px 0;
}

.edit-list ul li .btn-tog {
  width: 100%;
}

.edit-list ul li .btn-tog label {
  height: auto;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.4;
}

.edit-list ul li .btn-tog label:before {
  right: 0;
  left: unset;
}

.edit-list ul li .btn-tog label:after {
  right: 23px;
  left: unset;
}

.edit-list ul li .btn-tog label em {
  display: inline-block;
  margin-top: 0.3rem;
  margin-left: 0;
}

.edit-list ul li .btn-tog input:checked + label:after {
  right: 3px;
}

.edit-list ul li .edit-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  font-weight: var(--font-medium);
  font-size: 1.6rem;
  color: #353535;
  line-height: 1.4;
  text-align: left;
}

.edit-list ul li .edit-btn .icon_24px_next_gray {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/* List */
.termslist ol li {
  font-size: 1.4rem;
  color: #121212;
}

.termslist ol li + li {
  margin-top: 2rem;
}

.termslist ol li .h4 + .txt {
  margin-top: 1.2rem;
}

.termslist ol li .countType {
  margin-top: 1.2rem;
  padding-left: 2rem;
}

.termslist ol li .countType li {
  list-style: decimal;
  font-weight: var(--font-regular);
  color: #4d4d4d;
}

.termslist ol li .countType li + li {
  margin-top: 1.2rem;
}

.termslist.dot > li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 8px;
  font-size: 14px;
  color: #4d4d4d;
  line-height: 20px;
}

.termslist.dot > li:after {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #353535;
  content: '';
}

/* Table */
.table-box .txt + table {
  margin-top: 0.8rem;
}

.table-box table {
  width: 100%;
}

.table-box tbody tr {
  border-bottom: 1px solid #dbdbdb;
}

.table-box tbody tr th, .table-box tbody tr td {
  padding: 1.6rem;
  font-weight: var(--font-regular);
  font-size: 1.4rem;
  color: #4d4d4d;
}

.table-box tbody tr th {
  background-color: #fbfbfb;
}

.table-box tbody tr td {
  padding-right: 0.6rem;
  background-color: var(--white);
}

.table-box thead tr {
  border-bottom: 1px solid #dbdbdb;
}

/*list-box*/
.list-box {
  width: 100%;
  padding: 3.2rem 2rem;
}

.list-box + .list-box {
  border-top: 8px solid #F2F2F2;
}

.list-box > strong {
  display: block;
  font-size: 30px;
}

.list-box > a {
  position: relative;
  display: block;
  font-size: 24px;
  color: #121212;
}

.list-box > a:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #121212;
  transform: translateY(-50%);
  content: '';
}

.list-box > a > strong {
  display: block;
  width: calc(100% - 32px);
}

.list-box .alarm {
  display: block;
  margin-top: 32px;
  font-weight: var(--font-bold);
  font-size: 14px;
  color: #EF5350;
  text-align: center;
}

.list-box .alarm.good {
  color: #1D7AFC;
}

.list-box > .li-item {
  margin-top: 12px;
}

.list-box > .li-item > li {
  display: flex;
  margin-top: 8px;
  padding: 16px;
  background-color: #FBFBFB;
  border-radius: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.list-box > .li-item > li > a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.list-box > .li-item > li > a > span {
  font-weight: var(--font-bold);
  font-size: 16px;
}

.list-box > .li-item > li > a > span > small {
  display: block;
  margin-top: 2px;
  font-weight: var(--font-regular);
  font-size: 12px;
  color: #949494;
}

.list-box > .li-item > li > a > span:last-child {
  min-width: 80px;
  font-weight: var(--font-medium);
  text-align: right;
  color: #1D7AFC;
}

.list-box > .li-item > li > span {
  font-size: 14px;
  color: #353535;
}

.list-box > .li-item > li > span.condition {
  width: 52px;
  font-weight: var(--font-bold);
  font-size: 12px;
  text-align: center;
  background-color: #B7B7B7;
  border-radius: 4px;
  line-height: 20px;
  color: #fff;
}

.list-box > .li-item > li > span.condition.ok {
  color: #fff;
  background-color: #1D7AFC;
}

.list-box > .li-item > li > span + span {
  color: #949494;
}

.list-box.logo-style > ul > li {
  position: relative;
}

.list-box.logo-style > ul > li > span:first-child {
  font-size: 16px;
  font-weight: var(--font-bold);
}

.list-box.logo-style > ul > li > span:first-child > i {
  margin-right: 8px;
}

.list-box .tip {
  display: block;
  margin: 24px 0;
  font-weight: var(--font-regular);
  font-size: 12px;
  color: #949494;
  text-align: center;
}

/* Modal */
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
}

.modal.show {
  display: block;
}

.modal .modal-dialog {
  position: relative;
  top: 50%;
  min-width: 248px;
  max-width: 600px;
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 2.4rem 1.6rem 1.6rem 1.6rem;
  border-radius: 8px;
  background-color: #fff;
  transform: translateY(-50%);
}

.modal .modal-content {
  position: relative;
}

.modal .modal-content.center {
  padding-top: 2rem;
}

.modal .modal-content.center .modal-footer {
  margin-top: 3.2rem;
}

.modal .modal-body .modal-main {
  margin-top: 1.6rem;
  font-weight: var(--font-regular);
  font-size: 1.4rem;
  color: #4d4d4d;
  line-height: 20px;
}

.modal .modal-footer {
  margin-top: 2rem;
}

.modal-laybtm {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 0.8rem 2rem;
  border-radius: 20px 20px 0 0;
  background-color: var(--white);
  transition: bottom 0.3s ease-in-out;
  z-index: 1002;
}

.modal-laybtm.show {
  bottom: 0;
}

.modal-laybtm .modal-dialog .h2-m {
  position: relative;
}

.modal-laybtm .modal-head {
  padding: 1.2rem 0;
}

.modal-laybtm .modal-body {
  padding: 1.6rem 0 0.8rem 0;
}

.modal-laybtm .modal-main .edit-list {
  display: block;
}

.modal-laybtm .modal-main .edit-list li {
  position: relative;
  min-height: 48px;
  padding: 1.2rem  4rem;
  border: 0;
}

.modal-laybtm .modal-main .edit-list li:last-child {
  margin-bottom: 1.6rem;
}

.modal-laybtm .modal-main .rotation {
  overflow: hidden;
  height: 26rem;
  margin-top: 1.6rem;
}

.modal-laybtm .modal-main .rotation .num-style {
  position: relative;
  display: block;
  overflow-y: visible;
  width: 100%;
  margin-bottom: 1.6rem;
  font-size: 16px;
}

.modal-laybtm .modal-main .rotation .num-style > .num-list {
  width: 100%;
  min-height: 52px;
  font-weight: var(--font-medium);
  color: #353535;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
}

.modal-laybtm .modal-main .rotation .num-style > .num-list.active {
  border: 1px solid #1D7AFC;
  border-radius: 10px;
  font-weight: var(--font-bold);
  color: #1D7AFC;
  opacity: 1;
}

#modal-category {
  min-height: 360px;
}

#modal-category .rotation {
  height: 27rem;
}

#modal-category .rotation #category-list .num-list {
  min-height: 38px;
}

.dim {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1001;
}

.dim.show {
  display: block;
}

/* Tag */
.tag-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag-box .tag-item {
  padding: 0.4rem 0.8rem;
  font-weight: var(--font-regular);
  font-size: 1.2rem;
  border: 1px solid #dbdbdb;
  border-radius: 0.4rem;
  background-color: var(--white);
  color: #707070;
}

/* Badges */
.badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  font-weight: var(--font-regular);
  font-size: 1.4rem;
  color: var(--white);
  border-radius: 50%;
  background-color: #dbdbdb;
}

.badge.primary {
  background-color: var(--primary-p600);
  color: var(--white);
}

/* Badges-Tag */
.badge-tag {
  display: inline-flex;
  width: fit-content;
  height: auto;
  padding: 0.3rem 0.6rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 4px;
  font-weight: var(--font-medium);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 14px;
}

.badge-tag.user-01 {
  padding: 0 0.5rem;
  background-color: #9586ff;
  line-height: 20px;
}

.badge-tag.user-02 {
  padding: 0 0.5rem;
  background-color: #0cae9c;
  line-height: 20px;
}

.badge-tag.list-01 {
  font-weight: var(--font-bold);
  background-color: #ff694a;
}

.badge-tag.list-02 {
  font-weight: var(--font-bold);
  background-color: var(--primary-p700);
}

.badge-tag.list-03 {
  background-color: rgba(110, 92, 230, 0.12);
  color: #6c5ae6;
}

.badge-tag.list-04 {
  background-color: var(--primary-p200);
  color: #5061eb;
}

.badge-tag.list-05 {
  background-color: #f2f2f2;
  color: #4d4d4d;
}

.badge-tag.list-06 {
  padding: 0 0.8rem;
  background: #E9F2FF;
  color: #1D7AFC;
  font-size: 1.4rem;
  line-height: 20px;
}

.badge-tag.list-07 {
  padding: 0 0.8rem;
  background: #fff;
  color: #1D7AFC;
  font-size: 1.4rem;
  line-height: 20px;
}

.badge-tag.list-08 {
  padding: 0.1rem 0.5rem;
  background-color: #e3f1f9;
  line-height: 18px;
  color: #309de2;
}

.badge-tag.list-09 {
  padding: 0.1rem 0.5rem;
  background-color: #e6f2f0;
  line-height: 18px;
  color: #009d8b;
}

.badge-tag.list-10 {
  padding: 0.1rem 0.5rem;
  background-color: #E9F2FF;
  line-height: 18px;
  color: #1D7AFC;
}

.badge-tag.list-11 {
  padding: 0.1rem 0.5rem;
  background-color: #FFF0ED;
  line-height: 18px;
  color: #FF694A;
}

.badge-tag.list-12 {
  padding: 0.1rem 0.5rem;
  background-color: #F2F2F2;
  line-height: 18px;
  color: #707070;
}

.badge-tag.list-13 {
  padding: 0.1rem 0.5rem;
  background-color: #F2F2F2;
  line-height: 18px;
  color: #949494;
}

/* Carousel */
.carousel-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-list {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel {
  min-width: 100%;
  text-align: center;
  background-color: #ddd;
  padding: 24px 0 0px;
}

.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 2.4rem;
}

.carousel-pagination .page {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #b7b7b7;
  transition: width 0.3s ease-in-out;
  cursor: pointer;
}

.carousel-pagination .page.active {
  width: 20px;
  border-radius: 8px;
  background-color: var(--primary-p600);
}

.search-wrap {
  position: relative;
  width: 100%;
}

.search-wrap .search {
  width: 100%;
  height: 4.2rem;
  padding: 1.1rem 1rem 1.1rem 1.2rem;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  background-color: var(--white);
  font-weight: var(--font-medium);
  font-size: 1.6rem;
  color: #353535;
  background-color: var(--white);
}

.search-wrap .search::placeholder {
  opacity: 0.4;
}

.search-wrap .search::-webkit-search-decoration, .search-wrap .search::-webkit-search-cancel-button, .search-wrap .search::-webkit-search-results-button, .search-wrap .search::-webkit-search-results-decoration {
  display: none;
}

.search-wrap .search:focus + .icon_24px_del {
  display: block;
}

.search-wrap .icon_24px_del {
  display: none;
  position: absolute;
  top: 9px;
  right: 34px;
  transform: translateY(0);
}

.search-wrap .icon_20px_search {
  position: absolute;
  top: 11px;
  right: 10px;
  content: '';
}

/*리스트 모바일 형식*/
.g-content.html-molist {
  margin-top: 40px;
  padding: 3.2rem 2rem;
}

.g-content.html-molist .tab-btnbox {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.g-content.html-molist .tab-btnbox > button {
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-weight: var(--font-bold);
  font-size: 14px;
  border: 1px dashed #cbc5c4;
  background-color: #f2f2f2;
  color: #333;
}

.g-content.html-molist .tab-btnbox > button.on {
  border: 1px solid #6b6b6b;
  background-color: #6b6b6b;
  color: #fff;
}

.g-content.html-molist .state {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 14px;
  text-align: right;
}

.g-content.html-molist .state > ul {
  display: inline-flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
}

.g-content.html-molist .state > ul > li {
  position: relative;
}

.g-content.html-molist .state > ul > li::after {
  display: block;
  position: absolute;
  top: 50%;
  left: -12px;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #5880ef;
  transform: translateY(-50%);
  content: '';
}

.g-content.html-molist .state > ul > li.complete::after {
  background: #7d97be;
}

.g-content.html-molist .state > ul > li.revise::after {
  background: #ef9858;
}

.g-content.html-molist .panel {
  padding-top: 25px;
  border-top: 1px solid #e7e7e7;
}

.g-content.html-molist .panel > .tablist {
  display: none;
}

.g-content.html-molist .panel > .tablist > h3 {
  font-size: 16px;
  margin-bottom: 20px;
}

.g-content.html-molist .panel > .tablist > ul > li {
  overflow: hidden;
  width: 100%;
  border-radius: 13px;
  background-color: #5880ef;
}

.g-content.html-molist .panel > .tablist > ul > li > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 2rem;
  color: #fff;
}

.g-content.html-molist .panel > .tablist > ul > li > a .description {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

.g-content.html-molist .panel > .tablist > ul > li > a strong {
  font-size: 16px;
  line-height: 1.5;
}

.g-content.html-molist .panel > .tablist > ul > li > a strong > span {
  font-size: 14px;
  opacity: 0.5;
}

.g-content.html-molist .panel > .tablist > ul > li > a .text-box {
  font-size: 12px;
  line-height: 1.5;
  color: #fbfbfb;
}

.g-content.html-molist .panel > .tablist > ul > li.complete {
  background-color: #f1f5fb;
}

.g-content.html-molist .panel > .tablist > ul > li.complete > a {
  color: #7d97be;
}

.g-content.html-molist .panel > .tablist > ul > li.complete > a .description {
  color: #333;
  font-weight: bold;
}

.g-content.html-molist .panel > .tablist > ul > li.complete > a .text-box {
  color: #333;
}

.g-content.html-molist .panel > .tablist > ul > li.revise {
  background-color: #ef9858;
}

.g-content.html-molist .panel > .tablist > ul > li + li {
  margin-top: 15px;
}

.g-content.html-molist .panel > .tablist.on {
  display: block;
}

/* Input-date */
.form-label + .input-date,
.form-label + .input-date-key,
.form-label + .date-wrap {
  margin-top: 0.8rem;
}

.input-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  width: 100%;
  margin-top: 1.2rem;
}

.input-date input[type="date"] {
  overflow: visible;
  position: relative;
  display: block;
  width: 100%;
  height: 4.2rem;
  padding: 1rem 1rem 1rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
  background: #fff;
  font-weight: var(--font-bold);
  font-size: 1.6rem;
  color: #353535;
  cursor: pointer;
  appearance: none;
}

.input-date input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% - 4px);
  height: 90%;
  background: transparent;
  color: transparent;
  z-index: 1;
}

.input-date input[type="date"]::-webkit-calendar-picker-indicator:focus {
  border-radius: 8px;
  border: 1px solid var(--primary-p600);
}

.input-date input[type="date"]:before {
  position: absolute;
  top: 10px;
  left: 12px;
  width: auto;
  font-weight: var(--font-medium);
  font-size: 1.6rem;
  color: #b7b7b7;
  background: var(--white);
  content: attr(data-placeholder);
}

.input-date input[type="date"]:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 9px;
  width: 16px;
  height: 17px;
  background: url(/images/svg-sprites/sprites.svg) no-repeat -300px 0;
  transform: translateY(-50%);
  content: '';
}

.input-date input[type="date"]:not(:focus):invalid::-webkit-datetime-edit-text, .input-date input[type="date"]:not(:focus):invalid::-webkit-datetime-edit-month-field, .input-date input[type="date"]:not(:focus):invalid::-webkit-datetime-edit-day-field, .input-date input[type="date"]:not(:focus):invalid::-webkit-datetime-edit-year-field {
  -webkit-appearance: none;
  display: none;
}

.input-date input[type="date"]:focus::before,
.input-date input[type="date"]:valid::before {
  display: none;
}

.input-date input[type="date"]:focus::before::-webkit-datetime-edit-text, .input-date input[type="date"]:focus::before::-webkit-datetime-edit-month-field, .input-date input[type="date"]:focus::before::-webkit-datetime-edit-day-field, .input-date input[type="date"]:focus::before::-webkit-datetime-edit-year-field,
.input-date input[type="date"]:valid::before::-webkit-datetime-edit-text,
.input-date input[type="date"]:valid::before::-webkit-datetime-edit-month-field,
.input-date input[type="date"]:valid::before::-webkit-datetime-edit-day-field,
.input-date input[type="date"]:valid::before::-webkit-datetime-edit-year-field {
  -webkit-appearance: none;
  display: none;
}

.date-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.input-date-key {
  position: relative;
  width: 100%;
}

.input-date-key input[type="tel"] {
  position: relative;
  display: block;
  width: 100%;
  height: 4.2rem;
  padding: 1rem 1rem 1rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
  font-weight: var(--font-bold);
  font-size: 1.6rem;
  color: #353535;
  cursor: pointer;
}

.input-date-key input[type="tel"]::placeholder {
  font-weight: var(--font-medium);
  font-size: 1.6rem;
  color: #b7b7b7;
}

.input-date-key input[type="date"] {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 17px;
  border: 0;
  color: transparent;
  background: url(/images/svg-sprites/sprites.svg) no-repeat -300px 0;
  transform: translateY(-50%);
}

.input-date-key input[type='date']::-webkit-calendar-picker-indicator {
  width: 40px;
  height: 42px;
  background: transparent;
  color: transparent;
  border: 0;
}

.input-date-key input[type=date]::-webkit-datetime-edit-text,
.input-date-key input[type=date]::-webkit-datetime-edit-month-field,
.input-date-key input[type=date]::-webkit-datetime-edit-day-field,
.input-date-key input[type=date]::-webkit-datetime-edit-year-field {
  -webkit-appearance: none;
  display: none;
}

/* ico */
.icon {
  position: relative;
  display: inline-block;
}

.icon:after {
  display: inline-block;
  background: url("/images/svg-sprites/sprites.svg") no-repeat;
}

.icon.icon_logo_lg {
  width: 64px;
  height: 68px;
}

.icon.icon_logo_lg:after {
  width: 64px;
  height: 68px;
  background-position: 0 -300px;
  content: '';
}

.icon.icon_24px_before {
  width: 24px;
  height: 24px;
}

.icon.icon_24px_before:after {
  width: 24px;
  height: 24px;
  background-position: -60px -60px;
  content: '';
}

.icon.icon_16px_error {
  width: 16px;
  height: 16px;
}

.icon.icon_16px_error:after {
  width: 16px;
  height: 16px;
  background-position: -220px 0;
  content: '';
}

.icon.icon_16px_arrow_down {
  width: 16px;
  height: 16px;
}

.icon.icon_16px_arrow_down:after {
  width: 16px;
  height: 16px;
  background-position: -120px 0;
  content: '';
}

.icon.Img_56px_nodata_1 {
  width: 56px;
  height: 56px;
}

.icon.Img_56px_nodata_1:after {
  width: 56px;
  height: 56px;
  background-position: -80px -220px;
  content: '';
}

.icon.icon_16px_check {
  margin-right: 0.8rem;
}

.icon.icon_16px_check:after {
  width: 16px;
  height: 16px;
  background-position: -180px 0;
  vertical-align: top;
  content: '';
}

.icon.icon_16px_mark {
  margin-right: 0.8rem;
}

.icon.icon_16px_mark:after {
  width: 16px;
  height: 16px;
  background-position: -180px 0;
  vertical-align: top;
  content: '';
}

.icon.icon_24px_del {
  width: 24px;
  height: 24px;
}

.icon.icon_24px_del:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: inherit;
  height: inherit;
  background-position: -300px -60px;
  transform: translateY(-50%);
  cursor: pointer;
  content: '';
}

.icon.icon_24px_next {
  width: 24px;
  height: 24px;
}

.icon.icon_24px_next:after {
  width: 24px;
  height: 24px;
  background-position: 0 -60px;
  content: '';
}

.icon.icon_24px_close {
  position: absolute;
  top: 0;
  right: 0;
  vertical-align: bottom;
}

.icon.icon_24px_close:after {
  display: block;
  width: 24px;
  height: 24px;
  background-position: -270px -60px;
  content: '';
}

.icon.icon_20px_close:after {
  display: block;
  width: 20px;
  height: 20px;
  background-position: -210px -20px;
  content: '';
}

.icon.ToolTip_16px:after {
  display: block;
  width: 16px;
  height: 16px;
  background-position: -200px 0;
  cursor: pointer;
  content: '';
}

.icon.icon_lock_blue02, .icon.icon_security_blue02, .icon.icon_safety_blue02 {
  position: absolute;
  top: 0;
  left: 0;
}

.icon.icon_lock_blue02:after, .icon.icon_security_blue02:after, .icon.icon_safety_blue02:after {
  display: block;
  width: 40px;
  height: 40px;
  background-position: -50px -150px;
  content: '';
}

.icon.icon_security_blue02:after {
  background-position: 0 -150px;
}

.icon.icon_safety_blue02:after {
  background-position: -400px -150px;
}

.icon.icon_NICE:after {
  width: 24px;
  height: 24px;
  background-position: -240px -20px;
  content: '';
}

.icon.icon_16px_error {
  width: 16px;
  height: 16px;
}

.icon.icon_16px_error:after {
  width: inherit;
  height: inherit;
  background-position: -220px 0;
  content: '';
}

.icon.icon_20px_search {
  width: 20px;
  height: 20px;
}

.icon.icon_20px_search:after {
  width: inherit;
  height: inherit;
  background-position: -330px -20px;
  content: '';
}

.tost_message {
  visibility: hidden;
  position: fixed;
  top: calc(50% - 72px);
  left: 50%;
  width: calc(100% - 20px);
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  color: #fff;
  transform: translateX(-50%);
  transition: visibility 0s 0.4s;
  z-index: 9999;
}

.tost_message.show {
  visibility: visible;
  transition: visibility 0s 0.4s;
}

.easypw-wrap .easypw {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.easypw-wrap .easypw > .circle {
  display: block;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 100%;
  background-color: #f2f2f2;
}

.easypw-wrap .easypw > .circle.fill {
  border: 0;
  background-color: #353535;
}

.easypw-wrap .hidden-input {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

/* 공통 */
a:focus, button:focus {
  outline: 0;
}

.pd-t0 {
  padding-top: 0 !important;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=date]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=time]:focus {
  outline: 0;
  border: 1px solid var(--primary-p600);
  box-sizing: border-box;
}

.h1 {
  display: block;
  font-weight: var(--font-bold);
  font-size: 2.2rem;
  color: #121212;
  line-height: 30px;
}

.h1-m {
  display: block;
  font-weight: var(--font-medium);
  font-size: 2.2rem;
  color: #121212;
  line-height: 30px;
}

.h1-r {
  display: block;
  font-weight: var(--font-regular);
  font-size: 2.2rem;
  color: #121212;
  line-height: 30px;
}

.h2 {
  display: block;
  font-weight: var(--font-bold);
  font-size: 1.8rem;
  color: #121212;
  line-height: 24px;
}

.h2-m {
  display: block;
  font-weight: var(--font-medium);
  font-size: 1.8rem;
  color: #121212;
  line-height: 24px;
}

.h2-r {
  display: block;
  font-weight: var(--font-regular);
  font-size: 1.8rem;
  color: #121212;
  line-height: 24px;
}

.h3 {
  display: block;
  font-weight: var(--font-bold);
  font-size: 1.6rem;
  color: #121212;
  line-height: 22px;
}

.h3-m {
  display: block;
  font-weight: var(--font-medium);
  font-size: 1.6rem;
  color: #121212;
  line-height: 22px;
}

.h3-r {
  display: block;
  font-weight: var(--font-regular);
  font-size: 1.6rem;
  color: #121212;
  line-height: 22px;
}

.h4 {
  display: block;
  font-weight: var(--font-bold);
  font-size: 1.4rem;
  color: #121212;
  line-height: 20px;
}

.h4-m {
  display: block;
  font-weight: var(--font-medium);
  font-size: 1.4rem;
  color: #121212;
  line-height: 20px;
}

.h4-r {
  display: block;
  font-weight: var(--font-regular);
  font-size: 1.4rem;
  color: #121212;
  line-height: 20px;
}

.txt {
  font-weight: var(--font-regular);
  font-size: 1.4rem;
  color: #4d4d4d;
  line-height: 20px;
}

.txt.small {
  font-weight: var(--font-regular);
  font-size: 1.2rem;
  color: #949494;
  line-height: 18px;
}

.center {
  text-align: center;
}

.err-message {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: var(--font-regular);
  font-size: 1.4rem;
  color: #ef5350;
  line-height: 20px;
}

/*부동산 임대차 안심거래 리스트 PC화면*/
@media screen and (min-width: 1025px) {
  .g-content.html-molist .panel > .tablist > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 24px;
  }
  .g-content.html-molist .panel > .tablist > ul > li {
    width: 24%;
    height: 150px;
  }
  .g-content.html-molist .panel > .tablist > ul > li + li {
    margin-top: 0;
  }
}

/* alert_15 */
@media screen and (max-width: 768px) {
  .mq-b {
    display: block;
  }
}

/* br 분기점 */
@media screen and (min-width: 768px) {
  .only-mo {
    display: none;
  }
}
