/*menu*/
.nav_list > li:nth-child(4){
    font-weight: bold;
}

.nav_list > li:nth-child(4):after{
    content: '';
    display: block;
    height: 5px;
    width: 100%;
    background: #3F4462;
}
/*menu*/



/*list box*/


.detail_item_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 3px 10px;
}

.detail_item{
    font-size: 0.9rem;
    background-color: #FFF4F2;
    border-radius: 10px;
    text-align: center;
    color: rgb(81, 81, 81);
    padding: 5px 10px;
    margin: 5px;
    transition: all 0.2s;
}


.detail_item.active{
    background-color: #3F4462;
    color: white;
    box-shadow: 2px 2px 10px rgb(177, 177, 177);
}

.detail_item:hover{
    background-color: #3F4462;
    color: white;
    box-shadow: 2px 2px 10px rgb(177, 177, 177);
}
/*list box*/

/*scroll bar*/
.detail_price_box::-webkit-scrollbar{
    width: 6px;
    background-color: rgb(231, 231, 231);
}

.detail_price_box::-webkit-scrollbar-thumb{
    width: 5px;
    border-radius: 6px;
    background-color: rgb(184, 183, 189);
}
/*scroll bar*/


.detail_main_container{
    width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: row;
    margin-bottom: 60px;
}


.section{
    display: flex;
}


/*left section*/


.section.left{
    width: 660px;
    margin-right: 50px;
    flex-direction: column;
}
.section_line{
    height: 1px;
    background-color: rgb(238, 236, 236);
    margin: 20px 0px;
}

.top_box > h2{
    margin-bottom: -10px;
}

.top_box >p{
    color: rgb(108, 107, 107);
    font-weight: 300;
}

.video_box > video{
    width: 100%;
    height: 100%;
}

.video_box{
    margin-bottom: 30px;
}


.top_procedure_img{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
}

.borders{
    border: 1px solid #eae8e8;
    box-shadow: 1px 1px 3px rgb(227, 226, 226);
}

h3{
    margin-bottom: 30px;
}

h3:last-of-type{
    margin-bottom: 0px;
}

h3::before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 1.4rem;
    background-color: #3F4462;
    vertical-align: text-bottom;
    margin-right: 5px;

}

.stress{
    color: #eca9a9;
    font-weight: 500;
}

.under{
    text-decoration: underline;
}

.recommend_box > ol{
    margin-top: 15px;
    margin-bottom: 15px;
}

.recommend_box > ol > li{
    display: flex;
    align-items: baseline;
}

.recommend_box > ol > li > p{
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-left: 10px;
}

.numbering{
    font-weight: 500;
    color: #deaca6;
}


.QNA > h3, .warning > div > h3{
    margin-bottom: 15px;
}

.q{
    padding: 10px 20px;
    display: inline-block;
    max-width: 80%;
    background-color: #faefef;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.QNA > div{
    text-align: right;
}
.a{
    padding: 10px 20px;
    display: inline-block;
    max-width: 80%;
    background-color: #E1E4EE;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    text-align: left;
}

.bold{
    font-weight: 600;
    font-size: 0.9rem;
}


.warning_txt{
    display: flex;
    justify-content: space-between;
    align-items:center;
}

.warning_icon{
    color: #E71F2F;
    margin: -10px 5px 0px -2px;
    font-size: 0.9rem;
}


.xi-warning{
    font-size: 1.1rem;
    vertical-align: text-bottom;
}

.warning > ul > li{
    display: flex;
    margin: 20px 0px;
    font-size: 0.95rem;
    align-items: baseline;
}

.warning > ul > li > span{
    margin-left: 15px;
}

p{
    letter-spacing: -0.8px;
}

/* together */

.detail_procedure_list{
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-between;
    padding: 0px 20px;
}

.detail_procedure_item{
    border: 1px solid rgb(234, 234, 234);
    width: 280px;
    height: 350px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.detail_procedure_item:hover{
    box-shadow: 3px 3px 15px #b1b1b1;
}

.detail_procedure_img{
    width: 280px;
}



.video_box2 > video{
    width: 100%;
}


.detail_procedure_txt{
    padding: 0 20;
}

.detail_title{
    letter-spacing: -0.3;
    font-size: 1.3rem;
    font-weight: 550;
    margin-bottom: -5px;
} 

.detail_descr{
    font-size: 0.9rem;
    font-weight: 300;
    color:rgb(81, 81, 81);
    white-space: normal;
}

.detail_price{
    font-size: 1.45rem;
    font-weight: 700;
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 20;
} 

.detail_price::after{
    content:'원 부터~';
    font-size: 0.9rem;
    font-weight: 300;
    margin-left: 5px;
}




/* right section*/
.section.right{
    width: 480px;
    height: calc(100% - 168.5px);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 168.5px;
}

.detail_price_box{
    width: 100%;
    max-height: calc(100vh - 250px);
    background-color: rgb(247, 247, 247);
    padding: 5px 20px;
    margin: 10px 0;
    overflow: auto;
}

.detail_price_box > div > p{
    font-size: 0.78rem;
    color: grey;
}

.regular_procedure{
    margin-top: 40px;
}

.detail_event_price{
    margin-bottom: 30px;
}

.price_item{
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items:center;
}

.event.price_info::before{
    content: 'EVENT';
    display: inline-block;
    text-align: center;
    padding: 2px 10px 2px 14px;
    background-color: rgb(252, 208, 215);
    margin-right: 15px;
    font-weight: 450;
}

.price_info{
    letter-spacing: -0.2px;
}

.price_info.regular{
    padding: 10px;
}

.price_price{
    text-align: right;
}

.price_regular{
    font-size: 0.85rem;
    color: grey;
    text-decoration: line-through;
}

.price_final{
    font-size:1.2rem;
    font-weight: 500;
}

.won{
    font-weight: 300;
    font-size: 0.85rem;
}



.price_line{
    height: 1px;
    width: 100%;
    background-color: rgb(226, 226, 226);
}



.detail_reservation{
    display: flex;
    text-align: center;
    justify-content: space-between;
}

.reserve{
    display: block;
    width: 150px;
    padding: 10px;
    margin-top: 5px;
    border-radius: 3px;
}

.reserve.kakao{
    background-color: #FFEB3B;
    color: #4e3530;
    font-weight: 400;
}

.reserve.naver{
    background-color: #25C83A;
}

.reserve.call{
    background-color: #3F4462;
    color: white;
}