.main.modal_blur .main-content {
    filter: blur(8px)
}

.modal .inner {
    text-align: center;
}

.modal h4 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
}

.modal .message {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin-bottom: 24px;
}

.modal a.close-modal {
    display: none;
}

.modal .action {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal .action .btn{
    width: 150px;
    height: 40px;
    font-size: 18px;
}


.modal .action .btn+.btn {
    margin-left: 16px;
}

.notice_modal {
    padding: 24px;
    width: 100%;
    min-width:311px;
}

/* notch_modal for used info modal */

/*----- notch_modal -----*/
.notch_modal.modal {
    padding: 0 0;
    /* overflow: hidden; */
    border: 2px solid var(--secondary-light-color);
    background-color: transparent;
    position: relative;
    max-width: 680px;
}

.notch_modal.modal a.close-modal {
    display: block;
    top: 8px;
    right: 8px;
    background-image: url(../../../../../../static/v2/images/cross_x.svg);

}

.notch_modal .item_header {
    width: 100%;
    height: 50px;
    background-color: var(--main-primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.notch_modal .item_header h4 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 0;
}

.notch_modal .item_body {
    background-color: #fff;
    padding: 16px;
    border-radius: 0 0 8px 8px;
}

.notch_modal.modal .message {
    text-align: left;
    color: #000;
}

.notch_modal.modal .message li+li {
    margin-top: 16px;
}

.notch_modal.modal .message a {
    text-decoration: underline;
}

 /* --------- 辨識中 ---------- */
 #ex_loading.modal {
    max-width: 180px;
    height: 180px;
    border-radius: 28px;
    padding: 16px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    box-sizing: border-box;
}

#ex_loading .inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#ex_loading img {
    width: 50%;
    object-fit: contain;
}

#ex_loading .close-modal {
    display: none;
}

#ex_loading h3 {
    width: 100%;
    bottom: 10px;
    left: 0;
    font-size: 14px;
    text-align: center;
    color: var(--main-primary-color);
    margin-top: 16px;
}

#ex_loading a.uploadBtn {
    text-decoration: none;
    color: #000;
    margin-bottom: 16px;
}

/* modal */
.module_modal.modal {
    width: 100%;
    max-width: 994px;
    min-width: 311px;
    padding: 0 0;
    border-radius: 15px;
    overflow: hidden;
}

.module_modal .item_header {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e4b849;
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding-left: 24px;
    padding-right: 8px;
    font-size: 20px;
    box-sizing: border-box;
}

.module_modal .item_header .btn_close {
    background: url("/static/v2/images/components/btn_type/btn_close_w_44.svg");
    width: 40px;
    height: 40px;
}

.module_modal .item_body {
    padding: 24px;
    background: #fff;
}

.module_modal .item_body .item_content {
    border-bottom: 1px solid #ccc;
}

.module_modal .item_body .item_content ul {
    display: flex;
    /* justify-content: center; */
    flex-wrap: wrap;
}

.module_modal .item_body .item_content li {
    min-width: 182px;
    min-height: 400px;
    margin-top: 16px;
    box-sizing: border-box;
    text-align: left;
}

.module_modal .item_body .item_content li:not(:last-child) {
    content: "";
    border-right: 1px solid #ecedf0;
}

.module_modal .item_body .item_content li:not(:first-child) {
    padding-left: 16px;
}


.module_modal .checked_list div::before {
    content: "\2713";
    color: var(--main-primary-color);
    /* font-size: 24px; */
    font-weight: 500;
    margin-right: 8px;
}

.module_modal .item h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #000;
}

.module_modal .item p {
    margin-bottom: 24px;
}

.module_modal .item .btn {
    width: 150px;
    margin-bottom: 40px;
    border-width: 2px;
    font-size: 20px;
}

.module_modal .checked_list {
    line-height: 1.5;
}

.module_modal .item_content+div {
    margin-top: 24px;
    text-align: center;
}

.module_modal .item_content+div a {
    color: #0052d9;
    text-decoration: underline;
}

@media screen and (max-width:450px) {
    .module_modal .item_body .item_content ul{
        justify-content: center;
    }

    .module_modal .item_body .item_content li{
        min-height: 100%;
        margin-bottom: 36px;
    }

    .module_modal .item_body .item_content li:not(:last-child){
        border-right: 0;
    }

    .module_modal .item_body .item_content li:not(:first-child){
        border-top: 1px solid #ecedf0;
        padding-top: 16px;
    }
}

/*通知視窗設定*/
.swal2-border-radius {
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    border-radius: 20px !important;
}

.swal2-actions button[type=button] {
    border-radius: 20px;
    width: 150px;
    height: 40px;
    line-height: 1;
}

.swal2-styled.swal2-cancel {
    color: var(--main-primary-color) !important;
    border: 2px solid var(--main-primary-color) !important;
}