/* common */
.survey_container * {
  font-family: 'NanumSquareRound', 'NanumSquare', 'Noto Sans KR', 'Malgun Gothic', dotum, sans-serif sans-serif;
}

survey_container.font-loaded {
  font-family: 'Nanum Gothic', '나눔고딕', 'NanumSquare', sans-serif;
}

.btn {
  color: rgba(0, 0, 0, 1);
}

.btn:hover::before {
  opacity: 0.04;
}

.btn:focus::before {
  opacity: 0.12;
}

.btn {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 500;
  letter-spacing: 0.0892857143em;
  justify-content: center;
  outline: 0;
  position: relative;
  text-decoration: none;
  text-indent: 0.0892857143em;
  text-transform: uppercase;
  transition-duration: 0.28s;
  transition-property: box-shadow, transform, opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

.btn::before {
  border-radius: inherit;
  bottom: 0;
  color: inherit;
  content: "";
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.btn::before {
  background-color: currentColor;
}

.btn:focus {
  outline-style: none;
}

.btn {
  border: 1px solid #1e52a5;
  background-color: #fff !important;
  color: #1e52a5;
}

.primary {
  background-color: #1e52a5 !important;
  color: white;
}

.gray {
  border: 1px solid #8b8b8b;
  background-color: #8b8b8b;
  color: white;
}

.secondary {
  background-color: #fff;
  color: #1e52a5;
}

.dashed {
  border-style: dashed !important;
}

/* size */
.w130 {
  width: 130px !important;
}

.w230 {
  width: 230px !important;
}

.w250 {
  width: 250px !important;
}

.w430 {
  width: 430px !important;
}

.w510 {
  width: 510px !important;
}

.w870 {
  width: 870px !important;
}

/* color */
.bc_f9f9f9 {
  background-color: #f9f9f9;
}