input, textarea {
    appearance: none;    
    -webkit-appearance: none;    
    -webkit-border-radius: 0; 
}
.textbox input[type="text"]:focus, .textbox input[type="password"]:focus{
    border-color: #A0EC00;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(176, 233, 102, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(176, 233, 102, 0.6);
}
.textbox {
    position: relative;
    width: 100%;
} 
.textbox label { 
    position: absolute;   
    padding: 1.5rem;
    color: #999;
    cursor: text; 
} 
.textbox input[type="text"], .textbox input[type="password"] {    
    padding: 1.1rem;
    border: 1px solid #555;
    background: #2b2b2b;    
    border-radius: 0; /* iSO 둥근모서리 제거 */ 
    outline-style: none;
}

input[type="radio"]{
    display: none;
}
input[type="radio"] + label {
    position: relative;
    cursor: pointer;
    line-height: 2rem;
    display: inline-block;
    vertical-align: middle;    
}
input[type="radio"]:checked + label, input[type="radio"] + label {
    position: relative;
    padding-left: 2.5rem;
    padding-right: .5rem;
    cursor: pointer;
    line-height: 1.8rem;
    display: inline-block;
    vertical-align: middle;
}
input[type="radio"]:checked + label:before, input[type="radio"] + label:before {
    content: '';
    position: absolute;
    left: .1rem;
    top: .1rem;
    width: 1.6rem;
    height: 1.6rem;
    border:1px solid rgb(71, 71, 71);
    border-radius: 100%;
    background: rgb(26, 26, 26);
}
input[type="radio"]:checked + label:before {
    border:1px solid  #7a7a7a;
    border-radius: 100%;
}
input[type="radio"]:checked + label:after, input[type="radio"] + label:after {
    content: '';
    width: 1rem;
    height: 1rem;
    background: var(--act-txt-color);
    position: absolute;
    top: .5rem;;
    left: 0.5rem;;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all .35s ease;
}
input[type="radio"] + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
input[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
/* 체크박스 */
/* input[type="checkbox"] + label{
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border:1px solid #707070;
    position: relative;
  }
input[id="check1"]:checked + label::after{
    content:'\2713';
    font-size: 18px;
    width: 2rem;
    height: 2rem;
    text-align: center;
    position: absolute;
    left: 0;
    top:0;
  } */
  input[type="checkbox"] {
    position: relative;;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #393939;
    border: 1px solid #777;
    cursor: pointer;
    height: 2rem;
    width: 2rem;
    top: .5rem;
    margin-right: 1rem;
    outline: none;
    
  }
  input[type="checkbox"]::after {
    border: solid #000;
    border-width: 0 .1rem .1rem 0;
    content: '';
    display: none;
    height: 40%;
    left: 40%;
    position: absolute;
    top: 20%;
    transform: rotate(45deg);
    width: 25%;
  }
  input[type="checkbox"]:checked {
    background: var(--act-txt-color);
    border: 1px solid #000;
  }
  input[type="checkbox"]:checked::after {
    display: block;
  }
/* 셀렉트메뉴 */
select {
    -webkit-appearance: none;
    -moz-appearance: none; 
    appearance: none;
}
select::-ms-expand{
    /* 화살표 없애기 for IE10, 11*/ 
    display:none;
}
.selectbox { 
    position: relative; 
    z-index: 1;
}
.selectbox.focus {
    border-color: #A0EC00;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(176, 233, 102, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(176, 233, 102, 0.6);
}
.selectbox:before { 
    content: '\f107';
    font-family: fontAwesome;
    position: absolute; 
    right: 2rem; 
    width: 0;
    height: 0; 
} 
.selectbox label, .selectAuct label { 
    position: absolute;
    line-height: 3.6rem; 
    padding: 0 1.5rem;
    z-index: -1; /* IE8에서 label이 위치한 곳이 클릭되지 않는 것 해결 */   
}
.selectbox select, .selectAuct select {
    width: 100%;
    line-height: 3.6rem; 
    padding: 0 1.5rem; /* 여백과 높이 결정 */
    border: 0; 
    opacity: 0; /* 숨기기 */ 
    filter:alpha(opacity=0); /* IE8 숨기기 */ 
    -webkit-appearance: none; /* 네이티브 외형 감추기 */ 
    -moz-appearance: none; 
    appearance: none; 
}
.selectbox select option, .selectAuct select option{
    font-size: 1.6rem;
    color: var(--sub-txt-color);
    background: var(--select-txt-color);
} 
.selectbox select::-ms-expand, .selectAuct select::-ms-expand  {
      display: none;
} 
/* 경매신청리스트메뉴 */
.selectAuct { 
    position: relative; 
    width: 14rem;
    font-size: 1.4rem;
    border: 1px solid var(--select-main-color);
    border-radius: 5px;
    z-index: 1;
}
.selectAuct.focus {
    border-color: #A0EC00;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(176, 233, 102, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(176, 233, 102, 0.6);
}
.selectAuct:before { 
    content: '\f107';
    font-family: fontAwesome;
    position: absolute; 
    top: calc(100% - 2.5rem); 
    right: 2rem; 
    width: 0;
    height: 0;
    font-weight: 600;
    color: var(--act-txt-color)
}
.selectAuct label { 
    color: var(--act-txt-color); 
}
/* 경매신청리스트메뉴 */