body { background: #f5f5f7; display: flex; height: 100vh; align-items: center; margin: 0; /*font-family: 'Roboto', sans-serif;*/font-family: 'Merienda', cursive;}
form.hours-log {padding: 40px;background: #fff;box-shadow: 0 0 10px 0px #e5e5e5;border-radius: 5px;margin: 0 auto;max-width: 550px;position: relative;}
.display-flex{display:flex;}
.display-center{    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 17px;
    color: #777;}
form.hours-log .hint{    font-size: 15px;
    color: #a5a5a5;
    padding: 0 5px;
    margin-top: 0;}
form.hours-log input[type="text"], form.hours-log input[type="number"], form.hours-log textarea, form.hours-log select, input[type="date"] { border: 0 solid #d8d8d8; box-sizing: border-box; min-height: 55px; width: 100%; margin: 10px 5px; font-size: 17px; border-bottom: 1px solid #adadad; /*font-family: 'Roboto', sans-serif;*/font-family: 'Merienda', cursive; color: #0075ff; }
form.hours-log input[type="text"]::placeholder, form.hours-log input[type="number"]::placeholder, form.hours-log textarea::placeholder, form.hours-log select:invalid, input[type="date"]::placeholder { color: #adadad; }

form.hours-log button { background: #33b333; width: 100%; border: none; color: #fff; transition-duration: .3s; padding: 15px; margin: 10px 5px; cursor: pointer;font-size: 22px;
    font-family: 'Merienda', cursive; }
form.hours-log button:hover { background: #1b8819; }
form.hours-log input[type="text"]:focus-visible,
form.hours-log input[type="number"]:focus-visible,
form.hours-log textarea:focus-visible,
form.hours-log select:focus-visible { outline: none; border-bottom: 2px solid #36b333; }
form.hours-log input#hoursfd {
    font-size: 45px;
}
form.hours-log input.billable{    font-size: 40px;
    width: 40px;
    height: 25px;}
   form.hours-log  label.bill-label,.billable{cursor:pointer;}
::placeholder { color: #999; font-weight: normal; }

.staff_ovlay {
    position: absolute;
    background: #FFF;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.staff_ovlay ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.staff_ovlay ul li{
    background: #dcdb14;
    padding: 15px;
    font-size: 30px;
    text-align: center;
    margin-top: 2px;
    cursor: pointer;
}
.staff_ovlay ul li:hover{
    background: #bdbc00;
}
.staff_ovlay ul li a{
    color: #384400;
    text-decoration: none;
}
.staff_ovlay h1{
    text-align: center;
}
.staff_login {
    position: absolute;
    top: -46px;
    right: 5px;
    font-size: 21px;
    background: #e9e9e9;
}
.staff_login span{
    font-family: sans-serif;
    background: #fdfdfd;
    color: #d0d0d0;
    padding: 5px 12px;
    cursor: pointer;
}
.staff_login span:hover{
    background: #f5ecec;
    color: #fff;
}
.staff_login span a{
    color:#333; 
    text-decoration:none;
    position:relative;
}
.staff_login span a:before{
    content: "\25C9";
    font-size: 27px;
    position: absolute;
    left: -25px;
    top:-3px;
    color: #33b333;
}

.flex-container {
    display: flex;
}

.flex-child {
    flex: 1;
}  

.flex-child.client_list {
    flex-basis: 20%;
    flex-grow: 1;
} 
.flex-child.task_date {
    padding-left: 26px;
} 

/*date field style*/
/* Removes the clear button from date inputs */
input[type="date"]::-webkit-clear-button {
    display: none;
}

/* Removes the spin button */
input[type="date"]::-webkit-inner-spin-button { 
    display: none;
}

/* Always display the drop down caret */
input[type="date"]::-webkit-calendar-picker-indicator {
    color: #2c3e50;
}

/* A few custom styles for date inputs */
input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    /* color: #95a5a6; */
    font-family: 'Merienda', cursive;
    font-size: 21px;
    border: none;
    border-bottom: 1px solid #adadad;
    /* background: #ecf0f1; */
    padding: 8px 5px 15px 5px;
    display: inline-block !important;
    visibility: visible !important;
    cursor: pointer;
}

input[type="date"], focus {
    /* color: #999999; */
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
/*date field style end*/