@charset "UTF-8";

:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --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: "Source Sans Pro", -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
}

*,
::after,
::before {
    box-sizing: border-box
}
.modal-open {
    overflow: hidden
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px)
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none
}

.modal-dialog-scrollable {
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden
}

.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    content: ""
}

.modal-dialog-centered.modal-dialog-scrollable {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none
}

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .5);
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: .5
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem
}

.modal-header .close,
.modal-header .mailbox-attachment-close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    border-bottom-right-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.modal-footer>:not(:first-child) {
    margin-left: .25rem
}

.modal-footer>:not(:last-child) {
    margin-right: .25rem
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width:576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }
    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem)
    }
    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem)
    }
    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }
    .modal-dialog-centered::before {
        height: calc(100vh - 3.5rem)
    }
    .modal-content {
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .5)
    }
    .modal-sm {
        max-width: 300px
    }
}

@media (min-width:992px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px
    }
}

@media (min-width:1200px) {
    .modal-xl {
        max-width: 1140px
    }
}
.modal-dialog .overlay {
    background-color: #000;
    display: block;
    height: 100%;
    left: 0;
    opacity: .7;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1052
}
.modal-content.bg-warning .modal-footer,
.modal-content.bg-warning .modal-header {
    border-color: #343a40
}

.modal-content.bg-danger .close,
.modal-content.bg-danger .mailbox-attachment-close,
.modal-content.bg-info .close,
.modal-content.bg-info .mailbox-attachment-close,
.modal-content.bg-primary .close,
.modal-content.bg-primary .mailbox-attachment-close,
.modal-content.bg-secondary .close,
.modal-content.bg-secondary .mailbox-attachment-close,
.modal-content.bg-success .close,
.modal-content.bg-success .mailbox-attachment-close {
    color: #fff;
    text-shadow: 0 1px 0 #000
}
@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    color: #212529;
    text-decoration: none
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none
}

.btn.disabled,
.btn:disabled {
    opacity: .65;
    box-shadow: none
}

.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    box-shadow: none
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    box-shadow: none
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc
}

.btn-primary.focus,
.btn-primary:focus {
    box-shadow: none, 0 0 0 0 rgba(38, 143, 255, .5)
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf
}

.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 rgba(38, 143, 255, .5)
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    box-shadow: none
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62
}

.btn-secondary.focus,
.btn-secondary:focus {
    box-shadow: none, 0 0 0 0 rgba(130, 138, 145, .5)
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(130, 138, 145, .5)
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
    box-shadow: none
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34
}

.btn-success.focus,
.btn-success:focus {
    box-shadow: none, 0 0 0 0 rgba(72, 180, 97, .5)
}

.btn-success.disabled,
.btn-success:disabled {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430
}

.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show>.btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(72, 180, 97, .5)
}

.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
    box-shadow: none
}

.btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b
}

.btn-info.focus,
.btn-info:focus {
    box-shadow: none, 0 0 0 0 rgba(58, 176, 195, .5)
}

.btn-info.disabled,
.btn-info:disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show>.btn-info.dropdown-toggle {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show>.btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(58, 176, 195, .5)
}

.btn-warning {
    color: #1f2d3d;
    background-color: #ffc107;
    border-color: #ffc107;
    box-shadow: none
}

.btn-warning:hover {
    color: #1f2d3d;
    background-color: #e0a800;
    border-color: #d39e00
}

.btn-warning.focus,
.btn-warning:focus {
    box-shadow: none, 0 0 0 0 rgba(221, 171, 15, .5)
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #1f2d3d;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show>.btn-warning.dropdown-toggle {
    color: #1f2d3d;
    background-color: #d39e00;
    border-color: #c69500
}

.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show>.btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(221, 171, 15, .5)
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    box-shadow: none
}

.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130
}

.btn-danger.focus,
.btn-danger:focus {
    box-shadow: none, 0 0 0 0 rgba(225, 83, 97, .5)
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(225, 83, 97, .5)
}

.btn-light {
    color: #1f2d3d;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    box-shadow: none
}

.btn-light:hover {
    color: #1f2d3d;
    background-color: #e2e6ea;
    border-color: #dae0e5
}

.btn-light.focus,
.btn-light:focus {
    box-shadow: none, 0 0 0 0 rgba(215, 218, 222, .5)
}

.btn-light.disabled,
.btn-light:disabled {
    color: #1f2d3d;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle {
    color: #1f2d3d;
    background-color: #dae0e5;
    border-color: #d3d9df
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(215, 218, 222, .5)
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
    box-shadow: none
}

.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124
}

.btn-dark.focus,
.btn-dark:focus {
    box-shadow: none, 0 0 0 0 rgba(82, 88, 93, .5)
}

.btn-dark.disabled,
.btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show>.btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d
}

.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(82, 88, 93, .5)
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, .5)
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, .5)
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
    box-shadow: 0 0 0 0 rgba(108, 117, 125, .5)
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show>.btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(108, 117, 125, .5)
}

.btn-outline-success {
    color: #28a745;
    border-color: #28a745
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745
}

.btn-outline-success.focus,
.btn-outline-success:focus {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, .5)
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show>.btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, .5)
}

.btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-outline-info.focus,
.btn-outline-info:focus {
    box-shadow: 0 0 0 0 rgba(23, 162, 184, .5)
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show>.btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(23, 162, 184, .5)
}

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107
}

.btn-outline-warning:hover {
    color: #1f2d3d;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-outline-warning.focus,
.btn-outline-warning:focus {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, .5)
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent
}

.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show>.btn-outline-warning.dropdown-toggle {
    color: #1f2d3d;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, .5)
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger.focus,
.btn-outline-danger:focus {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, .5)
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent
}

.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show>.btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, .5)
}

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light:hover {
    color: #1f2d3d;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light.focus,
.btn-outline-light:focus {
    box-shadow: 0 0 0 0 rgba(248, 249, 250, .5)
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show>.btn-outline-light.dropdown-toggle {
    color: #1f2d3d;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(248, 249, 250, .5)
}

.btn-outline-dark {
    color: #343a40;
    border-color: #343a40
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-outline-dark.focus,
.btn-outline-dark:focus {
    box-shadow: 0 0 0 0 rgba(52, 58, 64, .5)
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show>.btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(52, 58, 64, .5)
}

.btn-link {
    font-weight: 400;
    color: #007bff;
    text-decoration: none
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: none
}

.btn-link.focus,
.btn-link:focus {
    text-decoration: none;
    box-shadow: none
}

.btn-link.disabled,
.btn-link:disabled {
    color: #6c757d;
    pointer-events: none
}

.btn-group-lg>.btn,
.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

.btn-group-sm>.btn,
.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block+.btn-block {
    margin-top: .5rem
}

input[type=button].btn-block,
input[type=reset].btn-block,
input[type=submit].btn-block {
    width: 100%
}
.btn-group,
.btn-group-vertical {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle
}

.btn-group-vertical>.btn,
.btn-group>.btn {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.btn-group-vertical>.btn:hover,
.btn-group>.btn:hover {
    z-index: 1
}

.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus {
    z-index: 1
}

.btn-toolbar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.btn-toolbar .input-group {
    width: auto
}

.btn-group>.btn-group:not(:first-child),
.btn-group>.btn:not(:first-child) {
    margin-left: -1px
}

.btn-group>.btn-group:not(:last-child)>.btn,
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group>.btn-group:not(:first-child)>.btn,
.btn-group>.btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}
.btn-group-sm>.btn+.dropdown-toggle-split,
.btn-sm+.dropdown-toggle-split {
    padding-right: .375rem;
    padding-left: .375rem
}

.btn-group-lg>.btn+.dropdown-toggle-split,
.btn-lg+.dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem
}

.btn-group.show .dropdown-toggle {
    box-shadow: none
}

.btn-group.show .dropdown-toggle.btn-link {
    box-shadow: none
}

.btn-group-vertical {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group {
    width: 100%
}

.btn-group-vertical>.btn-group:not(:first-child),
.btn-group-vertical>.btn:not(:first-child) {
    margin-top: -1px
}

.btn-group-vertical>.btn-group:not(:last-child)>.btn,
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn-group:not(:first-child)>.btn,
.btn-group-vertical>.btn:not(:first-child) {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.btn-group-toggle>.btn,
.btn-group-toggle>.btn-group>.btn {
    margin-bottom: 0
}

.btn-group-toggle>.btn input[type=checkbox],
.btn-group-toggle>.btn input[type=radio],
.btn-group-toggle>.btn-group>.btn input[type=checkbox],
.btn-group-toggle>.btn-group>.btn input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}
.input-group-append .btn,
.input-group-prepend .btn {
    position: relative;
    z-index: 2
}

.input-group-append .btn:focus,
.input-group-prepend .btn:focus {
    z-index: 3
}

.input-group-append .btn+.btn,
.input-group-append .btn+.input-group-text,
.input-group-append .input-group-text+.btn,
.input-group-append .input-group-text+.input-group-text,
.input-group-prepend .btn+.btn,
.input-group-prepend .btn+.input-group-text,
.input-group-prepend .input-group-text+.btn,
.input-group-prepend .input-group-text+.input-group-text {
    margin-left: -1px
}
.input-group-lg>.custom-select,
.input-group-lg>.form-control,
.input-group-lg>.input-group-append>.btn,
.input-group-lg>.input-group-append>.input-group-text,
.input-group-lg>.input-group-prepend>.btn,
.input-group-lg>.input-group-prepend>.input-group-text {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}
.input-group-sm>.custom-select,
.input-group-sm>.form-control,
.input-group-sm>.input-group-append>.btn,
.input-group-sm>.input-group-append>.input-group-text,
.input-group-sm>.input-group-prepend>.btn,
.input-group-sm>.input-group-prepend>.input-group-text {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}
.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),
.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),
.input-group>.input-group-append:not(:last-child)>.btn,
.input-group>.input-group-append:not(:last-child)>.input-group-text,
.input-group>.input-group-prepend>.btn,
.input-group>.input-group-prepend>.input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group>.input-group-append>.btn,
.input-group>.input-group-append>.input-group-text,
.input-group>.input-group-prepend:first-child>.btn:not(:first-child),
.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),
.input-group>.input-group-prepend:not(:first-child)>.btn,
.input-group>.input-group-prepend:not(:first-child)>.input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}
.btn .badge {
    position: relative;
    top: -1px
}
@media print {
    *,
    ::after,
    ::before {
        text-shadow: none !important;
        box-shadow: none !important
    }

    a:not(.btn) {
        text-decoration: underline
    }
}
.btn-navbar {
    background-color: transparent;
    border-left-width: 0
}
.btn-navbar,
.form-control-navbar {
    transition: none
}

.navbar-dark .btn-navbar,
.navbar-dark .form-control-navbar {
    background-color: rgba(255, 255, 255, .2);
    border: 0
}
.navbar-dark .form-control-navbar+.input-group-append>.btn-navbar {
    color: rgba(255, 255, 255, .6)
}

.navbar-dark .form-control-navbar:focus,
.navbar-dark .form-control-navbar:focus+.input-group-append .btn-navbar {
    background-color: rgba(255, 255, 255, .6);
    border: 0!important;
    color: #343a40
}

.navbar-light .btn-navbar,
.navbar-light .form-control-navbar {
    background-color: #f2f4f6;
    border: 0
}
.navbar-light .form-control-navbar+.input-group-append>.btn-navbar {
    color: rgba(0, 0, 0, .6)
}

.navbar-light .form-control-navbar:focus,
.navbar-light .form-control-navbar:focus+.input-group-append .btn-navbar {
    background-color: #e9ecef;
    border: 0!important;
    color: #343a40
}
[class*=sidebar-dark] .btn-sidebar,
[class*=sidebar-dark] .form-control-sidebar {
    background: #3f474e;
    border: 1px solid #56606a;
    color: #fff
}

[class*=sidebar-dark] .btn-sidebar:focus,
[class*=sidebar-dark] .form-control-sidebar:focus {
    border: 1px solid #7a8793
}

[class*=sidebar-dark] .btn-sidebar:hover {
    background: #454d55
}

[class*=sidebar-dark] .btn-sidebar:focus {
    background: #4b545c
}

[class*=sidebar-light] .btn-sidebar,
[class*=sidebar-light] .form-control-sidebar {
    background: #f2f2f2;
    border: 1px solid #d9d9d9;
    color: #1f2d3d
}

[class*=sidebar-light] .btn-sidebar:focus,
[class*=sidebar-light] .form-control-sidebar:focus {
    border: 1px solid #b3b3b3
}

[class*=sidebar-light] .btn-sidebar:hover {
    background: #ececec
}

[class*=sidebar-light] .btn-sidebar:focus {
    background: #e6e6e6
}
.navbar-nav>.user-menu>.dropdown-menu>.user-footer .btn-default {
    color: #6c757d
}

@media (min-width:576px) {
    .navbar-nav>.user-menu>.dropdown-menu>.user-footer .btn-default:hover {
        background-color: #f8f9fa
    }
}
.btn-group-vertical .btn.btn-flat:first-of-type,
.btn-group-vertical .btn.btn-flat:last-of-type {
    border-radius: 0
}

.bg-gradient-primary .btn-tool,
.bg-primary .btn-tool,
.card-primary:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-primary .btn-tool:hover,
.bg-primary .btn-tool:hover,
.card-primary:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-secondary .btn-tool,
.bg-secondary .btn-tool,
.card-secondary:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-secondary .btn-tool:hover,
.bg-secondary .btn-tool:hover,
.card-secondary:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-success .btn-tool,
.bg-success .btn-tool,
.card-success:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-success .btn-tool:hover,
.bg-success .btn-tool:hover,
.card-success:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-info .btn-tool,
.bg-info .btn-tool,
.card-info:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-info .btn-tool:hover,
.bg-info .btn-tool:hover,
.card-info:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-warning .btn-tool,
.bg-warning .btn-tool,
.card-warning:not(.card-outline) .btn-tool {
    color: rgba(31, 45, 61, .8)
}

.bg-gradient-warning .btn-tool:hover,
.bg-warning .btn-tool:hover,
.card-warning:not(.card-outline) .btn-tool:hover {
    color: #1f2d3d
}
.bg-danger .btn-tool,
.bg-gradient-danger .btn-tool,
.card-danger:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-danger .btn-tool:hover,
.bg-gradient-danger .btn-tool:hover,
.card-danger:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-light .btn-tool,
.bg-light .btn-tool,
.card-light:not(.card-outline) .btn-tool {
    color: rgba(31, 45, 61, .8)
}

.bg-gradient-light .btn-tool:hover,
.bg-light .btn-tool:hover,
.card-light:not(.card-outline) .btn-tool:hover {
    color: #1f2d3d
}
.bg-dark .btn-tool,
.bg-gradient-dark .btn-tool,
.card-dark:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-dark .btn-tool:hover,
.bg-gradient-dark .btn-tool:hover,
.card-dark:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-lightblue .btn-tool,
.bg-lightblue .btn-tool,
.card-lightblue:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-lightblue .btn-tool:hover,
.bg-lightblue .btn-tool:hover,
.card-lightblue:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-navy .btn-tool,
.bg-navy .btn-tool,
.card-navy:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-navy .btn-tool:hover,
.bg-navy .btn-tool:hover,
.card-navy:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-olive .btn-tool,
.bg-olive .btn-tool,
.card-olive:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-olive .btn-tool:hover,
.bg-olive .btn-tool:hover,
.card-olive:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-lime .btn-tool,
.bg-lime .btn-tool,
.card-lime:not(.card-outline) .btn-tool {
    color: rgba(31, 45, 61, .8)
}

.bg-gradient-lime .btn-tool:hover,
.bg-lime .btn-tool:hover,
.card-lime:not(.card-outline) .btn-tool:hover {
    color: #1f2d3d
}.bg-fuchsia .btn-tool,
 .bg-gradient-fuchsia .btn-tool,
 .card-fuchsia:not(.card-outline) .btn-tool {
     color: rgba(255, 255, 255, .8)
 }

.bg-fuchsia .btn-tool:hover,
.bg-gradient-fuchsia .btn-tool:hover,
.card-fuchsia:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-maroon .btn-tool,
.bg-maroon .btn-tool,
.card-maroon:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-maroon .btn-tool:hover,
.bg-maroon .btn-tool:hover,
.card-maroon:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-blue .btn-tool,
.bg-gradient-blue .btn-tool,
.card-blue:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-blue .btn-tool:hover,
.bg-gradient-blue .btn-tool:hover,
.card-blue:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-indigo .btn-tool,
.bg-indigo .btn-tool,
.card-indigo:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-indigo .btn-tool:hover,
.bg-indigo .btn-tool:hover,
.card-indigo:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-purple .btn-tool,
.bg-purple .btn-tool,
.card-purple:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-purple .btn-tool:hover,
.bg-purple .btn-tool:hover,
.card-purple:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-pink .btn-tool,
.bg-pink .btn-tool,
.card-pink:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-pink .btn-tool:hover,
.bg-pink .btn-tool:hover,
.card-pink:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-red .btn-tool,
.bg-red .btn-tool,
.card-red:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-red .btn-tool:hover,
.bg-red .btn-tool:hover,
.card-red:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-yellow .btn-tool,
.bg-yellow .btn-tool,
.card-yellow:not(.card-outline) .btn-tool {
    color: rgba(31, 45, 61, .8)
}

.bg-gradient-yellow .btn-tool:hover,
.bg-yellow .btn-tool:hover,
.card-yellow:not(.card-outline) .btn-tool:hover {
    color: #1f2d3d
}
.bg-gradient-green .btn-tool,
.bg-green .btn-tool,
.card-green:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-green .btn-tool:hover,
.bg-green .btn-tool:hover,
.card-green:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-teal .btn-tool,
.bg-teal .btn-tool,
.card-teal:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-teal .btn-tool:hover,
.bg-teal .btn-tool:hover,
.card-teal:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-cyan .btn-tool,
.bg-gradient-cyan .btn-tool,
.card-cyan:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-cyan .btn-tool:hover,
.bg-gradient-cyan .btn-tool:hover,
.card-cyan:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-white .btn-tool,
.bg-white .btn-tool,
.card-white:not(.card-outline) .btn-tool {
    color: rgba(31, 45, 61, .8)
}

.bg-gradient-white .btn-tool:hover,
.bg-white .btn-tool:hover,
.card-white:not(.card-outline) .btn-tool:hover {
    color: #1f2d3d
}
.bg-gradient-gray .btn-tool,
.bg-gray .btn-tool,
.card-gray:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-gray .btn-tool:hover,
.bg-gray .btn-tool:hover,
.card-gray:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.bg-gradient-gray-dark .btn-tool,
.bg-gray-dark .btn-tool,
.card-gray-dark:not(.card-outline) .btn-tool {
    color: rgba(255, 255, 255, .8)
}

.bg-gradient-gray-dark .btn-tool:hover,
.bg-gray-dark .btn-tool:hover,
.card-gray-dark:not(.card-outline) .btn-tool:hover {
    color: #fff
}
.btn-tool {
    background: 0 0;
    color: #adb5bd;
    font-size: .875rem;
    margin: -.75rem 0;
    padding: .25rem .5rem
}

.btn-group.show .btn-tool,
.btn-tool:hover {
    color: #495057
}

.btn-tool:focus,
.show .btn-tool {
    box-shadow: none!important
}
.btn.disabled,
.btn:disabled {
    cursor: not-allowed
}

.btn.btn-flat {
    border-radius: 0;
    border-width: 1px;
    box-shadow: none
}

.btn.btn-file {
    overflow: hidden;
    position: relative
}

.btn.btn-file>input[type=file] {
    background: #fff;
    cursor: inherit;
    display: block;
    font-size: 100px;
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    outline: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 0
}

.text-sm .btn {
    font-size: .875rem!important
}

.btn-default {
    background-color: #f8f9fa;
    border-color: #ddd;
    color: #444
}

.btn-default.hover,
.btn-default:active,
.btn-default:hover {
    background-color: #e9ecef;
    color: #2b2b2b
}

.btn-app {
    border-radius: 3px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    color: #6c757d;
    font-size: 12px;
    height: 60px;
    margin: 0 0 10px 10px;
    min-width: 80px;
    padding: 15px 5px;
    position: relative;
    text-align: center
}

.btn-app>.fa,
.btn-app>.fab,
.btn-app>.far,
.btn-app>.fas,
.btn-app>.glyphicon,
.btn-app>.ion {
    display: block;
    font-size: 20px
}

.btn-app:hover {
    background: #f8f9fa;
    border-color: #aaa;
    color: #444
}

.btn-app:active,
.btn-app:focus {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn-app>.badge {
    font-size: 10px;
    font-weight: 400;
    position: absolute;
    right: -10px;
    top: -3px
}

.btn-xs {
    padding: .125rem .25rem;
    font-size: .75rem;
    line-height: 1.5;
    border-radius: .15rem
}.lockscreen-credentials .btn {
     background-color: #fff;
     border: 0;
     padding: 0 10px
 }
.badge-btn {
    border-radius: .15rem;
    font-size: .75rem;
    font-weight: 400;
    padding: .25rem .5rem
}

.badge-btn.badge-pill {
    padding: .375rem .6rem
}
.bg-primary.btn:hover {
    border-color: #0062cc;
    color: #ececec
}

.bg-primary.btn.active,
.bg-primary.btn:active,
.bg-primary.btn:not(:disabled):not(.disabled).active,
.bg-primary.btn:not(:disabled):not(.disabled):active {
    background-color: #0062cc!important;
    border-color: #005cbf;
    color: #fff
}.bg-secondary.btn:hover {
     border-color: #545b62;
     color: #ececec
 }

.bg-secondary.btn.active,
.bg-secondary.btn:active,
.bg-secondary.btn:not(:disabled):not(.disabled).active,
.bg-secondary.btn:not(:disabled):not(.disabled):active {
    background-color: #545b62!important;
    border-color: #4e555b;
    color: #fff
}.bg-success.btn:hover {
     border-color: #1e7e34;
     color: #ececec
 }

.bg-success.btn.active,
.bg-success.btn:active,
.bg-success.btn:not(:disabled):not(.disabled).active,
.bg-success.btn:not(:disabled):not(.disabled):active {
    background-color: #1e7e34!important;
    border-color: #1c7430;
    color: #fff
}
.bg-info.btn:hover {
    border-color: #117a8b;
    color: #ececec
}

.bg-info.btn.active,
.bg-info.btn:active,
.bg-info.btn:not(:disabled):not(.disabled).active,
.bg-info.btn:not(:disabled):not(.disabled):active {
    background-color: #117a8b!important;
    border-color: #10707f;
    color: #fff
}
.bg-warning.btn:hover {
    border-color: #d39e00;
    color: #121a24
}

.bg-warning.btn.active,
.bg-warning.btn:active,
.bg-warning.btn:not(:disabled):not(.disabled).active,
.bg-warning.btn:not(:disabled):not(.disabled):active {
    background-color: #d39e00!important;
    border-color: #c69500;
    color: #1f2d3d
}
.bg-danger.btn:hover {
    border-color: #bd2130;
    color: #ececec
}

.bg-danger.btn.active,
.bg-danger.btn:active,
.bg-danger.btn:not(:disabled):not(.disabled).active,
.bg-danger.btn:not(:disabled):not(.disabled):active {
    background-color: #bd2130!important;
    border-color: #b21f2d;
    color: #fff
}
.bg-light.btn:hover {
    border-color: #dae0e5;
    color: #121a24
}

.bg-light.btn.active,
.bg-light.btn:active,
.bg-light.btn:not(:disabled):not(.disabled).active,
.bg-light.btn:not(:disabled):not(.disabled):active {
    background-color: #dae0e5!important;
    border-color: #d3d9df;
    color: #1f2d3d
}
.bg-dark.btn:hover {
    border-color: #1d2124;
    color: #ececec
}

.bg-dark.btn.active,
.bg-dark.btn:active,
.bg-dark.btn:not(:disabled):not(.disabled).active,
.bg-dark.btn:not(:disabled):not(.disabled):active {
    background-color: #1d2124!important;
    border-color: #171a1d;
    color: #fff
}.bg-lightblue.btn:hover {
     border-color: #307095;
     color: #ececec
 }

.bg-lightblue.btn.active,
.bg-lightblue.btn:active,
.bg-lightblue.btn:not(:disabled):not(.disabled).active,
.bg-lightblue.btn:not(:disabled):not(.disabled):active {
    background-color: #307095!important;
    border-color: #2d698c;
    color: #fff
}.bg-navy.btn:hover {
     border-color: #00060c;
     color: #ececec
 }

.bg-navy.btn.active,
.bg-navy.btn:active,
.bg-navy.btn:not(:disabled):not(.disabled).active,
.bg-navy.btn:not(:disabled):not(.disabled):active {
    background-color: #00060c!important;
    border-color: #000;
    color: #fff
}.bg-olive.btn:hover {
     border-color: #2e7555;
     color: #ececec
 }

.bg-olive.btn.active,
.bg-olive.btn:active,
.bg-olive.btn:not(:disabled):not(.disabled).active,
.bg-olive.btn:not(:disabled):not(.disabled):active {
    background-color: #2e7555!important;
    border-color: #2b6b4f;
    color: #fff
}.bg-lime.btn:hover {
     border-color: #00cd5a;
     color: #121a24
 }

.bg-lime.btn.active,
.bg-lime.btn:active,
.bg-lime.btn:not(:disabled):not(.disabled).active,
.bg-lime.btn:not(:disabled):not(.disabled):active {
    background-color: #00cd5a!important;
    border-color: #00c054;
    color: #fff
}.bg-fuchsia.btn:hover {
     border-color: #c30c9a;
     color: #ececec
 }

.bg-fuchsia.btn.active,
.bg-fuchsia.btn:active,
.bg-fuchsia.btn:not(:disabled):not(.disabled).active,
.bg-fuchsia.btn:not(:disabled):not(.disabled):active {
    background-color: #c30c9a!important;
    border-color: #b70c90;
    color: #fff
}.bg-maroon.btn:hover {
     border-color: #ab154c;
     color: #ececec
 }

.bg-maroon.btn.active,
.bg-maroon.btn:active,
.bg-maroon.btn:not(:disabled):not(.disabled).active,
.bg-maroon.btn:not(:disabled):not(.disabled):active {
    background-color: #ab154c!important;
    border-color: #9f1447;
    color: #fff
}.bg-blue.btn:hover {
     border-color: #0062cc;
     color: #ececec
 }

.bg-blue.btn.active,
.bg-blue.btn:active,
.bg-blue.btn:not(:disabled):not(.disabled).active,
.bg-blue.btn:not(:disabled):not(.disabled):active {
    background-color: #0062cc!important;
    border-color: #005cbf;
    color: #fff
}.bg-indigo.btn:hover {
     border-color: #510bc4;
     color: #ececec
 }

.bg-indigo.btn.active,
.bg-indigo.btn:active,
.bg-indigo.btn:not(:disabled):not(.disabled).active,
.bg-indigo.btn:not(:disabled):not(.disabled):active {
    background-color: #510bc4!important;
    border-color: #4c0ab8;
    color: #fff
}
.bg-purple.btn:hover {
    border-color: #59339d;
    color: #ececec
}

.bg-purple.btn.active,
.bg-purple.btn:active,
.bg-purple.btn:not(:disabled):not(.disabled).active,
.bg-purple.btn:not(:disabled):not(.disabled):active {
    background-color: #59339d!important;
    border-color: #533093;
    color: #fff
}.bg-pink.btn:hover {
     border-color: #d91a72;
     color: #ececec
 }

.bg-pink.btn.active,
.bg-pink.btn:active,
.bg-pink.btn:not(:disabled):not(.disabled).active,
.bg-pink.btn:not(:disabled):not(.disabled):active {
    background-color: #d91a72!important;
    border-color: #ce196c;
    color: #fff
}.bg-red.btn:hover {
     border-color: #bd2130;
     color: #ececec
 }

.bg-red.btn.active,
.bg-red.btn:active,
.bg-red.btn:not(:disabled):not(.disabled).active,
.bg-red.btn:not(:disabled):not(.disabled):active {
    background-color: #bd2130!important;
    border-color: #b21f2d;
    color: #fff
}.bg-orange.btn:hover {
     border-color: #dc6502;
     color: #121a24
 }

.bg-orange.btn.active,
.bg-orange.btn:active,
.bg-orange.btn:not(:disabled):not(.disabled).active,
.bg-orange.btn:not(:disabled):not(.disabled):active {
    background-color: #dc6502!important;
    border-color: #cf5f02;
    color: #fff
}
.bg-yellow.btn:hover {
    border-color: #d39e00;
    color: #121a24
}

.bg-yellow.btn.active,
.bg-yellow.btn:active,
.bg-yellow.btn:not(:disabled):not(.disabled).active,
.bg-yellow.btn:not(:disabled):not(.disabled):active {
    background-color: #d39e00!important;
    border-color: #c69500;
    color: #1f2d3d
}.bg-green.btn:hover {
     border-color: #1e7e34;
     color: #ececec
 }

.bg-green.btn.active,
.bg-green.btn:active,
.bg-green.btn:not(:disabled):not(.disabled).active,
.bg-green.btn:not(:disabled):not(.disabled):active {
    background-color: #1e7e34!important;
    border-color: #1c7430;
    color: #fff
}.bg-teal.btn:hover {
     border-color: #199d76;
     color: #ececec
 }

.bg-teal.btn.active,
.bg-teal.btn:active,
.bg-teal.btn:not(:disabled):not(.disabled).active,
.bg-teal.btn:not(:disabled):not(.disabled):active {
    background-color: #199d76!important;
    border-color: #17926e;
    color: #fff
}.bg-cyan.btn:hover {
     border-color: #117a8b;
     color: #ececec
 }

.bg-cyan.btn.active,
.bg-cyan.btn:active,
.bg-cyan.btn:not(:disabled):not(.disabled).active,
.bg-cyan.btn:not(:disabled):not(.disabled):active {
    background-color: #117a8b!important;
    border-color: #10707f;
    color: #fff
}
.custom-control-input.is-valid~.custom-control-label,
.was-validated .custom-control-input:valid~.custom-control-label {
    color: #28a745
}

.custom-control-input.is-valid~.custom-control-label::before,
.was-validated .custom-control-input:valid~.custom-control-label::before {
    border-color: #28a745
}

.custom-control-input.is-valid~.valid-feedback,
.custom-control-input.is-valid~.valid-tooltip,
.was-validated .custom-control-input:valid~.valid-feedback,
.was-validated .custom-control-input:valid~.valid-tooltip {
    display: block
}

.custom-control-input.is-valid:checked~.custom-control-label::before,
.was-validated .custom-control-input:valid:checked~.custom-control-label::before {
    border-color: #34ce57;
    background-color: #34ce57
}

.custom-control-input.is-valid:focus~.custom-control-label::before,
.was-validated .custom-control-input:valid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, .25)
}

.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,
.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before {
    border-color: #28a745
}@media (min-width:576px) {
    .form-inline label {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0
    }
    .form-inline .form-group {
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0
    }
    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }
    .form-inline .form-control-plaintext {
        display: inline-block
    }
    .form-inline .custom-select,
    .form-inline .input-group {
        width: auto
    }
    .form-inline .form-check {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0
    }
    .form-inline .form-check-input {
        position: relative;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-top: 0;
        margin-right: .25rem;
        margin-left: 0
    }
    .form-inline .custom-control {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .form-inline .custom-control-label {
        margin-bottom: 0
    }
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem
}

.custom-control-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #007bff;
    background-color: #007bff;
    box-shadow: none
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: inset 0 0 0 transparent, none
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #80bdff
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
    border-color: #b3d7ff;
    box-shadow: none
}

.custom-control-input:disabled~.custom-control-label {
    color: #6c757d
}

.custom-control-input:disabled~.custom-control-label::before {
    background-color: #e9ecef
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top
}

.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #dee2e6;
    border: #adb5bd solid 1px;
    box-shadow: inset 0 .25rem .25rem rgba(0, 0, 0, .1)
}

.custom-control-label::after {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50%/50% 50%
}

.custom-checkbox .custom-control-label::before {
    border-radius: .25rem
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
    border-color: #007bff;
    background-color: #007bff;
    box-shadow: none
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23ffffff' d='M0 2h4'/%3E%3C/svg%3E")
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(0, 123, 255, .5)
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
    background-color: rgba(0, 123, 255, .5)
}

.custom-radio .custom-control-label::before {
    border-radius: 50%
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23ffffff'/%3E%3C/svg%3E")
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(0, 123, 255, .5)
}

.custom-switch {
    padding-left: 2.25rem
}

.custom-switch .custom-control-label::before {
    left: -2.25rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: .5rem
}

.custom-switch .custom-control-label::after {
    top: calc(.25rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #adb5bd;
    border-radius: .5rem;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out;
    transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .custom-switch .custom-control-label::after {
        transition: none
    }
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
    background-color: #dee2e6;
    -webkit-transform: translateX(.75rem);
    transform: translateX(.75rem)
}

.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(0, 123, 255, .5)
}
.custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .custom-control-label::before,
    .custom-file-label,
    .custom-select {
        transition: none
    }
}
.custom-switch.custom-switch-off-primary .custom-control-input~.custom-control-label::before {
    background: #007bff;
    border-color: #004a99
}

.custom-switch.custom-switch-off-primary .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(0, 123, 255, .25)
}

.custom-switch.custom-switch-off-primary .custom-control-input~.custom-control-label::after {
    background: #003e80
}

.custom-switch.custom-switch-on-primary .custom-control-input:checked~.custom-control-label::before {
    background: #007bff;
    border-color: #004a99
}

.custom-switch.custom-switch-on-primary .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(0, 123, 255, .25)
}

.custom-switch.custom-switch-on-primary .custom-control-input:checked~.custom-control-label::after {
    background: #99caff
}

.custom-switch.custom-switch-off-secondary .custom-control-input~.custom-control-label::before {
    background: #6c757d;
    border-color: #3d4246
}

.custom-switch.custom-switch-off-secondary .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(108, 117, 125, .25)
}

.custom-switch.custom-switch-off-secondary .custom-control-input~.custom-control-label::after {
    background: #313539
}

.custom-switch.custom-switch-on-secondary .custom-control-input:checked~.custom-control-label::before {
    background: #6c757d;
    border-color: #3d4246
}

.custom-switch.custom-switch-on-secondary .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(108, 117, 125, .25)
}

.custom-switch.custom-switch-on-secondary .custom-control-input:checked~.custom-control-label::after {
    background: #bcc1c6
}

.custom-switch.custom-switch-off-success .custom-control-input~.custom-control-label::before {
    background: #28a745;
    border-color: #145523
}

.custom-switch.custom-switch-off-success .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(40, 167, 69, .25)
}

.custom-switch.custom-switch-off-success .custom-control-input~.custom-control-label::after {
    background: #0f401b
}

.custom-switch.custom-switch-on-success .custom-control-input:checked~.custom-control-label::before {
    background: #28a745;
    border-color: #145523
}

.custom-switch.custom-switch-on-success .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(40, 167, 69, .25)
}

.custom-switch.custom-switch-on-success .custom-control-input:checked~.custom-control-label::after {
    background: #86e29b
}

.custom-switch.custom-switch-off-info .custom-control-input~.custom-control-label::before {
    background: #17a2b8;
    border-color: #0c525d
}

.custom-switch.custom-switch-off-info .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(23, 162, 184, .25)
}

.custom-switch.custom-switch-off-info .custom-control-input~.custom-control-label::after {
    background: #093e47
}

.custom-switch.custom-switch-on-info .custom-control-input:checked~.custom-control-label::before {
    background: #17a2b8;
    border-color: #0c525d
}

.custom-switch.custom-switch-on-info .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(23, 162, 184, .25)
}

.custom-switch.custom-switch-on-info .custom-control-input:checked~.custom-control-label::after {
    background: #7adeee
}

.custom-switch.custom-switch-off-warning .custom-control-input~.custom-control-label::before {
    background: #ffc107;
    border-color: #a07800
}

.custom-switch.custom-switch-off-warning .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(255, 193, 7, .25)
}

.custom-switch.custom-switch-off-warning .custom-control-input~.custom-control-label::after {
    background: #876500
}

.custom-switch.custom-switch-on-warning .custom-control-input:checked~.custom-control-label::before {
    background: #ffc107;
    border-color: #a07800
}

.custom-switch.custom-switch-on-warning .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(255, 193, 7, .25)
}

.custom-switch.custom-switch-on-warning .custom-control-input:checked~.custom-control-label::after {
    background: #ffe7a0
}

.custom-switch.custom-switch-off-danger .custom-control-input~.custom-control-label::before {
    background: #dc3545;
    border-color: #921925
}

.custom-switch.custom-switch-off-danger .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(220, 53, 69, .25)
}

.custom-switch.custom-switch-off-danger .custom-control-input~.custom-control-label::after {
    background: #7c151f
}

.custom-switch.custom-switch-on-danger .custom-control-input:checked~.custom-control-label::before {
    background: #dc3545;
    border-color: #921925
}

.custom-switch.custom-switch-on-danger .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(220, 53, 69, .25)
}

.custom-switch.custom-switch-on-danger .custom-control-input:checked~.custom-control-label::after {
    background: #f3b7bd
}

.custom-switch.custom-switch-off-light .custom-control-input~.custom-control-label::before {
    background: #f8f9fa;
    border-color: #bdc6d0
}

.custom-switch.custom-switch-off-light .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(248, 249, 250, .25)
}

.custom-switch.custom-switch-off-light .custom-control-input~.custom-control-label::after {
    background: #aeb9c5
}

.custom-switch.custom-switch-on-light .custom-control-input:checked~.custom-control-label::before {
    background: #f8f9fa;
    border-color: #bdc6d0
}

.custom-switch.custom-switch-on-light .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(248, 249, 250, .25)
}

.custom-switch.custom-switch-on-light .custom-control-input:checked~.custom-control-label::after {
    background: #fff
}

.custom-switch.custom-switch-off-dark .custom-control-input~.custom-control-label::before {
    background: #343a40;
    border-color: #060708
}

.custom-switch.custom-switch-off-dark .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(52, 58, 64, .25)
}

.custom-switch.custom-switch-off-dark .custom-control-input~.custom-control-label::after {
    background: #000
}

.custom-switch.custom-switch-on-dark .custom-control-input:checked~.custom-control-label::before {
    background: #343a40;
    border-color: #060708
}

.custom-switch.custom-switch-on-dark .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(52, 58, 64, .25)
}

.custom-switch.custom-switch-on-dark .custom-control-input:checked~.custom-control-label::after {
    background: #7a8793
}

.custom-switch.custom-switch-off-lightblue .custom-control-input~.custom-control-label::before {
    background: #3c8dbc;
    border-color: #23536f
}

.custom-switch.custom-switch-off-lightblue .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(60, 141, 188, .25)
}

.custom-switch.custom-switch-off-lightblue .custom-control-input~.custom-control-label::after {
    background: #1d455b
}

.custom-switch.custom-switch-on-lightblue .custom-control-input:checked~.custom-control-label::before {
    background: #3c8dbc;
    border-color: #23536f
}

.custom-switch.custom-switch-on-lightblue .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(60, 141, 188, .25)
}

.custom-switch.custom-switch-on-lightblue .custom-control-input:checked~.custom-control-label::after {
    background: #acd0e5
}

.custom-switch.custom-switch-off-navy .custom-control-input~.custom-control-label::before {
    background: #001f3f;
    border-color: #000
}

.custom-switch.custom-switch-off-navy .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(0, 31, 63, .25)
}

.custom-switch.custom-switch-off-navy .custom-control-input~.custom-control-label::after {
    background: #000
}

.custom-switch.custom-switch-on-navy .custom-control-input:checked~.custom-control-label::before {
    background: #001f3f;
    border-color: #000
}

.custom-switch.custom-switch-on-navy .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(0, 31, 63, .25)
}

.custom-switch.custom-switch-on-navy .custom-control-input:checked~.custom-control-label::after {
    background: #006ad8
}

.custom-switch.custom-switch-off-olive .custom-control-input~.custom-control-label::before {
    background: #3d9970;
    border-color: #20503b
}

.custom-switch.custom-switch-off-olive .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(61, 153, 112, .25)
}

.custom-switch.custom-switch-off-olive .custom-control-input~.custom-control-label::after {
    background: #193e2d
}

.custom-switch.custom-switch-on-olive .custom-control-input:checked~.custom-control-label::before {
    background: #3d9970;
    border-color: #20503b
}

.custom-switch.custom-switch-on-olive .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(61, 153, 112, .25)
}

.custom-switch.custom-switch-on-olive .custom-control-input:checked~.custom-control-label::after {
    background: #99d6bb
}

.custom-switch.custom-switch-off-lime .custom-control-input~.custom-control-label::before {
    background: #01ff70;
    border-color: #009a43
}

.custom-switch.custom-switch-off-lime .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(1, 255, 112, .25)
}

.custom-switch.custom-switch-off-lime .custom-control-input~.custom-control-label::after {
    background: #008138
}

.custom-switch.custom-switch-on-lime .custom-control-input:checked~.custom-control-label::before {
    background: #01ff70;
    border-color: #009a43
}

.custom-switch.custom-switch-on-lime .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(1, 255, 112, .25)
}

.custom-switch.custom-switch-on-lime .custom-control-input:checked~.custom-control-label::after {
    background: #9affc6
}

.custom-switch.custom-switch-off-fuchsia .custom-control-input~.custom-control-label::before {
    background: #f012be;
    border-color: #930974
}

.custom-switch.custom-switch-off-fuchsia .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(240, 18, 190, .25)
}

.custom-switch.custom-switch-off-fuchsia .custom-control-input~.custom-control-label::after {
    background: #7b0861
}

.custom-switch.custom-switch-on-fuchsia .custom-control-input:checked~.custom-control-label::before {
    background: #f012be;
    border-color: #930974
}

.custom-switch.custom-switch-on-fuchsia .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(240, 18, 190, .25)
}

.custom-switch.custom-switch-on-fuchsia .custom-control-input:checked~.custom-control-label::after {
    background: #f9a2e5
}

.custom-switch.custom-switch-off-maroon .custom-control-input~.custom-control-label::before {
    background: #d81b60;
    border-color: #7d1038
}

.custom-switch.custom-switch-off-maroon .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(216, 27, 96, .25)
}

.custom-switch.custom-switch-off-maroon .custom-control-input~.custom-control-label::after {
    background: #670d2e
}

.custom-switch.custom-switch-on-maroon .custom-control-input:checked~.custom-control-label::before {
    background: #d81b60;
    border-color: #7d1038
}

.custom-switch.custom-switch-on-maroon .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(216, 27, 96, .25)
}

.custom-switch.custom-switch-on-maroon .custom-control-input:checked~.custom-control-label::after {
    background: #f29aba
}

.custom-switch.custom-switch-off-blue .custom-control-input~.custom-control-label::before {
    background: #007bff;
    border-color: #004a99
}

.custom-switch.custom-switch-off-blue .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(0, 123, 255, .25)
}

.custom-switch.custom-switch-off-blue .custom-control-input~.custom-control-label::after {
    background: #003e80
}

.custom-switch.custom-switch-on-blue .custom-control-input:checked~.custom-control-label::before {
    background: #007bff;
    border-color: #004a99
}

.custom-switch.custom-switch-on-blue .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(0, 123, 255, .25)
}

.custom-switch.custom-switch-on-blue .custom-control-input:checked~.custom-control-label::after {
    background: #99caff
}

.custom-switch.custom-switch-off-indigo .custom-control-input~.custom-control-label::before {
    background: #6610f2;
    border-color: #3d0894
}

.custom-switch.custom-switch-off-indigo .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(102, 16, 242, .25)
}

.custom-switch.custom-switch-off-indigo .custom-control-input~.custom-control-label::after {
    background: #33077c
}

.custom-switch.custom-switch-on-indigo .custom-control-input:checked~.custom-control-label::before {
    background: #6610f2;
    border-color: #3d0894
}

.custom-switch.custom-switch-on-indigo .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(102, 16, 242, .25)
}

.custom-switch.custom-switch-on-indigo .custom-control-input:checked~.custom-control-label::after {
    background: #c3a1fa
}

.custom-switch.custom-switch-off-purple .custom-control-input~.custom-control-label::before {
    background: #6f42c1;
    border-color: #432776
}

.custom-switch.custom-switch-off-purple .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(111, 66, 193, .25)
}

.custom-switch.custom-switch-off-purple .custom-control-input~.custom-control-label::after {
    background: #382063
}

.custom-switch.custom-switch-on-purple .custom-control-input:checked~.custom-control-label::before {
    background: #6f42c1;
    border-color: #432776
}

.custom-switch.custom-switch-on-purple .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(111, 66, 193, .25)
}

.custom-switch.custom-switch-on-purple .custom-control-input:checked~.custom-control-label::after {
    background: #c7b5e7
}

.custom-switch.custom-switch-off-pink .custom-control-input~.custom-control-label::before {
    background: #e83e8c;
    border-color: #ac145a
}

.custom-switch.custom-switch-off-pink .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(232, 62, 140, .25)
}

.custom-switch.custom-switch-off-pink .custom-control-input~.custom-control-label::after {
    background: #95124e
}

.custom-switch.custom-switch-on-pink .custom-control-input:checked~.custom-control-label::before {
    background: #e83e8c;
    border-color: #ac145a
}

.custom-switch.custom-switch-on-pink .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(232, 62, 140, .25)
}

.custom-switch.custom-switch-on-pink .custom-control-input:checked~.custom-control-label::after {
    background: #f8c7dd
}

.custom-switch.custom-switch-off-red .custom-control-input~.custom-control-label::before {
    background: #dc3545;
    border-color: #921925
}

.custom-switch.custom-switch-off-red .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(220, 53, 69, .25)
}

.custom-switch.custom-switch-off-red .custom-control-input~.custom-control-label::after {
    background: #7c151f
}

.custom-switch.custom-switch-on-red .custom-control-input:checked~.custom-control-label::before {
    background: #dc3545;
    border-color: #921925
}

.custom-switch.custom-switch-on-red .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(220, 53, 69, .25)
}

.custom-switch.custom-switch-on-red .custom-control-input:checked~.custom-control-label::after {
    background: #f3b7bd
}

.custom-switch.custom-switch-off-orange .custom-control-input~.custom-control-label::before {
    background: #fd7e14;
    border-color: #aa4e01
}

.custom-switch.custom-switch-off-orange .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(253, 126, 20, .25)
}

.custom-switch.custom-switch-off-orange .custom-control-input~.custom-control-label::after {
    background: #904201
}

.custom-switch.custom-switch-on-orange .custom-control-input:checked~.custom-control-label::before {
    background: #fd7e14;
    border-color: #aa4e01
}

.custom-switch.custom-switch-on-orange .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(253, 126, 20, .25)
}

.custom-switch.custom-switch-on-orange .custom-control-input:checked~.custom-control-label::after {
    background: #fed1ac
}

.custom-switch.custom-switch-off-yellow .custom-control-input~.custom-control-label::before {
    background: #ffc107;
    border-color: #a07800
}

.custom-switch.custom-switch-off-yellow .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(255, 193, 7, .25)
}

.custom-switch.custom-switch-off-yellow .custom-control-input~.custom-control-label::after {
    background: #876500
}

.custom-switch.custom-switch-on-yellow .custom-control-input:checked~.custom-control-label::before {
    background: #ffc107;
    border-color: #a07800
}

.custom-switch.custom-switch-on-yellow .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(255, 193, 7, .25)
}

.custom-switch.custom-switch-on-yellow .custom-control-input:checked~.custom-control-label::after {
    background: #ffe7a0
}

.custom-switch.custom-switch-off-green .custom-control-input~.custom-control-label::before {
    background: #28a745;
    border-color: #145523
}

.custom-switch.custom-switch-off-green .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(40, 167, 69, .25)
}

.custom-switch.custom-switch-off-green .custom-control-input~.custom-control-label::after {
    background: #0f401b
}

.custom-switch.custom-switch-on-green .custom-control-input:checked~.custom-control-label::before {
    background: #28a745;
    border-color: #145523
}

.custom-switch.custom-switch-on-green .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(40, 167, 69, .25)
}

.custom-switch.custom-switch-on-green .custom-control-input:checked~.custom-control-label::after {
    background: #86e29b
}

.custom-switch.custom-switch-off-teal .custom-control-input~.custom-control-label::before {
    background: #20c997;
    border-color: #127155
}

.custom-switch.custom-switch-off-teal .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(32, 201, 151, .25)
}

.custom-switch.custom-switch-off-teal .custom-control-input~.custom-control-label::after {
    background: #0e5b44
}

.custom-switch.custom-switch-on-teal .custom-control-input:checked~.custom-control-label::before {
    background: #20c997;
    border-color: #127155
}

.custom-switch.custom-switch-on-teal .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(32, 201, 151, .25)
}

.custom-switch.custom-switch-on-teal .custom-control-input:checked~.custom-control-label::after {
    background: #94eed3
}

.custom-switch.custom-switch-off-cyan .custom-control-input~.custom-control-label::before {
    background: #17a2b8;
    border-color: #0c525d
}

.custom-switch.custom-switch-off-cyan .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(23, 162, 184, .25)
}

.custom-switch.custom-switch-off-cyan .custom-control-input~.custom-control-label::after {
    background: #093e47
}

.custom-switch.custom-switch-on-cyan .custom-control-input:checked~.custom-control-label::before {
    background: #17a2b8;
    border-color: #0c525d
}

.custom-switch.custom-switch-on-cyan .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(23, 162, 184, .25)
}

.custom-switch.custom-switch-on-cyan .custom-control-input:checked~.custom-control-label::after {
    background: #7adeee
}

.custom-switch.custom-switch-off-white .custom-control-input~.custom-control-label::before {
    background: #fff;
    border-color: #ccc
}

.custom-switch.custom-switch-off-white .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(255, 255, 255, .25)
}

.custom-switch.custom-switch-off-white .custom-control-input~.custom-control-label::after {
    background: #bfbfbf
}

.custom-switch.custom-switch-on-white .custom-control-input:checked~.custom-control-label::before {
    background: #fff;
    border-color: #ccc
}

.custom-switch.custom-switch-on-white .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(255, 255, 255, .25)
}

.custom-switch.custom-switch-on-white .custom-control-input:checked~.custom-control-label::after {
    background: #fff
}

.custom-switch.custom-switch-off-gray .custom-control-input~.custom-control-label::before {
    background: #6c757d;
    border-color: #3d4246
}

.custom-switch.custom-switch-off-gray .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(108, 117, 125, .25)
}

.custom-switch.custom-switch-off-gray .custom-control-input~.custom-control-label::after {
    background: #313539
}

.custom-switch.custom-switch-on-gray .custom-control-input:checked~.custom-control-label::before {
    background: #6c757d;
    border-color: #3d4246
}

.custom-switch.custom-switch-on-gray .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(108, 117, 125, .25)
}

.custom-switch.custom-switch-on-gray .custom-control-input:checked~.custom-control-label::after {
    background: #bcc1c6
}

.custom-switch.custom-switch-off-gray-dark .custom-control-input~.custom-control-label::before {
    background: #343a40;
    border-color: #060708
}

.custom-switch.custom-switch-off-gray-dark .custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(52, 58, 64, .25)
}

.custom-switch.custom-switch-off-gray-dark .custom-control-input~.custom-control-label::after {
    background: #000
}

.custom-switch.custom-switch-on-gray-dark .custom-control-input:checked~.custom-control-label::before {
    background: #343a40;
    border-color: #060708
}

.custom-switch.custom-switch-on-gray-dark .custom-control-input:checked:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(52, 58, 64, .25)
}

.custom-switch.custom-switch-on-gray-dark .custom-control-input:checked~.custom-control-label::after {
    background: #7a8793
}
.accent-primary .custom-control-input:checked~.custom-control-label::before {
    background: #007bff;
    border-color: #004a99
}

.accent-primary .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.accent-primary .custom-control-input:focus:not(:checked)~.custom-control-label::before,
.accent-primary .custom-file-input:focus~.custom-file-label,
.accent-primary .custom-select:focus,
.accent-primary .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid) {
    border-color: #80bdff
}
.accent-secondary .custom-control-input:checked~.custom-control-label::before {
    background: #6c757d;
    border-color: #3d4246
}

.accent-secondary .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.accent-secondary .custom-control-input:focus:not(:checked)~.custom-control-label::before,
.accent-secondary .custom-file-input:focus~.custom-file-label,
.accent-secondary .custom-select:focus,
.accent-secondary .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid) {
    border-color: #afb5ba
}
.accent-success .custom-control-input:checked~.custom-control-label::before {
    background: #28a745;
    border-color: #145523
}

.accent-success .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.accent-success .custom-control-input:focus:not(:checked)~.custom-control-label::before,
.accent-success .custom-file-input:focus~.custom-file-label,
.accent-success .custom-select:focus,
.accent-success .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid) {
    border-color: #71dd8a
}
.accent-info .custom-control-input:checked~.custom-control-label::before {
    background: #17a2b8;
    border-color: #0c525d
}

.accent-info .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.accent-info .custom-control-input:focus:not(:checked)~.custom-control-label::before,
.accent-info .custom-file-input:focus~.custom-file-label,
.accent-info .custom-select:focus,
.accent-info .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid) {
    border-color: #63d9ec
}
.accent-warning .custom-control-input:checked~.custom-control-label::before {
    background: #ffc107;
    border-color: #a07800
}

.accent-warning .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231F2D3D' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.accent-warning .custom-control-input:focus:not(:checked)~.custom-control-label::before,
.accent-warning .custom-file-input:focus~.custom-file-label,
.accent-warning .custom-select:focus,
.accent-warning .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid) {
    border-color: #ffe187
}
.accent-danger .custom-control-input:checked~.custom-control-label::before {
    background: #dc3545;
    border-color: #921925
}

.accent-danger .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.accent-danger .custom-control-input:focus:not(:checked)~.custom-control-label::before,
.accent-danger .custom-file-input:focus~.custom-file-label,
.accent-danger .custom-select:focus,
.accent-danger .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid) {
    border-color: #efa2a9
}.accent-light .custom-control-input:checked~.custom-control-label::before {
     background: #f8f9fa;
     border-color: #bdc6d0
 }

.accent-light .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231F2D3D' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.accent-light .custom-control-input:focus:not(:checked)~.custom-control-label::before,
.accent-light .custom-file-input:focus~.custom-file-label,
.accent-light .custom-select:focus,
.accent-light .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid) {
    border-color: #fff
}.accent-dark .custom-control-input:checked~.custom-control-label::before {
     background: #343a40;
     border-color: #060708
 }

.accent-dark .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.accent-dark .custom-control-input:focus:not(:checked)~.custom-control-label::before,
.accent-dark .custom-file-input:focus~.custom-file-label,
.accent-dark .custom-select:focus,
.accent-dark .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid) {
    border-color: #6d7a86
}
.accent-lightblue .custom-control-input:checked~.custom-control-label::before {
    background: #3c8dbc;
    border-color: #23536f
}

.accent-lightblue .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.accent-lightblue .custom-control-input:focus:not(:checked)~.custom-control-label::before,
.accent-lightblue .custom-file-input:focus~.custom-file-label,
.accent-lightblue .custom-select:focus,
.accent-lightblue .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid) {
    border-color: #99c5de
}
.accent-navy .custom-control-input:checked~.custom-control-label::before {
    background: #001f3f;
    border-color: #000
}

.accent-navy .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.accent-navy .custom-control-input:focus:not(:checked)~.custom-control-label::before,
.accent-navy .custom-file-input:focus~.custom-file-label,
.accent-navy .custom-select:focus,
.accent-navy .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid) {
    border-color: #005ebf
}
.accent-olive .custom-control-input:checked~.custom-control-label::before {
    background: #3d9970;
    border-color: #20503b
}

.accent-olive .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.accent-olive .custom-control-input:focus:not(:checked)~.custom-control-label::before,
.accent-olive .custom-file-input:focus~.custom-file-label,
.accent-olive .custom-select:focus,
.accent-olive .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid) {
    border-color: #87cfaf
}
.accent-lime .custom-control-input:checked~.custom-control-label::before {
    background: #01ff70;
    border-color: #009a43
}

.accent-lime .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231F2D3D' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.accent-lime .custom-control-input:focus:not(:checked)~.custom-control-label::before,
.accent-lime .custom-file-input:focus~.custom-file-label,
.accent-lime .custom-select:focus,
.accent-lime .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid) {
    border-color: #81ffb8
}
