@charset "utf-8";

/* 
 * INPUT CSS Document
 */

/***********************************************************************************
체크박스 & 라디오
************************************************************************************/
/*-- 공통 --*/
input[type="checkbox"],
input[type="radio"] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #26282b;
  cursor: pointer;
  user-select: none;
}

input[type="checkbox"] + label::before,
input[type="radio"] + label::before {
  content: ""; 
  margin-right: 8px;
  box-sizing: border-box;
  border-radius: 1px;
  width: 24px;
  height: 24px;
  border-radius: 100%;
}

input[type="checkbox"]:checked + label::before,
input[type="radio"]:checked + label::before {
  content: "";
}

/*-- CHECK BOX --*/
input[type="checkbox"] + label {
    font-size: 1rem;
    font-weight: 500;
}
input[type="checkbox"] + label::before {
    width: 13px;
    height: 13px;
    border: 0.5px solid #000000;
    background-color: #ffffff;
}
input[type="checkbox"]:checked + label::before {
  background-color: #BFBFBF;
}



/*-- RADIO --*/
input[type="radio"] + label {
    font-size: 1rem;
    font-weight: 500;
}
input[type="radio"] + label::before {
    width: 13px;
    height: 13px;
    border: 1px solid #000000;
    background-color: #ffffff;
}
input[type="radio"]:checked + label::before {
  background-color: #BFBFBF;
}




/*================일반텍스트=================*/
.subj {
  display: inline-flex;
  height: 40px;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  margin-bottom: 15px;
  margin-left: 0;
  margin-right: 100%;
  width: auto;
  white-space: nowrap;
}
.subj.ico-dia:before {
  content: "";
  width: 10px;
  height: 16px;
  margin-right: 3px;
  background-image: url(/img/ico-dia.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.subj.subj-blue {
  background-color: #51b9c7;
  color: #ffffff;
}

p.common-text {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 50px;
}

.mid-box {
  padding: 30px;
  border-radius: 20px;
  line-height: 1.875;
  font-size: 1rem;
  width: auto;
  display: inline-block;
}

.flex {
  display: flex;
}
.space-between {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.max-w-900 {
  max-width: 900px;
}
.w-full {
  width: 100%;
}
.pc-only {
  display: block;
}
.tb-only {
  display: none;
}
.mo-only {
  display: none;
}


/***********************************************************************************
mediaquery
************************************************************************************/
@media screen and ( max-width : 768px ) {

}