@charset "UTF-8";


/* layout */
.pop_consent #container {padding: 0;}
.content_wrap {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
}

.content_wrap .con_top {
    height: 56px;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.content_wrap .con_top .btn_close {
    width: 40px;
    height: 40px;
    display: none; /* 임시*/
}

.content_wrap .con_top .btn_close i {
    font-size: 38px;
    width: 100%;
    height: 100%;
    display: block;
    color: #333;
}

.content_wrap .con_inner {
    padding: 56px 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 30px 0;
}

.only_mo.content_wrap .con_inner {
	padding: 76px 20px 30px;
}
.only_mo.content_wrap {
	overflow-y: auto;
}

.content_wrap .con_inner .group_tit {
    text-align: center;
    background: url("/assets/images/img_bilri.png") no-repeat center 0 / 92px;
}

.content_wrap .con_inner .group_tit .tit {
    padding-top: 101px;
}

.content_wrap .con_inner .txt_info {
    font-size: 14px;
}

.content_wrap .con_inner > .tit,
.content_wrap .con_inner .group_tit .tit {
    display: block;
    font-weight: 600;
    font-size: 16px;
}

.content_wrap .con_inner .group_card .tit,
.content_wrap .con_inner .group_form .tit,
.box_agree .checkbox_all label {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    gap: 0 4px;
    font-size: 14px;
    font-weight: 500;
}

.content_wrap .con_inner .group_form .tit span {
    color: #888;
    font-weight: 400;
    font-size: 12px;
}
.content_wrap .con_inner .group_form .tit span:after {
    content: '*';
    font-size: 14px;
    color:#fb6d3a;
    display: inline-block;
}


/* card */
.group_card .box_prod {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0 20px;
    flex-wrap: nowrap;
    background-color: #F8F8F8;
    padding:16px 20px;
    border-radius: 6px;
    max-height: 180px;
    margin-top: 4px;
}

.group_card .box_prod .photo {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
}

.group_card .box_prod .photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.group_card .box_prod .info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    height: 100%;
    gap:2px 0;
}
.group_card .box_prod .info .modelNm {
    color:#ccc;
    font-weight: 400;
}
.group_card .box_prod .info .prodNm {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.group_card .box_prod .info .box_prc {
    margin-top: 20px;
}
.group_card .box_prod .info .box_prc .txt_pp {
    color: #333  !important;
    font-weight: 500;
    font-size: 13px;
}
.group_card .box_prod .info .box_prc .txt_pp:last-of-type {
    color: #fb6d3a  !important;
}

/* form */
.group_form {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
}

.box_form {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.box_form .input:first-of-type,
.box_form .input:nth-of-type(2){
    display: inline-block;
    width: calc(50% - 2px);
}

.box_form .input input,
.box_form .select select{
    height: 42px;
    background-color:#F8F8F8;
    border-radius: 6px;
    padding: 0 20px ;
    width: 100%;
    border: 0;
}

.group_form .box_form .input input::placeholder {
    color: #888;
}

.group_form .box_form .select,
.group_form .box_form .input--addr {
    width: 100%;
}

select {
    appearance: none;
    -webkit-appearance: none;
}

.group_form .box_form .input--addr {
    position: relative;
}
.group_form .box_form .input--addr input:first-of-type {
    position: absolute;
    top: 4px;
    left: 0;
    z-index: 100;
    width: 90px;
    text-align: center;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 1px solid #eeeeee;
}
#orderAddr1 {
    padding-left: 106px;
}

.group_form .box_form .input--addr input + input {
    margin-top: 4px;
}

/* agree */
.box_agree {
    border-top: 1px solid #f2f2f2;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px 0;
}

.box_agree .checkbox input {
    all: unset;
    display: block;
    flex-shrink: 0;
    margin-left: 0;
}

.box_agree .checkbox input:checked {
    margin-left: 0;
}

.box_agree .checkbox input,
.box_agree .checkbox input:checked {
    width: 14px;
    height: 14px;
}
.box_agree .checkbox_all input:checked,
.box_agree .checkbox_all input {
    width: 26px;
    height: 26px;
}
.box_agree .checkbox input {
    background: url("/assets/images/ico_check.png") no-repeat center / 14px;
}
.box_agree .checkbox input:checked {
    background: url("/assets/images/ico_checked.png") no-repeat center / 14px;
}
.box_agree .checkbox_all input {
    background: url("/assets/images/ico_all_check.png") no-repeat center / 26px;
}
.box_agree .checkbox_all input:checked {
    background: url("/assets/images/ico_all_checked.png") no-repeat center / 26px;
}

.box_agree .checkbox {
    display: flex;
    align-items: center;
    gap: 0 6px;
    width: 100%;
    background-color: transparent;
    color: #333;
    padding-left: 0;
    height: auto;
    line-height: normal;
}
.checkbox label {
    font-size: 12px;
    width: 100%;
    font-weight: 500;
	cursor: pointer;
}
.checkbox label em {
    color:#fb6d3a;
	font-style: normal;
}
.box_agree .checkbox .btn_more {
    width: 16px;
    height: 16px;
    display: block;
    background: url("/assets/images/ico_acco_arrow.png") no-repeat center / 16px;
    margin-left: auto;
    opacity: .6;
    flex-shrink: 0;
	cursor: pointer;
}

.box_agree .panel {
    margin-top: 10px;
    padding: 20px;
    background-color:#F8F8F8;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.box_agree .panel p {
	font-size: 12px;
	color: #888;
}

/* pri-btn */
.box_btn {
    display: flex;
    align-items: center;
    gap: 10px;
}
.box_btn .btn {
    flex: 1;
}

.box_btn .line {
    color: #888;
}

.box_btn .line:hover:before {
    border-color: #ddd;
}
.box_btn > .btn.org {
    display: block;
    width: 100%;
    height: 56px;
    border-radius: 6px;
}

/* 주소팝업 */
#postcodeLayer {
    max-width:460px;
    height: 470px;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px;
    border: 1px solid #ddd !important;
}


/* media */
@media screen and (max-width: 420px) {
    .group_card .box_prod .photo {
        width: 80px;
        height: 80px;
    }
    #postcodeLayer {
        max-width:320px;
        padding: 0 10px;
    }
}

/* page */
/* pop_consent_wrap | 렌탈상담신청, 동의 단독폼 */
.pop_consent_wrap {height: 100%;}
.pop_consent_wrap.pc_only {padding-top: 56px;}
.pop_consent_wrap .group_form .box_form .input:first-of-type,
.pop_consent_wrap .group_form .box_form .input:nth-of-type(2) {
    width: 100%;
}

/* pop_consent_withdrawn | 철회 폼*/
.pop_consent_withdrawn #container {padding: 0;}
.pop_consent_withdrawn {height: 100%;}
.pop_consent_withdrawn .btn,
.btn.org:before {
    min-width: auto;
    border-radius: 8px;
}
.pop_consent_withdrawn .group_form .box_form .input:first-of-type,
.pop_consent_withdrawn .group_form .box_form .input:nth-of-type(2) {
    width: 100%;
}
.pop_consent_withdrawn .line{
    border: 1px solid #ddd;
}
.pop_consent_withdrawn .line:before{
    content: none;
}

/* compare.skin.php > 이니렌탈 다이렉트 모달 */
.drOrder_cont_rt .box_form {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.drOrder_cont_rt .box_agree {
    border-top: 1px dashed #f4f4f4;
}

/* view_dt.skin.php > 이니렌탈 뷰페이지 */
.view .box_wrap .box_agree {
    border-top: 1px dashed #f4f4f4;
}

/* orderform */
.orderform #container {
    padding: 0;
}

.pop_quick #container {
    padding:0;
}
.orderform #footer,
.orderform .con_top,
.orderform #sticky_inquiry{
	display: none;
}
