/*@import url('open.iconic/font/css/open-iconic-bootstrap.min.css');*/


/*html, body {
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
    justify-content: center;  Center horizontally 
    align-items: center;  Center vertically 
    height: 100vh;  Make sure it takes the full viewport height 
    margin: 0;  Remove default margin 
}*/

.custom-toast-background {
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: center;
    z-index: 0;
}

.grid-margin-container {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}


a, .btn-link {
    color: #00a295;
}

mark {
    background-color: #57F7EC;
}
.dxbl-grid-highlighted-text-bg {
    background-color: #57F7EC;
}
input [type=button] {
    color: #fff;
    background-color: #00a295;
    border-color: #00a297;
    outline-style: none;
}


#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* Popup container */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

    /* The actual popup (appears on top) */
    .popup .popuptext {
        visibility: hidden;
        width: 160px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 8px 0;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -80px;
    }

        /* Popup arrow */
        .popup .popuptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

    /* Toggle this class when clicking on the popup container (hide and show the popup) */
    .popup .show {
        visibility: visible;
        -webkit-animation: fadeIn 1s;
        animation: fadeIn 1s
    }

