/* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap"); */

@font-face {
  font-style: normal;
  font-weight: 300;
  font-family: "Noto Sans KR";
  src: url(../font/NotoSansKR-Light.otf);
}
@font-face {
  font-style: normal;
  font-weight: 400;
  font-family: "Noto Sans KR";
  src: url(../font/NotoSansKR-Regular.otf);
}
@font-face {
  font-style: normal;
  font-weight: 500;
  font-family: "Noto Sans KR";
  src: url(../font/NotoSansKR-Medium.otf);
}
@font-face {
  font-style: normal;
  font-weight: 700;
  font-family: "Noto Sans KR";
  src: url(../font/NotoSansKR-Bold.otf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans KR", sans-serif;
  letter-spacing: -0.2px;
}
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
}
ul,
li,
il {
  list-style: none;
}
img {
  vertical-align: top;
}

html,
body,
.wrap {
  width: 100%;
  height: 100%;
  color: #111111;
  font-size: 10px;
}

table {
  border-spacing: 0px;
  border-collapse: collapse;
}

button,
select,
input {
  border: none;
  outline: none;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button {
  padding: 0;
  background: inherit;
}
button > span {
  position: relative;
  width: auto;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  cursor: pointer;
}

.border8 {
  border-radius: 8px;
}
.border10 {
  border-radius: 1rem;
}
select:focus::-ms-value {
  background-color: transparent;
  color: #222;
}

select::-ms-expand {
  display: none;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*---------------------------------flex-----------------------------------*/
.flex {
  display: flex;
}
.inline_flex {
  display: inline-flex;
}

.flex.align {
  align-items: center;
}
.flex.column {
  flex-direction: column;
}
.flex.center {
  justify-content: center;
}
.flex.end {
  justify-content: end;
}
.flex.between {
  justify-content: space-between;
}

/* 기존 호환 클래스 */
.flex_center {
  display: flex;
  justify-content: center !important;
  align-items: center;
}
.flex_start {
  display: flex;
  align-items: center;
  justify-content: start !important;
}
.flex_column {
  flex-direction: column;
}
.flex_row {
  flex-direction: row !important;
}
.flex_nowrap {
  flex-wrap: nowrap !important;
}

.gap2 {
  gap: 0.2rem;
}
.gap4 {
  gap: 0.4rem;
}
.gap6 {
  gap: 0.6rem;
}
.gap8 {
  gap: 0.8rem;
}

.gap10 {
  gap: 1rem;
}
.gap12 {
  gap: 1.2rem;
}
.gap14 {
  gap: 1.4rem;
}
.gap16 {
  gap: 1.6rem;
}
.gap18 {
  gap: 1.8rem;
}

.gap20 {
  gap: 2rem;
}
.gap22 {
  gap: 2.2rem;
}
.gap24 {
  gap: 2.4rem;
}
.gap26 {
  gap: 2.6rem;
}
.gap28 {
  gap: 2.8rem;
}

.gap30 {
  gap: 3rem;
}
.gap32 {
  gap: 3.2rem;
}
.gap34 {
  gap: 3.4rem;
}
.gap36 {
  gap: 3.6rem;
}
.gap38 {
  gap: 3.8rem;
}

.gap40 {
  gap: 4rem;
}
.gap42 {
  gap: 4.2rem;
}
.gap44 {
  gap: 4.4rem;
}
.gap46 {
  gap: 4.6rem;
}
.gap48 {
  gap: 4.8rem;
}
.gap50 {
  gap: 5rem;
}

.gap100 {
  gap: 10rem;
}

/*---------------------------------textarea-----------------------------------*/
textarea {
  width: 100%;
  min-height: 10rem;
  resize: none;
  border: 1px solid #dfdfdf;
  outline: none;
  border-radius: 2px;
  padding: 0.6rem 1rem;
  vertical-align: middle;
  font-size: 1.6rem;
}

textarea::placeholder {
  font-size: 1.8rem;
  color: #d9d9d9;
}

.overflow_h {
  overflow: hidden !important;
}
.overflow_xh {
  overflow-x: hidden !important;
}
.overflow_yh {
  overflow-y: hidden !important;
}
.overflow_x {
  overflow-x: auto !important;
}
.overflow_y {
  overflow-y: auto !important;
}

/*--------------------input----------------------*/
input[type="text"],
input[type="password"],
input[type="number"] {
  position: relative;
  cursor: pointer;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder {
  color: #d9d9d9;
  font-size: 1.8rem;
}

input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
}

label input[type="radio"],
label input[type="checkbox"] {
  cursor: pointer;
}

/* border none */
.border_none {
  border: none !important;
}

.border_none_rt {
  border-right: none !important;
}

.border_none_lf {
  border-left: none !important;
}

.border_none_tp {
  border-top: none !important;
}

.border_none_bt {
  border-bottom: none !important;
}

/*--------------------------------display--------------------------------*/
.display_block {
  display: block !important;
}
.display_inline {
  display: inline-block !important;
}
.display_none {
  display: none !important;
}

/*------------------------------vertical-align-------------------------------*/
.vertical_t {
  vertical-align: top !important;
}
.vertical_m {
  vertical-align: middle !important;
}
.vertical_b {
  vertical-align: bottom !important;
}

/*---------------------------------font----------------------------------*/
.word_keep {
  word-break: keep-all !important;
}
.word_break {
  word-break: break-all !important;
}
.white_nowrap {
  white-space: nowrap !important;
}
.white_normal {
  white-space: normal !important;
}
.ellipsis {
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis;
}

/* 기존 호환 클래스 */
.word_bk {
  word-break: keep-all !important;
}
.white_space {
  white-space: nowrap !important;
}
.white_space_normal {
  white-space: normal !important;
}

/* font-size */
.fs0 {
  font-size: 0 !important;
}
.fs10 {
  font-size: 1rem !important;
}
.fs11 {
  font-size: 1.1rem !important;
}
.fs12 {
  font-size: 1.2rem !important;
}
.fs14 {
  font-size: 1.4rem !important;
}
.fs16 {
  font-size: 1.6rem !important;
}
.fs18 {
  font-size: 1.8rem !important;
}
.fs20 {
  font-size: 2rem !important;
}
.fs21 {
  font-size: 2.1rem !important;
}
.fs22 {
  font-size: 2.2rem !important;
}
.fs24 {
  font-size: 2.4rem !important;
}
.fs26 {
  font-size: 2.6rem !important;
}
.fs28 {
  font-size: 2.8rem !important;
}
.fs30 {
  font-size: 3rem !important;
}
.fs32 {
  font-size: 3.2rem !important;
}
.fs36 {
  font-size: 3.6rem !important;
}
.fs40 {
  font-size: 4rem !important;
}
.fs42 {
  font-size: 4.2rem !important;
}
.fs45 {
  font-size: 4.5rem !important;
}
.fs46 {
  font-size: 4.6rem !important;
}
.fs48 {
  font-size: 4.8rem !important;
}
.fs50 {
  font-size: 5rem !important;
}

/* font-weight */
.fw_100 {
  font-weight: 100 !important;
}
.fw_300 {
  font-weight: 300 !important;
}
.fw_400 {
  font-weight: 400 !important;
}
.fw_500 {
  font-weight: 500 !important;
}
.fw_600 {
  font-weight: 600 !important;
}
.fw_700 {
  font-weight: 700 !important;
}
.fw_800 {
  font-weight: 800 !important;
}
.fw_900 {
  font-weight: 900 !important;
}

/* 기존 호환 클래스 */
.fw_thin {
  font-weight: 300 !important;
}
.fw_regular {
  font-weight: 400 !important;
}
.fw_medium {
  font-weight: 500 !important;
}
.fw_bold {
  font-weight: 700 !important;
}

/*------------------------------text_align--------------------------------*/
.text_center {
  text-align: center !important;
}
.text_left {
  text-align: left !important;
}
.text_right {
  text-align: right !important;
}

/*------------------------------line-height-------------------------------*/
.lh12 {
  line-height: 1.2rem !important;
}
.lh14 {
  line-height: 1.4rem !important;
}
.lh16 {
  line-height: 1.6rem !important;
}
.lh18 {
  line-height: 1.8rem !important;
}
.lh20 {
  line-height: 2rem !important;
}
.lh24 {
  line-height: 2.4rem !important;
}
.lh26 {
  line-height: 2.6rem !important;
}
.lh28 {
  line-height: 2.8rem !important;
}
.lh30 {
  line-height: 3rem !important;
}
.lh32 {
  line-height: 3.2rem !important;
}
.lh36 {
  line-height: 3.6rem !important;
}
.lh38 {
  line-height: 3.8rem !important;
}
.lh40 {
  line-height: 4rem !important;
}
.lh42 {
  line-height: 4.2rem !important;
}
.lh46 {
  line-height: 4.6rem !important;
}
.lh48 {
  line-height: 4.8rem !important;
}
.lh50 {
  line-height: 5rem !important;
}
.lh52 {
  line-height: 5.2rem !important;
}

/*---------------------------------width----------------------------------*/
.width_auto {
  width: auto !important;
}
.width_fit {
  width: fit-content !important;
}
.width_1 {
  width: 1% !important;
}
.width_1_td {
  width: 1% !important;
  min-width: 4rem;
  max-width: 4rem;
}
.width_10 {
  width: 10% !important;
}
.width_15 {
  width: 15% !important;
}
.width_20 {
  width: 20% !important;
}
.width_25 {
  width: 25% !important;
}
.width_30 {
  width: 30% !important;
}
.width_33 {
  width: 33% !important;
}
.width_35 {
  width: 35% !important;
}
.width_38 {
  width: 38% !important;
}
.width_40 {
  width: 40% !important;
}
.width_45 {
  width: 45% !important;
}
.width_49 {
  width: 49% !important;
}
.width_495 {
  width: 49.5% !important;
}
.width_50 {
  width: 50% !important;
}
.width_60 {
  width: 60% !important;
}
.width_65 {
  width: 65% !important;
}
.width_70 {
  width: 70% !important;
}
.width_75 {
  width: 75% !important;
}
.width_80 {
  width: 80% !important;
}
.width_85 {
  width: 85% !important;
}
.width_90 {
  width: 90% !important;
}
.width_100 {
  width: 100% !important;
}

/* 기존 호환 클래스 */
.width0 { width: 0% !important; }
.width1 { width: 1% !important; }
.width1_td { width: 1% !important; min-width: 4rem; max-width: 4rem; }
.width2 { width: 2% !important; }
.width4 { width: 4% !important; }
.width5 { width: 5% !important; }
.width6 { width: 6% !important; }
.width8 { width: 8% !important; }
.width10 { width: 10% !important; }
.width15 { width: 15% !important; }
.width20 { width: 20% !important; }
.width25 { width: 25% !important; }
.width30 { width: 30% !important; }
.width33 { width: 33% !important; }
.width35 { width: 35% !important; }
.width40 { width: 40% !important; }
.width45 { width: 45% !important; }
.width46 { width: 46% !important; }
.width48 { width: 48% !important; }
.width49 { width: 49% !important; }
.width50 { width: 50% !important; }
.width60 { width: 60% !important; }
.width65 { width: 65% !important; }
.width70 { width: 70% !important; }
.width75 { width: 75% !important; }
.width80 { width: 80% !important; }
.width85 { width: 85% !important; }
.width90 { width: 90% !important; }
.width92 { width: 92% !important; }
.width94 { width: 94% !important; }
.width95 { width: 95% !important; }
.width96 { width: 96% !important; }
.width98 { width: 98% !important; }
.width100 { width: 100% !important; }

.width_gap10 {
  width: calc(50% - 0.5rem) !important;
}
.width_gap12 {
  width: calc(50% - 0.6rem) !important;
}
.width_gap16 {
  width: calc(50% - 0.8rem) !important;
}
.width_gap18 {
  width: calc(50% - 0.9rem) !important;
}
.width_gap20 {
  width: calc(50% - 1rem) !important;
}
.width_gap24 {
  width: calc(50% - 1.2rem) !important;
}
.width_gap28 {
  width: calc(50% - 1.4rem) !important;
}
.width_gap32 {
  width: calc(50% - 1.6rem) !important;
}
.width_gap36 {
  width: calc(50% - 1.8rem) !important;
}
.width_gap40 {
  width: calc(50% - 2rem) !important;
}
.width_gap42 {
  width: calc(50% - 2.1rem) !important;
}
.width_gap46 {
  width: calc(50% - 2.3rem) !important;
}
.width_gap48 {
  width: calc(50% - 2.4rem) !important;
}

/*---------------------------------margin---------------------------------*/
.mc {
  margin: 0 auto !important;
}
.m0 {
  margin: 0px !important;
}

.mt_mi2 {
  margin-top: -2px !important;
}
.mt0 {
  margin-top: 0px !important;
}
.mt2 {
  margin-top: 0.2rem !important;
}
.mt3 {
  margin-top: 0.3rem !important;
}
.mt4 {
  margin-top: 0.4rem !important;
}
.mt5 {
  margin-top: 0.5rem !important;
}
.mt6 {
  margin-top: 0.6rem !important;
}
.mt8 {
  margin-top: 0.8rem !important;
}
.mt10 {
  margin-top: 1rem !important;
}
.mt12 {
  margin-top: 1.2rem !important;
}
.mt14 {
  margin-top: 1.4rem !important;
}
.mt16 {
  margin-top: 1.6rem !important;
}
.mt18 {
  margin-top: 1.8rem !important;
}
.mt20 {
  margin-top: 2rem !important;
}
.mt22 {
  margin-top: 2.2rem !important;
}
.mt24 {
  margin-top: 2.4rem !important;
}
.mt25 {
  margin-top: 2.5rem !important;
}
.mt26 {
  margin-top: 2.6rem !important;
}
.mt28 {
  margin-top: 2.8rem !important;
}
.mt30 {
  margin-top: 3rem !important;
}
.mt32 {
  margin-top: 3.2rem !important;
}
.mt34 {
  margin-top: 3.4rem !important;
}
.mt35 {
  margin-top: 3.5rem !important;
}
.mt36 {
  margin-top: 3.6rem !important;
}
.mt38 {
  margin-top: 3.8rem !important;
}
.mt40 {
  margin-top: 4rem !important;
}
.mt42 {
  margin-top: 4.2rem !important;
}
.mt44 {
  margin-top: 4.4rem !important;
}
.mt45 {
  margin-top: 4.5rem !important;
}
.mt46 {
  margin-top: 4.6rem !important;
}
.mt48 {
  margin-top: 4.8rem !important;
}
.mt50 {
  margin-top: 5rem !important;
}
.mt52 {
  margin-top: 5.2rem !important;
}
.mt54 {
  margin-top: 5.4rem !important;
}
.mt55 {
  margin-top: 5.5rem !important;
}
.mt56 {
  margin-top: 5.6rem !important;
}
.mt58 {
  margin-top: 5.8rem !important;
}
.mt60 {
  margin-top: 6rem !important;
}

.mb0 {
  margin-bottom: 0px !important;
}
.mb2 {
  margin-bottom: 0.2rem !important;
}
.mb3 {
  margin-bottom: 0.3rem !important;
}
.mb4 {
  margin-bottom: 0.4rem !important;
}
.mb5 {
  margin-bottom: 0.5rem !important;
}
.mb6 {
  margin-bottom: 0.6rem !important;
}
.mb8 {
  margin-bottom: 0.8rem !important;
}
.mb10 {
  margin-bottom: 1rem !important;
}
.mb12 {
  margin-bottom: 1.2rem !important;
}
.mb14 {
  margin-bottom: 1.4rem !important;
}
.mb16 {
  margin-bottom: 1.6rem !important;
}
.mb18 {
  margin-bottom: 1.8rem !important;
}
.mb20 {
  margin-bottom: 2rem !important;
}
.mb22 {
  margin-bottom: 2.2rem !important;
}
.mb24 {
  margin-bottom: 2.4rem !important;
}
.mb25 {
  margin-bottom: 2.5rem !important;
}
.mb26 {
  margin-bottom: 2.6rem !important;
}
.mb28 {
  margin-bottom: 2.8rem !important;
}
.mb30 {
  margin-bottom: 3rem !important;
}
.mb32 {
  margin-bottom: 3.2rem !important;
}
.mb34 {
  margin-bottom: 3.4rem !important;
}
.mb35 {
  margin-bottom: 3.5rem !important;
}
.mb36 {
  margin-bottom: 3.6rem !important;
}
.mb38 {
  margin-bottom: 3.8rem !important;
}
.mb40 {
  margin-bottom: 4rem !important;
}
.mb42 {
  margin-bottom: 4.2rem !important;
}
.mb44 {
  margin-bottom: 4.4rem !important;
}
.mb45 {
  margin-bottom: 4.5rem !important;
}
.mb46 {
  margin-bottom: 4.6rem !important;
}
.mb48 {
  margin-bottom: 4.8rem !important;
}
.mb50 {
  margin-bottom: 5rem !important;
}
.mb52 {
  margin-bottom: 5.2rem !important;
}
.mb53 {
  margin-bottom: 5.3rem !important;
}
.mb54 {
  margin-bottom: 5.4rem !important;
}
.mb55 {
  margin-bottom: 5.5rem !important;
}
.mb56 {
  margin-bottom: 5.6rem !important;
}
.mb58 {
  margin-bottom: 5.8rem !important;
}
.mb60 {
  margin-bottom: 6rem !important;
}

.ml1per {
  margin-left: 1% !important;
}
.ml2per {
  margin-left: 2% !important;
}

.ml0 {
  margin-left: 0px !important;
}
.ml2 {
  margin-left: 0.2rem !important;
}
.ml3 {
  margin-left: 0.3rem !important;
}
.ml4 {
  margin-left: 0.4rem !important;
}
.ml5 {
  margin-left: 0.5rem !important;
}
.ml6 {
  margin-left: 0.6rem !important;
}
.ml8 {
  margin-left: 0.8rem !important;
}
.ml10 {
  margin-left: 1rem !important;
}
.ml12 {
  margin-left: 1.2rem !important;
}
.ml14 {
  margin-left: 1.4rem !important;
}
.ml16 {
  margin-left: 1.6rem !important;
}
.ml18 {
  margin-left: 1.8rem !important;
}
.ml20 {
  margin-left: 2rem !important;
}
.ml22 {
  margin-left: 2.2rem !important;
}
.ml24 {
  margin-left: 2.4rem !important;
}
.ml25 {
  margin-left: 2.5rem !important;
}
.ml26 {
  margin-left: 2.6rem !important;
}
.ml28 {
  margin-left: 2.8rem !important;
}
.ml30 {
  margin-left: 3rem !important;
}
.ml32 {
  margin-left: 3.2rem !important;
}
.ml34 {
  margin-left: 3.4rem !important;
}
.ml35 {
  margin-left: 3.5rem !important;
}
.ml36 {
  margin-left: 3.6rem !important;
}
.ml38 {
  margin-left: 3.8rem !important;
}
.ml40 {
  margin-left: 4rem !important;
}
.ml42 {
  margin-left: 4.2rem !important;
}
.ml44 {
  margin-left: 4.4rem !important;
}
.ml45 {
  margin-left: 4.5rem !important;
}
.ml46 {
  margin-left: 4.6rem !important;
}
.ml48 {
  margin-left: 4.8rem !important;
}
.ml50 {
  margin-left: 5rem !important;
}
.ml52 {
  margin-left: 5.2rem !important;
}
.ml54 {
  margin-left: 5.4rem !important;
}
.ml55 {
  margin-left: 5.5rem !important;
}
.ml56 {
  margin-left: 5.6rem !important;
}
.ml58 {
  margin-left: 5.8rem !important;
}
.ml60 {
  margin-left: 6rem !important;
}
.ml66 {
  margin-left: 6.6rem !important;
}
.ml70 {
  margin-left: 7rem !important;
}
.ml80 {
  margin-left: 8rem !important;
}
.ml96 {
  margin-left: 9.6rem !important;
}

.mr0 {
  margin-right: 0px !important;
}
.mr2 {
  margin-right: 0.2rem !important;
}
.mr3 {
  margin-right: 0.3rem !important;
}
.mr4 {
  margin-right: 0.4rem !important;
}
.mr5 {
  margin-right: 0.5rem !important;
}
.mr6 {
  margin-right: 0.6rem !important;
}
.mr8 {
  margin-right: 0.8rem !important;
}
.mr10 {
  margin-right: 1rem !important;
}
.mr12 {
  margin-right: 1.2rem !important;
}
.mr14 {
  margin-right: 1.4rem !important;
}
.mr16 {
  margin-right: 1.6rem !important;
}
.mr18 {
  margin-right: 1.8rem !important;
}
.mr20 {
  margin-right: 2rem !important;
}
.mr22 {
  margin-right: 2.2rem !important;
}
.mr24 {
  margin-right: 2.4rem !important;
}
.mr25 {
  margin-right: 2.5rem !important;
}
.mr26 {
  margin-right: 2.6rem !important;
}
.mr28 {
  margin-right: 2.8rem !important;
}
.mr30 {
  margin-right: 3rem !important;
}
.mr32 {
  margin-right: 3.2rem !important;
}
.mr34 {
  margin-right: 3.4rem !important;
}
.mr35 {
  margin-right: 3.5rem !important;
}
.mr36 {
  margin-right: 3.6rem !important;
}
.mr38 {
  margin-right: 3.8rem !important;
}
.mr40 {
  margin-right: 4rem !important;
}
.mr42 {
  margin-right: 4.2rem !important;
}
.mr44 {
  margin-right: 4.4rem !important;
}
.mr45 {
  margin-right: 4.5rem !important;
}
.mr46 {
  margin-right: 4.6rem !important;
}
.mr48 {
  margin-right: 4.8rem !important;
}
.mr50 {
  margin-right: 5rem !important;
}
.mr52 {
  margin-right: 5.2rem !important;
}
.mr54 {
  margin-right: 5.4rem !important;
}
.mr55 {
  margin-right: 5.5rem !important;
}
.mr56 {
  margin-right: 5.6rem !important;
}
.mr58 {
  margin-right: 5.8rem !important;
}
.mr60 {
  margin-right: 6rem !important;
}
.mr70 {
  margin-right: 7rem !important;
}
.mr80 {
  margin-right: 8rem !important;
}

/*----------------padding------------------*/
.p0 {
  padding: 0px !important;
}
.p10 {
  padding: 1rem;
}
.pt0 {
  padding-top: 0px !important;
}
.pt2 {
  padding-top: 0.2rem !important;
}
.pt3 {
  padding-top: 0.3rem !important;
}
.pt4 {
  padding-top: 0.4rem !important;
}
.pt5 {
  padding-top: 0.5rem !important;
}
.pt6 {
  padding-top: 0.6rem !important;
}
.pt8 {
  padding-top: 0.8rem !important;
}
.pt10 {
  padding-top: 1rem !important;
}
.pt12 {
  padding-top: 1.2rem !important;
}
.pt14 {
  padding-top: 1.4rem !important;
}
.pt16 {
  padding-top: 1.6rem !important;
}
.pt18 {
  padding-top: 1.8rem !important;
}
.pt20 {
  padding-top: 2rem !important;
}
.pt22 {
  padding-top: 2.2rem !important;
}
.pt24 {
  padding-top: 2.4rem !important;
}
.pt25 {
  padding-top: 2.5rem !important;
}
.pt26 {
  padding-top: 2.6rem !important;
}
.pt28 {
  padding-top: 2.8rem !important;
}
.pt30 {
  padding-top: 3rem !important;
}
.pt32 {
  padding-top: 3.2rem !important;
}
.pt34 {
  padding-top: 3.4rem !important;
}
.pt35 {
  padding-top: 3.5rem !important;
}
.pt36 {
  padding-top: 3.6rem !important;
}
.pt38 {
  padding-top: 3.8rem !important;
}
.pt40 {
  padding-top: 4rem !important;
}
.pt42 {
  padding-top: 4.2rem !important;
}
.pt44 {
  padding-top: 4.4rem !important;
}
.pt45 {
  padding-top: 4.5rem !important;
}
.pt46 {
  padding-top: 4.6rem !important;
}
.pt48 {
  padding-top: 4.8rem !important;
}
.pt50 {
  padding-top: 5rem !important;
}
.pt52 {
  padding-top: 5.2rem !important;
}
.pt54 {
  padding-top: 5.4rem !important;
}
.pt55 {
  padding-top: 5.5rem !important;
}
.pt56 {
  padding-top: 5.6rem !important;
}
.pt58 {
  padding-top: 5.8rem !important;
}
.pt60 {
  padding-top: 6rem !important;
}

.pb0 {
  padding-bottom: 0px !important;
}
.pb2 {
  padding-bottom: 0.2rem !important;
}
.pb3 {
  padding-bottom: 0.3rem !important;
}
.pb4 {
  padding-bottom: 0.4rem !important;
}
.pb5 {
  padding-bottom: 0.5rem !important;
}
.pb6 {
  padding-bottom: 0.6rem !important;
}
.pb8 {
  padding-bottom: 0.8rem !important;
}
.pb10 {
  padding-bottom: 1rem !important;
}
.pb12 {
  padding-bottom: 1.2rem !important;
}
.pb14 {
  padding-bottom: 1.4rem !important;
}
.pb16 {
  padding-bottom: 1.6rem !important;
}
.pb18 {
  padding-bottom: 1.8rem !important;
}
.pb20 {
  padding-bottom: 2rem !important;
}
.pb22 {
  padding-bottom: 2.2rem !important;
}
.pb24 {
  padding-bottom: 2.4rem !important;
}
.pb25 {
  padding-bottom: 2.5rem !important;
}
.pb26 {
  padding-bottom: 2.6rem !important;
}
.pb28 {
  padding-bottom: 2.8rem !important;
}
.pb30 {
  padding-bottom: 3rem !important;
}
.pb32 {
  padding-bottom: 3.2rem !important;
}
.pb34 {
  padding-bottom: 3.4rem !important;
}
.pb35 {
  padding-bottom: 3.5rem !important;
}
.pb36 {
  padding-bottom: 3.6rem !important;
}
.pb38 {
  padding-bottom: 3.8rem !important;
}
.pb40 {
  padding-bottom: 4rem !important;
}
.pb42 {
  padding-bottom: 4.2rem !important;
}
.pb44 {
  padding-bottom: 4.4rem !important;
}
.pb45 {
  padding-bottom: 4.5rem !important;
}
.pb46 {
  padding-bottom: 4.6rem !important;
}
.pb48 {
  padding-bottom: 4.8rem !important;
}
.pb50 {
  padding-bottom: 5rem !important;
}
.pb52 {
  padding-bottom: 5.2rem !important;
}
.pb54 {
  padding-bottom: 5.4rem !important;
}
.pb55 {
  padding-bottom: 5.5rem !important;
}
.pb56 {
  padding-bottom: 5.6rem !important;
}
.pb58 {
  padding-bottom: 5.8rem !important;
}
.pb60 {
  padding-bottom: 6rem !important;
}
.pb70 {
  padding-bottom: 7rem !important;
}

.pl0 {
  padding-left: 0px !important;
}
.pl2 {
  padding-left: 0.2rem !important;
}
.pl3 {
  padding-left: 0.3rem !important;
}
.pl4 {
  padding-left: 0.4rem !important;
}
.pl5 {
  padding-left: 0.5rem !important;
}
.pl6 {
  padding-left: 0.6rem !important;
}
.pl8 {
  padding-left: 0.8rem !important;
}
.pl10 {
  padding-left: 1rem !important;
}
.pl12 {
  padding-left: 1.2rem !important;
}
.pl14 {
  padding-left: 1.4rem !important;
}
.pl16 {
  padding-left: 1.6rem !important;
}
.pl18 {
  padding-left: 1.8rem !important;
}
.pl20 {
  padding-left: 2rem !important;
}
.pl22 {
  padding-left: 2.2rem !important;
}
.pl24 {
  padding-left: 2.4rem !important;
}
.pl25 {
  padding-left: 2.5rem !important;
}
.pl26 {
  padding-left: 2.6rem !important;
}
.pl28 {
  padding-left: 2.8rem !important;
}
.pl30 {
  padding-left: 3rem !important;
}
.pl32 {
  padding-left: 3.2rem !important;
}
.pl34 {
  padding-left: 3.4rem !important;
}
.pl35 {
  padding-left: 3.5rem !important;
}
.pl36 {
  padding-left: 3.6rem !important;
}
.pl38 {
  padding-left: 3.8rem !important;
}
.pl40 {
  padding-left: 4rem !important;
}
.pl42 {
  padding-left: 4.2rem !important;
}
.pl44 {
  padding-left: 4.4rem !important;
}
.pl45 {
  padding-left: 4.5rem !important;
}
.pl46 {
  padding-left: 4.6rem !important;
}
.pl48 {
  padding-left: 4.8rem !important;
}
.pl50 {
  padding-left: 5rem !important;
}
.pl52 {
  padding-left: 5.2rem !important;
}
.pl54 {
  padding-left: 5.4rem !important;
}
.pl55 {
  padding-left: 5.5rem !important;
}
.pl56 {
  padding-left: 5.6rem !important;
}
.pl58 {
  padding-left: 5.8rem !important;
}
.pl60 {
  padding-left: 6rem !important;
}
.pl74 {
  padding-left: 7.4rem !important;
}
.pl86 {
  padding-left: 8.6rem !important;
}
.pl100 {
  padding-left: 10rem !important;
}

.pr0 {
  padding-right: 0px !important;
}
.pr2 {
  padding-right: 0.2rem !important;
}
.pr3 {
  padding-right: 0.3rem !important;
}
.pr4 {
  padding-right: 0.4rem !important;
}
.pr5 {
  padding-right: 0.5rem !important;
}
.pr6 {
  padding-right: 0.6rem !important;
}
.pr8 {
  padding-right: 0.8rem !important;
}
.pr10 {
  padding-right: 1rem !important;
}
.pr12 {
  padding-right: 1.2rem !important;
}
.pr14 {
  padding-right: 1.4rem !important;
}
.pr16 {
  padding-right: 1.6rem !important;
}
.pr18 {
  padding-right: 1.8rem !important;
}
.pr20 {
  padding-right: 2rem !important;
}
.pr22 {
  padding-right: 2.2rem !important;
}
.pr24 {
  padding-right: 2.4rem !important;
}
.pr25 {
  padding-right: 2.5rem !important;
}
.pr26 {
  padding-right: 2.6rem !important;
}
.pr28 {
  padding-right: 2.8rem !important;
}
.pr30 {
  padding-right: 3rem !important;
}
.pr32 {
  padding-right: 3.2rem !important;
}
.pr34 {
  padding-right: 3.4rem !important;
}
.pr35 {
  padding-right: 3.5rem !important;
}
.pr36 {
  padding-right: 3.6rem !important;
}
.pr38 {
  padding-right: 3.8rem !important;
}
.pr40 {
  padding-right: 4rem !important;
}
.pr42 {
  padding-right: 4.2rem !important;
}
.pr44 {
  padding-right: 4.4rem !important;
}
.pr45 {
  padding-right: 4.5rem !important;
}
.pr46 {
  padding-right: 4.6rem !important;
}
.pr48 {
  padding-right: 4.8rem !important;
}
.pr50 {
  padding-right: 5rem !important;
}
.pr52 {
  padding-right: 5.2rem !important;
}
.pr54 {
  padding-right: 5.4rem !important;
}
.pr55 {
  padding-right: 5.5rem !important;
}
.pr56 {
  padding-right: 5.6rem !important;
}
.pr58 {
  padding-right: 5.8rem !important;
}
.pr60 {
  padding-right: 6rem !important;
}
.pr100 {
  padding-right: 10rem !important;
}

/*------------------right&left---------------------*/
.ps_relative {
  position: relative;
}

.ps_right {
  position: absolute;
  right: 0;
}
.ps_right10 {
  position: absolute;
  right: 1rem;
}
.ps_right20 {
  position: absolute;
  right: 2rem;
}

.ps_left {
  position: absolute;
  left: 0;
}
.ps_left10 {
  position: absolute;
  left: 1rem;
}
.ps_left20 {
  position: absolute;
  left: 2rem;
}

.ps_top {
  position: absolute;
  top: 0;
}

.ps_bottom {
  position: absolute;
  bottom: 0;
}

.ps_t_center {
  top: 50%;
  transform: translateY(-50%);
}

.ps_l_center {
  left: 50%;
  transform: translateX(-50%);
}

.f_right {
  float: right;
}
.f_left {
  float: left;
}

.clear::after {
  clear: both;
  content: "";
  display: block;
}

/*------------------------------width-----------------------------------*/
.min_auto {
  min-width: auto !important;
}
.max_auto {
  max-width: none !important;
}
/* min-width */
.min_10 {
  min-width: 1rem !important;
}
.min_20 {
  min-width: 2rem !important;
}
.min_30 {
  min-width: 3rem !important;
}
.min_40 {
  min-width: 4rem !important;
}
.min_50 {
  min-width: 5rem !important;
}
.min_60 {
  min-width: 6rem !important;
}
.min_70 {
  min-width: 7rem !important;
}
.min_80 {
  min-width: 8rem !important;
}
.min_90 {
  min-width: 9rem !important;
}
.min_100 {
  min-width: 10rem !important;
}
.min_110 {
  min-width: 11rem !important;
}
.min_120 {
  min-width: 12rem !important;
}
.min_130 {
  min-width: 13rem !important;
}
.min_140 {
  min-width: 14rem !important;
}
.min_150 {
  min-width: 15rem !important;
}
.min_160 {
  min-width: 16rem !important;
}
.min_180 {
  min-width: 18rem !important;
}
.min_200 {
  min-width: 20rem !important;
}
.min_220 {
  min-width: 22rem !important;
}
.min_240 {
  min-width: 24rem !important;
}
.min_250 {
  min-width: 25rem !important;
}
.min_260 {
  min-width: 26rem !important;
}
.min_280 {
  min-width: 28rem !important;
}
.min_300 {
  min-width: 30rem !important;
}

/* 기존 호환 클래스 */
.min1 { min-width: 1rem !important; }
.min2 { min-width: 2rem !important; }
.min3 { min-width: 3rem !important; }
.min4 { min-width: 4rem !important; }
.min5 { min-width: 5rem !important; }
.min6 { min-width: 6rem !important; }
.min7 { min-width: 7rem !important; }
.min8 { min-width: 8rem !important; }
.min9 { min-width: 9rem !important; }
.min10 { min-width: 10rem !important; }
.min11 { min-width: 11rem !important; }
.min12 { min-width: 12rem !important; }
.min13 { min-width: 13rem !important; }
.min14 { min-width: 14rem !important; }
.min15 { min-width: 15rem !important; }
.min16 { min-width: 16rem !important; }
.min18 { min-width: 18rem !important; }
.min20 { min-width: 20rem !important; }
.min22 { min-width: 22rem !important; }
.min24 { min-width: 24rem !important; }
.min25 { min-width: 25rem !important; }
.min26 { min-width: 26rem !important; }
.min28 { min-width: 28rem !important; }
.min30 { min-width: 30rem !important; }
.min34 { min-width: 34rem !important; }
.min35 { min-width: 35rem !important; }
.min38 { min-width: 38rem !important; }
.min40 { min-width: 40rem !important; }
.min42 { min-width: 42rem !important; }
.min45 { min-width: 45rem !important; }
.min46 { min-width: 46rem !important; }
.min48 { min-width: 48rem !important; }
.min50 { min-width: 50rem !important; }
.min52 { min-width: 52rem !important; }
.min55 { min-width: 55rem !important; }
.min56 { min-width: 56rem !important; }
.min58 { min-width: 58rem !important; }
.min60 { min-width: 60rem !important; }
.min62 { min-width: 62rem !important; }
.min64 { min-width: 64rem !important; }
.min65 { min-width: 65rem !important; }
.min68 { min-width: 68rem !important; }
.min70 { min-width: 70rem !important; }

/* max-width */
.max_w100 {
  max-width: 10rem !important;
}
.max_w140 {
  max-width: 14rem !important;
}
.max_w160 {
  max-width: 16rem !important;
}
.max_w180 {
  max-width: 18rem !important;
}
.max_w190 {
  max-width: 19rem !important;
}
.max_w200 {
  max-width: 20rem !important;
}
.max_w210 {
  max-width: 21rem !important;
}
.max_w220 {
  max-width: 22rem !important;
}
.max_w240 {
  max-width: 24rem !important;
}
.max_w250 {
  max-width: 25rem !important;
}
.max_w260 {
  max-width: 26rem !important;
}
.max_w280 {
  max-width: 28rem !important;
}
.max_w300 {
  max-width: 30rem !important;
}
.max_w310 {
  max-width: 31rem !important;
}
.max_w320 {
  max-width: 32rem !important;
}
.max_w330 {
  max-width: 33rem !important;
}
.max_w340 {
  max-width: 34rem !important;
}
.max_w350 {
  max-width: 35rem !important;
}
.max_w360 {
  max-width: 36rem !important;
}
.max_w380 {
  max-width: 38rem !important;
}
.max_w390 {
  max-width: 39rem !important;
}
.max_w400 {
  max-width: 40rem !important;
}
.max_w420 {
  max-width: 42rem !important;
}
.max_w440 {
  max-width: 44rem !important;
}
.max_w500 {
  max-width: 50rem !important;
}
.max_w520 {
  max-width: 52rem !important;
}

/* fix-width */
.fix_w20 { width: 2rem !important; }
.fix_w40 { width: 4rem !important; }
.fix_w42 { width: 4.2rem !important; }
.fix_w44 { width: 4.4rem !important; }
.fix_w46 { width: 4.6rem !important; }
.fix_w60 { width: 6rem !important; }
.fix_w64 { width: 6.4rem !important; }
.fix_w68 { width: 6.8rem !important; }
.fix_w70 { width: 7rem !important; }
.fix_w72 { width: 7.2rem !important; }
.fix_w74 { width: 7.4rem !important; }
.fix_w76 { width: 7.6rem !important; }
.fix_w78 { width: 7.8rem !important; }
.fix_w80 { width: 8rem !important; }
.fix_w84 { width: 8.4rem !important; }
.fix_w92 { width: 9.2rem !important; }
.fix_w94 { width: 9.4rem !important; }
.fix_w100 { width: 10rem !important; }
.fix_w110 { width: 11rem !important; }
.fix_w112 { width: 11.2rem !important; }
.fix_w114 { width: 11.4rem !important; }
.fix_w116 { width: 11.6rem !important; }
.fix_w118 { width: 11.8rem !important; }
.fix_w120 { width: 12rem !important; }
.fix_w122 { width: 12.2rem !important; }
.fix_w124 { width: 12.4rem !important; }
.fix_w128 { width: 12.8rem !important; }
.fix_w140 { width: 14rem !important; }
.fix_w142 { width: 14.2rem !important; }
.fix_w144 { width: 14.4rem !important; }
.fix_w148 { width: 14.8rem !important; }
.fix_w152 { width: 15.2rem !important; }
.fix_w154 { width: 15.4rem !important; }
.fix_w160 { width: 16rem !important; }
.fix_w162 { width: 16.2rem !important; }
.fix_w164 { width: 16.4rem !important; }
.fix_w166 { width: 16.6rem !important; }
.fix_w180 { width: 18rem !important; }
.fix_w184 { width: 18.4rem !important; }
.fix_w186 { width: 18.6rem !important; }
.fix_w188 { width: 18.8rem !important; }
.fix_w190 { width: 19rem !important; }
.fix_w200 { width: 20rem !important; }
.fix_w202 { width: 20.2rem !important; }
.fix_w206 { width: 20.6rem !important; }
.fix_w218 { width: 21.8rem !important; }
.fix_w240 { width: 24rem !important; }
.fix_w242 { width: 24.2rem !important; }
.fix_w260 { width: 26rem !important; }
.fix_w268 { width: 26.8rem !important; }
.fix_w276 { width: 27.6rem !important; }
.fix_w280 { width: 28rem !important; }
.fix_w300 { width: 30rem !important; }
.fix_w314 { width: 31.4rem !important; }
.fix_w337 { width: 33.7rem !important; }
.fix_w340 { width: 34rem !important; }
.fix_w360 { width: 36rem !important; }
.fix_w380 { width: 38rem !important; }
.fix_w400 { width: 40rem !important; }
.fix_w420 { width: 42rem !important; }
.fix_w428 { width: 42.8rem !important; }
.fix_w430 { width: 43rem !important; }
.fix_w480 { width: 48rem !important; }
.fix_w486 { width: 48.6rem !important; }
.fix_w522 { width: 52.2rem !important; }
.fix_w540 { width: 54rem !important; }
.fix_w600 { width: 60rem !important; }
.fix_w640 { width: 64rem !important; }
.fix_w660 { width: 66rem !important; }
.fix_w680 { width: 68rem !important; }

/* fix-height */
.fix_h60 { height: 6rem !important; }
.fix_h64 { height: 6.4rem !important; }
.fix_h84 { height: 8.4rem !important; }
.fix_h92 { height: 9.2rem !important; }
.fix_h94 { height: 9.4rem !important; }
.fix_h100 { height: 10rem !important; }
.fix_h110 { height: 11rem !important; }
.fix_h112 { height: 11.2rem !important; }
.fix_h114 { height: 11.4rem !important; }
.fix_h116 { height: 11.6rem !important; }
.fix_h118 { height: 11.8rem !important; }
.fix_h120 { height: 12rem !important; }
.fix_h122 { height: 12.2rem !important; }
.fix_h124 { height: 12.4rem !important; }
.fix_h128 { height: 12.8rem !important; }
.fix_h140 { height: 14rem !important; }
.fix_h142 { height: 14.2rem !important; }
.fix_h144 { height: 14.4rem !important; }
.fix_h148 { height: 14.8rem !important; }
.fix_h152 { height: 15.2rem !important; }
.fix_h154 { height: 15.4rem !important; }
.fix_h162 { height: 16.2rem !important; }
.fix_h164 { height: 16.4rem !important; }
.fix_h166 { height: 16.6rem !important; }
.fix_h180 { height: 18rem !important; }
.fix_h200 { height: 20rem !important; }
.fix_h202 { height: 20.2rem !important; }
.fix_h218 { height: 21.8rem !important; }
.fix_h240 { height: 24rem !important; }
.fix_h260 { height: 26rem !important; }
.fix_h268 { height: 26.8rem !important; }
.fix_h276 { height: 27.6rem !important; }
.fix_h300 { height: 30rem !important; }
.fix_h314 { height: 31.4rem !important; }
.fix_h327 { height: 32.7rem !important; }
.fix_h337 { height: 33.7rem !important; }
.fix_h360 { height: 36rem !important; }
.fix_h380 { height: 38rem !important; }
.fix_h400 { height: 40rem !important; }
.fix_h420 { height: 42rem !important; }
.fix_h428 { height: 42.8rem !important; }
.fix_h430 { height: 43rem !important; }
.fix_h480 { height: 48rem !important; }
.fix_h486 { height: 48.6rem !important; }
.fix_h522 { height: 52.2rem !important; }
.fix_h540 { height: 54rem !important; }

/* max-height */
.max_h400 { max-height: 40rem; }
.max_h600 { max-height: 60rem; }
.max_h700 { max-height: 70rem; }
.max_h800 { max-height: 80rem; }

/* height % */
.hei10 { height: 10%; }
.hei20 { height: 20%; }
.hei50 { height: 50%; }
.hei100 { height: 100%; }
