/*****************************************
 * policy.css
 * 이용약관 페이지
 *****************************************/


/*-----------------------------------------
 * 페이지 타이틀
 -----------------------------------------*/
/** 타이틀 hr */
.d-hr-dvide {
    margin: 0.8rem 0;
    font-size: 0;
    line-height: 0;
    text-align: center;
}

.d-hr-dvide span {
    display: inline-block;
    min-width: 5%;
    height: 4px;
    background-color: #00BC9C;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
}


/*-----------------------------------------
 * 이용약관 영ㅇ역
 -----------------------------------------*/
/** 컨테이너 */
#terms-box {
    padding-bottom: 5.5rem;
}


/** 텍스트 스타일 */
#terms-box h2 {
    margin-top: 2.5rem;
    color: #23A455;
    font-size: 1.5rem;
    font-weight: bold;
}

#terms-box h2:nth-child(1) {
    margin-top: 0;
}

#terms-box h3 {
    margin-top: 1.5rem;
    color: #333;
    font-size: 1.25rem;
    font-weight: bold;
}

#terms-box .hr-line {
    margin-top: 0;
    border-top: 3px double #8C8B8B;
}

#terms-box p {
    margin-bottom: .3rem;
    font-size: 0.9rem;
}

#terms-box .sub {
    margin-top: 3rem;
    color: #23A455;
    font-weight: bold;
}


/** 리스트 스타일 */
#terms-box ol,
#terms-box ul {
    margin: 8px 0;
    padding: 20px 30px;
    background-color: #ECECEC;
    font-size: 0.9rem;
}

#terms-box ol span,
#terms-box ul span {
    font-size: 0.9rem;
}


/** 중첩 리스트 스타일 */
#terms-box li ol,
#terms-box li ul {
    padding: 12px 16px;
    background-color: #F8F9FA;
    font-size: .8rem;
    list-style-position: inside;
}

#terms-box li ol {
    list-style-type: lower-alpha;
}

#terms-box li ul {
    list-style-type: disc;
}

#terms-box li ol span,
#terms-box li ul span {
    font-size: .8rem;
}


