:root {
    --light: #414e6f;
    --mid: #222d41;
    --mid-dark: #2b3b4a;
    --mid-light: #596271b8;
    --mid-dark-lighter: #3b465a;
    --dark: #4f6175;
    --dark-lighter: #788797;
    --light-dark: #edfaff;
    --lighter-dark-highlight: #dde7ec;
    --light-dark-highlight: #d0dbe0;
    --light-dark-darker: #cbe4f0;
    --body-light: #e0f3ff;
    --light-dark-light: #4b596e;
    --highlight: #fff;
    --accent: #a1f3f7;
    --alt-accent: #ffdab9;
    --alt-accent-dark: #f0a579;
    --success-accent: #a2e3a8;
    --success-accent-dark: #0c490f;
    --failure-accent: #d79292;
    --failure-accent-dark: #490c0c;
    --dead-link: #979797;
    --il-even: #efefef;
    --il-odd: #eff4ff;
    --schdark: #4f565f;
    --schlight: #faffff;
    --schaccent: #636a73;
    --schdark-accent: #b3bac3;
    --schlight-accent: #dbe2eb;
    --table-even: #e5eff3;
    --table-odd: #d0dbe0;
    --danger: #b22222;
    --success: #2e8b57;
}
/* Reset default browser CSS.
-------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1.2;
    font-family: Helvetica;
}

html,
body {
    height: 100%;
}

label {
    color: #555;
    font-weight: bold;
    padding-left: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    font-family: Helvetica;
}

a img {
    border: none;
}

a {
    color: #777;
}

a:link {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:active {
    text-decoration: none;
}

.clear {
    clear: both;
}

.bold {
    font-weight: bold;
}

.bold_underline {
    font-weight: bold;
    border-bottom: 1px solid black;
}

table {
    border-collapse: collapse;
    margin-bottom: 95px;
    width: 100%;
    max-width: 100%;
}

table,
th,
td,
tr {
    padding: 5px;
    font-size: 18px;
}

th:not(.table_header th) {
    height: 30px;
}

.table_header {
    background-color: #2d3b52;
    color: white;
}

p {
    margin: 5px 0px 5px 0px;
}

input:focus {
    outline: none;
}

.input_line {
    width: 100%;
    display: block;
    box-sizing: border-box;
    margin-bottom: 5px;
    padding: 10px 0px;
    line-height: 30px;
    overflow: auto;
}

.push_right {
    margin-right: 20px;
    float: left;
}

.staff_id {
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: Helvetica;
    font-size: 13px;
    padding: 0px;
    margin: 0px;
}

.profile_pic {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
}

/* ===== Login Layout ===== */

#login_form_sub {
    width: 450px;
    height: 120px;
    margin: 0 auto;
}

.login_fields {
    float: left;
    width: 350px;
}

.login_field {
    width: 350px;
    height: 50px;
    font-size: 1.5em;
    padding-left: 5px;
    float: left;
}

.login_submit_button {
    width: 60px;
    height: 132px;
    margin: 0px 0px 0px 20px;
    color: #dddddd;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #abd46e url("../images/lock.png") center center no-repeat;
    float: right;
}

#login_wrapper {
    height: 100%;
    overflow: auto;
}

#login_wrapper_dashboard {
    position: relative;
    min-height: 100%;
    overflow: auto;
}

#login_wrapper_dashboard:after {
    content: ".";
    visibility: hidden;
    display: block;
    clear: both;
    height: 0;
    font-size: 0;
}

#login_main {
    box-sizing: border-box;
    padding-top: 3%;
    background-color: #777;
}

.login_success {
    color: white;
    font-size: 18px;
    background: var(--success);
    padding: 10px;
    margin-bottom: 10px;
}

.login_failure {
    color: white;
    font-size: 18px;
    background: var(--danger);
    padding: 10px;
    margin-bottom: 10px;
}

#login_messages {
    transition: background-color 0.5s ease;
}

#header_login,
#footer_login {
    height: 33%;
    background-color: #555;
}

#header_login {
    background: #555 url("../images/creoks_logo.png") center center no-repeat;
}

#login_logo {
    width: 320px;
    height: 145px;
    margin: 0 auto;
    padding: 20px 20px 20px 20px;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0 0 50px #000000;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-box-shadow: 0 0 50px #000000;
    -webkit-box-shadow: 0 0 50px #000000;
    display: flex;
    justify-content: center;
    align-content: center;
}

#azureLoginBtn {
    width: 75%;
    height: auto;
    cursor: pointer;
}

/* ===== Common Layout ===== */

.account_form {
    padding: 20px;
    width: 100%;
    color: #333;
    box-sizing: border-box;
}

#header_main {
    background-color: #888;
    height: 120px;
    box-sizing: border-box;
    padding-top: 35px;
    font-size: 2.5em;
    text-align: left;
    color: #ccc;
}

#header_inner_left {
    background: #666 url("../images/small_logo.png") center center no-repeat;
    width: 120px;
    height: 120px;
    margin-top: -35px;
    margin-right: 35px;
    float: left;
}

#divider {
    background-color: #abd46e;
    height: 2px;
    width: 200px;
    margin: 0 auto;
    margin-bottom: 15px;
}

#left_main {
    background-color: #555;
    min-height: 800px;
    width: 120px;
    box-sizing: border-box;
    float: left;
    position: relative;
    z-index: 10;
}

#major_main {
    background-color: #eee;
    min-height: 150%;
    padding-left: 160px;
    padding-top: 40px;
    color: #ccc;
    box-sizing: border-box;
}

#timesheet_wrapper {
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    color: #555;
    font-size: 2em;
}

.timesheet_field {
    width: 50px;
    height: 40px;
    font-size: 14px;
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #ccc;
}

.timesheet_field.highlighted {
    background-color: #abd46e4f;
    font-weight: bold;
}

#left_major_main {
    background-color: #333;
    height: 100%;
    min-height: 800px;
    width: 750px;
    padding-top: 100px;
    text-align: center;
    color: #ccc;
    float: left;
    box-sizing: border-box;
}

#left_major_main_timesheet {
    background-color: #eee;
    width: 750px;
    padding-top: 100px;
    text-align: left;
    color: #ccc;
    float: left;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#left_major_main_calendar {
    background-color: #eee;
    height: 100%;
    width: 950px;
    padding-top: 100px;
    text-align: left;
    color: #777;
    float: left;
    box-sizing: border-box;
}

#left_button_dashboard,
#left_button_check_in,
#left_button_check_in_supervisor,
#left_button_timesheet,
#left_button_timesheet_review,
#left_button_calendar,
#left_button_logout,
#left_button_adm,
#left_button_process,
#left_button_timesheet_employee,
#left_button_timesheet_supervisor,
#left_button_floating_holiday_tracking,
#left_button_leave_type_adjustments,
#Mileage,
#left_button_mileage_reimbursement_review,
#left_button_mileage_reimbursement_sup_review {
    height: 120px;
    width: 120px;
    font-size: 1.2em;
    color: #ccc;
    padding-top: 70px;
    box-sizing: border-box;
    text-align: center;
}

#left_button_dashboard {
    background: url("../images/icon_home.png") center center no-repeat #555;
}

#left_button_check_in,
#left_button_check_in_supervisor {
    background: url("../images/icon_checkin.png") center center no-repeat #555;
}

#left_button_timesheet {
    background: url("../images/icon_clock.png") center center no-repeat #555;
}

#Mileage,
#left_button_mileage_reimbursement_review,
#left_button_floating_holiday_tracking,
#left_button_leave_type_adjustments,
#left_button_mileage_reimbursement_sup_review {
    background: url("../images/icon_rev.png") center center no-repeat #555;
}

#left_button_timesheet_employee {
    background: url("../images/icon_rev.png") center center no-repeat #555;
}

#left_button_timesheet_supervisor {
    background: url("../images/icon_rev.png") center center no-repeat #555;
}

#left_button_process {
    background: url("../images/gears.png") center center no-repeat #555;
}

#left_button_timesheet_review {
    background: url("../images/icon_rev.png") center center no-repeat #555;
}

#left_button_calendar {
    background: url("../images/icon_cal.png") center center no-repeat #555;
}

#left_button_logout {
    background: url("../images/icon_logout.png") center center no-repeat #555;
}

#left_button_adm {
    background: url("../images/icon_adm.png") center center no-repeat #555;
}

#right_major_main {
    background-color: #fff;
    height: 100%;
    text-align: center;
    color: #ccc;
    box-sizing: border-box;
}

#right_major_main_timesheet {
    background-color: #333;
    height: 100%;
    text-align: center;
    color: #ccc;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}

#right_major_main_calendar {
    background-color: #333;
    height: 100%;
    text-align: center;
    color: #ccc;
    box-sizing: border-box;
}

.message {
    background-color: #fff;
    height: 200px;
    width: 100%;
    text-align: left;
    color: #333;
    border-bottom: 1px solid #abd46e;
}

.message_grey {
    background-color: #eee;
    height: 200px;
    width: 100%;
    text-align: left;
    color: #ddd;
}

.message_timesheet {
    background-color: #555;
    width: 100%;
    text-align: left;
    color: #333;
    border-bottom: 1px solid #abd46e;
}

.message_grey_timesheet {
    background-color: #333;
    height: 200px;
    width: 100%;
    text-align: left;
    color: #ddd;
    border-bottom: 1px solid #abd46e;
}

.dialogMessage {
    font-size: 22px;
    text-align: center;
}

.dialogIcon {
    width: 100%;
    text-align: center;
    font-size: 30px;
    color: var(--light-dark);
}

#wrapper {
    min-height: 100%;
    overflow: auto;
    padding-bottom: 100px;
}

#main {
    width: 960px;
    background-color: white;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#footer {
    margin-top: -85px;
    height: 85px;
    clear: both;
    background-color: #2d3b52;
}

#view_footer_main {
    height: 75px;
    width: 100%;
    background-color: #2d3b52;
    border-top: 10px solid #dddddd;
    position: fixed;
    bottom: 0px;
    overflow-x: hidden;
    overflow-y: auto;
}

#footer_main {
    height: 75px;
    border-top: 10px solid #dddddd;
}

#footer_inner {
    width: 960px;
    margin: 0 auto;
    padding: 15px 0px 0px 0px;
    color: #dddddd;
}

#footer_left {
    width: 480px;
    float: right;
}

#footer_right {
    width: 480px;
    float: right;
}

/* ===== Page Layout ===== */

#view_main {
    width: 960px;
    height: 100%;
    margin: 0 auto;
    overflow: auto;
}

#report_main {
    width: 960px;
    margin: 0 auto;
    overflow: auto;
}

/* ===== Reports  ===== */

#report_build {
    width: 960px;
    margin: 0 auto;
    margin-top: 15px;
    padding: 10px;
    background-color: #dddddd;
    border-radius: 5px;
    box-sizing: border-box;
    overflow: auto;

    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.report_selector {
    width: 225px;
    float: left;
}

/* ===== Staff Search  ===== */

#search_box {
    width: 900px;
    height: 60px;
    margin: 0 auto;
    margin-top: 16%;
    padding: 10px;
    background-color: #2d3b52;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0 0 50px #000000;

    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-box-shadow: 0 0 50px #000000;
    -webkit-box-shadow: 0 0 50px #000000;
}

/* ===== Input Fields ===== */

.search_field {
    width: 880px;
    height: 40px;
    font-size: 25px;
    padding: 5px;
    box-sizing: border-box;
    border: none;
}

.view_search_field {
    width: 960px;
    height: 30px;
    margin-top: 25px;
    font-size: 18px;
    padding: 5px;
    box-sizing: border-box;
    border: none;
    border-radius: 3px;
}

.binp {
    height: 20px;
    padding: 4px;
    font-size: 16px;
    margin-right: 3px;

    -moz-box-shadow: 0 0 10px #eee inset;
    -webkit-box-shadow: 0 0 10px #eee inset;
}

/* ===== Buttons ===== */

.account_save,
.report_save {
    margin-top: 10px;
    margin-right: 10px;
    width: 150px;
    height: 40px;
    background-color: #abd46e;
    color: white;
    font-size: 20px;
    border-style: none;
}

.logout_button,
.reports_button,
.settings_button,
.upload_button,
.add_button,
.show_button,
.hide_button,
.save_button,
.print_button,
.dashboard_button,
.close_button,
.go_button {
    width: 40px;
    height: 40px;
    float: right;
    margin-left: 10px;
    cursor: pointer;
}

.merge_button,
.delete_button {
    width: 15px;
    height: 15px;
    float: left;
    margin: 5px 0px 0px 5px;
    cursor: pointer;
}

#correct {
    cursor: pointer;
}

#correct:hover {
    opacity: 0.8;
}

#correct:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.merge_button {
    background: url("../images/merge.png") top center no-repeat;
    margin-right: 5px;
}

.delete_button {
    background: url("../images/delete.png") top center no-repeat;
}

.logout_button {
    background: url("../images/logout.png") top center no-repeat;
}

.reports_button {
    background: url("../images/reports.png") top center no-repeat;
}

.settings_button {
    background: url("../images/settings.png") top center no-repeat;
}

.upload_button {
    background: url("../images/upload.png") top center no-repeat;
}

.add_button {
    background: url("../images/add.png") top center no-repeat;
    border: none;
    outline: none;
}

.show_button,
.hide_button {
    background: url("../images/show.png") top center no-repeat;
}

.save_button {
    background: url("../images/save.png") top center no-repeat;
}

.print_button {
    background: url("../images/print.png") top center no-repeat;
}

.dashboard_button {
    background: url("../images/back.png") top center no-repeat;
}

.close_button {
    background: url("../images/close.png") top center no-repeat;
}

.go_button {
    background: url("../images/go.png") top center no-repeat;
}

/* ===== Profile Layout ===== */

#profile_left {
    width: 210px;
    height: 100%;
    padding: 20px 20px 20px 20px;
    margin: 20px 0px 105px 0px;
    box-sizing: border-box;
    font-size: 12px;
    float: left;
    background-color: rgba(45, 59, 81, 0.2);
    border-radius: 10px;
}

#profile_right {
    width: 750px;
    height: 100%;
    padding: 0px 20px 20px 20px;
    margin: 20px 0px 105px 0px;
    box-sizing: border-box;
    font-size: 12px;
    float: left;
}

h3.tab_header {
    width: 720px;
    background-color: rgba(45, 59, 81, 0.2);
    padding: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 14px;
    color: black;
    border-radius: 3px;
    float: left;
}

#tab {
    border: none;
    padding: 10px 0px 10px 5px;
    background: transparent;
    box-sizing: border-box;
    overflow: auto;
    font-size: 12px;
}

#tab ul {
    width: 350px;
    background: transparent;
    float: left;
    list-style: none;
}

#tab li {
    padding: 3px 3px 3px 0px;
}

#tab input {
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
}

#timesheet {
    background: #eee;
}

.form_title {
    color: black;
    font-weight: bold;
}

.form_title_no {
    color: #cccccc;
}

/* ===== Autocomplete Styling ===== */

.ui-widget {
    font-family: Verdana, Arial, sans-serif;
    font-size: 1.1em;
}

.ui-widget .ui-widget {
    font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    font-family: Verdana, Arial, sans-serif;
    font-size: 1em;
}

.ui-widget-content {
    border: 1px solid #aaaaaa;
    background: #ffffff;
    color: #222222;
}

.ui-widget-content a {
    color: #222222;
}

.ui-widget-content a:hover {
    color: #ffffff;
    background: #2d3b52;
}

.ui-widget-header {
    border: 1px solid #aaaaaa;
    background: #dddddd;
    color: #222222;
    font-weight: bold;
}

.ui-widget-header a {
    color: #222222;
}

.ui-autocomplete {
    position: absolute;
    cursor: default;
    max-height: 540px;
    overflow-y: auto;
    overflow-x: hidden;
}

.ui-autocomplete-loading {
    background: white;
}

* html .ui-autocomplete {
    width: 1px;
} /* without this, the menu expands to 100% in IE6 */

.ui-menu {
    list-style: none;
    margin: 0;
    display: block;
}

.ui-menu .ui-menu {
}

.ui-menu .ui-menu-item {
    margin: 0;
    padding: 0;
    zoom: 1;
    float: left;
    clear: left;
    width: 100%;
    height: 35px;
    border-bottom: 1px solid #2d3b52;
}

.ui-menu .ui-menu-item a {
    text-decoration: none;
    display: block;
    padding: 0.2em 0.4em;
    line-height: 1.5;
    zoom: 1;
}

.ui-menu .ui-menu-item a.ui-state-hover,
.ui-menu .ui-menu-item a.ui-state-active {
    background-color: #2d3b52;
    font-weight: normal;
    color: white;
}

.ui-state-focus {
    outline: none;
}

/* ===== Tooltip Styling ===== */

.ui-tooltip,
.arrow:after {
    background: #2d3b52;
    border: 5px solid #cccccc;
}

.ui-tooltip {
    width: 80px;
    height: 80px;
    padding: 27px 0px 27px 0px;
    color: white;
    border-radius: 80px;
    font:
        bold 12px "Helvetica Neue",
        Sans-Serif;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 0 7px black;
    box-sizing: border-box;
    position: absolute;
}

.arrow {
    width: 50px;
    height: 18px;
    overflow: hidden;
    position: absolute;
    left: 8px;
    bottom: -16px;
}

.arrow.top {
    top: -16px;
    bottom: auto;
}

.arrow.left {
}

.arrow:after {
    content: "";
    position: absolute;
    left: 9px;
    top: -23px;
    width: 25px;
    height: 25px;
    box-shadow: 6px 5px 9px -9px black;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    tranform: rotate(45deg);
}

.arrow.top:after {
    bottom: -20px;
    top: auto;
}

/* ===== Modal Styling ===== */

.ui-dialog .ui-state-error {
    border: none;
}

.ui-dialog-buttonpane {
    background-color: #2d3b52;
    height: 75px;
    padding: 15px 30px 20px 0px;
    box-sizing: border-box;
    border: none;
}

.no-close .ui-dialog-titlebar-close {
    display: none;
}

.custom-overlay {
    background-color: black;
    background-image: none;
    opacity: 0.9;
    z-index: 1040;
}

.strip {
    border: none;
    outline: none;
}

.success {
    background: #2d3b52 url("../images/success.png") top center no-repeat;
}

#add_form {
    background-color: #2d3b52;
    border: none;
    padding: 20px;
    color: white;
    outline: none;
}

#add_form label {
    background-color: #2d3b52;
    padding: 5px;
    color: white;
}

#add_form input.text {
    margin-bottom: 10px;
    width: 95%;
    padding: 0.4em;
    color: black;
}

#add_form h1 {
    font-size: 1.2em;
    margin: 0.6em 0;
}

#upload_form,
#merge_form {
    background-color: #2d3b52;
    border: none;
    padding: 20px;
    color: white;
    outline: none;
}

#upload_form label,
#merge_form label {
    background-color: #2d3b52;
    padding: 5px;
    color: white;
}

#upload_form input.text,
#merge_form input.text {
    margin-bottom: 10px;
    width: 95%;
    padding: 0.4em;
    color: white;
}

#upload_form h1,
#merge_form h1 {
    font-size: 1.2em;
    margin: 0.6em 0;
}

#logout_form {
    background-color: #2d3b52;
    border: none;
    color: white;
    text-align: center;
    padding: 10px 0px 10px 0px;
    outline: none;
}

#delete_form {
    background-color: #2d3b52;
    border: none;
    color: white;
    text-align: center;
    padding: 10px 0px 10px 0px;
    outline: none;
}

.center {
    text-align: center;
}

/* ===== Edit in Place Styles ===== */

#sidebar {
    width: 0px;
}

#content {
    width: 770px;
}

.editable input[type="submit"] {
    color: #f00;
    font-weight: bold;
}

.editable input[type="button"] {
    color: #0f0;
    font-weight: bold;
}

.dblclick {
    display: inline;
    width: 300px;
}

#sex select {
    width: 125px;
}

#race select {
    width: 125px;
}

#emp_status select {
    width: 125px;
}

.period_holder {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    float: right;
    top: -4px;
    vertical-align: top;
}
.select2-selection {
    border: none !important;
    color: #555;
}
#select2-pay_period-container {
    font-size: 1.2rem;
    background: #ddd;
    color: #555;
}
#pay_period {
    width: 240px;
    display: none;
}
#select2-order_by-container {
    position: relative;
    top: -3px;
    font-size: 1.2rem;
    background: #fff;
    color: #777;
    border-radius: 0.1em;
    border: solid 1px #777;
}
#select2-order_by-results li {
    color: #777;
    font-size: 1.2rem;
}
#select2-order_by-results li:hover {
    color: #fff;
}
.supervisee_holder {
    /*font-size: 1.2rem !important;*/
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    vertical-align: top;
    top: 0;
}
.top_0 {
    top: 0px;
}
#select2-supervisee-container {
    font-size: 1.2rem;
    background: #ddd;
    color: #555;
    border-radius: 0.1em;
    top: 10px;
}
#supervisee {
    width: 360px;
    display: none;
}
#timesheet_wrapper {
    display: inline-block;
    position: relative;
}
.additional_text {
    position: absolute;
    left: 0.2em;
    top: -1.2em;
    font-size: 0.5em;
}
.informational {
    background: #5bc0de !important;
}
.hidden,
.filterHidden,
.sortHidden {
    display: none;
}
#notes_employee,
#notes_supervisor,
#notes_payroll {
    box-sizing: border-box;
    width: 90%;
    height: 150px !important;
    font-family: helvetica;
    font-size: 0.8em;
    color: #777;
    border-radius: 0.3em;
    padding: 8px;
}

.small_text_input {
    border: 1px solid #d0d5de;
    font-size: 18px;
    padding: 4px;
    text-align: left;
    width: 69px;
    height: 30px;
    box-sizing: border-box;
}

.single_text_input {
    border: 1px solid #d0d5de;
    font-size: 18px;
    padding: 4px;
    text-align: left;
    width: 100%;
}

.full_text_input {
    border: 1px solid #d0d5de;
    font-size: 18px;
    padding: 4px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0.5em;
}

.small_text_input_label,
.single_text_input_label,
.full_text_input_label {
    padding-left: 0;
    box-sizing: border-box;
    display: inline-block;
    margin-top: 0.5em;
}

@media print {
    html,
    body,
    #login_wrapper {
        width: 100% !important;
    }
    #login_wrapper {
        padding-right: 0 !important;
        margin-right: 0 !important;
    }
    #left_main {
        display: none;
    }
    form {
        padding-right: 0 !important;
    }
    textarea {
        width: 95% !important;
        height: auto;
    }
    #left_major_main_timesheet {
        width: 70% !important;
    }
    #timesheet_wrapper,
    #timesheet_wrapper > div,
    #timesheet_wrapper > div form table {
        width: 100% !important;
    }
    #right_major_main_timesheet,
    .message_grey_timesheet,
    .message_timesheet,
    #message_top {
        height: auto !important;
        width: 50% !important;
        position: relative;
        left: -1%;
    }

    .message_timesheet_shiftdiff {
        height: auto !important;
        position: relative;
    }
    #right_major_main_timesheet {
        top: -25px !important;
    }
    #your_totals,
    #period_totals,
    #vacation_used,
    #pto_used,
    #sick_used,
    #leave_wo_pay,
    .message_timesheet div span {
        font-size: 20px !important;
    }
    form + div button {
        display: none !important;
    }
}
