/*
 *  * SweetAlert2 擴充 css
 */
/*--------------------------------*/

/*[class^=swal2] {
    -webkit-tap-highlight-color: transparent;
    font-size: 1rem;
}*/

/* 調整 popup 文字大小 */
.swal2-popup {
    font-size: 1em !important;
}

/* 調整 Title 文字大小 */
.swal2-title {
    font-size: 1.7em;
}

/* 更換 "確定" 按鈕 Button 顏色 */
.swal2-styled.swal2-confirm {
    background-color: #01575C;
}

    .swal2-styled.swal2-confirm:focus {
        box-shadow: 0 0 0 3px rgba(1, 86, 91, 0.5);
    }

/* 更換 Deny 按鈕 Button 顏色 */
.swal2-styled.swal2-deny {
    background-color: #BB2D3B;
}

    .swal2-styled.swal2-deny:focus {
        box-shadow: 0 0 0 3px rgba(185, 45, 59, 0.5);
    }

/* 更換 Cancel 按鈕 Button 顏色 */
.swal2-styled.swal2-cancel {
    background-color: #64697E;
}

    .swal2-styled.swal2-cancel:focus {
        box-shadow: 0 0 0 3px rgba(99, 104, 126, 0.5);
    }
