@charset "UTF-8";
/* 인풋스타일*/
:root {
  --com-f: 1.8rem;
  --sub-f: 1.6rem;
  --visual-f: 6rem;
  --big-tit: 6rem;
  --sub-tit: 3rem;
  --sec-tit: 4rem;
  --card-tit: 2.4rem;
}

@media all and (max-width: 85.375rem) {
  :root {
    --com-f: 1.6rem;
    --sub-f: 1.4rem;
    --card-tit: 2rem;
  }
}
@media all and (max-width: 64rem) {
  :root {
    --visual-f: 5rem;
    --sec-tit: 3.5rem;
  }
}
@media all and (max-width: 63.9375rem) {
  :root {
    --visual-f: 4rem;
    --com-f: 1.4rem;
    --sec-tit: 3rem;
    --card-tit: 1.6rem;
  }
}
@media all and (max-width: 47.9375rem) {
  :root {
    --visual-f: 3rem;
    --sub-tit: 2.2rem;
    --sec-tit: 2.5rem;
  }
}
body {
  line-height: 1;
  font-size: var(--com-f);
  font-weight: 400;
  font-family: "SUIT", sans-serif;
  color: #000;
  word-break: keep-all;
}

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

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

/* 정렬 */
.flex {
  display: flex;
}

.flex-bt {
  display: flex;
  justify-content: space-between;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
}

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

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

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

.br {
  display: block;
}

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

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

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fc-green {
  color: #70B23A !important;
}

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

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

.i {
  font-size: 0;
}

img {
  font-size: 0;
}

/* 셀렉트 */
.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;
}

/* 마진 */
.m-0 {
  margin: 0 !important;
}

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

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

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

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

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

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

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

.figure {
  font-size: 0;
}