@import url('https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i&subset=latin,latin-ext');

body{
    font-family: Lato !important;
}
.dots {
    margin: 40px auto;
}

.dot {
    display: inline-block;
    border-radius: 50%;
    /*width: 50%;*/
    background-color: #EEE;
    height: 16px;
    width: 16px;
    margin: 0 2px;
}
.dot.dot-success {
    background:url('../images/dot-success.png') no-repeat;
}
.dot.dot-warning {
    background:url('../images/dot-warning.png') no-repeat;
}
.dot.dot-danger {
    background:url('../images/dot-error.png') no-repeat;
}
/*** dot icons ***/
.dot.icon-ban {
    background:url('../images/icon/ban.png') no-repeat;
}
.dot.icon-info {
    background:url('../images/icon/info.png') no-repeat;
}
.dot.icon-clock {
    background:url('../images/icon/clock.png') no-repeat;
}
.dot.icon-plus-sign {
    background:url('../images/icon/plus-sign.png') no-repeat;
    background-size: 100%;
}
.dot.icon-minus-sign {
    background:url('../images/icon/minus-sign.png') no-repeat;
    background-size: 100%;
    filter: grayscale(100%);
}
.dot.dot-md {
    height: 16px;
    width: 16px;
}
.dot.dot-sm {
    height: 10px;
    width: 10px;
}
.dot.dot-lg {
    margin: 0 4px;
    height: 20px;
    width: 20px;
}

.level-green{
    color: darkgreen;
}

.level-red{
    color: darkred;
}

.level-yellow{
    color: #F0AD4E;
}

.equipmentStates tr th,.equipmentStates tr td{
    text-align:center;
    font-weight: bold;
}


#statisticContent table td {
    font-size: 12px !important;
    font-family: 'Lato', sans-serif;
}

.vertical-center {
    min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh; /* These two lines are counted as one :-)       */

    display: flex;
    align-items: center;
}
.flag-navbar{
    width:35px;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
}
.inactive{
    opacity: 0.5;
    transition: 0.3s;
}
.inactive:hover{
    opacity: 1;
}

/** TOP MENU **/
#main-menu{

}
#main-menu .dropdown-header{
    font-size:16px !important;
    font-weight: bold;
    background: #f7f7f7;
}
#main-menu .divider{
    margin:0px 0 5px 0 !important;
}

/** Tabs do kisokow **/
.informationSection .panel-heading, .settingsSection .panel-heading{
    text-align: right;
}

/*** form ***/
.operations-form{
    text-align: right;
}


/*** Device table style ***/

.innerTable{
    padding:0px !important;
}
.innerTable>table{
    width:100%;
}
.innerTable>table>tbody>tr>td, .innerTable>table>tbody>tr>th, .innerTable>table>tfoot>tr>td, .innerTable>table>tfoot>tr>th, .innerTable>table>thead>tr>td, .innerTable>table>thead>tr>th{
    padding: 8px;
    line-height: 1.6;
    vertical-align: top;
}
.innerTableRow:nth-child(1){width: 5%;}
.innerTable>table>tbody>tr>td:nth-child(1){width: 5%;}
.innerTableRow:nth-child(2){width: 15%;}
.innerTable>table>tbody>tr>td:nth-child(2){width: 15%;}
.innerTableRow:nth-child(3){width: 10%;}
.innerTable>table>tbody>tr>td:nth-child(3){width: 10%;}
.innerTableRow:nth-child(4){width: 10%;}
.innerTable>table>tbody>tr>td:nth-child(4){width: 10%;}
.innerTableRow:nth-child(5){width: 40%;}
.innerTable>table>tbody>tr>td:nth-child(5){width: 40%;}
.innerTableRow:nth-child(6){width: 10%;}
.innerTable>table>tbody>tr>td:nth-child(6){width: 10%;}

/* Tooltip container */
.tooltip-td {
    position: relative;  
}

/* Tooltip text */
.tooltip-td .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    overflow: auto;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    top: -25%;
    left: -24%;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-td:hover .tooltiptext {
    visibility: visible;
}