/*  font  */
.font-bold {
  font-weight: 700;
}

.font-extra-bold {
  font-weight: 800;
}

.font-heavy-bold {
  font-weight: 900;
}

.ss {
  font-size: 14px;
}

.ms {
  font-size: 16px;
}

.ls {
  font-size: 18px;
}

.dls {
  font-size: 20px;
}

.tit-ls {
  font-size: 32px;
}

.tit-dls {
  font-size: 36px;
}

.black {
  color: black;
}

/* button-new */
.btn-base {
  display: flex;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #181312;
}

.btn-gray{
  background: #DDD;
  color: rgba(24, 20, 18, 0.50);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.btn-gray-txt{
  color: rgba(24, 20, 18, 0.50);
  text-align: center;
  font-family: "NanumSquare Neo";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.btn-yellow{
  border: 1px solid #181312;
  background: #FCC524;
}

.btn-black-txt{
  color: #181412;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.with-icon-btn {
  position: relative;
}

.with-icon-btn::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-image: url('../images/diamond-icon.png');
  background-size: contain;
  background-repeat: no-repeat;

  bottom: -7px;
  right: -7px;
  z-index: 2;
}


