﻿html, body {
    height: 100%;
}
.imgComp {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.imgComp img{
    display: block;
}
.boolDiv{
   border-width: 1px;
   border-style: solid;
}
.vtag.rectDiv.v2 {
    transform: translate(calc(-50%), calc(-50%));
}
.circDiv {
    height: 1em;
    width: 1em;
    border-radius: 50%;
    background-color: transparent;
    border-width: 1px;
    border-style: solid;
}
.vtag.circDiv.v2 {
    transform: translate(calc(-50%), calc(-50%));
}
.circDiv.text-right, .circDiv.text-center {
    margin-left: auto;
}
    .circDiv.text-center {
        margin-right: auto;
    }
.tagHeaderDiv{
    background-color:white;
}

#modal-loading {
    background-color: rgba(255,255,255,0.7);
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 100000;
    display: none;
}

    #modal-loading .modal-loading-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100%;
        font-size: 30px;
    }

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 30px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 10px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        /*background: #888888;*/
        background: var(--primary);
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}


.i-a:hover{
    cursor : pointer;
    text-decoration: underline;
}

/* width */
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: #e5e6e4;
    /*border-radius: 5px;*/
    border: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
    /*background: rgba(0,0,0,0.5);*/
    border-radius: 12px;
    /*background: var(--primary);*/
    background: #a6a2a2;
    border: 1px solid #e5e6e4;
}

.omc-action {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 2px;
    padding: 4px;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

    .omc-action:hover {
        background-color: #293042;
        border-radius: 8px;
    }
    .omc-action svg {
        width: 20px;
        height: 20px;
        color: var(--text-color);
    }

.gap-1{
    gap:2px;
}
.gap-2 {
    gap: 4px;
}
.gap-3 {
    gap: 8px;
}
.gap-4 {
    gap: 16px;
}
.gap-5 {
    gap: 24px;
}
.gap-6 {
    gap: 32px;
}
.gap-7 {
    gap: 56px;
}
.gap-8 {
    gap: 64px;
}
.divider {
    width: 100%;
    height: 0px;
    border-top: 1px solid silver;
}
.font-mono {
}
.cell-header {
    font-family: 'Open Sans', monospace;
    padding-right: 6px;
    text-wrap: nowrap;
    white-space: nowrap;
}
.cell-value {
    font-family: 'Open Sans', monospace;
    width: 1px;
    white-space: nowrap;
}

td.autosize {
    width: 1px;
    white-space: nowrap;
}
.badge-alarm-impact{
    font-size: 95%;
}

.card-section {
    padding: 0.25rem !important;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}

    .card-section .card-title {
        position: relative;
        cursor: pointer;
    }

        .card-section .card-title[data-toggle=collapse]:before {
            border: solid;
            border-width: 0 .1rem .1rem 0;
            content: " ";
            display: inline-block;
            padding: 2px;
            position: absolute;
            right: 0.5rem;
            top: 0.5rem;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            transition: all .2s ease-out;
        }

        .card-section .card-title[data-toggle=collapse]:not(.collapsed):before {
            top: 0.7rem;
            -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
        }

    .card-section .collapse, .card-section .collapsing {
        padding-left: 0.5rem !important;
    }

    .opacity-none{
        opacity: 0;
    }
    @media screen and (min-width: 576px) {
        .opacity-none.opacity-sm{
            opacity: 1;
        }
    }

    @media screen and (min-width: 768px) {
        .opacity-none.opacity-md {
            opacity: 1;
        }
    }

    @media screen and (min-width: 992px) {
        .opacity-none.opacity-lg {
            opacity: 1;
        }
    }

    @media screen and (min-width: 1200px) {
        .opacity-none.opacity-xl {
            opacity: 1;
        }
    }

#divGauge canvas, #divGauge svg{
    touch-action: auto;
}