﻿html, body, .fullScreen {
    min-height: 100% !important;
    height: 100%;
}

.fsm{
    cursor: pointer;
}

.fullScreen {
    z-index: 100;
    margin: 0;
    border-radius: 0;
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    animation: inlightbox 1s ease-in-out;
}

.dashboard-header {
    /*background-color: #2f71b9;*/
    color: #fff;
    font-size: 50px;
    text-align: center;
    padding: 25px;
    display: table;
}

    .dashboard-header label{
        display: table-cell;
        vertical-align: middle;
    }

    @keyframes inlightbox {
        from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}