.custom-select > select{    
    font-size: 1.3rem;
    font-weight: 300;
    padding: 1rem 5rem 1rem 1.5rem;
    background: #424242;
    color: #e4e4e4;
    border-radius: 4px;
    border: 1px solid #636363;
}

.custom-select > select option{    
    font-size: 1.3rem;
    color: #e4e4e4;
}
.custom-select{
    position: relative;
    display: inline-block;
}
.custom-arrow{
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    background: #424242;
    height: 100%;
    width: 4rem;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    border: 1px solid #636363;
    pointer-events: none;
}
.custom-arrow::after{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
    border-left: .6rem solid transparent;
    border-right: .6rem solid transparent;
    border-bottom: .6rem solid rgba(255, 255, 255, .3);
}

input[type="text"],input[type="password"] {
    height: 4.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 0 1rem;
    outline: none;
    border:1px solid var(--line-color);
    border-radius: .8rem;
    color: var(--act-color);
}

/* 라디오버튼 */
input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip:rect(0,0,0,0);
    border: 0;
}
input[type="radio"] + label {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
input[type="radio"] + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 21px;
    height: 21px;
    text-align: center;
    background: #fafafa;
    border: 1px solid #cacece;
    border-radius: 100%;
    box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
}
input[type="radio"] + label:active:before,
input[type="radio"]:checked + label:active:before  {
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}
input[type="radio"]:checked + label:before {
    background: #fff;
    border-color: #5C79FF;
}
input[type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 5px;
    width: 13px;
    height: 13px;
    background: #5C79FF;
    border-radius: 100%;
    box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
}

select {
    height: 4.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: "Roboto";
    color: var(--sub-color);
    padding: 0 1rem;
    outline: none;    
    border: 1px solid var(--line-color);
    background:url('../img/chevron-down-outline.svg') no-repeat center right 5px / 1.8rem;
    border-radius: .8rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance : none;
}

select::-ms-expand {
    display: none;
}
select:required:invalid {
    color: #A6A6A6;
    letter-spacing: -.1rem;
    font-size: 1.4rem;
    font-weight: 400;
}
option {
    color: black;
}
select option[value=""][disabled] {
	display: none;
}