html {
    width: 100%;
}

body{
    max-width: 100%;
    padding-top: 60px;
    margin: 0 auto;
    background-color: #e4e4e4;
    font-family: Roboto;
    font-size: 14px;
    line-height: 18px;
}

@font-face {
    font-family: 'Roboto';
    src: url('/css/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.container {
    margin:0 auto;
    padding: 0;
    position: relative;
    margin-top: 20px;
}

.loader {
    border: 16px solid #008181;
    border-top: 16px solid #686868;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: fixed;
    top: calc(50% - 60px);
    left: calc(50% - 60px);
    margin: auto;
    display: none;
    z-index: 1000;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*font sizes*/

.fontsize_p {
    font-size: 14px;
    line-height: 18px;
}

.fontsize_mini_p {
    font-size: 12px;
    line-height: 16px;
}

.fontsize_lg_p {
    font-size: 16px;
    line-height: 20px;
}

.fontsize_h1 {
    font-size: 30px;
    line-height: 40px;
}

.fontsize_h2 {
    font-size: 24px;
    line-height: 28px;
}

.fontsize_h3 {
    font-size: 18px;
    line-height: 24px;
}


.fontsize_p_bold {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
}

.fontsize_teal {
    color: #008181;
}

.session-error-message {
    background-color: darkorange;
    position: relative;
    z-index: 999;
    display: none;
    text-align: center;
    color: white;
    padding: 12px;
    margin: 12px;
    border-radius: 0;
}

.grid-item {
    padding-right: 6px;
    padding-left: 6px;
    float: left;
}

.empty-col-left{
    width: 25%;
}

.empty-col-right{
    width: 16.6666%;
}

.log-work{
    width: 33.3333%;
}

.stats-calendar{
    width: 25%;
}

.reg-work-page:after {
    display: table;
    clear: both;
    content: '';
}

.input-group-addon{
    border-radius: 0px; !important;
    height:25px;!important;
    font-size: 12px;!important;
    background-color: #c4e8ed;!important;
    border: 0px;!important;
}
.input-group {
    width: 80%;!important;
    float: right;!important;
    height: 25px;!important;
}

.datepicker {
    height:25px;!important;
    font-size: 12px;!important;
}

.form-group{
    margin-bottom: 0px;!important;
}

label {
    font-weight: 500;
    font-size: 12px;
    max-width: 23%;
    padding-top: 4px;
    margin-bottom: 0;
}

.navbar.navbar-default {
    background-color: white;
    height: 70px;
    box-shadow: 0 3px 3px rgba(0,0,0,.2);
}

.navbar.navbar-default img.logo {
    margin-left: 20px;
    position: relative;
    top: 35px;
    transform: translateY(-50%);
}

.navbar-brand {
    padding: 0;
}

.navbar-right {
    margin-right: 0;
    margin-top: 10px;
}

a {
    color: inherit;
}

a:hover, a:focus {
    color: inherit;
    text-decoration: none;
}

form#login-form .panel-1 {
    padding: 20px 15px;
}

form#login-form .panel-1 > div {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

form#login-form .panel-2 > div {
    display: flex;
    height: 3em;
    align-items: center;
}

form#login-form .panel-2 > div > label {
    flex: 1;
    max-width: 100%;
    margin-left: 20px;
}

form#login-form .panel-2 > div > input.form-control {
    border-radius: 0;
    flex: 1;
    margin-right: 20px;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.main-footer {
    background-color: black;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 120px;
    z-index: 3;
}

.main-footer .button-footer {
    display: inline-block !important;
    background: none;
    border: 1px solid white;
    height: 2.5em;
    margin: 10px 25px 10px 0;
    cursor: pointer;
    padding: 10px;
    padding-left: 40px;
}

.main-footer .button-container {
    position: absolute;
    right: 0;
    top: 0;
}

.main-footer .download-report {
    position: relative;
}

.main-footer .checksign {
    position: absolute;
    left: 13px;
    top: 0;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .main-footer .checksign {
        top: -3px;
    }
}

.main-footer .checksign:before {
    content: '\2713';
    font-size: 27px;
}

.main-footer .button-footer:hover,
.main-footer .button-footer:hover + .checksign {
    opacity: 0.6;
}

a.password-reset {
    position: relative;
    left: 80%;
    top: 15%;
}

@media (max-width: 1600px) {
    a.password-reset {
        left: 74%;
    }
}

a.password-reset:hover {
    text-decoration: underline;
}
.main-footer > div.buttons {
    display: flex;
    float: right;
    position: relative;
}

.error-message {
    font-weight: bold;
    color: red;
}

img.icon-warning {
    width: 30px;
    margin-right: 10px;
}

div#ui-datepicker-div {
    z-index: 4 !important;
}

@media (max-width: 768px) {
    body {
        font-size: 12px;
    }

    .loader {
        width: 90px;
        height: 90px;
        border: 12px solid #008181;
        border-top: 12px solid #686868;
        top: calc(50% - 45px);
        left: calc(50% - 45px);
    }
}