#searchresults-view {
    z-index: 8;
    background: #fafafa;
    overflow: hidden;
    display: none;
}


/**************************************************************************************************************
 * Header
 **************************************************************************************************************/
#searchresults-view .header {
    height: 146px;
    border-bottom: none;
    box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, .1);
}

#searchresults-view .header .search-field-wrapper {
    z-index: 2;
    position: absolute;
    left: 0;
    width: 424px;
    margin: 40px 0 0 48px;
}

#searchresults-view .header .search-field-wrapper .search-field {
    width: 400px;
}

#searchresults-view .header .search-field {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1), inset 0 0 0 1px rgba(0, 0, 0, .3);
}

#searchresults-view .header .filtering-field-wrapper {
    z-index: 2;
    position: absolute;
    right: 0;
    width: 320px;
    margin: 40px 48px 0 0;
}

#searchresults-view .header .filtering-field-wrapper .filter-field {
    width: 320px;
    height: 56px;
    cursor: pointer;
}

#searchresults-view .header .filtering-field-wrapper .input-field-handle{
    margin-top: -23px;
    pointer-events: none;
}

#searchresults-view .header .btn-search {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 56px;
    height: 56px;
    cursor: pointer;
    background: url("../../images/search_icon.png") no-repeat;
    background-position: center center;
}

#searchresults-view .header .search-field-wrapper .nothing-found {
    opacity: 0;
    position: absolute;
    left: 0px;
    top: -24px;
    font-weight: 500;
    font-size: .875em;
    color: #c0392b;
}


/**************************************************************************************************************
 * Searchresult header
 **************************************************************************************************************/
#searchresults-view .searchresult-header {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    top: 30px;
    width: 100%;
    height: 100px;
    background: #2C3E50;
}

#searchresults-view .searchresult-header p {
    color: white;
    font-size: 1em;
}

#searchresults-view .searchresult-header p.no-results {
    display: none;
}

#searchresults-view .searchresult-header p span {
    font-weight: 500;
}

#searchresults-view .searchresult-header .btn-main-action {
    position: absolute;
    top: calc(50% - 25px);
    right: 48px;
    width: 250px;
    height: 50px;
}

/**************************************************************************************************************
 * Job list
 **************************************************************************************************************/
#searchresults-view .list {
    position: absolute;
    z-index: 90;
    top: 196px;
    right: 0;
    width: 100%;
    height: calc(100% - 292px);
    box-shadow: inset 1px 0  0 0 rgba(0, 0, 0, .1);
    overflow-y: scroll;
}

#searchresults-view .list .row {
    position: relative;
    width: 100%;
    height: 72px;
    display: flex;
    box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, .1);
}

#searchresults-view .list .row.title .printjob-no,
#searchresults-view .list .row.title .date,
#searchresults-view .list .row.title .production-date,
#searchresults-view .list .row.title .space-height,
#searchresults-view .list .row.title .production-duration,
#searchresults-view .list .row.title .completion-date,
#searchresults-view .list .row.title .editor,
#searchresults-view .list .row.title .printer,
#searchresults-view .list .row.title .build-unit,
#searchresults-view .list .row.title .comment,
#searchresults-view .list .row.title .status,
#searchresults-view .list .row.title .actions {
    padding-right: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    height: 50px;
    color: rgba(0, 0, 0, .3) !important;
    font-size: .75em;
    letter-spacing: .05em;
    box-shadow: -1px 0px 0px 0px rgba(0,0,0,0.1);
}

#searchresults-view .list .row.title .printjob-no,
#searchresults-view .list .row.title .date,
#searchresults-view .list .row.title .production-date,
#searchresults-view .list .row.title .space-height,
#searchresults-view .list .row.title .production-duration,
#searchresults-view .list .row.title .completion-date,
#searchresults-view .list .row.title .editor,
#searchresults-view .list .row.title .printer,
#searchresults-view .list .row.title .build-unit,
#searchresults-view .list .row.title .status {
    cursor: pointer;
}

#searchresults-view .list .row.title .printjob-no:hover,
#searchresults-view .list .row.title .date:hover,
#searchresults-view .list .row.title .production-date:hover,
#searchresults-view .list .row.title .completion-date:hover,
#searchresults-view .list .row.title .editor:hover,
#searchresults-view .list .row.title .printer:hover,
#searchresults-view .list .row.title .build-unit:hover,
#searchresults-view .list .row.title .status:hover {
    background: rgba(0, 0, 0, .03);
}

#searchresults-view .list .row.title .sorting-active {
    background: rgba(0, 0, 0, .03);
}

#searchresults-view .list .row .printjob-no,
#searchresults-view .list .row .date,
#searchresults-view .list .row .space-height,
#searchresults-view .list .row .production-duration,
#searchresults-view .list .row .production-date,
#searchresults-view .list .row .completion-date,
#searchresults-view .list .row .editor,
#searchresults-view .list .row .status,
#searchresults-view .list .row .printer,
#searchresults-view .list .row .build-unit,
#searchresults-view .list .row .comment,
#searchresults-view .list .row .actions {
    width: calc(100% / 12);
    padding: 0 24px 0 24px;
    border-left: 1px solid rgba(255, 255, 255, .1);
}

#searchresults-view .list .actions {
    position: absolute;
    display: flex;
    align-items: center;
    width: 142px;
    right: 0;
    padding-left: 24px;
    font-weight: 600;
}

#searchresults-view .list .row.title .actions {
    width: 148px;
}

#searchresults-view .list .row.title .status {
    margin-right: 233px;
}

#searchresults-view .list .row.title {
    position: fixed;
    height: 50px;
    top: 146px;
    background: #fafafa;
    box-shadow: inset 1px 0  0 0 rgba(0, 0, 0, .1);
}

#searchresults-view .list .row .production-date.orange {
    color: #F39C12;
}

#searchresults-view .list .row .production-date.red {
    color: #E74C3C;
}

#searchresults-view .list .row .production-date input {
    height: 32px;
    width: calc(100% - 16px);
    padding-left: 8px;
    margin-left: -8px;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2);
    border: none;
    font-size: 1em;
    font-weight: 600;
    color: rgba(0, 0, 0, .6);
}

#searchresults-view .list .row .printjob-red-highlight {
    width: 12px;
    height: 32px;
    margin-top: 20px;
    background: #E74C3C;
    border-radius: 3px;
    margin-left: 12px;
    margin-right: -12px;
}

#searchresults-view .list .row .printjob-orange-highlight {
    width: 12px;
    height: 32px;
    margin-top: 20px;
    background: #F39C12;
    border-radius: 3px;
    margin-left: 12px;
    margin-right: -12px;
}

#searchresults-view .list .row .printjob-highlight-placeholder {
    width: 12px;
    height: 32px;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0);
    margin-left: 12px;
    margin-right: -12px;
}

#searchresults-view .list .row .printjob-no {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% / 12 - 62px);
    height: 72px;
    border: none;
    color: #3DA6E4;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    background: none;
    outline: none;
}

#searchresults-view .list .row.title .printjob-no {
    width: calc(100% / 12 - 36px);
    flex-direction: row;
}

#searchresults-view .list .row .old {
    position: absolute;
    left: 38px;
    top: 44px;
    color: rgba(0, 0, 0, .5);
    font-size: .75em;
    width: 64px;
}

#searchresults-view .list .row .production-date {
    width: calc(100% / 12 + 18px);
}

#searchresults-view .list .row.title .production-date {
    width: calc(100% / 12 + 32px);
}

#searchresults-view .list .row .space-height {
    width: calc(100% / 12 - 14px);
}

#searchresults-view .list .row.title .space-height {
    width: calc(100% / 12);
}

#searchresults-view .list .row .production-duration {
    width: calc(100% / 12 - 80px);
    padding-left: 18px;
}

#searchresults-view .list .row.title .production-duration {
    width: calc(100% / 12 - 70px);
    padding-left: 24px;
}

#searchresults-view .list .row .completion-date {
    width: calc(100% / 12 + 28px);
}

#searchresults-view .list .row.title .completion-date {
    width: calc(100% / 12 + 42px);
}

#searchresults-view .list .row .date {
    width: calc(100% / 12 - 24px);
}

#searchresults-view .list .row.title .date {
    width: calc(100% / 12 - 6px);
}

#searchresults-view .list .row .editor {
    width: calc(100% / 12 + 10px);
}

#searchresults-view .list .row.title .editor {
    width: calc(100% / 12 + 28px);
}

#searchresults-view .list .row .printer {
    width: calc(100% / 12 - 68px);
}

#searchresults-view .list .row.title .printer {
    width: calc(100% / 12 - 56px);
}

#searchresults-view .list .row .build-unit {
    width: calc(100% / 12 - 84px);
}

#searchresults-view .list .row.title .build-unit {
    width: calc(100% / 12 - 72px);
}

#searchresults-view .list .row .comment {
    width: calc(100% / 12 + 152px);
}

#searchresults-view .list .row.title .comment {
    width: calc(100% / 12 + 170px);
}

#searchresults-view .list .row .status {
    width: calc(100% / 12 + 54px);
}

#searchresults-view .list .row.title .status {
    width: calc(100% / 12 + 72px);
    margin-right: 190px;
}


#searchresults-view .list .date,
#searchresults-view .list .production-date,
#searchresults-view .list .space-height,
#searchresults-view .list .production-duration,
#searchresults-view .list .completion-date,
#searchresults-view .list .row .printer,
#searchresults-view .list .row .build-unit,
#searchresults-view .list .row .comment {
    display: flex;
    align-items: center;
    height: 72px;
    border: none;
    color: rgba(0, 0, 0, .6);
    font-size: 1em;
    font-weight: 600;
    background: none;
    outline: none;
}

#searchresults-view .list .editor {
    display: flex;
    align-items: center;
    height: 72px;
    border: none;
    color: rgba(0, 0, 0, .6);
    font-size: 1em;
    font-weight: 600;
    background: none;
    outline: none;
}

#searchresults-view .list .status {
    display: flex;
    align-items: center;
    height: 72px;
    border: none;
    margin-right: 172px;
    color: rgba(0, 0, 0, .6);
    font-size: 1em;
    font-weight: 600;
    background: none;
    outline: none;
    cursor: pointer;
}

#searchresults-view .list .status #status-update-select-wrapper {
    width: 100%;
    min-width: 160px;
    margin-right: -56px;
    position: relative;
    cursor: pointer;
}

#searchresults-view .list .status #status-update-select-wrapper .input-field-handle {
    width: 32px;
    height: 32px;
    top: 0;
    right: 12px;
    pointer-events: none;
    cursor: pointer;
}

#searchresults-view .list .status select {
    height: 32px;
    width: 100%;
    padding-left: 8px;
    margin-left: -12px;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2);
    border: none;
    font-size: 1em;
    font-weight: 600;
    color: rgba(0, 0, 0, .6);
    cursor: pointer;
}



#searchresults-view .list .build-unit {
    cursor: pointer;
}

#searchresults-view .list .build-unit span {
    width: 48px;
}

#searchresults-view .list .build-unit #build-unit-update-select-wrapper {
    width: 100%;
    min-width: 96px;
    margin-right: -48px;
    position: relative;
    cursor: pointer;
}

#searchresults-view .list .build-unit #build-unit-update-select-wrapper .input-field-handle {
    width: 32px;
    height: 32px;
    top: 0;
    right: 12px;
    pointer-events: none;
    cursor: pointer;
}

#searchresults-view .list .build-unit select {
    height: 32px;
    width: 100%;
    padding-left: 8px;
    margin-left: -12px;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2);
    border: none;
    font-size: 1em;
    font-weight: 600;
    color: rgba(0, 0, 0, .6);
    cursor: pointer;
}

#searchresults-view .list .build-unit {
    cursor: pointer;
}



#searchresults-view .list .printer #printer-update-select-wrapper {
    width: 100%;
    min-width: 96px;
    margin-right: -48px;
    position: relative;
    cursor: pointer;
}

#searchresults-view .list .printer #printer-update-select-wrapper .input-field-handle {
    width: 32px;
    height: 32px;
    top: 0;
    right: 12px;
    pointer-events: none;
    cursor: pointer;
}

#searchresults-view .list .printer select {
    height: 32px;
    width: 100%;
    padding-left: 8px;
    margin-left: -12px;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2);
    border: none;
    font-size: 1em;
    font-weight: 600;
    color: rgba(0, 0, 0, .6);
    cursor: pointer;
}


#searchresults-view .list .comment #comment-update-input-wrapper {
    width: 100%;
    min-width: 96px;
    margin-right: -48px;
    position: relative;
    cursor: pointer;
}

#searchresults-view .list .comment textarea {
    height: 64px;
    width: 100%;
    padding-left: 12px;
    margin-left: -12px;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2);
    border: none;
    font-size: 1em;
    font-weight: 600;
    color: rgba(0, 0, 0, .6);
    cursor: pointer;
}



#searchresults-view .list .view-printjob-btn {
    position: absolute;
    height: 50px;
    width: 72px;
    top: 10px;
    right: 70px;
    border-radius: 3px;
    font-size: .875em;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, .16);
    background: url("../../images/view_icon_white.png") no-repeat #27ae60;
    background-position: center;
    color: rgba(0, 0, 0, .6);
    cursor: pointer;
}

#searchresults-view .list .view-printjob-btn:hover {
    background: url("../../images/view_icon_white.png") no-repeat #24A45A;
    background-position: center;
}

#searchresults-view .list .delete-printjob-btn {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 10px;
    right: 16px;
    border: none;
    background: url("../../images/delete_icon_dark_40.png") no-repeat center center;
    cursor: pointer;
}

#searchresults-view .list .delete-printjob-btn:hover {
    background: url("../../images/delete_icon_red.png") no-repeat center center;
}

/**************************************************************************************************************
 * Pagination
 **************************************************************************************************************/
#searchresults-view .pagination {
    position: fixed;
    z-index: 99;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 96px;
    background: rgba(0, 0, 0, .05);
}

#searchresults-view .pagination .info {
    position: absolute;
    display: flex;
    align-items: center;
    left: 48px;
    height: 100%;
    font-weight: 600;
    color: rgba(0, 0, 0, .6);
}

#searchresults-view .pagination .page-nums {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    top: 24px;
    right: 48px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 3px;
}

#searchresults-view .pagination .page-nums li {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1em;
    color: #2C3E50;
    width: 50px;
    height: 50px;
    border-right: 1px solid rgba(0, 0, 0, .2);
    cursor: pointer;
}

#searchresults-view .pagination .page-nums li:hover {
    background: rgba(0, 0, 0, .05);
}

#searchresults-view .pagination .page-nums li.active {
    background: rgba(0, 0, 0, .05);
}

#searchresults-view .pagination .page-nums li.disabled {
    color: rgba(0, 0, 0, .2);
}

#searchresults-view .pagination .page-nums li.disabled:hover {
    background: none;
}

#searchresults-view .pagination .page-nums li:last-child {
    border-right: none;
}