@charset "utf-8";
/*覆寫bootstrap primary色系*/
:root {
    --blue: #bc0614;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #bc0614;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.btn-primary {
    background-color: #bc0614;
    border-color: #bc0614;
    color: #ffffff !important;
}
.btn-primary:hover {
    background-color: #a00511;
    border-color: #960510;
}
.btn-primary.focus, .btn-primary:focus {
    color: #ffffff;
    background-color: #a00511;
    border-color: #960510;
    box-shadow: 0 0 0 0.2rem #ff6600;
}
.btn-primary.disabled,
.btn-primary:disabled {
    background-color: #bc0614;
    border-color: #bc0614;
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    background-color: #960510;
    border-color: #960510;
}
.btn-outline-primary {
    color: #bc0614;
    border-color: #bc0614;
}
.btn-outline-primary:hover {
    background-color: #bc0614;
    border-color: #bc0614;
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #bc0614;
}
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
    background-color: #bc0614;
    border-color: #bc0614;
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #ff6600;
}
.btn-link {
    color: #bc0614;
}
.dropdown-item.active,
.dropdown-item:active {
    background-color: #bc0614;
}
.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #bc0614;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #bc0614;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    background-color: #bc0614;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #bc0614;
}
.custom-range::-webkit-slider-thumb {
    background-color: #bc0614;
}
.custom-range::-moz-range-thumb {
    background-color: #bc0614;
}
.custom-range::-ms-thumb {
    background-color: #bc0614;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: #bc0614;
}
.page-link {
    color: #000000;
}
.page-link:hover {
    color: #bc0614;
}
.page-item.active .page-link {
    background-color: #bc0614;
    border-color: #bc0614;
}
.badge-primary {
    background-color: #bc0614;
}
.badge-primary[href]:hover,
.badge-primary[href]:focus {
    background-color: #960510;
}
.progress-bar {
    background-color: #bc0614;
}
.list-group-item.active {
    background-color: #bc0614;
    border-color: #bc0614;
}
.bg-primary {
    background-color: #bc0614 !important;
}
a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #960510 !important;
}
.border-primary {
    border-color: #bc0614 !important;
}
.text-primary {
    color: #bc0614 !important;
}
a.text-primary:hover,
a.text-primary:focus {
    color: #960510 !important;
}