﻿body {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    overflow: auto;
}

.ant-btn {
    border-radius: 2px;
    font-size: 12px;
}

.ant-tree-switcher {
    width: 10px !important;
}

.ant-modal {
    top: 5px;
    z-index: 1000 !important;
}

/*.ant-modal-mask {
    z-index: 1051 !important;
}*/

.ant-select-selector .ant-select-selection-item {
    font-size: 12px;
}

.ant-select-dropdown .ant-select-item {
    font-size: 12px;
}

.ant-table-thead th {
    font-size: 12px;
}

.ant-table-tbody td {
    font-size: 12px;
}

.summary-cell {
    font-size: 12px;
}

.signal-popup {
    margin: 1px;
    background: white;
    z-index : 1000;
}

.signal-popup td {
    padding: 1px;
}

.signal-popup td * {
    font-size: 12px;
}

.signal-popup .title {
    font-weight: bold;
}

.signal-popup .content {
    color: #3563c1;
    white-space: nowrap;
}

.leaflet-div-icon,
.leaflet-div-icon * {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background-image: none !important;
    background: none !important;
}

@font-face {
    font-family: 'Led7Seg';
    src: url(https://cdn.jsdelivr.net/fontsource/fonts/dseg7-classic@latest/latin-400-normal.ttf);
}

.digital-board {
    color: red;
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    font-family: Led7seg;
    -webkit-animation: blink-animation 4s steps(3, start) infinite;
    animation: blink-animation 4s steps(3, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}