@charset "UTF-8";
:root {
  --fs-sm: 1.7rem;
  --fs-com: 2rem;
  --fs-md: 2.2rem;
  --fs-bd: 2.5rem;
  --fs-stit: 3rem;
  --fs-tit: 5rem;
  --fs-vtit: 9rem;
}

@media all and (max-width: 85.375rem) {
  :root {
    --fs-md: 2.1rem;
    --fs-bd: 2.3rem;
    --fs-stit: 2.7rem;
    --fs-tit: 4rem;
    --fs-vtit: 9rem;
  }
}
@media all and (max-width: 64rem) {
  :root {
    --fs-bd: 2.2rem;
    --fs-stit: 2.4rem;
    --fs-tit: 3.6rem;
    --fs-vtit: 7rem;
  }
}
@media all and (max-width: 63.9375rem) {
  :root {
    --fs-sm: 1.6rem;
    --fs-com: 1.9rem;
    --fs-md: 2rem;
    --fs-bd: 2.1rem;
    --fs-stit: 2.2rem;
    --fs-tit: 3.2rem;
    --fs-vtit: 6rem;
  }
}
@media all and (max-width: 47.9375rem) {
  :root {
    --fs-sm: 1.5rem;
    --fs-com: 1.8rem;
    --fs-md: 1.9rem;
    --fs-bd: 2rem;
    --fs-stit: 2.1rem;
    --fs-tit: 2.4rem;
    --fs-vtit: 4.5rem;
  }
}
body {
  line-height: 1;
  font-size: var(--fs-com);
  font-weight: 400;
  font-family: "SUIT", sans-serif;
  color: #000;
  font-synthesis: none;
}

/* visible*/
.d-none {
  display: none !important;
}

.hidden {
  overflow: hidden !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 1px !important;
}

/* 정렬 */
.flex-bt {
  display: flex;
  justify-content: space-between;
}
.flex-start {
  display: flex;
  justify-content: flex-start;
}
.flex-end {
  display: flex;
  justify-content: flex-end;
}

.txt-center {
  text-align: center !important;
}
.txt-left {
  text-align: left !important;
}
.txtright {
  text-align: right !important;
}

.br {
  display: block;
}

/* 폰트 */
.ff-pop {
  font-family: "Poppins", sans-serif;
}

.ff-kr {
  font-family: "Noto Sans KR", sans-serif;
}

.fw-200 {
  font-weight: 200 !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-700 {
  font-weight: 700 !important;
}

/* 보더 */
.border-top-1 {
  border-top: 1px solid #000;
}

.border-bottom-1 {
  border-bottom: 1px solid #000;
}

/* 셀렉트 */
.z-index-100 {
  z-index: 100 !important;
  position: relative !important;
}

.select-wrap .select-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.select-wrap .select {
  margin: 0 0.5rem;
}
.select-wrap .select-arrow {
  position: relative;
}
.select-wrap .select-arrow::after {
  position: absolute;
  top: -0.7rem;
  content: "\e803";
  font-family: "fontello";
  transform: rotate(0);
  transition: transform 0.6s;
  -webkit-transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  -ms-transition: transform 0.6s;
  -o-transition: transform 0.6s;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}
.select-wrap.active .select-arrow::after {
  transform: rotate(180deg);
  transition: transform 0.6s;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.select-wrap .option {
  display: none;
}/*# sourceMappingURL=main_base.css.map */