/*
 * Copyright © Amazon.com and Affiliates: This deliverable is considered Developed Content as defined in AWS Services Terms and the SOW between the parties dated October, 31. 2025.
 */

/* 탭 선택 시 표시할 요소(div) 정의(1번 탭 선택 시 첫 번째 div 요소 표시) */
#css_tabs input:nth-of-type(1) ~ div:nth-of-type(1),
#css_tabs input:nth-of-type(2) ~ div:nth-of-type(2){
    display:none
}
#css_tabs input:nth-of-type(1):checked ~ div:nth-of-type(1),
#css_tabs input:nth-of-type(2):checked ~ div:nth-of-type(2){
    display:block
}

/* 라벨 기본 스타일 지정 */
#css_tabs > label {
    width:600px; height:40px;color:;padding:20px 0 20px;margin:10px 0 40px
}

#css_tabs > label:hover {
    cursor:pointer
}
#css_tabs label[for=tab1] {

}

/* 선택된 라벨, 커서를 올린 라벨 스타일 지정 */
#css_tabs input:nth-of-type(1):checked ~ label:nth-of-type(1), #css_tabs > label[for=tab1]:hover {
    width:600px; height:40px;color:#00539e;padding:20px 0 20px;margin:10px 0 40px;font-weight:bold
}
#css_tabs input:nth-of-type(2):checked ~ label:nth-of-type(2), #css_tabs > label[for=tab2]:hover {
    width:600px; height:40px;color:#00539e;padding:20px 0 20px;margin:10px 0 40px;font-weight:bold
}


/*.page_info .tab1_content, .tab2_content{margin:20px 0 20px 0}*/
