.fix{
    position: fixed;
    right: 2%;
    bottom: 3%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fix i{
    width: 45px;
    height: 45px;
    background-color: #ee3368;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    position: absolute;
    bottom: 55px;
    right: -5px;
}

.box_bg{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999990;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
}

.box_bg.show{
    opacity: 1;
    visibility: visible;
}

.fix_box_inner{
    width: 400px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    overflow: auto;
    background-color: #fff;
    z-index: 999990;
    transform: translateX(150%);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.8);
    padding: 30px;
    box-sizing: border-box;
    transition: transform .5s;
}

.fix_box_inner::-webkit-scrollbar {
    display: none; 
}

.fix_box_inner.show{
    transform: translateX(0);
}

.box_title p{
    font-size: 30px;
    line-height: 40px;
    font-family: 'Pretendard-Regular', sans-serif;
    color: #111;
}

.box_title p strong{
    font-family: 'Pretendard-Bold', sans-serif;
    font-weight: normal;
    color: #ee3368;
    font-size: 32px;
}

.box_title span{
    font-size: 16px;
    line-height: 23px;
    color: #111;
    font-family: 'Pretendard-Light', sans-serif;
    display: block;
    margin-top: 15px;
}

.box_title span strong{
    font-weight: normal;
    font-family: 'Pretendard-Medium', sans-serif;
}

.fix_box_inner .s8_1_con_left{
    width: 100%;
    padding: 25px 0;
    border-top: 1px dashed #ccc;
    margin-top: 20px;
}

.fix_box_inner ul.select_ul li{
    height: 40px;
    font-size: 13px;
    font-family: 'Pretendard-Light', sans-serif;
}

.fix_box_inner .s8_1_con_right{
    width: 100%;
    padding: 25px 0;
    border-top: 1px dashed #ccc;
}

.fix_box_inner .write_box input{
    height: 40px;
    font-size: 13px;
}

.fix_box_inner .write_box input::placeholder{
    font-size: 13px;
}

.fix_box_inner .agree_box{
    height: 100px;
    padding: 10px;
    font-size: 12px;
    line-height: 20px;
}

.fix_box_inner .agree_check{
    padding: 15px 0 0;
}

.fix_box_inner .agree_check i{
    font-size: 20px;
}

.fix_box_inner .agree_check p{
    font-size: 12px;
}

.fix_box_inner .back_btn{
    margin: 20px 0 0 0;
}

.fix_box_inner .back_btn a{
    height: 50px;
    font-size: 16px;
    border-radius: 5px;
}

.close_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.close_btn i{
    font-size: 24px;
}