button{
    cursor: pointer;
}

.basic_fz{
    font-size: 14px;
}

.container_cus{
    width: 100%;
    max-width:1200px;
    margin: 50px auto;
    padding: 0 20px;
}

/* 검색 box css*/
input{ margin: 0; }
input:focus {outline:none;}
.in-line{
    position: relative;
    overflow: visible;
    width: 65%;
    margin: 0 auto;
}
.address_input{
    width: 100%;
    border-radius: 20px;
    height: 30px;
    border:0;
    /* 그림자의 크기와 동일한 값 */
    padding: 20px 25px;
    font-size: 16px;
    color: #000;
    border:3px solid #22307b;
    z-index:100;
}
.service_btn{
    position:absolute;
    z-index: 1000;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #22307b;
    border-radius: 0 20px 20px 0;
    height: 100%;
    padding-left: 25px;
    padding-right: 25px;
    border:0;
}

/* 주소 검색결과 텍스트 css*/
#srch_addr_rst{
    text-decoration-line: underline;
    text-decoration-color: #22307b;
    text-underline-position : under;
    color: #578AE5;
}
.addr_rst_text{
    font-size: 26px;
    font-weight: 600;
}

/* 검색결과 */
#result_box{
    border:2px  solid #22307b;
    border-radius: 15px;
    padding: 10px 30px;
    margin: 30px 0;
}
.result_list{
    
    margin: 0;
    /* padding-top: 10px; */
    /* padding-bottom: 10px; */
    padding: 10px;
}
.sel_addr{
    font-size: 14px;
    font-weight: 700;
}
/* 지번 선택 css*/
.add_number_box{
    margin-top: 15px;
    border: 1px solid #578AE5;
    width: 100%;
    height: 70px;
    background-color: #edf2f8;
    border-radius: 7px;
    display: flex; /* Flex 컨테이너로 설정 */
    align-items: center; /* 세로 가운데 정렬 */
}
.add_number{
    width: calc(100% - 60px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* select */
select {
    width: calc((100% - 30px) / 4);
    height: 35px;
    padding: 3px 16px;
    border: 1px solid #999;
    font-family: inherit;
    background: url(../img/search/select_point.png) no-repeat 94% 50%;
    border-radius: 7px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #333;
    background-color: #fff;
    font-weight: 700;
    float: left;
}
select:focus {
    outline:none;
    box-shadow: 0px 3px 3px #999;
}

/* 다음으로 */
.btn_ok {
    width: 202px;
    height: 45px;
    background-color: #578AE5;
    color: #fff;
    border: 0;
    border-radius: 20px;
    /* font-family: 'Binggrae'!important; */
    font-size: 16px;
    padding: 8px 30px;
    font-weight: 700;
}
.btn_ok:hover{
    background-color: rgb(96, 157, 248);
}

/* 검색 결과 */
.btn_add_sel{
    background-color: #284566;
    border: 0;
    border-radius: 7px;
    padding: 7px 7px;
    color: #fff;
    width: 70px;
    font-size: 12px;
    font-weight: 700;
}
.btn_add_sel:hover{
    background-color: #485869;
}

/* 결과가 없을때 */
.srch_box_none{
    padding-top: 100px;
    padding-bottom: 100px;
}
.result_box_none{
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;
}
.srch_none_text{
    font-weight: 700;
}

/* 지번 선택 css */
.text_cut{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    font-weight: 700;
    font-size: 14px;
    font-family: "굴림", Gulim;
    padding-top: 5px;
    padding-bottom: 5px;
}
.del_number{
    width: 20px; 
    cursor:pointer; 
    position: absolute; 
    right: 5px; 
    top: 49%; 
    transform: translateY(-50%);
}

@media only screen and (max-width: 768px) {
	.in-line {
    		width: 100%;
    	}
    	.container_cus{
    		width: calc(100% - 40px);
    	}
}