﻿.toast.visible {
    opacity: 100;
    visibility: visible;
}

.toast-container {
    margin-top: 4.5em;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

    .toast-container.from-bottom {
        min-height: 200px;
        margin-bottom: .5em;
        position: absolute;
        bottom: 0;
        right: 0;
        display: flex;
        flex-direction: column-reverse
    }

.toast {
    min-width: 300px;
    margin-right: 1em;
    visibility: collapse;
    margin-bottom: .75rem;
}

    .toast.information {
        border-color: #c3e6cb;
    }

        .toast.information .toast-header {
            color: #155724;
            background-color: #d4edda;
            border-color: #c3e6cb;
        }

    .toast.error .toast-header {
        color: #721c24;
        background-color: #f8d7da;
        border-color: #f5c6cb;
    }

    .toast.warning .toast-header {
        color: #856404;
        background-color: #fff3cd;
        border-color: #ffeeba;
    }

    .toast .oi {
        font-size: 1.3em;
        margin: 5px 10px;
    }



.toast-container.is-integrated {
    position: relative;
    margin: 0;
    min-height: initial;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

    .toast-container.is-integrated.from-bottom {
        min-height: 0;
        position: relative;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column-reverse
    }

    .toast-container.is-integrated .toast {
        width: 100%;
        visibility: collapse;
        max-width: 100%;
        display: flex;
        flex-direction: row;
        border-radius: 0;
    }

        .toast-container.is-integrated .toast button.close {
            position: absolute;
            right: 1em;
        }

        .toast-container.is-integrated .toast.information {
            border-color: #c3e6cb;
        }

            .toast-container.is-integrated .toast.information .toast-header {
                color: #155724;
                background-color: #d4edda;
                border-color: #c3e6cb;
            }

        .toast-container.is-integrated .toast.error .toast-header {
            color: #721c24;
            background-color: #f8d7da;
            border-color: #f5c6cb;
        }

        .toast-container.is-integrated .toast.warning .toast-header {
            color: #856404;
            background-color: #fff3cd;
            border-color: #ffeeba;
        }

        .toast-container.is-integrated .toast .oi {
            font-size: 1.3em;
            margin: 5px 10px;
        }

.skuld-loader {
    text-align: center;
}

.skuld-component-loading {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100%;
    height: 100%;
    background-color: #AEAEAE;
    opacity: 0.8;
    display: flex;
}

    .skuld-component-loading .spinner-border {
        top: 40vh;
        left: 50vh;
        margin: auto;
    }


.paginated-table {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    height: 100%;
}

    .paginated-table .scrollable-table {
        overflow: auto;
        display: flex;
        flex: 1;
        flex-direction: column;
    }

    .paginated-table .datagrid {
        flex: 1;
        margin-bottom: 0px;
    }

        .paginated-table .datagrid thead ::deep th {
            position: sticky;
            top: -1px;
            background-color: #ffffff;
            z-index: 1;
            vertical-align: middle;
        }

.pagination-container {
    background-color: white;
}

    .pagination-container .pagination > li {
        text-align: center;
        width: 50px;
        margin: 0px 5px;
        cursor: pointer;
    }

        .pagination-container .pagination > li.page-item {
            display: flex;
            align-items: center;
            justify-content: center;
            color: black;
        }

        .pagination-container .pagination > li.current-page {
            background-color: var(--secondary-text-color);
            color: white;
        }

        .pagination-container .pagination > li.disabled {
            cursor: not-allowed;
            color: gray;
        }

    .pagination-container .pagination {
        justify-content: center;
        margin: 5px 0px;
    }

.modal.show .sm-modal {
    height: 25%;
}

.modal.show .md-modal {
    height: 50%;
}

.modal.show .lg-modal {
    height: 10%;
}

.modal-content .modal-centered {
    align-self: center;
}