.field-title{
    border-bottom-color: #FF7900;
}

#ul-load-applicant-block{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#ul-applicant-block > li,
#ul-load-applicant-block > li{
    border: 1px solid #FFCA95;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 30px;
}

#ul-load-applicant-block > li{
    width: 49.5%;
}

.applicant-no,
.load-applicant-no{
    background-color: #FFF9CB;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.applicant-clz{
    cursor: pointer;
    position: relative;
    width: 25px;
    height: 25px;
    top: 10px;
}

.applicant-clz::before{
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    border-radius: 5px;
    background-color: #FF7900;
    transform: rotate(45deg);
}

.applicant-clz::after{
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    border-radius: 5px;
    background-color: #FF7900;
    transform: rotate(-45deg);
}
.ul-add-applicant-block{
    margin: 15px;
}

.ul-load-applicant-container{
    margin: 0px 15px;
    color: #6a6b6c;
    overflow: hidden;
}

.ul-load-applicant-container li{
    margin: 15px 0px;
}

.contact-person-block li:first-child,
.ul-add-applicant-block li:not(:last-child){
    display: flex;
}

.ul-add-applicant-block li:first-child{
    margin-bottom: 45px;
}

.contact-person-block li:first-child div,
.ul-add-applicant-block .applicant-name-set,
.ul-add-applicant-block .applicant-phone-set,
.right-side div{
    width: 100%;
}

.applicant-phone-set-detail{
    display: flex;
    align-items: center;
}

.add-applicant-same-phone{
    margin-left: 10px;
}

.set-address-bottom{
    margin-bottom: 20px;
}

.contact-person-block .right-side > div{
    margin-bottom: 30px;
}

.button-group{
    text-align: center;
    margin-top: 50px;
}

.verify-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

/* 存活選項 */
.pick-survive-block {
    margin: 0 10px;
    color: #56C0E0
}

.add-applicant-location{
    width: -webkit-fill-available;
}

.add-applicant-remark{
    width: -webkit-fill-available;
    height: 100px;
}

#apply-reverification-code-btn,
.reciprocal-block,
#section-applicant-information-block{
    display: none;
}

.same-address-block,
.same-phone-block{
    margin: 10px 0px;
    color: #188CCC;
}

.datepicker-bottom{
    margin-top: -30px;
    margin-bottom: 30px;
}

/* 報名資料確認頁 */
#section-applicant-confirmation-block{
    display: none;
}

.load-user-detail-block{
    margin-top: 20px;
    margin-bottom: 50px;
    color: #6a6b6c;
}

.load-user-detail-block li{
    margin-bottom: 20px;
}

/* error msg */
#alert-error-block{
    display: flex;
    align-items: center;
    background-color: #FCF0D6;
    border-radius: 5px;
    padding: 15px;
    display: none;
}

.warn-title{
    font-weight: bold;
}

#alert-error-block ol{
    list-style: auto;
    margin-left: 15px;
}

#alert-error-block ol li{
    margin: 5px 0;
}

.warn-icon{
    width: 30px;
    margin-right: 30px;
}

@media (max-width:768px) {
    .contact-person-block li:first-child,
    .ul-add-applicant-block li{
        flex-direction: column;
        margin-bottom: 10px;
    }

    .ul-add-applicant-block li:first-child{
        margin-bottom: 10px;
    }
    
    .field-frame{
        width: -webkit-fill-available;
    }

    #alert-error-block{
        flex-direction: column;
    }

    .warn-icon{
        margin-right: unset;
        margin-bottom: 15px;
    }

    #ul-load-applicant-block > li{
        width: 100%;
    }

    .datepicker-bottom{
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

.div-ancestor-apply-list-table{
    display: none;
}

.div-user-list-table,
.div-ancestor-apply-list-table{
    overflow: hidden;
    overflow-x: scroll;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.div-user-list-table::-webkit-scrollbar,
.div-ancestor-apply-list-table::-webkit-scrollbar{
    height: 8px;
}

.div-user-list-table::-webkit-scrollbar-button,
.div-ancestor-apply-list-table::-webkit-scrollbar-button{
    background: transparent;
    border-radius: 5px;
}

.div-user-list-table::-webkit-scrollbar-track-piece,
.div-ancestor-apply-list-table::-webkit-scrollbar-track-piece{
    background: transparent;
}


.div-user-list-table::-webkit-scrollbar-thumb,
.div-ancestor-apply-list-table::-webkit-scrollbar-thumb{
    border-radius: 25px;
    background-color: #DCEDF6;
}

.div-user-list-table::-webkit-scrollbar-track,
.div-ancestor-apply-list-table::-webkit-scrollbar-track{
    box-shadow: transparent;
}

/* 加載圖示 */
.sigma_preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: .3s;
}

@-webkit-keyframes rot {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rot {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.sigma_preloader img {
    animation: rot 5s linear infinite;
    max-width: 100%;
    height: auto;
}

.sigma_preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.load-applicant-address{
    display: flex;
    align-items: center;
}

@media (max-width:1366px) {
    .load-applicant-address{
        flex-wrap: wrap;
    }

    .load-applicant-address-other{
        margin-top: 30px;
    }
}

#send-bank-info-btn{
    display: none;
}

/* 報名者資料選單 */
.applicant-sub-menu{
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.applicant-sub-menu-active{
    background-color: #DCEDF6;
}

.applicant-sub-menu li{
    cursor: pointer;
    padding: 15px;
    border: 1px solid #DCEDF6;
    margin-right: 20px;
}

.applicant-sub-menu li:hover{
    background-color: #DCEDF6;
}
