button,
.disable,
.enable,
.default{
  font-size:1.6rem;
  display:flex;
  align-items: center;
  justify-content: center;
}

/* 버튼 초기화 */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #121212;
}

.disable,
.enable,
.default{
  height:48px;
  border-radius: 8px;
}

/* 비활성화 */
.disable{
  background-color: rgba(240, 240, 240, 1);
  color:rgba(153, 153, 153, 1);

}

/* 활성화, 검은배경 */
.enable{
  background-color: rgba(18, 18, 18, 1);
  color:#fff;
}

/* 기본, 흰배경 */
.default{
  background-color: #fff;
  border: 1px solid var(--black-100, rgba(219, 219, 219, 1));
  color: var(--black-700, rgba(18, 18, 18, 1));
  font-weight: 600;
}

/* 강조 */
.accentuateButton{

}



/* 기본 체크박스 숨기기 */
input[type="checkbox"] {
  width:20px;
  height:20px;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* 체크박스를 위한 커스텀 디자인 */
.checkboxImg {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background-color: rgba(247, 247, 247, 1);
  border: 1px solid rgba(219, 219, 219, 1);
  position: relative;
  overflow: hidden;
}

/* 체크 이미지추가 (체크되었을 때만 표시) */
.checkboxImg img{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  display:none;
  width:38px;
  max-width: none;
  height:38px;
}

/* 체크박스가 체크되었을 때 체크 이미지 표시 */
input[type="checkbox"]:checked + .checkboxImg{
  border:0;
}
input[type="checkbox"]:checked + .checkboxImg img {
  display: block;
}





/* 기본 라디오 버튼을 숨깁니다 */
.customRadio input[type="radio"] {
  display: none;
}

/* 기본 스타일 */
.userInfoForm .customRadio label {
  display: inline-block;
  width: 160px;
  height: 42px;
  line-height: 42px;
  border-radius: 8px;
  border: 1px solid #ddd;
  text-align: center;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

/* 체크되지 않은 상태 */
.userInfoForm .customRadio input[type="radio"] + label {
  background-color: #fff;
  color: #999;
  border-color: #ddd;
}

/* 체크된 상태 */
.userInfoForm .customRadio input[type="radio"]:checked + label {
  background-color: #fff;
  color: #000;
  border-color: #FF4500;
}




/* 기본 인풋 */
input,textarea{
  width:100%;
  height:40px;
  border:1px solid #CDCDCD;
  border-radius: 8px;
  padding: 9px 14px;
  /* font-size:1.4rem; */
  /* ios 16px미만일 시 인풋 포커스 방지 */
  font-size:1.6rem;
  color: #121212;
  outline-color: rgba(153, 153, 153, 1);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
  padding-left:16px;
}


/* 기본 라벨 */
label{
  font-size:1.8rem;
}

/* 기본 셀렉트 */
select{
  /* 브라우저 기본 스타일 제거 */
  appearance: none; 
  -webkit-appearance: none;
  -moz-appearance: none;

  width:100%;
  height: 40px;
  border: 1px solid #999;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 1.6rem;
  background-color: #f7f7f7;
  color: #717171;
  outline-color: #246BEB;
  background-image: 
  url('/images/menu_icon/menu_icon/ic_20/ic_dft_arrowdown_dft_gray100_line_20.png');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  
}
select:focus option{
  padding: 10px 6px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #121212;
  border:1px solid #fff;
}



/* 인증하기 버튼 */
.phoneInputContainer {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  display: flex;
  align-items: center;
}

.phoneInputContainer input[type="tel"] {
  flex: 1;
  border: none;
  padding: 13px 16px;
  padding-right: 84px; 
  outline: none;
}

.verifyButton {
  position: absolute;
  right: 10px; 
  padding: 5px 10px;
  font-size: 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.verifyButton:hover {
  background-color: #ddd;
}

.timer {
  font-size: 14px;
  color: #f65c5c;
  font-weight: bold;
  margin-right : 15px;
}



/* 검색 창 인풋 */

/* 리셋버튼 없애기 */
/* IE의 경우 */
input::-ms-clear,
input::-ms-reveal{
    display:none;
}
/* 크롬의 경우 */
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration{
    display:none;
}

.searchBarCover{
  width:100%;
  padding: 8px 16px;
  position: relative;
}
.searchBarCover .search{
  padding: 4px 70px 4px 8px;
  background-color: #f7f7f7;
  border: 0;
  font-weight: 400;
  outline: 0;
  height: 32px;
  line-height: 32px;
}

.searchBarCover img.searchImg{
  width:24px;
  height:24px;
  position: absolute;
  top:12px;
  right:26px;
}

.searchBarCover img.resetImg{
  position: absolute;
  top:12px;
  right:60px;
  width:24px;
  height:24px;
  display:none;
}
