﻿/*
    PX to REM Converter
    https://nekocalc.com/px-to-rem-converter

    https://www.sitepoint.com/understanding-and-using-rem-units-in-css/
*/

/*=== [ VARIABLES ] ===*/
:root {
    /* Colors */
    --blue: #008cff;
    --darkBlue: #056bc7;
    --red: #ff474e;
    --darkRed: #b22222;
    --white: #fff;
    --veryLightGrey: #f5f6f7;
    --veryLightBlueGrey: #cdd1d6;
    --grey: #ebedef;
    --blueGrey: #9ca3ae;
    --darkBlueGrey: #39475d;
    --darkGrey: #6c757d;
    --green: #51cf66;
    --darkGreen: #45ad57;
    --orange: #fd6a36;
}

/*=== [ GENERAL ] ===*/
html {
    /* Document Root Font Size */
    font-size: 16px;
}

html,
body {
    min-height: 100%;
}

    body::-webkit-scrollbar {
        width: 11px;
    }

body {
    width: 100%;
    height: 100vh;
    font-family: Roboto, sans-serif;
    background-color: var(--grey);
}

#main-content {
    position: relative;
    height: 100vh;
}

.wox-container {
    max-width: 800px !important;
    background-color: var(--white);
    height: 100%;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 5px 10px 0 rgb(156 163 174 / 25%);
}

.section:not(:first-of-type) {
    padding-top: 30px;
    padding-bottom: 30px;
}

.container-fluid {
    background-color: var(--grey);
}

.gutter {
    padding: .5rem 0;
    background-color: var(--grey);
}

    .gutter:last-of-type {
        display: none;
    }

.container-lg {
    background-color: var(--white);
}

.wox-container .container-lg:first-of-type .row:first-of-type {
    padding-top: 50px;
}

.section:last-of-type::after,
.section:last-child::after {
    display: none;
}

.row {
    padding-top: 20px;
    padding-bottom: 20px
}

.bg-white {
    background-color: var(--white) !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.bg-primary {
    background-color: var(--blue) !important;
}

.map-container {
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.center-element {
    margin: auto;
}

a {
    text-decoration: none;
}

h2 {
    font-size: 1.5rem; /* 24px */
}

h4 {
    font-size: 1.125rem; /* 18px */
}

.logo {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    grid-template-rows: auto;
    column-gap: 5px;
    justify-content: center;
}

    .logo h1 {
        text-indent: -99999px;
        width: 100%;
        height: 60px;
        background: url(../images/wox-logo.png) transparent no-repeat center center;
        background-size: contain;
    }

.page-title {
    margin-bottom: 0;
    color: var(--blue);
}

.alert-light {
    border: 1px solid var(--grey);
    background-color: var(--veryLightGrey);
}

#ctl00_ContentPlaceHolder1_divNoLabor p.alert {
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem; /* 20px */
    text-transform: uppercase;
}

table.gridlines {
    border-collapse: collapse;
    border: 1px solid #000000;
}

table.gridlines td {
    border: 1px solid #000000;
}


button,
input[type="submit"],
a {
    transition: all 0.15s ease-in-out !important;
}

.current-user {
    font-size: .75rem; /* 12px */
    color: var(--blueGrey);
}

.section-heading,
.section-title,
.admin-menu h4 {
    color: var(--blue);
    font-size: 1.125rem; /* 18px */
}

    .section-heading::before,
    .admin-menu h4::before {
        content: "";
        margin-right: .5em; /* 8px */
        font: 900 1.25rem "Line Awesome Free"; /* 20px */
    }

.section.admin-menu h4::before {
    content: "\f0c9";
}

.section.reports-menu h4.section-heading::before {
    content: "\f085";
}

.section.dataEntry-menu h4.section-heading::before {
    content: "\f233";
}

.img-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

    .img-container .img-holder > a > img {
        max-width: 100%;
    }

    .img-container .img-holder > a.DeleteButton {
        border-radius: 50%;
    }

dl dd.note-description {
    border-bottom: 1px dashed var(--darkGrey);
    padding: 8px 12px 15px;
}

dl dt {
    padding-top: 20px;
}

/*=== [ BUTTONS ] ===*/
.btn-success {
    background-color: var(--green) !important;
    color: #fff !important;
}

.btn-danger {
    background-color: var(--red) !important;
    color: #fff !important;
}

.menubutton.wox-btn,
.wox-btn {
    background-color: var(--blue);
    color: #fff;
}

.menubutton,
.default-btn {
    background-color: var(--veryLightGrey);
    color: #39475d;
}

    .menubutton.default-btn::after {
        color: var(--blue);
    }

.menubutton,
.default-btn,
.wox-btn,
.btn__icon {
    box-shadow: 0 5px 10px 0 rgb(0 140 255 / 20%);
    font-weight: 500;
}

    .btn__icon.btn-success {
        box-shadow: 0 5px 10px 0 rgb(81 207 102 / 20%);
    }

    .menubutton:not(#ctl00_ContentPlaceHolder1_btnLogin, #btnLogOff) {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .menubutton:not(#btnLogOff)::after {
        font-family: "Line Awesome Free";
        font-weight: 900;
        margin-left: 5px;
        font-size: 1.375rem; /* 22px */
    }

    .menubutton:not(#btnLogOff, #ctl00_ContentPlaceHolder1_btnLogOff, #btnMainMenu, #ctl00_ContentPlaceHolder1_btnLogin, .login-btn, #ctl00_ContentPlaceHolder1_btnAddItem, #ctl00_ContentPlaceHolder1_btnStartWork1), .WorkOrderExtreme-RAdminMenu .btn-container .menubutton {
        height: 80px;
    }

.login-btn {
    height: 42px;
}

#upload-photo__btn,
#clock-out__btn {
    border-radius: 50%;
}

#clock-out__btn {
    border-color: var(--darkRed);
}

input[type="submit"].icon-btn {
    font-family: "Line Awesome Free";
    font-weight: 900;
    height: auto !important;
    color: #fff;
    width: 48px;
    font-size: 1.125rem; /* 18px */
}

#btnMainMenu {
    background-color: var(--blue);
    color: #fff;
    border: 1px solid var(--blue);
}

#btnLogOff {
    box-shadow: 0 5px 10px 0 rgb(106 117 133 / 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
}

    #btnLogOff i {
        color: var(--white);
        font-size: 1.5rem; /* 24px */
    }


#btnClockOut,
#btnLogOff,
#ctl00_ContentPlaceHolder1_btnLogOff,
#ctl00_ContentPlaceHolder1_btnDelete {
    background-color: var(--red);
    border-color: var(--darkRed);
    box-shadow: 0 5px 10px 0 rgb(178 34 34 / 25%);
    color: #fff;
}

#ctl00_ContentPlaceHolder1_btnSave,
#ctl00_ContentPlaceHolder1_btnStartWork1,
#ctl00_ContentPlaceHolder1_btnDelete {
    color: #fff;
    font-size: 1.125rem; /* 18px */
    font-weight: 500;
}

.WorkOrderExtreme-RAdminMenu #btnStartWork,
.RAdminMenu #btnStartWork {
    color: var(--white);
}

#ctl00_ContentPlaceHolder1_btnSave,
#ctl00_ContentPlaceHolder1_btnStartWork1,
#btnStartWork {
    background-color: var(--green);
    border-color: var(--darkGreen);
    box-shadow: 0 5px 10px 0 rgb(69 173 87 / 25%);
}

#btnBack,
#btnMainMenu {
    max-height: 45px !important;
    font-size: 1.375rem; /* 22px */
}

.RLogoff #btnMainMenu,
.WorkOrderExtreme-RLogoff #btnMainMenu {
    font-size: 1.125rem; /* 18px */
    width: 144px;
    min-height: 72px !important;
    max-height: 72px !important;
    display: block;
}

    .RLogoff #btnMainMenu > i,
    .WorkOrderExtreme-RLogoff #btnMainMenu > i {
        font-size: 1.5rem; /* 24px */
    }

#ctl00_ContentPlaceHolder1_btnPropertySearch {
    background-color: var(--blue);
    color: var(--white) !important;
    border-color: var(--darkBlue);
    max-height: 42px !important;
}

/*#btnAddMaterial,
#btnAttachPhoto,
#btnAddLabor,
#btnAddSubcontract,
#btnSubmitPhoto {
    width: 144px;
    height: 42px;
}*/

#tbPropertySearch {
    width: 80%;
}

.btn__icon {
    font-family: 'Line Awesome Free' !important;
    font-weight: 900 !important;
    font-size: 1.375rem !important; /* 22px */
    width: 42px;
    border: 1px solid var(--blue);
}

.edit-btn {
    height: 42px !important;
    /*    max-width: 42px;*/
}

.filter-btn {
    max-width: 48px;
}

.btn-bar {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    align-items: center;
    margin-bottom: 20px;
}

    .btn-bar .btn-elem {
        margin-right: 20px;
    }

        .btn-bar .btn-elem:last-child {
            margin-right: 0;
        }

        .btn-bar .btn-elem .wox-btn {
            font-size: 1.125rem; /* 18px */
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .btn-bar .btn-elem button i {
            font-size: 1.5rem; /* 24px */
        }

    .btn-bar.report-btns {
        justify-content: center;
    }

        .btn-bar.report-btns .btn-elem {
            width: 15%;
        }

            .btn-bar.report-btns .btn-elem button i {
                font-size: 2rem; /* 32px */
            }

.save-del__btns {
    margin-left: 0;
    margin-right: 0;
    display: grid;
    grid-auto-flow: column;
    column-gap: 20px;
}

.add-item__btn {
    font-size: 1.125rem; /* 18px */
}

    .add-item__btn > i {
        margin-right: 3px;
    }

.user-guide__btn:hover {
    color: var(--white);
}

#btnUploadPhoto {
    width: 100%;
    display: flex;
    flex-direction: column;
}

    #btnUploadPhoto::before {
        content: '\f030';
        font-family: 'Line Awesome Free';
        font-weight: 900;
        font-size: 1.5rem;
    }

.navBtns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 20px;
}

    .navBtns button {
        background-color: var(--veryLightGrey);
        color: var(--darkBlueGrey);
        font-size: 1.15rem;
        border-color: #ced4da;
        box-shadow: 0 5px 10px 0 rgb(0 140 255 / 20%);
    }


/*=== [ ACCORDION ] ===*/
.accordion div[id*="collapse-"] .accordion-body .menubutton {
    height: 42px !important;
    width: 144px;
    background-color: var(--blue);
    color: #fff;
    padding: 0;
    font-size: .875rem; /* 14px */
    border-color: var(--darkBlue);
}

.accordion .accordion-header > .accordion-button > .text-container > span {
    display: block;
    width: 100%;
}

    .accordion .accordion-header > .accordion-button > .text-container > span:first-of-type {
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .accordion .accordion-header > .accordion-button > .text-container > span:last-of-type {
        font-size: .875rem; /* 14px */
        line-height: 1.25rem;
    }

.accordion .accordion-button::after {
    background-image: none;
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 1.125rem;
}

.accordion .accordion-button:not(.collapsed) {
    background-color: rgb(0 140 255 / 5%);
}

    .accordion .accordion-button:not(.collapsed) .text-container > span,
    .accordion .accordion-button:not(.collapsed)::after {
        color: var(--blue);
    }


/*=== [ FORMS ] ===*/
form {
    height: 100%;
}

.form-check .form-check-input {
    border: 0;
    /*    float: none;*/
}

.fieldError.RequiredField {
    border-color: var(--red);
    box-shadow: inset 0 1px 2px rgb(200 0 0 / 90%), 0 -1px 1px var(--white), 0 1px 0 var(--white)
}

.errorMsg {
    color: var(--red);
    padding: 5px 0;
}

input[type="text"],
select,
textarea,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple,
[id*='dropContainer'] {
    width: 100%;
    border-radius: 3px;
    border: 1px solid transparent;
    border-top: none;
    border-bottom: 1px solid #DDD;
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 20%), 0 -1px 1px var(--white), 0 1px 0 var(--white);
}

.input-container select {
    padding: 1rem .75rem; /* 16px 12px */
}

.input-group input[type="submit"] {
    border: 1px solid var(--blue);
}

#dropContainerRow {
    width: 100%;
    margin: 0 auto 20px;
    height: 100px;
    border-color: var(--veryLightGrey);
}

    #dropContainerRow .dropContainer {
        height: inherit;
        display: flex;
        justify-content: center;
        align-items: center;
    }

textarea {
    height: 100px !important;
}

#divQuickPickDdl .select2-container .select2-selection {
    height: 50px;
    outline-color: var(--blue);
}

    #divQuickPickDdl .select2-container .select2-selection .select2-selection__arrow,
    #divQuickPickDdl .select2-container .select2-selection .select2-selection__clear {
        height: 50px;
    }

.embedded {
    width: 100% !important;
    height: 1150px;
}


/*=== [ TABLES ] ===*/
#resultTable th {
    font-size: 1rem; /* 16px */
}

#resultTable td {
    font-size: 0.875rem; /* 14px */
    vertical-align: middle;
}

#resultTable tbody tr td:last-child > div {
    display: flex;
    justify-content: center;
}

#resultTable th:last-of-type {
    text-align: center;
}

#resultTable tr {
    background-color: var(--white);
}

#RecentTable tbody tr td,
#divMatchingProperties.property-searchResults__table tbody tr td {
    vertical-align: middle;
    padding: 20px 0;
}

    #divMatchingProperties.property-searchResults__table tbody tr td:first-child {
        font-weight: 500;
    }

    #ctl00_ContentPlaceHolder1_divProperties #RecentTable tbody tr td:last-child > .btn__icon,
    #divMatchingProperties.property-searchResults__table tbody tr td:last-child > .btn__icon,
    #RecentTable.recent-activity__table tbody tr td:last-child > .btn__icon,
    #resultTable.user-list__table tbody tr td:last-child > div > .btn__icon,
    .img-container > .img-holder > a.DeleteButton.btn__icon {
        font-size: .875rem; /* 14px */
        height: 42px;
        width: 42px;
        border-radius: 50%;
        display: flex;
        border: 0;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
    }

.img-container > .img-holder > a.DeleteButton.btn__icon {
    box-shadow: 0 0 4px 2px rgb(255 255 255 / 50%);
}

    .img-container > .img-holder > a.DeleteButton.btn__icon > i {
        font-size: 1.5rem;
    }

.recent-activity__table tbody tr td > .wox-btn {
    max-width: 144px;
    max-height: 42px;
}

#ctl00_ContentPlaceHolder1_divProperties #RecentTable thead th:last-child {
    text-align: center;
}

.user-list__table thead tr th:nth-child(2) {
    text-align: center;
}

.user-list__table tbody tr td {
    vertical-align: middle;
}

    .user-list__table tbody tr td:last-child {
        width: 20%;
    }

    .user-list__table tbody tr td:nth-child(2) {
        text-align: center;
    }

.labor-list__table#resultTable tbody tr.noborder td:last-child {
    border-bottom: 1px solid #dee2e6;
}

.notesrow > .notescell {
    color: var(--blueGrey);
    font-style: italic;
    letter-spacing: 0.022rem; /* 0.35px */
}

    .notesrow > .notescell::before {
        content: "Notes: ";
        font-weight: 700;
    }

.material-list__table#resultTable .material-date {
    white-space: nowrap;
}

.material-list__table#resultTable .material-cost,
.labor-list__table#resultTable .labor-property > div:first-child,
.labor-list__table#resultTable .labor-amount {
    font-weight: 900;
}


/*=== [ RMenu ] ===*/
.btn-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem; /* 20px */
    justify-items: stretch;
}


/*=== [ RLogon ] ===*/
.wox-container .login-form .row .form-group,
.wox-container .login-form input[type="text"] {
    width: 100%;
}

.login-form {
    max-width: 350px;
    margin: 0 auto;
}

.wox-container .login-info {
    font-size: .875rem; /* 14px */
}

    .wox-container .login-info p:last-of-type {
        margin-bottom: 0;
    }


/*=== [ RTicketMaterialList ] ===*/
#ticketTable .ticket-info {
    /*font-size: 1rem;*/ /* 14px */
}



/*=== [ RPickTicketOrProperty ] ===*/
[class *= "RPickTicketOrProperty"] .btn-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


.RPickTicketOrProperty #map {
    padding: 0;
}


/*=== [ RTicketDetail ] ===*/
#ctl00_ContentPlaceHolder1_divTicketDetails.row {
    padding-bottom: 0;
}

/*=== [ RRecurringSubcontractDetail ] ===*/
#ctl00_ContentPlaceHolder1_lblAppliesTo {
    font-size: .875rem;
}

/*=== [ RReports ] ===*/
.report {
    padding: 30px 0;
    border-bottom: 1px solid var(--veryLightBlueGrey);
    display: flex;
}

    .report:last-child {
        border-bottom: 0;
    }

    .report > .report-description {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .report .report-description {
        font-size: .875rem;
    }


/*=== [ RESPONSIVE ] ===*/
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) {
    .row {
        margin-right: 0;
        margin-left: 0;
    }

    .wox-container .section:first-of-type .row > * {
        padding-left: 0;
        padding-right: 0;
    }

    .WorkOrderExtreme-RAdminMenu.btn-container,
    .RAdminMenu .btn-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo {
        grid-template-columns: 36px 1fr 36px;
    }

    #ctl00_ContentPlaceHolder1_divCurrentLabor.row {
        background-color: transparent;
        padding-top: 0;
        padding-bottom: 0;
    }

        #ctl00_ContentPlaceHolder1_divCurrentLabor.row > table {
            padding-left: 0;
            padding-right: 0
        }

    .img-container {
        grid-template-columns: 1fr;
        justify-items: center;
    }

        .img-container .img-holder img {
            max-width: 300px;
        }


    #ddlFilterDept {
        font-size: .875rem;
    }


    /*=== [ BUTTONS ] ===*/
    button,
    .btn,
    .menubutton,
    button > span,
    .btn > span,
    .menubutton > span {
        font-size: .875rem; /* 14px */
    }

    .btn-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

        .btn-container button {
            width: auto;
            font-size: .875rem; /* 14px */
        }

    .WorkOrderExtreme-RPickTicketOrProperty .btn-container {
        display: flex;
        flex-direction: column;
    }


    .menubutton:not( #btnLogOff, #btnMainMenu, #ctl00_ContentPlaceHolder1_btnLogin, .login-btn, #ctl00_ContentPlaceHolder1_btnAddItem, #ctl00_ContentPlaceHolder1_btnStartWork1 ) {
        height: 60px;
    }

    #btnAddMaterial,
    #btnAttachPhoto,
    #btnAddLabor,
    #btnAddSubcontract,
    #btnSubmitPhoto,
    .subcontract-btn,
    .add-item__btn {
        font-size: .938rem; /* 15px */
    }

    #ctl00_ContentPlaceHolder1_divPickWorkType,
    #divPickWorkType,
    #ctl00_ContentPlaceHolder1_divPickWorkType .btn-container,
    #divPickWorkType .btn-container {
        grid-template-columns: 1fr;
    }

    .subcontract-btn > i {
        margin-right: 8px;
        font-size: 2rem; /* 32px */
    }

    .subcontract-btns {
        width: 100%;
    }

    .report-btns.btn-bar {
        width: 70%;
    }

    .btn-bar .btn-elem .btn {
        font-size: .875rem; /* 14px */
    }

    .btn-bar .btn-elem button i {
        font-size: 1.5rem; /* 24px */
    }

    .btn-bar {
        max-width: 100%;
    }


    /*=== [ ACCORDION ] ===*/
    .accordion .accordion-body {
        padding: 1rem;
    }

        .accordion .accordion-body .row > * {
            padding-left: 0;
            padding-right: 0;
        }

    .accordion .accordion-header button {
        font-size: .938rem; /* 15px */
    }

        .accordion .accordion-header button span:last-of-type {
            font-size: .75rem; /* 12px */
        }


    /*=== [ TABLES ] ===*/
    .wox-table#resultTable,
    .wox-table#resultTable thead,
    .wox-table#resultTable tbody,
    .wox-table#resultTable tr,
    .wox-table#resultTable td {
        display: block;
    }

        .wox-table#resultTable thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

        .wox-table#resultTable tr {
            margin: 0 0 .5em;
            margin-bottom: 1rem;
        }

        .wox-table#resultTable tbody td {
            border: 1px solid #cdd1d6;
            border-bottom: 0;
            position: relative;
            padding-left: 50%;
            font-size: .875rem; /* 14px */
        }

            .wox-table#resultTable tbody td > div {
                text-align: right
            }

    #resultTable tbody tr td:last-child > div {
        justify-content: flex-end;
    }

    .wox-table#resultTable td:first-of-type {
        border-top-right-radius: 6px;
        border-top-left-radius: 6px;
    }

    .wox-table#resultTable td:last-of-type {
        border-bottom: 1px solid #cdd1d6;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .wox-table#resultTable td::before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: .625em;
        white-space: nowrap;
        font-weight: 700;
    }

    /* Labor List */
    .labor-list__table tbody tr td > div {
        text-align: right
    }

    .labor-list__table.wox-table#resultTable td:nth-of-type(1)::before {
        content: "Type";
    }

    .labor-list__table.wox-table#resultTable td:nth-of-type(2)::before {
        content: "Date";
    }

    .labor-list__table.wox-table#resultTable td:nth-of-type(3)::before {
        content: "Employee";
    }

    .labor-list__table.wox-table#resultTable td:nth-of-type(4)::before {
        content: "$ Amount";
    }

    .labor-list__table.wox-table#resultTable td:nth-of-type(5)::before {
        content: "Edit";
    }


    /* Class List */
    .class-list__table.wox-table#resultTable td:nth-of-type(1)::before {
        content: "Name";
    }

    .class-list__table.wox-table#resultTable td:nth-of-type(2)::before {
        content: "Description";
    }

    .class-list__table.wox-table#resultTable td:nth-of-type(3)::before {
        content: "Department";
    }

    .class-list__table.wox-table#resultTable td:nth-of-type(4)::before {
        content: "Active";
    }

    .class-list__table.wox-table#resultTable td:nth-of-type(5)::before {
        content: "Edit";
    }


    /* Subcontract List */
    .subcontract-list__table.wox-table#resultTable td:nth-of-type(1)::before {
        content: "Type";
    }

    .subcontract-list__table.wox-table#resultTable td:nth-of-type(2)::before {
        content: "Date";
    }

    .subcontract-list__table.wox-table#resultTable td:nth-of-type(3)::before {
        content: "Vendor";
    }

    .subcontract-list__table.wox-table#resultTable td:nth-of-type(4)::before {
        content: "$ Amount";
    }

    .subcontract-list__table.wox-table#resultTable td:nth-of-type(5)::before {
        content: "Edit";
    }


    /* User List */
    .user-list__table.wox-table#resultTable td:nth-of-type(1)::before {
        content: "Employee";
    }

    .user-list__table.wox-table#resultTable td:nth-of-type(2)::before {
        content: "Ticket/Property";
    }

    .user-list__table.wox-table#resultTable td:nth-of-type(3)::before {
        content: "";
    }

    .user-list__table.wox-table#resultTable td:nth-of-type(4)::before {
        content: "";
    }

    /* Material List */
    .material-list__table.wox-table#resultTable td:nth-of-type(1)::before {
        content: 'Type';
    }

    .material-list__table.wox-table#resultTable td:nth-of-type(2)::before {
        content: 'Date';
    }

    .material-list__table.wox-table#resultTable td:nth-of-type(3)::before {
        content: 'Dollar Amount';
    }

    .material-list__table.wox-table#resultTable td:nth-of-type(4)::before {
        content: 'Notes';
    }

    .material-list__table.wox-table#resultTable td:nth-of-type(5)::before {
        content: 'Edit';
    }

    /* Tenant Menu */
    .wox-table#RecentTable td {
        font-size: .875rem;
    }

        .wox-table#RecentTable td:last-of-type button {
            flex-direction: column;
            height: 80px;
        }
}


/* iPhone 5/SE Portrait */
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) {
}


/* iPhone 5/SE Landscape */
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: landscape) {
    .WorkOrderExtreme-RAdminMenu .btn-container,
    .RAdminMenu .btn-container {
        grid-template-columns: repeat(3, 1fr);
    }

    button,
    .btn,
    .menubutton,
    button > span,
    .btn > span,
    .menubutton > span {
        font-size: .875rem;
    }

    .logo {
        grid-template-columns: 36px 1fr 36px;
    }
}

@media only screen and (min-device-width: 569px) and (max-device-width: 767px) and (orientation: portrait) {
    .img-container {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
}

@media only screen and (min-device-width: 569px) and (max-device-width: 767px) and (orientation: landscape) {
    .input-container {
        margin-bottom: .5rem;
    }

    .btn-container {
        grid-template-columns: repeat(4, 1fr);
    }

        .btn-container button {
            width: auto;
            font-size: .938rem; /* 15px */
        }

    .WorkOrderExtreme-RPickTicketOrProperty .btn-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    #btnAddMaterial,
    #btnAttachPhoto,
    #btnAddLabor,
    #btnAddSubcontract,
    #btnSubmitPhoto {
        font-size: .938rem; /* 15px */
    }

    #ctl00_ContentPlaceHolder1_divPickWorkType .btn-container {
        grid-template-columns: 1fr 1fr;
    }

    #resultTable thead th {
        font-size: .938rem; /* 15px */
    }

    #resultTable.wox-table td {
        font-size: .875rem; /* 14px */
        vertical-align: middle;
    }

        #resultTable.wox-table th:not(:first-child),
        #resultTable.wox-table td:not(:first-child) {
            text-align: center;
        }

    body.RTicketLaborList .input-container:nth-of-type(3) {
        margin-top: 1rem;
    }

    .img-container {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
}
