@charset "utf-8";

html {
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth
}

body {
  line-height: 1.437
}

html,
body {
  min-height: 100%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
  box-sizing: border-box;
  line-height: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  letter-spacing: 0;
}

fieldset,
img {
  border: 0 none
}

dl,
ul,
ol,
menu,
li {
  list-style: none
}

blockquote,
q {
  quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none
}

input,
select,
textarea,
button {
  vertical-align: middle;
  border: none;
  border-radius: 0;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  box-sizing: border-box;
  cursor: pointer
}

button {
  border-collapse: collapse;
  border-spacing: 0;
  border: 0 none;
  background: transparent
}

body {
  -webkit-text-size-adjust: none;
  font-size: 1rem;
  min-width: 320px;
}

input::-ms-clear,
input::-ms-reveal {
  display: none
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none
}

input[type=date]::-webkit-inner-spin-button {
  display: none
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-calendar-picker-indicator {
  display: none
}

/* input[type='text'],input[type='password'],input[type='submit'],input[type='search']{-webkit-appearance:button;border-radius:0} */
button,
input[type='button'],
input[type='submit'],
input[type='reset'],
input[type='file'] {
  -webkit-appearance: button;
  appearance: button;
  border-radius: 0;
  cursor: pointer
}

input[type='search']::-webkit-search-cancel-button {
  -webkit-appearance: none
}

/* 드래그 막기 */
input,
label,
a,
button,
select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

/* 드래그 허용 class */
.draggable {
  -webkit-user-select: all;
  -moz-user-select: all;
  -ms-user-select: all;
  user-select: all
}

a {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

address,
caption,
cite,
code,
dfn,
em,
var {
  font-style: normal;
  font-weight: normal
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal
}

::-webkit-input-placeholder {
  color: #ccc;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 0px !important;
  overflow: hidden !important;
  padding: 0 !important;
  width: 0px !important;
  font-size: 0px !important
}

textarea {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: transparent;
  word-break: keep-all;
  word-wrap: break-word;
  border: none;
  resize: none
}

:focus,
:active {
  outline: none;
  -webkit-tap-highlight-color: transparent
}

span,
i,
em {
  font-style: normal;
}

@media (max-width:320px) {
  html {
    font-size: 7.7px
  }

  html,
  body,
  .wrap {
    min-width: 280px
  }
}

@media (min-width:520px) {
  html {
    font-size: 11px
  }
}

strong,
b {
  font-weight: bold !important;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* ::-webkit-scrollbar-thumb {}
::-webkit-scrollbar-track {} */





/* 전체 스크롤바 */
::-webkit-scrollbar {
  width: 15px;
  background: #eaf6f6;
}

/* 스크롤 트랙 (배경 영역) */
::-webkit-scrollbar-track {
  border-radius: 8px;
}

/* 스크롤 핸들 (움직이는 막대) */
::-webkit-scrollbar-thumb {
  background-color: var(--theme);
  border-radius: 8px;
  margin: 3px;
  border: 3px solid transparent;
  background-clip: content-box;
}

/* 위쪽 화살표 */
::-webkit-scrollbar-button:start:decrement {
  height: 16px;
  background: url('/home/icon/arrow-up.png') no-repeat center;
  background-size: 8px;
  background-color: transparent;
}

/* 아래쪽 화살표 */
::-webkit-scrollbar-button:end:increment {
  height: 16px;
  background: url('/home/icon/arrow-down.png') no-repeat center;
  background-size: 8px;
  background-color: transparent;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-width: 320px;
  color: #111;
  font-size: 16px;
  line-height: 1;
  font-weight: normal;
}

body {
  min-width: 320px;
}

/* 반응형 방지 */
html,
body {
  min-width: 1024px !important;
}

:root {
  --font: 'Pretendard';
  --fontP: 'Pretendard';
  --fontN: "NanumSquare", sans-serif;
  --fontFM: 'PretendardM';
  --fontFB: 'PretendardB';
  --fontG: 'GmarketSans';
  --fontJ: 'JalnanGothic';
  --paddCommon: 1.35rem;
  --paddCommon_: -2rem;
  --shadowStyle: 0px -3px 6px #0000001a;
  --shadowStyleh: 0px 3px 6px #00000029;
  --theme: #08a1bc;
  --theme2: #0baadc;
  --theme3: #366893;
  --theme4: #cddbfd;
  --theme5: #b6d7dd;
  --theme6: #1d7585;
  --theme7: #f5f8ff;
  --theme8: #007cc2;
  --primary: #2b5ff8;
  --white: #fff;
  --black: #000;
  --colorF: #fff;
  --colorB: #000;
  --colorC: #ccc;
  --colorC6: #6c6c6c;
  --colorD: #ddd;
  --colorD6: #d6d6d6;
  --color0: #111;
  --color1: #E5E5EC;
  --color2: #F1F1F5;
  --color3: #333;
  --color4: #4f4f4f;
  --color5: #505050;
  --color6: #666;
  --color7: #777;
  --color8: #888;
  --color9: #999;
  --color10: #BBB;
  --colorFa: #fafafa;
  --colorF1: #f1f1f1;
  --colorF2: #f2f2f2;
  --colorF3: #F3F4F6;
  --colorF4: #f4f4f4;
  --colorF5: #f5f5f5;
  --colorF6: #f6f6f6;
  --colorF7: #f7f7f7;
  --colorF8: #f8f8f8;
  --colorF9: #f9f9f9;
  --colorE1: #E1E1E1;
  --colorE5: #e5e5e5;
  --colorE6: #D5D5D5;
  --red: #f33939;
  --btnDisabled: #BBB;
  --txtDisabled: #999;
  --bgB: #111;
  --bgF: #F1F1F5;
  --bgFL: #f5f8fe;
  --appfooterPc: 4rem;
  --conWdPc: 40rem;
  --header: 5.2rem;
  --mheader: 5.2rem;
  --swiper-navigation-size: 44px;
  --logo-head: 120px;
  --logo-fixed: 120px;
  --logo-mobile-head: 95px;
  --logo-login-head: 110px;
  --logo-foot: 110px;
  --nanumsquare: "NanumSquare", sans-serif;
  --icon: remixicon;
  --light-gray: #f7f7f7;
  --light-blue: #e1f7f7;
  --light-black: #1d1d1d;
  --gray: #e1e1e1;
  --mid-gray: #a2a2a2;
  --dark-gray: #545454;
  --table-01-line: #cddcfd;
  --table-02-line: #add0d8;
  --th-02-background: #f2feff;
  --button-01-background: #f5fbfd;
  --button-02-background: #0baadc;
}

textarea {
  resize: none;
}


fieldset,
img {
  border: 0;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

li,
ol,
ul {
  list-style: none;
}

address,
em,
i {
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

strong,
th,
em {
  font-style: normal;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

input,
select,
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  background: transparent;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}



legend,
caption {
  visibility: hidden;
  overflow: hidden;
  width: 0 !important;
  height: 0 !important;
  font-size: 0;
  line-height: 0;
}

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

button {
  border: none;
  cursor: pointer;
}

.clearfix {
  position: relative;
}

.clearfix::before,
.clearfix::after {
  content: ''
}

.clearfix::after {
  clear: both;
  display: block
}

/* .scroll{
    display: block;
    width: 100%;
    overflow-x: auto;
} */

.blind {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}

.bold {
  font-weight: bold !important;
}


.flipped {
  transform: scaleX(-1);
  display: inline-block;
}

.ft-noto {
  font-family: "Noto Sans KR" !important;
}

.ft-pen {
  font-family: "Nanum Pen Script", cursive !important;
}

.ft-mj {
  font-family: "Nanum Myeongjo", serif !important;
}


/* == UTILITIES == */


/* utilities */

.align-baseline {
  vertical-align: baseline !important;
}

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

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-flex.center {
  align-items: center;
}

.d-flex.end {
  align-items: flex-end;
}

.d-flex.between {
  justify-content: space-between;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-un {
  flex: unset !important;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.flex-3 {
  flex: 3;
}

.d-none {
  display: none !important;
}

.border {
  border: 1px solid var(--colorD) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid var(--colorD) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right {
  border-right: 1px solid var(--colorD) !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid var(--colorD) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left {
  border-left: 1px solid var(--colorD) !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-black {
  border-color: #111 !important;
}

.border-basic {
  border-color: #333 !important;
}

.border-cont {
  border-color: #555 !important;
}

.border-gray {
  border-color: #686868 !important;
}

.border-border {
  border-color: var(--colorD) !important;
}

.border-point {
  border-color: var(--theme2) !important;
}

.border-point2 {
  border-color: #9a3175 !important;
}

.border-blur {
  border-color: #eaeaea !important;
}

.border-white {
  border-color: var(--colorF) !important;
}

.border-red {
  border-color: #a02013 !important;
}

.border-yellow {
  border-color: #dea82a !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

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

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

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

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

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

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

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  display: flex;
  flex-direction: row !important;
}

.flex-column {
  display: flex;
  flex-direction: column !important;
}

.flex-row-reverse {
  display: flex;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  display: flex;
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

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

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

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

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

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

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

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

.m-5 {
  margin: 5px !important;
}

.m-10 {
  margin: 10px !important;
}

.m-15 {
  margin: 15px !important;
}

.m-20 {
  margin: 20px !important;
}

.m-25 {
  margin: 25px !important;
}

.m-30 {
  margin: 30px !important;
}

.m-40 {
  margin: 40px !important;
}

.m-50 {
  margin: 50px !important;
}

.m-60 {
  margin: 60px !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-5 {
  margin-right: 5px !important;
  margin-left: 5px !important;
}

.mx-10 {
  margin-right: 10px !important;
  margin-left: 10px !important;
}

.mx-15 {
  margin-right: 15px !important;
  margin-left: 15px !important;
}

.mx-20 {
  margin-right: 20px !important;
  margin-left: 20px !important;
}

.mx-25 {
  margin-right: 25px !important;
  margin-left: 25px !important;
}

.mx-30 {
  margin-right: 30px !important;
  margin-left: 30px !important;
}

.mx-40 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

.mx-50 {
  margin-right: 50px !important;
  margin-left: 50px !important;
}

.mx-60 {
  margin-right: 60px !important;
  margin-left: 60px !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.my-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.my-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.my-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.my-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.my-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.my-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.ml-auto {
  margin-left: auto !important;
}

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

.p-5 {
  padding: 5px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-25 {
  padding: 25px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-50 {
  padding: 50px !important;
}

.p-60 {
  padding: 60px !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-5 {
  padding-right: 5px !important;
  padding-left: 5px !important;
}

.px-10 {
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.px-15 {
  padding-right: 15px !important;
  padding-left: 15px !important;
}

.px-20 {
  padding-right: 20px !important;
  padding-left: 20px !important;
}

.px-25 {
  padding-right: 25px !important;
  padding-left: 25px !important;
}

.px-30 {
  padding-right: 30px !important;
  padding-left: 30px !important;
}

.px-40 {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

.px-50 {
  padding-right: 50px !important;
  padding-left: 50px !important;
}

.px-60 {
  padding-right: 60px !important;
  padding-left: 60px !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.py-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.py-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-60 {
  padding-left: 60px !important;
}


.fw-100,
.fw-lighter {
  font-weight: 100 !important;
}

.fw-300,
.fw-light {
  font-weight: 300 !important;
}

.fw-400,
.fw-normal {
  font-weight: 400 !important;
}

.fw-500,
.fw-medium {
  font-weight: 500 !important;
}

.fw-700,
.fw-bold {
  font-weight: 700 !important;
}

.fw-900,
.fw-bolder {
  font-weight: 900 !important;
}

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

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

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

/* 텍스트 색상 관련 */
.text-black {
  color: #111 !important;
}

.text-black-50 {
  color: rgba(17, 17, 17, 0.5) !important;
}

.text-border {
  color: var(--colorD) !important;
}

.text-basic {
  color: #333 !important;
}

.text-cont {
  color: #555 !important;
}

.text-danger {
  color: var(--red) !important;
}

.text-info {
  color: var(--color5) !important;
}

.text-gray {
  color: var(--color6) !important;
}

.text-point {
  color: var(--theme) !important;
}

.text-point2 {
  color: var(--theme2) !important;
}

.text-point3 {
  color: var(--theme3) !important;
}

.text-point4 {
  color: var(--theme4) !important;
}

.text-primary {
  color: var(--theme8) !important;
}

.text-red {
  color: #a02013 !important;
}

.text-secondary {
  color: #666 !important;
}

.text-success {
  color: #198754 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-white {
  color: var(--colorF) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-yellow {
  color: #dea82a !important;
}

.text-blur {
  color: #eaeaea !important;
}

.text-reset {
  color: inherit !important;
}

/* 텍스트 크기 및 변환 관련 */
.text-capitalize {
  text-transform: capitalize !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

/* 텍스트 정렬 관련 */
.text-center {
  text-align: center !important;
}

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

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

/* 텍스트 상태 관련 */
.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.help-info {
  position: relative;
  font-weight: 500;
  display: block;
  align-items: center;
  gap: 5px;
  background: var(--bgFL);
  padding: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.help-info::before {
  content: "i";
  color: var(--colorF);
  background: var(--color9);
  width: 10px;
  height: 10px;
  text-align: center;
  padding: 10px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 13px;
  margin-right: 5px;
}

.help-info.red::before {
  background: var(--red);
}

.help-info.theme::before {
  background: var(--theme);
}

.help-info p {
  display: block;
  margin-top: 10px;
  color: var(--color5);
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .help-info {
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 520px) {
  .help-info {
    font-size: 14px;
  }
}




.gray-info {
  position: relative;
  font-weight: 500;
  display: block;
  align-items: center;
  gap: 5px;
  background: var(--bgFL);
  padding: 10px;
  border-radius: 5px;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto;
  font-size: 15px;
}




.gray-info p {
  color: var(--color5);
}

@media screen and (max-width: 1024px) {
  .gray-info {
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.2;
  }
}



.question-info {
  position: relative;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  overflow: hidden;
  line-height: 1.2;
}

.question-info::before {
  content: "?";
  color: var(--colorF);
  background: var(--color9);
  width: 10px;
  height: 10px;
  text-align: center;
  padding: 10px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 13px;
}



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

.bg-basic {
  background-color: var(--colorF5) !important;
}

.bg-primary {
  background-color: #F7F7FB !important;
}


.bg-cont {
  background-color: #555 !important;
}

.bg-gray {
  background-color: var(--light-gray) !important;
}


.bg-border {
  background-color: var(--colorD) !important;
}

.bg-point {
  background-color: var(--theme2) !important;
}

.bg-point2 {
  background-color: #9a3175 !important;
}

.bg-blur {
  background-color: #eaeaea !important;
}

.bg-white {
  background-color: var(--colorF) !important;
}

.bg-red {
  background-color: #a02013 !important;
}

.bg-yellow {
  background-color: #dea82a !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.select-point th,
.select-point td {
  color: var(--primary) !important;
  background: var(--bgFL) !important;
}


.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.gap1 {
  gap: 0.25rem;
}

.gap2 {
  gap: 0.5rem;
}

.gap3 {
  gap: 1rem;
}

.gap4 {
  gap: 1.25rem;
}

.gap5 {
  gap: 1.5rem;
}

.gap6 {
  gap: 1.75rem;
}

.gap7 {
  gap: 2rem;
}

.gap8 {
  gap: 2.25rem;
}

.pc_v {
  display: block !important;
}

.mo_v {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .pc_v {
    display: none !important;
  }

  .mo_v {
    display: block !important;
  }

  .mo_w50 {
    width: 50% !important;
  }

  .mo_w100 {
    width: 100% !important;
  }

  .m-pt0 {
    padding-top: 0 !important;
  }

  .m-pl0 {
    padding-left: 0 !important;
  }

  .m-pb0 {
    padding-bottom: 0 !important;
  }

  .m-pr0 {
    padding-right: 0 !important;
  }
}

@media screen and (max-width: 520px) {}


@media print {}

/* 프린트에 필요한 콘텐츠는 보여주지않기 */
@media print {
  body {
    width: auto !important;
    min-width: auto !important;
  }

  header .gnb-all,
  .nav-tab-wrap,
  header * {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }
}