.db_text_area{
	padding:50px 0 0px 0;
}
.db_text_area .form_title{
	text-align:center;
	font-size:32px;
	color:#fff;
}
.db_text_area .form_title_sub{
	text-align:center;
	font-size:16px;
	color:#ffffff;
	font-weight:normal;
}
.db_form_area {
    width: 100%;
    height: auto;
    border-radius: 24px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
	box-shadow: rgba(48, 53, 50, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.db_form_area .radio2 {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
}
.db_form_area .radio2 input[type=radio] {
    display: none;
}
.db_form_area .radio2 input[type=radio]:checked+label {
    font-size: 1rem;
    font-weight: 700;
    background-color: #0070ff;
    color: #fff;
}
.db_form_area .radio2 input[type=radio]+label {
    width: 50%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 100px;
    font-size: 1rem;
    cursor: pointer;
    background: #fff;
	color:#272727;
	margin-bottom: 15px;
}
.db_form_area .phone {
    width: calc(100% - 100px);
    height: auto;
    display: flex;
		gap: 10px;
		float: right;
}
.db_form_area .sel {
    border: 1px solid #ccc;
    width: 80px;
		height:50px;
    text-align: center;
    cursor: pointer;
    border-radius: 100px;
    word-wrap: normal;
    text-transform: none;
    font-size: 1rem;
		color:#272727;

}
.db_form_area .agree_box {
	text-align:center;
}
.db_form_area .agree_box * {
	cursor:pointer;
}
.db_form_area .btn_submit {
    width: 100%;
    height: 50px;
    background-color: #0070ff;
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
		margin-top:20px;
		display: flex;
    justify-content: center;
    align-items: center;
}


.db_result {
	background: rgba(255, 255, 255, 0.8);
	margin-top: 30px;
	padding: 30px 20px;
	border-radius: 24px;
	box-shadow: rgba(48, 53, 50, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.db_result_title {
    line-height: 36px;
    font-size: 30px;
    font-weight: 700;
    color: #0070ff;
}
.db_result_update {
    font-size: 14px;
    color: #333;
}
.db_result_update .bhdate {
    color: #ff0000;
    font-weight: 700;
}
.db_result_item {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 10px;
}
.db_result_item .item {
    background: #fff;
    text-align: center;
    padding: 5px 0px;
    border-radius: 100px;
    border: 1px solid #ced4da;
	box-shadow: rgba(48, 53, 50, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.db_result_item .item img {
    vertical-align: top;
	height: 34px;
}
.db_result_item .item p {
    margin: 0px;
    font-size: 14px;
    color: #ff0000;
    font-weight: 700;
	padding:0;
}


/* ================================================ */
/* == ¹ÝÀÀÇü Äõ¸® ½ÃÀÛ === */
@media (max-width: 991px) {
	.db_text_area{
		padding:0px 0 20px 0;
	}
    .db_result_item {
        grid-template-columns: repeat(2, 1fr);
    }
    .main-img .main_img_area {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
	.db_text_area .form_title{
		font-size:24px;
	}
	.db_result_item .item img {
		height: 32px;
	}
	.db_result_title{
		font-size: 24px;
	}
    .main-img .main_img_area {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}