* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-size: 16px
}

a {
    text-decoration: none;
    color: inherit
}

ul,
ol,
dl {
    list-style: none
}

input[type="text"],
input[type="number"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: 0;
    padding: 0 10px;
    border-radius: 0;
}

button {
    background: transparent;
    border: 0;
    outline: 0;
    cursor: pointer
}

img {
    border: 0;
    vertical-align: middle;
    width: 100%;
}

iframe {
    width: 0;
    height: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0
}

#icletime {
    width: 100%
}

#icletime>img {
    width: 100%
}

/* main_db */
#main_db {
    width: 100%;
    padding: 5%;
    background: #f1f1f1
}

#main_db>img {
    width: 100%;
    margin-bottom: 10px
}

#main_db dl {
    width: 100%;
    height: auto;
    display: table;
    margin-bottom: 10px
}

#main_db dl>* {
    display: table-cell;
    vertical-align: middle
}

#main_db dl dt {
    width: 30%;
    font-weight: 500;
    font-size: 21px
}

#main_db dl dd {
    width: 70%
}

#main_db dl dd input {
    width: 100%;
    height: 45px;
    padding: 0 10px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 16px
}
	#sfrm3 #n_age::placeholder { font-size: 13px;}
#main_db dl dd .s_btn {
    width: 100%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border: 1px solid #ddd
}

#main_db dl dd .s_btn>div {
    width: 50%;
    height: 100%;
    float: left;
    background: #fff;
    cursor: pointer
}

#main_db dl dd .s_btn>div.on {
    background: #ff5500;
    color: #fff
}

#main_db .agree {
    width: 100%;
    margin: 20px 0;
    text-align: center;
    clear: both
}

#main_db .agree a {
    font-size: 12px;
    vertical-align: middle
}

#main_db .agree input[type="checkbox"] {
    vertical-align: middle;
    margin-right: 3px
}


.incall a {
    display: block
}

.incall a img {
    width: 100%
}

.ppl a {
    display: block
}

.ppl a img {
    width: 100%;
    max-width: 750px;
}

#footer {
    padding: 20px 10px;
    background: #444;
    text-align: center
}

#footer p {
    color: #eee;
    line-height: 1.5;
    font-size: 11px;
    font-weight: 300;
    opacity: .6
}
 


/* === 아이클타임 새 폼 스타일 시작 (수정) === */

/* 폼 전체를 감싸는 보라색 배경 컨테이너 */
#main_db_wrapper {
    background-color: #4a247c;
    /* 상하 여백을 줄임 */
    padding: 1.5rem 1rem;
    font-family: 'Noto Sans KR', sans-serif;
}

/* '아이클타임' 제목 */
#main_db_wrapper h1 {
    color: white;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    /* 제목과 폼 사이 간격도 약간 줄임 */
    text-align: center;
}

/* 흰색 폼 카드 */
.form-container {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    width: 100%;
    /* 너비를 늘림 */
    max-width: 600px;
    margin: 0 auto;
}

/* 폼 내부 요소들의 box-sizing 통일 */
.form-container * {
    box-sizing: border-box;
}

/* 각 입력 필드 그룹 (라벨 + 입력칸) */
.form-container .form-group {
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.form-container .form-group label {
    font-size: 1.125rem;
    font-weight: 500;
    color: #374151;
    width: 7rem;
    flex-shrink: 0;
}

/* 텍스트, 숫자 입력칸 */
.form-container .form-group input[type="text"],
.form-container .form-group input[type="number"],
.form-container .form-group input[type="tel"] {
    width: calc(100% - 7rem);
    border: none;
    border-bottom: 2px solid #D1D5DB;
    padding-bottom: 0.25rem;
    transition: border-color 0.3s;
    font-size: 1.125rem;
    height: auto;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    font-family: 'Noto Sans KR', sans-serif;
}

.form-container .form-group input:focus {
    outline: none;
    border-color: #4a247c;
}

/* 성별 라디오 버튼 */
.form-container .gender-options {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.form-container .gender-options label {
    width: auto;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.form-container .gender-options input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #D1D5DB;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s;
    margin-right: 0.5rem;
}

.form-container .gender-options input[type="radio"]:checked {
    background-color: #FFDE00;
    border-color: #FFDE00;
}

.form-container .gender-options input[type="radio"]:checked+span {
    font-weight: 700;
    color: #1f2937;
}

/* 개인정보 동의 */
.form-container .agree-container {
    text-align: center;
    /* 버튼이 밖으로 빠지면서 하단 여백 제거 */
    margin-top: 1.5rem;
}

.form-container .agree-container a {
    font-size: 0.875rem;
    color: #6B7280;
    vertical-align: middle;
}

.form-container .agree-container input[type="checkbox"] {
    vertical-align: middle;
    margin-right: 0.25rem;
}

/* 이미지 제출 버튼 (form-container 외부) */
#main_db_wrapper .bnr {
    text-align: center;
    /* form-container와 너비를 맞추고 중앙 정렬 */
    max-width: fit-content;
    margin: 0.5rem auto 0;
    width: 100%;
}


/* === 아이클타임 새 폼 스타일 끝 === */



/* 하단 타이머 디비창 */
@font-face {    font-family: 'DS-DIGIB';   font-style: normal;   font-weight: 100;   src: url(../new_css/fonts/DS-DIGIB.TTF) format('truetype') }

.quick_box {  position: fixed;  bottom: 0; left: 0; right: 0; width: 100%; padding:0px;margin-top: 0; height:150px; background:#100817 ;border-top:2px solid #e62490;}
.quick_box .quick_title { display:none;}
.quick_bn {  margin:0px; width: 100%;   text-align: center}
.quick_bn h4 { display:none; }

.quick_bn .time_count { margin:0px;padding:10px; width:100%; }
.quick_bn .time_count .time_box { margin-top:-59px;padding: 0px; border-radius: 10px}
.quick_bn .time_count .time_box span.time { font-family: 'DS-DIGIB'; font-size: 32px; line-height: 32px;  width: 50px; padding: 7px 0 ;  background: #000000;   border-radius: 5px; color: #fff; font-weight: 700;   display: inline-block; border:1px solid #332a56;}
.quick_bn .time_count .time_box span.col {font-size: 24px; color:#fff;line-height: 42px;;vertical-align: top; width:10px; text-shadow: 1px 0 #000, 0 1px #000, -1px 0 #000, 0 -1px #000; display:inline-block; }
#countdown {position:absolute; right:10px;}

.quick_bn .time_count .progress_bar { height: 10px; width:100%; margin-top: 60px; background:#ffe199; border-radius: 30px; overflow: hidden}
.quick_bn .time_count .progress_bar .bar_container { width: 100%; height: 100%;border-radius: 1px;  background: #ec27cf;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ff0019,   #ec27cf);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ff0019,  #ec27cf); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */}

.fix_db_form {width:100%; padding: 0px; }

.fix_db_form h1 img {width:80%; max-width:400px; margin-bottom:5px;}
.fix_db_form .form_inner {  margin: 0 auto}
.fix_db_form .form_inner ul {display: flex; align-items: center}
.fix_db_form .form_inner ul li.n_name {width: 22%}
.fix_db_form .form_inner ul li.n_age {width: 15%}
.fix_db_form .form_inner ul li.n_tel {width: 35%}
.fix_db_form .form_inner ul li.n_btn {width: 28%}
.fix_db_form .form_inner ul li {padding: 0 2px;margin-bottom: 0px}
.fix_db_form .form_inner ul li input {width: 100%; height: 40px;   font-family: inherit; font-size: 14px; padding: 0 10px; text-align: center; outline: none; border: 0}
.fix_db_form .form_inner ul li button {width: 100%;padding: 8px;color:#f6ff00;font-size: 20px;  font-weight: 700;letter-spacing: -1px; background: #f90d53;  border-radius: 0px; border:0px;}
.fix_db_form .form_inner button:after {content:'가격확인';    }
.fix_db_form .form_inner .agree {margin-top:0px; margin-bottom:50px ;}
.fix_db_form .form_inner .agree input {vertical-align: middle}
.fix_db_form .form_inner .agree a { display:inline-block;font-size: 12px; color:#FFFFFF; letter-spacing: -0.5px;   vertical-align: middle}



@media screen and (max-width:500px) {
    #main_db dl dt {font-size: 15px}
    /* 하단 픽스 디비창 */
    .fix_db_form h1 {margin-bottom: 5px}
    .fix_db_form h1 img {width: 70%}
    .fix_db_form .form_inner ul li input {height: 40px; padding: 0; font-size: 15px}
    .fix_db_form .form_inner .bnr button {height: 40px; font-size: 16px; line-height: 40px}
    .fix_db_form .form_inner .agree {text-align: center}
    .fix_db_form .form_inner .agree a {font-size: 11px}

    .n_content {padding: 3%}
    .n_content .n_content_title p {font-size: 18px}
    /* 반응형에서 체크박스 폰트 크기 조정 */
    .content_wrap label {font-size: 14px; letter-spacing:-1px;}
}