﻿.tvtStatus-page-grid {
    -ms-grid-columns: 500px;
    -ms-grid-rows: auto 1fr;
    display: -ms-grid;
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 500px;
    height: calc(100vh - 150px);
    width: 100%;
}

    .tvtStatus-page-grid.closed {
        width: 0;
    }

@media (max-width: 992px) {
    .tvtStatus-page-grid {
        -ms-grid-columns: 250px;
        grid-template-columns: 250px;
    }
}

.tvtStatus-page-grid-header {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    grid-column: 1;
    grid-row: 1;
    height: 100%;
    width: 100%;
    padding: 5px;
    padding-top: 8px;
}

    .tvtStatus-page-grid-header .roadway-filter {
        width: calc(100% - 33px);
    }

.tvtStatus-page-grid-body {
    -ms-grid-column: 1;
    -ms-grid-row: 2;
    grid-column: 1;
    grid-row: 2;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.tvtStatus-list {
    -webkit-transition: ease-in 250ms;
    -moz-transition: ease-in 250ms;
    -ms-transition: ease-in 250ms;
    -o-transition: ease-in 250ms;
    transition: ease-in 250ms;
    position: relative;
    overflow-y: auto;
    overflow-y: auto;
    height: 93%;
    width: 100%;
    margin-top: 8px;
}

.tvtStatus-list-item {
    background: white;
    padding: 8px;
    margin-bottom: 8px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    border: 2px transparent solid;
    -moz-box-shadow: 0 0 0 1px #000000,0 2px 4px 0 #000000;
    -moz-box-shadow: 0 0 0 1px rgba(0,0,0,.05),0 2px 4px 0 rgba(0,0,0,.14);
    -webkit-box-shadow: 0 0 0 1px #000000,0 2px 4px 0 #000000;
    -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,.05),0 2px 4px 0 rgba(0,0,0,.14);
    box-shadow: 0 0 0 1px #000000, 0 2px 4px 0 #000000;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .05), 0 2px 4px 0 rgba(0, 0, 0, .14);
    margin: 8px;
}

    .tvtStatus-list-item:hover {
        border: 2px orange solid;
        border: 2px rgba(255,165,0,.5) solid;
    }

    .tvtStatus-list-item.selected {
        border: 2px orange solid;
        border: 2px rgba(255,165,0,1) solid;
    }

.tvtStatus-header, .lane-closure-data {
    width: 100%;
}

@media (max-width: 992px) {
    .root .tvtStatus-data td {
        display: block;
    }

        .root .tvtStatus-data td.card-table-label {
            font-weight: 600;
        }
}
