﻿/*
 *  * SweetAlert2 擴充 css
 */
/*--------------------------------*/

/* 調整 popup 文字大小 */
.swal2-popup {
    font-size: 1em !important;
}

/* 調整 Title 文字大小 */
.swal2-title {
    font-size: 1.7em;
}

/* 更換 Confirm 按鈕 Button 顏色 */
.swal2-styled.swal2-confirm {
    background-color: #0D6EFD;
}

    .swal2-styled.swal2-confirm:focus {
        box-shadow: 0 0 0 3px rgba(13, 109, 253, 0.5);
    }

/* 更換 Deny 按鈕 Button 顏色 */
.swal2-styled.swal2-deny {
    background-color: #DC3545;
}

    .swal2-styled.swal2-deny:focus {
        box-shadow: 0 0 0 3px rgba(220, 56, 72, 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);
    }
