﻿#TanksContainer {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    width: 100%;
}

#taskScrollContainer {
    height: calc(100% - 20px);
    overflow: auto;
}

    #taskScrollContainer > table th:first-child {
        width: 120px;
        overflow: visible;
    }

    #taskScrollContainer > table td:first-child {
        text-align: left;
    }

#FilesContainer {
    top: 50%;
}

#scrollFileContainer {
    height: calc(100% - 20px);
    overflow: auto;
    top: 20px;
}

#DocumentsContainer {
    top: 75%;
}

#scrollDocumentContainer {
    height: calc(100% - 20px);
    overflow: auto;
    box-sizing: border-box;
    margin-top: 20px;
}

tr.selected, tr.selected select, tr.selected input {
    color: red;
}

tr.groupSelected {
    background: pink;
}

.uploadForm {
    padding: 30px;
}


#TanksContainerSearch {
    overflow-x: auto;
    overflow-y: auto;
}

#FilesContainerSearch {
    overflow-x: auto;
    overflow-y: auto;
}

#DocumentsContainerSearch {
    overflow-x: auto;
    overflow-y: auto;
}

#TanksContainerSearch > table th:first-child, #FilesContainerSearch > table th:first-child, #DocumentsContainerSearch > table th:first-child {
        width: 120px;
        overflow: visible;
    }

    #TanksContainerSearch > table td:first-child, #FilesContainerSearch > table td:first-child, #DocumentsContainerSearch > table td:first-child {
        text-align: left;
    }

.downloadBtn, .previewBtn{
    width:14px;
    height:14px;
    background:url("/Content/images/icons-png/arrow-d-black.png");
    display:inline-block;
}
.previewBtn{
    width:14px;
    height:14px;
    background:url("/Content/images/icons-png/search-black.png");
    display:inline-block;
}
.cartButtons {
    display: inline;
}
.cartButtons img{
    display: inline-block;
}