﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');


/*:root {
    --rz-grid-background-color: #424242 !important;
    --rz-grid-stripe-background-color: #2d3436 !important;
    --rz-grid-cell-padding: 2px !important;
}*/

:root {

    --rz-grid-stripe-background-color: #222222 !important;
    --rz-grid-stripe-odd-background-color: #111111 !important;
}

.danger span{
    color: red !important;
}

.danger i {
    color: red !important;
}

.warning span {
    color: orange !important;
}

.warning i {
    color: orange !important;
}

.success span {
    color: green !important;
}

.success i {
    color: green !important;
}

.disabled span {
    color: black !important;
}

.disabled i {
    color: black !important;
}

.alertIndicator a {
    padding: 0px !important;
}

html, body {
    background-image: none !important;
    background-color: var(--rz-body-background-color) !important;
}

.rz-body {
    padding: 0 !important;
    background-image: none !important;
    background-color: var(--rz-body-background-color) !important;
}


.rz-datatable td {
    padding: 2px !important;
}


/*.bg-dark, .table-dark, .thead-dark {
    background-color: #000000 !important;
}
*/
/*a, .btn-link {
    color: #0366d6;
}


.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}*/

.monaco-editor-container {
    height: calc(100vh - 192px);
}

@media only screen and (max-width: 480px) {
    .hiddenRadzenColumnSmall {
        display: none !important;
    }
}


.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}



.blink {
    animation: blinker 1s step-start infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}


.scroll-text {
    /* animation properties */
    white-space: pre;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: my-animation 15s linear infinite;
    -webkit-animation: my-animation 15s linear infinite;
    animation: my-animation 15s linear infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
    from {
        -moz-transform: translateX(100%);
    }

    to {
        -moz-transform: translateX(-100%);
    }
}

/* for Chrome */
@-webkit-keyframes my-animation {
    from {
        -webkit-transform: translateX(100%);
    }

    to {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes my-animation {
    from {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    to {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}


.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}


#blazor-error-ui {
    background: black;
    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;
    }

#components-reconnect-modal {
    display: none;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 1000;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    opacity: 0.8;
    text-align: center;
    font-weight: bold;
}

    #components-reconnect-modal.components-reconnect-show {
        display: block;
    }

        #components-reconnect-modal.components-reconnect-show div.reconnecting {
            display: block;
        }

div.reconnecting {
    display: none;
}

#components-reconnect-modal.components-reconnect-failed {
    display: block;
}

    #components-reconnect-modal.components-reconnect-failed div.failedToConnect {
        display: block;
    }

div.failedToConnect {
    display: none;
}

#components-reconnect-modal.components-reconnect-rejected {
    display: block;
}

    #components-reconnect-modal.components-reconnect-rejected div.connectionRejected {
        display: block;
    }

div.connectionRejected {
    display: none;
}

#components-reconnect-modal.components-reconnect-hide {
    display: none;
}
