.headerlogo {
    height: 25px;
    padding-right: 10px;
}

.footerlogo {
    height: 15px;
    float:left;
    padding-left: 31px;
}

.card-icon img {
    width: 36px;
}

.flex{
    display:flex;
}

.flex.fully-center{
    align-items:center;
}

.full-viewport-height{
    height:100vh;
}

.site_title{
    margin-bottom: 11%;
    margin-top: -20%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.wizard > .steps .current a,
.wizard > .actions a {
    background: rgba(0, 158, 226, .8);
}

.wizard > .steps .current a:hover,
.wizard > .steps .current a:active
.wizard > .actions a:hover,
.wizard > .actions a:active {
    background: #009ee2;
}

table.dataTable thead .sorting_asc {
    background-image: url("/img/icons/sort_asc.png");
}

table.dataTable thead .sorting_desc {
    background-image: url("/img/icons/sort_desc.png");
}

a {
    color: rgba(0, 158, 226, .8);
}

a:hover {
    color: #009ee2;
}

.btn-primary {
    color: #fff;
    background-color: rgba(0, 158, 226, .8);
    border-color: rgba(0, 158, 226, .8);
}

.btn-primary.active, .btn-primary:active, .btn-primary:hover, .open>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #009ee2;
    border-color: #009ee2;
}

.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open>.btn-primary.dropdown-toggle.focus, .open>.btn-primary.dropdown-toggle:focus, .open>.btn-primary.dropdown-toggle:hover {
    color: #fff;
    background-color: rgba(0, 158, 226, .9);
    border-color: #009ee2;
    outline:0;
}

.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: rgba(0, 158, 226, .9);
    border-color: #009ee2;
    outline:0;
}

.form-control:focus {
    border-color: #009ee2;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 158, 226, .6);
}

.btn-link {
    color: rgba(0, 158, 226, .8);
    font-weight: 400;
    border-radius: 0;
}

.btn-link:focus, .btn-link:hover {
    color: #009ee2;
    text-decoration: underline;
    background-color: transparent;
}

.grid_menu[disabled] a {
    background: url('/img/under_dev.gif');
    background-repeat: no-repeat;
    background-size: cover;
    cursor: not-allowed;
}

.grid_menu[disabled] a:before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:rgba(228, 236, 241,.9222222);
}

.grid_menu.busy{
    overflow: hidden;
}

.grid_menu{
    padding-bottom: 30px;
}

.grid_menu a{
    text-align: center;
    border-radius: 5px;
    background: #E4ECF1;
    border:1px solid #C3D4DF;
    display: block;
    position: relative;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
}

.grid_menu a.jiggle{
    animation: jiggle 0.2s infinite;
    -webkit-animation: jiggle 0.2s infinite;
    -moz-animation-duration: 0.2s;
    -moz-animation-name: jiggle;
    -moz-animation-iteration-count: infinite;
    -webkit-transform: rotate(-1deg);
    -moz-transform: rotate(-1deg);
}

.grid_menu.busy a:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,.9);
    pointer-events: none;
}

.grid_menu .icon{
    margin-top: 11px;
    height:100px;
    transition: .5s all;
    top: 0;
    position: relative;
}

.grid_menu a:hover .icon{
    transform: scale(1.3);
    top: -11px;
}

.grid_menu .label_text{
    display: block;
    color: #7098B2;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
    padding: 10px;
    position: relative;
}

.badge.new_logs{
    z-index: 1;
    background: red;
    position: absolute;
    top: -11px;
    right: 1px;
    font-size: 18px;
    padding: 5px 10px;
}

.badge.new_logs:empty{
    display:none;
}

.full-width{
    width: 100% !important;
}

@media(min-width: 768px){
    .no-left-padding{
        padding-left: 0 !important;
    }
    .no-right-padding{
        padding-right: 0 !important;
    }

    .left-padding{
        padding-left: 15px !important;
    }
    .right-padding{
        padding-right: 15px !important;
    }
}

.input-group-btn{
    width: 1% !important;
}

.table{
    display: table;
}

.table-cell{
    display: table-cell;
}

.border-left-radius{
    border-bottom-left-radius: 4px !important;
    border-top-left-radius: 4px !important;
}

.scanned_items{
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-size: 18px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #d3e0e9;
}

tr.scanned{
    background-color: #5cb85c;
    color: #ffffff;
    animation-name: scaleUp;
    animation-duration: 1s;
}

.mdl-cell:empty{
    margin: 0 !important;
}

#viewEntriesTable_wrapper .mdl-grid.dt-table{
    margin-top: -16px;
}

.loading_small{
    cursor: not-allowed;
}

.loading_small:after{
    content: "";
    background: url(/img/loading_mini.gif);
    width: 32px;
    height: 8px;
    display: inline-block;
}

@keyframes scaleUp{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.033);
    }
    100%{
        transform: scale(1);
    }
}

*[disabled]{
    cursor: not-allowed;
}

.trolley_modal{
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 1.7rem;
    background: rgba(255,204,204, .7);
    box-shadow: 0px 0px 8px 2px rgba(0,0,0,.12);
    padding: 5% 10%;
    line-height: 1;
    z-index: 2;
}

.trolley_modal .label{
    font-size: 1.7rem;
    color: #636b6f;
}

.trolley_modal .trolley_item, .trolley_modal .trolley_item_status{
    padding-top: 15px;
}

.fixed{
    position: fixed;
}

.proccess_submit{
    left: 0;
    bottom: 0;
    right: 0;
}

.proccess_submit form{
    height: 75px;
    padding: 19px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.12);
}

.table_list{
    padding-bottom: 75px;
}

.trolley_select{
    padding-top: 15px;
}

.glyphicon{
    line-height:unset;
}

.select2-container--default .select2-search--inline .select2-search__field{
    border:none !important;
}

/*Responsive*/

@media(max-width:767px){
    .grid_menu{
        padding-bottom: 15px;
    }
    .navbar{
        margin-bottom: 15px;
    }
}

@keyframes jiggle {
    0% {
        transform: rotate(-1deg);
    }
    50% {
        transform: rotate(1deg);
    }
}

@-webkit-keyframes jiggle {
    0% {
        -webkit-transform: rotate(-1deg);
    }
    50% {
        -webkit-transform: rotate(1deg);
    }
}

@-moz-keyframes jiggle {
    0% {
        -moz-transform: rotate(-1deg);
    }
    50% {
        -moz-transform: rotate(1deg);
    }
}

.square:after{
    content:"";
    display: block;
    padding-bottom:100%;
}

footer {
    background-color: #fff;
    -webkit-box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.04);
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.04);
}

footer.page-footer {
    bottom: 0;
}

.font-small {
    font-size: .9rem;
}

footer.page-footer .footer-copyright {
    overflow: hidden;
    color: rgba(0, 0, 0, 0.7);
}

.errordialog {
    position: relative;
    clear: both;
    *zoom: 1;
    zoom: 1;
}

.punch_in {
    color: green;
    font-weight: bold;
}

.punch_out {
    color: red;
    font-weight: bold;
}

.punch_in_grace_period {
    color: orange;
    font-weight: bold;
}

.punch_early_in {
    color: green;
    font-weight: bold;
}

.punch_early_out {
    color: red;
    font-weight: bold;
}

.punch_late_in {
    color: red;
    font-weight: bold;
}

.punch_late_out {
    color: green;
    font-weight: bold;
}

.work_bad {
    color: red;
    font-weight: bold;
}

.work_good {
}

.overtime_bad {
    color: orange;
    font-weight: bold;
}

.overtime_good {
}

.break_bad {
    color: orange;
    font-weight: bold;
}

.break_good {
}

.container {
    max-width: 100% !important;
}

#viewEntriesTable td {
    text-align: center;
}

.hidden {
    display:none;
}

[disabled]{
    pointer-events: none;
}

.bio-legend .col svg{
    fill: #C7CAC7 ;
}

.bio-legend .col.active svg{
    fill: #009ee2cc ;
}

.bio-legend .col span.count{
    position: absolute;
    right: 9px;
    top: -5px;
    font-size: .6rem;
    font-weight: 800;
    color: #fff;
    background: red;
    padding: 0.12rem .2rem;
    border-radius: 4px;
}

#map-canvas{
  height: 100%;
  width: 100%;
}
